postman

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 10, 2023 License: MIT Imports: 20 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	EnvironmentsApi *EnvironmentsApiService

	WorkspacesApi *WorkspacesApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Postman API API v1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AllEnvironments200Response

type AllEnvironments200Response struct {
	Environments []AllEnvironments200ResponseEnvironmentsInner `json:"environments,omitempty"`
}

AllEnvironments200Response struct for AllEnvironments200Response

func NewAllEnvironments200Response

func NewAllEnvironments200Response() *AllEnvironments200Response

NewAllEnvironments200Response instantiates a new AllEnvironments200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments200ResponseWithDefaults

func NewAllEnvironments200ResponseWithDefaults() *AllEnvironments200Response

NewAllEnvironments200ResponseWithDefaults instantiates a new AllEnvironments200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments200Response) GetEnvironments

GetEnvironments returns the Environments field value if set, zero value otherwise.

func (*AllEnvironments200Response) GetEnvironmentsOk

GetEnvironmentsOk returns a tuple with the Environments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments200Response) HasEnvironments

func (o *AllEnvironments200Response) HasEnvironments() bool

HasEnvironments returns a boolean if a field has been set.

func (AllEnvironments200Response) MarshalJSON

func (o AllEnvironments200Response) MarshalJSON() ([]byte, error)

func (*AllEnvironments200Response) SetEnvironments

SetEnvironments gets a reference to the given []AllEnvironments200ResponseEnvironmentsInner and assigns it to the Environments field.

func (AllEnvironments200Response) ToMap

func (o AllEnvironments200Response) ToMap() (map[string]interface{}, error)

type AllEnvironments200ResponseEnvironmentsInner

type AllEnvironments200ResponseEnvironmentsInner struct {
	// The date and time at which the environment was created.
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	// The environment's ID.
	Id *string `json:"id,omitempty"`
	// If true, the environment is public.
	IsPublic *bool `json:"isPublic,omitempty"`
	// The environment's name.
	Name *string `json:"name,omitempty"`
	// The environment owner's ID.
	Owner *string `json:"owner,omitempty"`
	// The environment's unique ID.
	Uid *string `json:"uid,omitempty"`
	// The date and time at which the environment was last updated.
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
}

AllEnvironments200ResponseEnvironmentsInner struct for AllEnvironments200ResponseEnvironmentsInner

func NewAllEnvironments200ResponseEnvironmentsInner

func NewAllEnvironments200ResponseEnvironmentsInner() *AllEnvironments200ResponseEnvironmentsInner

NewAllEnvironments200ResponseEnvironmentsInner instantiates a new AllEnvironments200ResponseEnvironmentsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments200ResponseEnvironmentsInnerWithDefaults

func NewAllEnvironments200ResponseEnvironmentsInnerWithDefaults() *AllEnvironments200ResponseEnvironmentsInner

NewAllEnvironments200ResponseEnvironmentsInnerWithDefaults instantiates a new AllEnvironments200ResponseEnvironmentsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments200ResponseEnvironmentsInner) GetCreatedAt

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*AllEnvironments200ResponseEnvironmentsInner) GetCreatedAtOk

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*AllEnvironments200ResponseEnvironmentsInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) GetIsPublic

GetIsPublic returns the IsPublic field value if set, zero value otherwise.

func (*AllEnvironments200ResponseEnvironmentsInner) GetIsPublicOk

func (o *AllEnvironments200ResponseEnvironmentsInner) GetIsPublicOk() (*bool, bool)

GetIsPublicOk returns a tuple with the IsPublic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*AllEnvironments200ResponseEnvironmentsInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) GetOwner

GetOwner returns the Owner field value if set, zero value otherwise.

func (*AllEnvironments200ResponseEnvironmentsInner) GetOwnerOk

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) GetUid

GetUid returns the Uid field value if set, zero value otherwise.

func (*AllEnvironments200ResponseEnvironmentsInner) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*AllEnvironments200ResponseEnvironmentsInner) GetUpdatedAtOk

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) HasCreatedAt

HasCreatedAt returns a boolean if a field has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) HasId

HasId returns a boolean if a field has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) HasIsPublic

HasIsPublic returns a boolean if a field has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) HasName

HasName returns a boolean if a field has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) HasOwner

HasOwner returns a boolean if a field has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) HasUid

HasUid returns a boolean if a field has been set.

func (*AllEnvironments200ResponseEnvironmentsInner) HasUpdatedAt

HasUpdatedAt returns a boolean if a field has been set.

func (AllEnvironments200ResponseEnvironmentsInner) MarshalJSON

func (*AllEnvironments200ResponseEnvironmentsInner) SetCreatedAt

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*AllEnvironments200ResponseEnvironmentsInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*AllEnvironments200ResponseEnvironmentsInner) SetIsPublic

SetIsPublic gets a reference to the given bool and assigns it to the IsPublic field.

func (*AllEnvironments200ResponseEnvironmentsInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*AllEnvironments200ResponseEnvironmentsInner) SetOwner

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*AllEnvironments200ResponseEnvironmentsInner) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field.

func (*AllEnvironments200ResponseEnvironmentsInner) SetUpdatedAt

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (AllEnvironments200ResponseEnvironmentsInner) ToMap

func (o AllEnvironments200ResponseEnvironmentsInner) ToMap() (map[string]interface{}, error)

type AllEnvironments401Response

type AllEnvironments401Response struct {
	Error *AllEnvironments401ResponseError `json:"error,omitempty"`
}

AllEnvironments401Response struct for AllEnvironments401Response

func NewAllEnvironments401Response

func NewAllEnvironments401Response() *AllEnvironments401Response

NewAllEnvironments401Response instantiates a new AllEnvironments401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments401ResponseWithDefaults

func NewAllEnvironments401ResponseWithDefaults() *AllEnvironments401Response

NewAllEnvironments401ResponseWithDefaults instantiates a new AllEnvironments401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments401Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*AllEnvironments401Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments401Response) HasError

func (o *AllEnvironments401Response) HasError() bool

HasError returns a boolean if a field has been set.

func (AllEnvironments401Response) MarshalJSON

func (o AllEnvironments401Response) MarshalJSON() ([]byte, error)

func (*AllEnvironments401Response) SetError

SetError gets a reference to the given AllEnvironments401ResponseError and assigns it to the Error field.

func (AllEnvironments401Response) ToMap

func (o AllEnvironments401Response) ToMap() (map[string]interface{}, error)

type AllEnvironments401ResponseError

type AllEnvironments401ResponseError struct {
	// The error message.
	Message *string `json:"message,omitempty"`
	// The error message.
	Name *string `json:"name,omitempty"`
}

AllEnvironments401ResponseError struct for AllEnvironments401ResponseError

func NewAllEnvironments401ResponseError

func NewAllEnvironments401ResponseError() *AllEnvironments401ResponseError

NewAllEnvironments401ResponseError instantiates a new AllEnvironments401ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments401ResponseErrorWithDefaults

func NewAllEnvironments401ResponseErrorWithDefaults() *AllEnvironments401ResponseError

NewAllEnvironments401ResponseErrorWithDefaults instantiates a new AllEnvironments401ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments401ResponseError) GetMessage

func (o *AllEnvironments401ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AllEnvironments401ResponseError) GetMessageOk

func (o *AllEnvironments401ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments401ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*AllEnvironments401ResponseError) GetNameOk

func (o *AllEnvironments401ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments401ResponseError) HasMessage

func (o *AllEnvironments401ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AllEnvironments401ResponseError) HasName

HasName returns a boolean if a field has been set.

func (AllEnvironments401ResponseError) MarshalJSON

func (o AllEnvironments401ResponseError) MarshalJSON() ([]byte, error)

func (*AllEnvironments401ResponseError) SetMessage

func (o *AllEnvironments401ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AllEnvironments401ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (AllEnvironments401ResponseError) ToMap

func (o AllEnvironments401ResponseError) ToMap() (map[string]interface{}, error)

type AllEnvironments404Response

type AllEnvironments404Response struct {
	Error *AllEnvironments404ResponseError `json:"error,omitempty"`
}

AllEnvironments404Response struct for AllEnvironments404Response

func NewAllEnvironments404Response

func NewAllEnvironments404Response() *AllEnvironments404Response

NewAllEnvironments404Response instantiates a new AllEnvironments404Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments404ResponseWithDefaults

func NewAllEnvironments404ResponseWithDefaults() *AllEnvironments404Response

NewAllEnvironments404ResponseWithDefaults instantiates a new AllEnvironments404Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments404Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*AllEnvironments404Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments404Response) HasError

func (o *AllEnvironments404Response) HasError() bool

HasError returns a boolean if a field has been set.

func (AllEnvironments404Response) MarshalJSON

func (o AllEnvironments404Response) MarshalJSON() ([]byte, error)

func (*AllEnvironments404Response) SetError

SetError gets a reference to the given AllEnvironments404ResponseError and assigns it to the Error field.

func (AllEnvironments404Response) ToMap

func (o AllEnvironments404Response) ToMap() (map[string]interface{}, error)

type AllEnvironments404ResponseError

type AllEnvironments404ResponseError struct {
	// The error message.
	Message *string `json:"message,omitempty"`
	// The error name.
	Name *string `json:"name,omitempty"`
}

AllEnvironments404ResponseError struct for AllEnvironments404ResponseError

func NewAllEnvironments404ResponseError

func NewAllEnvironments404ResponseError() *AllEnvironments404ResponseError

NewAllEnvironments404ResponseError instantiates a new AllEnvironments404ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments404ResponseErrorWithDefaults

func NewAllEnvironments404ResponseErrorWithDefaults() *AllEnvironments404ResponseError

NewAllEnvironments404ResponseErrorWithDefaults instantiates a new AllEnvironments404ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments404ResponseError) GetMessage

func (o *AllEnvironments404ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AllEnvironments404ResponseError) GetMessageOk

func (o *AllEnvironments404ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments404ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*AllEnvironments404ResponseError) GetNameOk

func (o *AllEnvironments404ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments404ResponseError) HasMessage

func (o *AllEnvironments404ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AllEnvironments404ResponseError) HasName

HasName returns a boolean if a field has been set.

func (AllEnvironments404ResponseError) MarshalJSON

func (o AllEnvironments404ResponseError) MarshalJSON() ([]byte, error)

func (*AllEnvironments404ResponseError) SetMessage

func (o *AllEnvironments404ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AllEnvironments404ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (AllEnvironments404ResponseError) ToMap

func (o AllEnvironments404ResponseError) ToMap() (map[string]interface{}, error)

type AllEnvironments429Response

type AllEnvironments429Response struct {
	// The error name.
	Error *string `json:"error,omitempty"`
	// The error message.
	Message *string `json:"message,omitempty"`
}

AllEnvironments429Response struct for AllEnvironments429Response

func NewAllEnvironments429Response

func NewAllEnvironments429Response() *AllEnvironments429Response

NewAllEnvironments429Response instantiates a new AllEnvironments429Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments429ResponseWithDefaults

func NewAllEnvironments429ResponseWithDefaults() *AllEnvironments429Response

NewAllEnvironments429ResponseWithDefaults instantiates a new AllEnvironments429Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments429Response) GetError

func (o *AllEnvironments429Response) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*AllEnvironments429Response) GetErrorOk

func (o *AllEnvironments429Response) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments429Response) GetMessage

func (o *AllEnvironments429Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AllEnvironments429Response) GetMessageOk

func (o *AllEnvironments429Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments429Response) HasError

func (o *AllEnvironments429Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*AllEnvironments429Response) HasMessage

func (o *AllEnvironments429Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (AllEnvironments429Response) MarshalJSON

func (o AllEnvironments429Response) MarshalJSON() ([]byte, error)

func (*AllEnvironments429Response) SetError

func (o *AllEnvironments429Response) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*AllEnvironments429Response) SetMessage

func (o *AllEnvironments429Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (AllEnvironments429Response) ToMap

func (o AllEnvironments429Response) ToMap() (map[string]interface{}, error)

type AllEnvironments500Response

type AllEnvironments500Response struct {
	Error *AllEnvironments500ResponseError `json:"error,omitempty"`
}

AllEnvironments500Response struct for AllEnvironments500Response

func NewAllEnvironments500Response

func NewAllEnvironments500Response() *AllEnvironments500Response

NewAllEnvironments500Response instantiates a new AllEnvironments500Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments500ResponseWithDefaults

func NewAllEnvironments500ResponseWithDefaults() *AllEnvironments500Response

NewAllEnvironments500ResponseWithDefaults instantiates a new AllEnvironments500Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments500Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*AllEnvironments500Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments500Response) HasError

func (o *AllEnvironments500Response) HasError() bool

HasError returns a boolean if a field has been set.

func (AllEnvironments500Response) MarshalJSON

func (o AllEnvironments500Response) MarshalJSON() ([]byte, error)

func (*AllEnvironments500Response) SetError

SetError gets a reference to the given AllEnvironments500ResponseError and assigns it to the Error field.

func (AllEnvironments500Response) ToMap

func (o AllEnvironments500Response) ToMap() (map[string]interface{}, error)

type AllEnvironments500ResponseError

type AllEnvironments500ResponseError struct {
	// The error message.
	Message *string `json:"message,omitempty"`
	// The error name.
	Name *string `json:"name,omitempty"`
}

AllEnvironments500ResponseError struct for AllEnvironments500ResponseError

func NewAllEnvironments500ResponseError

func NewAllEnvironments500ResponseError() *AllEnvironments500ResponseError

NewAllEnvironments500ResponseError instantiates a new AllEnvironments500ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllEnvironments500ResponseErrorWithDefaults

func NewAllEnvironments500ResponseErrorWithDefaults() *AllEnvironments500ResponseError

NewAllEnvironments500ResponseErrorWithDefaults instantiates a new AllEnvironments500ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllEnvironments500ResponseError) GetMessage

func (o *AllEnvironments500ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AllEnvironments500ResponseError) GetMessageOk

func (o *AllEnvironments500ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments500ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*AllEnvironments500ResponseError) GetNameOk

func (o *AllEnvironments500ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllEnvironments500ResponseError) HasMessage

func (o *AllEnvironments500ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AllEnvironments500ResponseError) HasName

HasName returns a boolean if a field has been set.

func (AllEnvironments500ResponseError) MarshalJSON

func (o AllEnvironments500ResponseError) MarshalJSON() ([]byte, error)

func (*AllEnvironments500ResponseError) SetMessage

func (o *AllEnvironments500ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AllEnvironments500ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (AllEnvironments500ResponseError) ToMap

func (o AllEnvironments500ResponseError) ToMap() (map[string]interface{}, error)

type AllWorkspaces200Response

type AllWorkspaces200Response struct {
	Workspaces []AllWorkspaces200ResponseWorkspacesInner `json:"workspaces,omitempty"`
}

AllWorkspaces200Response struct for AllWorkspaces200Response

func NewAllWorkspaces200Response

func NewAllWorkspaces200Response() *AllWorkspaces200Response

NewAllWorkspaces200Response instantiates a new AllWorkspaces200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllWorkspaces200ResponseWithDefaults

func NewAllWorkspaces200ResponseWithDefaults() *AllWorkspaces200Response

NewAllWorkspaces200ResponseWithDefaults instantiates a new AllWorkspaces200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllWorkspaces200Response) GetWorkspaces

GetWorkspaces returns the Workspaces field value if set, zero value otherwise.

func (*AllWorkspaces200Response) GetWorkspacesOk

GetWorkspacesOk returns a tuple with the Workspaces field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllWorkspaces200Response) HasWorkspaces

func (o *AllWorkspaces200Response) HasWorkspaces() bool

HasWorkspaces returns a boolean if a field has been set.

func (AllWorkspaces200Response) MarshalJSON

func (o AllWorkspaces200Response) MarshalJSON() ([]byte, error)

func (*AllWorkspaces200Response) SetWorkspaces

SetWorkspaces gets a reference to the given []AllWorkspaces200ResponseWorkspacesInner and assigns it to the Workspaces field.

func (AllWorkspaces200Response) ToMap

func (o AllWorkspaces200Response) ToMap() (map[string]interface{}, error)

type AllWorkspaces200ResponseWorkspacesInner

type AllWorkspaces200ResponseWorkspacesInner struct {
	// The workspace's ID.
	Id *string `json:"id,omitempty"`
	// The workspace's name.
	Name *string `json:"name,omitempty"`
	// The type of workspace.
	Type *string `json:"type,omitempty"`
	// The team's visibility in Postman:  - `only-me` — Applies to the **My Workspace** workspace. - `personal` — Only you can access the workspace. - `team` — All team members can access the workspace. - `private-team` — Only invited team members can access the workspace. - `public` — Everyone can access the workspace.
	Visibility *string `json:"visibility,omitempty"`
}

AllWorkspaces200ResponseWorkspacesInner Information about the workspace.

func NewAllWorkspaces200ResponseWorkspacesInner

func NewAllWorkspaces200ResponseWorkspacesInner() *AllWorkspaces200ResponseWorkspacesInner

NewAllWorkspaces200ResponseWorkspacesInner instantiates a new AllWorkspaces200ResponseWorkspacesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAllWorkspaces200ResponseWorkspacesInnerWithDefaults

func NewAllWorkspaces200ResponseWorkspacesInnerWithDefaults() *AllWorkspaces200ResponseWorkspacesInner

NewAllWorkspaces200ResponseWorkspacesInnerWithDefaults instantiates a new AllWorkspaces200ResponseWorkspacesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AllWorkspaces200ResponseWorkspacesInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*AllWorkspaces200ResponseWorkspacesInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllWorkspaces200ResponseWorkspacesInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*AllWorkspaces200ResponseWorkspacesInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllWorkspaces200ResponseWorkspacesInner) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*AllWorkspaces200ResponseWorkspacesInner) GetTypeOk

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllWorkspaces200ResponseWorkspacesInner) GetVisibility

GetVisibility returns the Visibility field value if set, zero value otherwise.

func (*AllWorkspaces200ResponseWorkspacesInner) GetVisibilityOk

func (o *AllWorkspaces200ResponseWorkspacesInner) GetVisibilityOk() (*string, bool)

GetVisibilityOk returns a tuple with the Visibility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AllWorkspaces200ResponseWorkspacesInner) HasId

HasId returns a boolean if a field has been set.

func (*AllWorkspaces200ResponseWorkspacesInner) HasName

HasName returns a boolean if a field has been set.

func (*AllWorkspaces200ResponseWorkspacesInner) HasType

HasType returns a boolean if a field has been set.

func (*AllWorkspaces200ResponseWorkspacesInner) HasVisibility

func (o *AllWorkspaces200ResponseWorkspacesInner) HasVisibility() bool

HasVisibility returns a boolean if a field has been set.

func (AllWorkspaces200ResponseWorkspacesInner) MarshalJSON

func (o AllWorkspaces200ResponseWorkspacesInner) MarshalJSON() ([]byte, error)

func (*AllWorkspaces200ResponseWorkspacesInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*AllWorkspaces200ResponseWorkspacesInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*AllWorkspaces200ResponseWorkspacesInner) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*AllWorkspaces200ResponseWorkspacesInner) SetVisibility

func (o *AllWorkspaces200ResponseWorkspacesInner) SetVisibility(v string)

SetVisibility gets a reference to the given string and assigns it to the Visibility field.

func (AllWorkspaces200ResponseWorkspacesInner) ToMap

func (o AllWorkspaces200ResponseWorkspacesInner) ToMap() (map[string]interface{}, error)

type ApiAllEnvironmentsRequest

type ApiAllEnvironmentsRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiAllEnvironmentsRequest) Execute

func (ApiAllEnvironmentsRequest) Workspace

The workspace's ID. If you do not include this query parameter, the system defaults to the **My Workspace** workspace.

type ApiAllWorkspacesRequest

type ApiAllWorkspacesRequest struct {
	ApiService *WorkspacesApiService
	// contains filtered or unexported fields
}

func (ApiAllWorkspacesRequest) Execute

func (ApiAllWorkspacesRequest) Type_

The type of workspace to filter the response by: - `team` — Return only team workspaces. - `personal` — Return only personal workspaces.

type ApiCreateEnvironmentRequest

type ApiCreateEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateEnvironmentRequest) CreateEnvironmentRequest

func (r ApiCreateEnvironmentRequest) CreateEnvironmentRequest(createEnvironmentRequest CreateEnvironmentRequest) ApiCreateEnvironmentRequest

func (ApiCreateEnvironmentRequest) Execute

func (ApiCreateEnvironmentRequest) Workspace

The workspace's ID. If you do not include this query parameter, the system defaults to the **My Workspace** workspace.

type ApiCreateWorkspaceRequest

type ApiCreateWorkspaceRequest struct {
	ApiService *WorkspacesApiService
	// contains filtered or unexported fields
}

func (ApiCreateWorkspaceRequest) CreateWorkspaceRequest

func (r ApiCreateWorkspaceRequest) CreateWorkspaceRequest(createWorkspaceRequest CreateWorkspaceRequest) ApiCreateWorkspaceRequest

func (ApiCreateWorkspaceRequest) Execute

type ApiDeleteEnvironmentRequest

type ApiDeleteEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEnvironmentRequest) Execute

type ApiDeleteWorkspaceRequest

type ApiDeleteWorkspaceRequest struct {
	ApiService *WorkspacesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkspaceRequest) Execute

type ApiSingleEnvironmentRequest

type ApiSingleEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiSingleEnvironmentRequest) Execute

type ApiSingleWorkspaceRequest

type ApiSingleWorkspaceRequest struct {
	ApiService *WorkspacesApiService
	// contains filtered or unexported fields
}

func (ApiSingleWorkspaceRequest) Execute

type ApiUpdateEnvironmentRequest

type ApiUpdateEnvironmentRequest struct {
	ApiService *EnvironmentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateEnvironmentRequest) CreateEnvironmentRequest

func (r ApiUpdateEnvironmentRequest) CreateEnvironmentRequest(createEnvironmentRequest CreateEnvironmentRequest) ApiUpdateEnvironmentRequest

func (ApiUpdateEnvironmentRequest) Execute

type ApiUpdateWorkspaceRequest

type ApiUpdateWorkspaceRequest struct {
	ApiService *WorkspacesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkspaceRequest) Execute

func (ApiUpdateWorkspaceRequest) UpdateWorkspaceRequest

func (r ApiUpdateWorkspaceRequest) UpdateWorkspaceRequest(updateWorkspaceRequest UpdateWorkspaceRequest) ApiUpdateWorkspaceRequest

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CreateEnvironment200Response

type CreateEnvironment200Response struct {
	Environment *CreateEnvironment200ResponseEnvironment `json:"environment,omitempty"`
}

CreateEnvironment200Response struct for CreateEnvironment200Response

func NewCreateEnvironment200Response

func NewCreateEnvironment200Response() *CreateEnvironment200Response

NewCreateEnvironment200Response instantiates a new CreateEnvironment200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironment200ResponseWithDefaults

func NewCreateEnvironment200ResponseWithDefaults() *CreateEnvironment200Response

NewCreateEnvironment200ResponseWithDefaults instantiates a new CreateEnvironment200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironment200Response) GetEnvironment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*CreateEnvironment200Response) GetEnvironmentOk

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment200Response) HasEnvironment

func (o *CreateEnvironment200Response) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (CreateEnvironment200Response) MarshalJSON

func (o CreateEnvironment200Response) MarshalJSON() ([]byte, error)

func (*CreateEnvironment200Response) SetEnvironment

SetEnvironment gets a reference to the given CreateEnvironment200ResponseEnvironment and assigns it to the Environment field.

func (CreateEnvironment200Response) ToMap

func (o CreateEnvironment200Response) ToMap() (map[string]interface{}, error)

type CreateEnvironment200ResponseEnvironment

type CreateEnvironment200ResponseEnvironment struct {
	// The environment's ID.
	Id *string `json:"id,omitempty"`
	// The environment's name.
	Name *string `json:"name,omitempty"`
	// The environment's unique ID.
	Uid *string `json:"uid,omitempty"`
}

CreateEnvironment200ResponseEnvironment struct for CreateEnvironment200ResponseEnvironment

func NewCreateEnvironment200ResponseEnvironment

func NewCreateEnvironment200ResponseEnvironment() *CreateEnvironment200ResponseEnvironment

NewCreateEnvironment200ResponseEnvironment instantiates a new CreateEnvironment200ResponseEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironment200ResponseEnvironmentWithDefaults

func NewCreateEnvironment200ResponseEnvironmentWithDefaults() *CreateEnvironment200ResponseEnvironment

NewCreateEnvironment200ResponseEnvironmentWithDefaults instantiates a new CreateEnvironment200ResponseEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironment200ResponseEnvironment) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*CreateEnvironment200ResponseEnvironment) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment200ResponseEnvironment) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*CreateEnvironment200ResponseEnvironment) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment200ResponseEnvironment) GetUid

GetUid returns the Uid field value if set, zero value otherwise.

func (*CreateEnvironment200ResponseEnvironment) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment200ResponseEnvironment) HasId

HasId returns a boolean if a field has been set.

func (*CreateEnvironment200ResponseEnvironment) HasName

HasName returns a boolean if a field has been set.

func (*CreateEnvironment200ResponseEnvironment) HasUid

HasUid returns a boolean if a field has been set.

func (CreateEnvironment200ResponseEnvironment) MarshalJSON

func (o CreateEnvironment200ResponseEnvironment) MarshalJSON() ([]byte, error)

func (*CreateEnvironment200ResponseEnvironment) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*CreateEnvironment200ResponseEnvironment) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*CreateEnvironment200ResponseEnvironment) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field.

func (CreateEnvironment200ResponseEnvironment) ToMap

func (o CreateEnvironment200ResponseEnvironment) ToMap() (map[string]interface{}, error)

type CreateEnvironment400Response

type CreateEnvironment400Response struct {
	Error *CreateEnvironment400ResponseError `json:"error,omitempty"`
}

CreateEnvironment400Response struct for CreateEnvironment400Response

func NewCreateEnvironment400Response

func NewCreateEnvironment400Response() *CreateEnvironment400Response

NewCreateEnvironment400Response instantiates a new CreateEnvironment400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironment400ResponseWithDefaults

func NewCreateEnvironment400ResponseWithDefaults() *CreateEnvironment400Response

NewCreateEnvironment400ResponseWithDefaults instantiates a new CreateEnvironment400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironment400Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*CreateEnvironment400Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment400Response) HasError

func (o *CreateEnvironment400Response) HasError() bool

HasError returns a boolean if a field has been set.

func (CreateEnvironment400Response) MarshalJSON

func (o CreateEnvironment400Response) MarshalJSON() ([]byte, error)

func (*CreateEnvironment400Response) SetError

SetError gets a reference to the given CreateEnvironment400ResponseError and assigns it to the Error field.

func (CreateEnvironment400Response) ToMap

func (o CreateEnvironment400Response) ToMap() (map[string]interface{}, error)

type CreateEnvironment400ResponseError

type CreateEnvironment400ResponseError struct {
	Details []string `json:"details,omitempty"`
	Message *string  `json:"message,omitempty"`
	Name    *string  `json:"name,omitempty"`
}

CreateEnvironment400ResponseError struct for CreateEnvironment400ResponseError

func NewCreateEnvironment400ResponseError

func NewCreateEnvironment400ResponseError() *CreateEnvironment400ResponseError

NewCreateEnvironment400ResponseError instantiates a new CreateEnvironment400ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironment400ResponseErrorWithDefaults

func NewCreateEnvironment400ResponseErrorWithDefaults() *CreateEnvironment400ResponseError

NewCreateEnvironment400ResponseErrorWithDefaults instantiates a new CreateEnvironment400ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironment400ResponseError) GetDetails

func (o *CreateEnvironment400ResponseError) GetDetails() []string

GetDetails returns the Details field value if set, zero value otherwise.

func (*CreateEnvironment400ResponseError) GetDetailsOk

func (o *CreateEnvironment400ResponseError) GetDetailsOk() ([]string, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment400ResponseError) GetMessage

func (o *CreateEnvironment400ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CreateEnvironment400ResponseError) GetMessageOk

func (o *CreateEnvironment400ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment400ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*CreateEnvironment400ResponseError) GetNameOk

func (o *CreateEnvironment400ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment400ResponseError) HasDetails

func (o *CreateEnvironment400ResponseError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*CreateEnvironment400ResponseError) HasMessage

func (o *CreateEnvironment400ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CreateEnvironment400ResponseError) HasName

HasName returns a boolean if a field has been set.

func (CreateEnvironment400ResponseError) MarshalJSON

func (o CreateEnvironment400ResponseError) MarshalJSON() ([]byte, error)

func (*CreateEnvironment400ResponseError) SetDetails

func (o *CreateEnvironment400ResponseError) SetDetails(v []string)

SetDetails gets a reference to the given []string and assigns it to the Details field.

func (*CreateEnvironment400ResponseError) SetMessage

func (o *CreateEnvironment400ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CreateEnvironment400ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (CreateEnvironment400ResponseError) ToMap

func (o CreateEnvironment400ResponseError) ToMap() (map[string]interface{}, error)

type CreateEnvironment403Response

type CreateEnvironment403Response struct {
	Error *CreateEnvironment403ResponseError `json:"error,omitempty"`
}

CreateEnvironment403Response struct for CreateEnvironment403Response

func NewCreateEnvironment403Response

func NewCreateEnvironment403Response() *CreateEnvironment403Response

NewCreateEnvironment403Response instantiates a new CreateEnvironment403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironment403ResponseWithDefaults

func NewCreateEnvironment403ResponseWithDefaults() *CreateEnvironment403Response

NewCreateEnvironment403ResponseWithDefaults instantiates a new CreateEnvironment403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironment403Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*CreateEnvironment403Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment403Response) HasError

func (o *CreateEnvironment403Response) HasError() bool

HasError returns a boolean if a field has been set.

func (CreateEnvironment403Response) MarshalJSON

func (o CreateEnvironment403Response) MarshalJSON() ([]byte, error)

func (*CreateEnvironment403Response) SetError

SetError gets a reference to the given CreateEnvironment403ResponseError and assigns it to the Error field.

func (CreateEnvironment403Response) ToMap

func (o CreateEnvironment403Response) ToMap() (map[string]interface{}, error)

type CreateEnvironment403ResponseError

type CreateEnvironment403ResponseError struct {
	// The error message
	Message *string `json:"message,omitempty"`
	// The error name.
	Name *string `json:"name,omitempty"`
}

CreateEnvironment403ResponseError struct for CreateEnvironment403ResponseError

func NewCreateEnvironment403ResponseError

func NewCreateEnvironment403ResponseError() *CreateEnvironment403ResponseError

NewCreateEnvironment403ResponseError instantiates a new CreateEnvironment403ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironment403ResponseErrorWithDefaults

func NewCreateEnvironment403ResponseErrorWithDefaults() *CreateEnvironment403ResponseError

NewCreateEnvironment403ResponseErrorWithDefaults instantiates a new CreateEnvironment403ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironment403ResponseError) GetMessage

func (o *CreateEnvironment403ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CreateEnvironment403ResponseError) GetMessageOk

func (o *CreateEnvironment403ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment403ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*CreateEnvironment403ResponseError) GetNameOk

func (o *CreateEnvironment403ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironment403ResponseError) HasMessage

func (o *CreateEnvironment403ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CreateEnvironment403ResponseError) HasName

HasName returns a boolean if a field has been set.

func (CreateEnvironment403ResponseError) MarshalJSON

func (o CreateEnvironment403ResponseError) MarshalJSON() ([]byte, error)

func (*CreateEnvironment403ResponseError) SetMessage

func (o *CreateEnvironment403ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CreateEnvironment403ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (CreateEnvironment403ResponseError) ToMap

func (o CreateEnvironment403ResponseError) ToMap() (map[string]interface{}, error)

type CreateEnvironmentRequest

type CreateEnvironmentRequest struct {
	Environment *CreateEnvironmentRequestEnvironment `json:"environment,omitempty"`
}

CreateEnvironmentRequest struct for CreateEnvironmentRequest

func NewCreateEnvironmentRequest

func NewCreateEnvironmentRequest() *CreateEnvironmentRequest

NewCreateEnvironmentRequest instantiates a new CreateEnvironmentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironmentRequestWithDefaults

func NewCreateEnvironmentRequestWithDefaults() *CreateEnvironmentRequest

NewCreateEnvironmentRequestWithDefaults instantiates a new CreateEnvironmentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironmentRequest) GetEnvironment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*CreateEnvironmentRequest) GetEnvironmentOk

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentRequest) HasEnvironment

func (o *CreateEnvironmentRequest) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (CreateEnvironmentRequest) MarshalJSON

func (o CreateEnvironmentRequest) MarshalJSON() ([]byte, error)

func (*CreateEnvironmentRequest) SetEnvironment

SetEnvironment gets a reference to the given CreateEnvironmentRequestEnvironment and assigns it to the Environment field.

func (CreateEnvironmentRequest) ToMap

func (o CreateEnvironmentRequest) ToMap() (map[string]interface{}, error)

type CreateEnvironmentRequestEnvironment

type CreateEnvironmentRequestEnvironment struct {
	// The environment's name.
	Name string `json:"name"`
	// Information about the environment's variables.
	Values []CreateEnvironmentRequestEnvironmentValuesInner `json:"values,omitempty"`
}

CreateEnvironmentRequestEnvironment struct for CreateEnvironmentRequestEnvironment

func NewCreateEnvironmentRequestEnvironment

func NewCreateEnvironmentRequestEnvironment(name string) *CreateEnvironmentRequestEnvironment

NewCreateEnvironmentRequestEnvironment instantiates a new CreateEnvironmentRequestEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironmentRequestEnvironmentWithDefaults

func NewCreateEnvironmentRequestEnvironmentWithDefaults() *CreateEnvironmentRequestEnvironment

NewCreateEnvironmentRequestEnvironmentWithDefaults instantiates a new CreateEnvironmentRequestEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironmentRequestEnvironment) GetName

GetName returns the Name field value

func (*CreateEnvironmentRequestEnvironment) GetNameOk

func (o *CreateEnvironmentRequestEnvironment) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CreateEnvironmentRequestEnvironment) GetValues

GetValues returns the Values field value if set, zero value otherwise.

func (*CreateEnvironmentRequestEnvironment) GetValuesOk

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentRequestEnvironment) HasValues

HasValues returns a boolean if a field has been set.

func (CreateEnvironmentRequestEnvironment) MarshalJSON

func (o CreateEnvironmentRequestEnvironment) MarshalJSON() ([]byte, error)

func (*CreateEnvironmentRequestEnvironment) SetName

SetName sets field value

func (*CreateEnvironmentRequestEnvironment) SetValues

SetValues gets a reference to the given []CreateEnvironmentRequestEnvironmentValuesInner and assigns it to the Values field.

func (CreateEnvironmentRequestEnvironment) ToMap

func (o CreateEnvironmentRequestEnvironment) ToMap() (map[string]interface{}, error)

type CreateEnvironmentRequestEnvironmentValuesInner

type CreateEnvironmentRequestEnvironmentValuesInner struct {
	// If true, the variable is enabled.
	Enabled *bool `json:"enabled,omitempty"`
	// The variable's name.
	Key *string `json:"key,omitempty"`
	// The variable type.
	Type *string `json:"type,omitempty"`
	// The variable's value.
	Value *string `json:"value,omitempty"`
}

CreateEnvironmentRequestEnvironmentValuesInner struct for CreateEnvironmentRequestEnvironmentValuesInner

func NewCreateEnvironmentRequestEnvironmentValuesInner

func NewCreateEnvironmentRequestEnvironmentValuesInner() *CreateEnvironmentRequestEnvironmentValuesInner

NewCreateEnvironmentRequestEnvironmentValuesInner instantiates a new CreateEnvironmentRequestEnvironmentValuesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateEnvironmentRequestEnvironmentValuesInnerWithDefaults

func NewCreateEnvironmentRequestEnvironmentValuesInnerWithDefaults() *CreateEnvironmentRequestEnvironmentValuesInner

NewCreateEnvironmentRequestEnvironmentValuesInnerWithDefaults instantiates a new CreateEnvironmentRequestEnvironmentValuesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateEnvironmentRequestEnvironmentValuesInner) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*CreateEnvironmentRequestEnvironmentValuesInner) GetEnabledOk

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentRequestEnvironmentValuesInner) GetKey

GetKey returns the Key field value if set, zero value otherwise.

func (*CreateEnvironmentRequestEnvironmentValuesInner) GetKeyOk

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentRequestEnvironmentValuesInner) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*CreateEnvironmentRequestEnvironmentValuesInner) GetTypeOk

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentRequestEnvironmentValuesInner) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*CreateEnvironmentRequestEnvironmentValuesInner) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateEnvironmentRequestEnvironmentValuesInner) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*CreateEnvironmentRequestEnvironmentValuesInner) HasKey

HasKey returns a boolean if a field has been set.

func (*CreateEnvironmentRequestEnvironmentValuesInner) HasType

HasType returns a boolean if a field has been set.

func (*CreateEnvironmentRequestEnvironmentValuesInner) HasValue

HasValue returns a boolean if a field has been set.

func (CreateEnvironmentRequestEnvironmentValuesInner) MarshalJSON

func (*CreateEnvironmentRequestEnvironmentValuesInner) SetEnabled

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*CreateEnvironmentRequestEnvironmentValuesInner) SetKey

SetKey gets a reference to the given string and assigns it to the Key field.

func (*CreateEnvironmentRequestEnvironmentValuesInner) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*CreateEnvironmentRequestEnvironmentValuesInner) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (CreateEnvironmentRequestEnvironmentValuesInner) ToMap

func (o CreateEnvironmentRequestEnvironmentValuesInner) ToMap() (map[string]interface{}, error)

type CreatePANApi

type CreatePANApi struct {
	Api *CreatePANApiApi `json:"api,omitempty"`
}

CreatePANApi struct for CreatePANApi

func NewCreatePANApi

func NewCreatePANApi() *CreatePANApi

NewCreatePANApi instantiates a new CreatePANApi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePANApiWithDefaults

func NewCreatePANApiWithDefaults() *CreatePANApi

NewCreatePANApiWithDefaults instantiates a new CreatePANApi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePANApi) GetApi

func (o *CreatePANApi) GetApi() CreatePANApiApi

GetApi returns the Api field value if set, zero value otherwise.

func (*CreatePANApi) GetApiOk

func (o *CreatePANApi) GetApiOk() (*CreatePANApiApi, bool)

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreatePANApi) HasApi

func (o *CreatePANApi) HasApi() bool

HasApi returns a boolean if a field has been set.

func (CreatePANApi) MarshalJSON

func (o CreatePANApi) MarshalJSON() ([]byte, error)

func (*CreatePANApi) SetApi

func (o *CreatePANApi) SetApi(v CreatePANApiApi)

SetApi gets a reference to the given CreatePANApiApi and assigns it to the Api field.

func (CreatePANApi) ToMap

func (o CreatePANApi) ToMap() (map[string]interface{}, error)

type CreatePANApiApi

type CreatePANApiApi struct {
	// The API's ID.
	Id string `json:"id"`
	// The API's parent folder ID.
	ParentFolderId int32 `json:"parentFolderId"`
}

CreatePANApiApi struct for CreatePANApiApi

func NewCreatePANApiApi

func NewCreatePANApiApi(id string, parentFolderId int32) *CreatePANApiApi

NewCreatePANApiApi instantiates a new CreatePANApiApi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePANApiApiWithDefaults

func NewCreatePANApiApiWithDefaults() *CreatePANApiApi

NewCreatePANApiApiWithDefaults instantiates a new CreatePANApiApi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePANApiApi) GetId

func (o *CreatePANApiApi) GetId() string

GetId returns the Id field value

func (*CreatePANApiApi) GetIdOk

func (o *CreatePANApiApi) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*CreatePANApiApi) GetParentFolderId

func (o *CreatePANApiApi) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value

func (*CreatePANApiApi) GetParentFolderIdOk

func (o *CreatePANApiApi) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value and a boolean to check if the value has been set.

func (CreatePANApiApi) MarshalJSON

func (o CreatePANApiApi) MarshalJSON() ([]byte, error)

func (*CreatePANApiApi) SetId

func (o *CreatePANApiApi) SetId(v string)

SetId sets field value

func (*CreatePANApiApi) SetParentFolderId

func (o *CreatePANApiApi) SetParentFolderId(v int32)

SetParentFolderId sets field value

func (CreatePANApiApi) ToMap

func (o CreatePANApiApi) ToMap() (map[string]interface{}, error)

type CreatePANCollection

type CreatePANCollection struct {
	Collection *CreatePANCollectionCollection `json:"collection,omitempty"`
}

CreatePANCollection struct for CreatePANCollection

func NewCreatePANCollection

func NewCreatePANCollection() *CreatePANCollection

NewCreatePANCollection instantiates a new CreatePANCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePANCollectionWithDefaults

func NewCreatePANCollectionWithDefaults() *CreatePANCollection

NewCreatePANCollectionWithDefaults instantiates a new CreatePANCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePANCollection) GetCollection

GetCollection returns the Collection field value if set, zero value otherwise.

func (*CreatePANCollection) GetCollectionOk

func (o *CreatePANCollection) GetCollectionOk() (*CreatePANCollectionCollection, bool)

GetCollectionOk returns a tuple with the Collection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreatePANCollection) HasCollection

func (o *CreatePANCollection) HasCollection() bool

HasCollection returns a boolean if a field has been set.

func (CreatePANCollection) MarshalJSON

func (o CreatePANCollection) MarshalJSON() ([]byte, error)

func (*CreatePANCollection) SetCollection

SetCollection gets a reference to the given CreatePANCollectionCollection and assigns it to the Collection field.

func (CreatePANCollection) ToMap

func (o CreatePANCollection) ToMap() (map[string]interface{}, error)

type CreatePANCollectionCollection

type CreatePANCollectionCollection struct {
	// The collection's ID.
	Id string `json:"id"`
	// The collection's parent folder ID.
	ParentFolderId int32 `json:"parentFolderId"`
	// The collection's summary.
	Summary *string `json:"summary,omitempty"`
}

CreatePANCollectionCollection struct for CreatePANCollectionCollection

func NewCreatePANCollectionCollection

func NewCreatePANCollectionCollection(id string, parentFolderId int32) *CreatePANCollectionCollection

NewCreatePANCollectionCollection instantiates a new CreatePANCollectionCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePANCollectionCollectionWithDefaults

func NewCreatePANCollectionCollectionWithDefaults() *CreatePANCollectionCollection

NewCreatePANCollectionCollectionWithDefaults instantiates a new CreatePANCollectionCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePANCollectionCollection) GetId

GetId returns the Id field value

func (*CreatePANCollectionCollection) GetIdOk

func (o *CreatePANCollectionCollection) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*CreatePANCollectionCollection) GetParentFolderId

func (o *CreatePANCollectionCollection) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value

func (*CreatePANCollectionCollection) GetParentFolderIdOk

func (o *CreatePANCollectionCollection) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value and a boolean to check if the value has been set.

func (*CreatePANCollectionCollection) GetSummary

func (o *CreatePANCollectionCollection) GetSummary() string

GetSummary returns the Summary field value if set, zero value otherwise.

func (*CreatePANCollectionCollection) GetSummaryOk

func (o *CreatePANCollectionCollection) GetSummaryOk() (*string, bool)

GetSummaryOk returns a tuple with the Summary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreatePANCollectionCollection) HasSummary

func (o *CreatePANCollectionCollection) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (CreatePANCollectionCollection) MarshalJSON

func (o CreatePANCollectionCollection) MarshalJSON() ([]byte, error)

func (*CreatePANCollectionCollection) SetId

SetId sets field value

func (*CreatePANCollectionCollection) SetParentFolderId

func (o *CreatePANCollectionCollection) SetParentFolderId(v int32)

SetParentFolderId sets field value

func (*CreatePANCollectionCollection) SetSummary

func (o *CreatePANCollectionCollection) SetSummary(v string)

SetSummary gets a reference to the given string and assigns it to the Summary field.

func (CreatePANCollectionCollection) ToMap

func (o CreatePANCollectionCollection) ToMap() (map[string]interface{}, error)

type CreatePANFolder

type CreatePANFolder struct {
	Folder *CreatePANFolderFolder `json:"folder,omitempty"`
}

CreatePANFolder struct for CreatePANFolder

func NewCreatePANFolder

func NewCreatePANFolder() *CreatePANFolder

NewCreatePANFolder instantiates a new CreatePANFolder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePANFolderWithDefaults

func NewCreatePANFolderWithDefaults() *CreatePANFolder

NewCreatePANFolderWithDefaults instantiates a new CreatePANFolder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePANFolder) GetFolder

func (o *CreatePANFolder) GetFolder() CreatePANFolderFolder

GetFolder returns the Folder field value if set, zero value otherwise.

func (*CreatePANFolder) GetFolderOk

func (o *CreatePANFolder) GetFolderOk() (*CreatePANFolderFolder, bool)

GetFolderOk returns a tuple with the Folder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreatePANFolder) HasFolder

func (o *CreatePANFolder) HasFolder() bool

HasFolder returns a boolean if a field has been set.

func (CreatePANFolder) MarshalJSON

func (o CreatePANFolder) MarshalJSON() ([]byte, error)

func (*CreatePANFolder) SetFolder

func (o *CreatePANFolder) SetFolder(v CreatePANFolderFolder)

SetFolder gets a reference to the given CreatePANFolderFolder and assigns it to the Folder field.

func (CreatePANFolder) ToMap

func (o CreatePANFolder) ToMap() (map[string]interface{}, error)

type CreatePANFolderFolder

type CreatePANFolderFolder struct {
	// The folder's description.
	Description *string `json:"description,omitempty"`
	// The folder's name.
	Name string `json:"name"`
	// The folder's parent folder ID. This value defaults to `0`.
	ParentFolderId *int32 `json:"parentFolderId,omitempty"`
}

CreatePANFolderFolder struct for CreatePANFolderFolder

func NewCreatePANFolderFolder

func NewCreatePANFolderFolder(name string) *CreatePANFolderFolder

NewCreatePANFolderFolder instantiates a new CreatePANFolderFolder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePANFolderFolderWithDefaults

func NewCreatePANFolderFolderWithDefaults() *CreatePANFolderFolder

NewCreatePANFolderFolderWithDefaults instantiates a new CreatePANFolderFolder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePANFolderFolder) GetDescription

func (o *CreatePANFolderFolder) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreatePANFolderFolder) GetDescriptionOk

func (o *CreatePANFolderFolder) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreatePANFolderFolder) GetName

func (o *CreatePANFolderFolder) GetName() string

GetName returns the Name field value

func (*CreatePANFolderFolder) GetNameOk

func (o *CreatePANFolderFolder) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CreatePANFolderFolder) GetParentFolderId

func (o *CreatePANFolderFolder) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value if set, zero value otherwise.

func (*CreatePANFolderFolder) GetParentFolderIdOk

func (o *CreatePANFolderFolder) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreatePANFolderFolder) HasDescription

func (o *CreatePANFolderFolder) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreatePANFolderFolder) HasParentFolderId

func (o *CreatePANFolderFolder) HasParentFolderId() bool

HasParentFolderId returns a boolean if a field has been set.

func (CreatePANFolderFolder) MarshalJSON

func (o CreatePANFolderFolder) MarshalJSON() ([]byte, error)

func (*CreatePANFolderFolder) SetDescription

func (o *CreatePANFolderFolder) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreatePANFolderFolder) SetName

func (o *CreatePANFolderFolder) SetName(v string)

SetName sets field value

func (*CreatePANFolderFolder) SetParentFolderId

func (o *CreatePANFolderFolder) SetParentFolderId(v int32)

SetParentFolderId gets a reference to the given int32 and assigns it to the ParentFolderId field.

func (CreatePANFolderFolder) ToMap

func (o CreatePANFolderFolder) ToMap() (map[string]interface{}, error)

type CreatePANWorkspace

type CreatePANWorkspace struct {
	Workspace *CreatePANWorkspaceWorkspace `json:"workspace,omitempty"`
}

CreatePANWorkspace struct for CreatePANWorkspace

func NewCreatePANWorkspace

func NewCreatePANWorkspace() *CreatePANWorkspace

NewCreatePANWorkspace instantiates a new CreatePANWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePANWorkspaceWithDefaults

func NewCreatePANWorkspaceWithDefaults() *CreatePANWorkspace

NewCreatePANWorkspaceWithDefaults instantiates a new CreatePANWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePANWorkspace) GetWorkspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*CreatePANWorkspace) GetWorkspaceOk

func (o *CreatePANWorkspace) GetWorkspaceOk() (*CreatePANWorkspaceWorkspace, bool)

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreatePANWorkspace) HasWorkspace

func (o *CreatePANWorkspace) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (CreatePANWorkspace) MarshalJSON

func (o CreatePANWorkspace) MarshalJSON() ([]byte, error)

func (*CreatePANWorkspace) SetWorkspace

SetWorkspace gets a reference to the given CreatePANWorkspaceWorkspace and assigns it to the Workspace field.

func (CreatePANWorkspace) ToMap

func (o CreatePANWorkspace) ToMap() (map[string]interface{}, error)

type CreatePANWorkspaceWorkspace

type CreatePANWorkspaceWorkspace struct {
	// The workspace's ID.
	Id string `json:"id"`
	// The workspace's parent folder ID.
	ParentFolderId int32 `json:"parentFolderId"`
}

CreatePANWorkspaceWorkspace struct for CreatePANWorkspaceWorkspace

func NewCreatePANWorkspaceWorkspace

func NewCreatePANWorkspaceWorkspace(id string, parentFolderId int32) *CreatePANWorkspaceWorkspace

NewCreatePANWorkspaceWorkspace instantiates a new CreatePANWorkspaceWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreatePANWorkspaceWorkspaceWithDefaults

func NewCreatePANWorkspaceWorkspaceWithDefaults() *CreatePANWorkspaceWorkspace

NewCreatePANWorkspaceWorkspaceWithDefaults instantiates a new CreatePANWorkspaceWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreatePANWorkspaceWorkspace) GetId

GetId returns the Id field value

func (*CreatePANWorkspaceWorkspace) GetIdOk

func (o *CreatePANWorkspaceWorkspace) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*CreatePANWorkspaceWorkspace) GetParentFolderId

func (o *CreatePANWorkspaceWorkspace) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value

func (*CreatePANWorkspaceWorkspace) GetParentFolderIdOk

func (o *CreatePANWorkspaceWorkspace) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value and a boolean to check if the value has been set.

func (CreatePANWorkspaceWorkspace) MarshalJSON

func (o CreatePANWorkspaceWorkspace) MarshalJSON() ([]byte, error)

func (*CreatePANWorkspaceWorkspace) SetId

func (o *CreatePANWorkspaceWorkspace) SetId(v string)

SetId sets field value

func (*CreatePANWorkspaceWorkspace) SetParentFolderId

func (o *CreatePANWorkspaceWorkspace) SetParentFolderId(v int32)

SetParentFolderId sets field value

func (CreatePANWorkspaceWorkspace) ToMap

func (o CreatePANWorkspaceWorkspace) ToMap() (map[string]interface{}, error)

type CreateWorkspace200Response

type CreateWorkspace200Response struct {
	Workspace *CreateWorkspace200ResponseWorkspace `json:"workspace,omitempty"`
}

CreateWorkspace200Response struct for CreateWorkspace200Response

func NewCreateWorkspace200Response

func NewCreateWorkspace200Response() *CreateWorkspace200Response

NewCreateWorkspace200Response instantiates a new CreateWorkspace200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateWorkspace200ResponseWithDefaults

func NewCreateWorkspace200ResponseWithDefaults() *CreateWorkspace200Response

NewCreateWorkspace200ResponseWithDefaults instantiates a new CreateWorkspace200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateWorkspace200Response) GetWorkspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*CreateWorkspace200Response) GetWorkspaceOk

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspace200Response) HasWorkspace

func (o *CreateWorkspace200Response) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (CreateWorkspace200Response) MarshalJSON

func (o CreateWorkspace200Response) MarshalJSON() ([]byte, error)

func (*CreateWorkspace200Response) SetWorkspace

SetWorkspace gets a reference to the given CreateWorkspace200ResponseWorkspace and assigns it to the Workspace field.

func (CreateWorkspace200Response) ToMap

func (o CreateWorkspace200Response) ToMap() (map[string]interface{}, error)

type CreateWorkspace200ResponseWorkspace

type CreateWorkspace200ResponseWorkspace struct {
	// The workspace's ID.
	Id *string `json:"id,omitempty"`
	// The workspace's name.
	Name *string `json:"name,omitempty"`
}

CreateWorkspace200ResponseWorkspace Information about the created workspace.

func NewCreateWorkspace200ResponseWorkspace

func NewCreateWorkspace200ResponseWorkspace() *CreateWorkspace200ResponseWorkspace

NewCreateWorkspace200ResponseWorkspace instantiates a new CreateWorkspace200ResponseWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateWorkspace200ResponseWorkspaceWithDefaults

func NewCreateWorkspace200ResponseWorkspaceWithDefaults() *CreateWorkspace200ResponseWorkspace

NewCreateWorkspace200ResponseWorkspaceWithDefaults instantiates a new CreateWorkspace200ResponseWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateWorkspace200ResponseWorkspace) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*CreateWorkspace200ResponseWorkspace) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspace200ResponseWorkspace) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*CreateWorkspace200ResponseWorkspace) GetNameOk

func (o *CreateWorkspace200ResponseWorkspace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspace200ResponseWorkspace) HasId

HasId returns a boolean if a field has been set.

func (*CreateWorkspace200ResponseWorkspace) HasName

HasName returns a boolean if a field has been set.

func (CreateWorkspace200ResponseWorkspace) MarshalJSON

func (o CreateWorkspace200ResponseWorkspace) MarshalJSON() ([]byte, error)

func (*CreateWorkspace200ResponseWorkspace) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*CreateWorkspace200ResponseWorkspace) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (CreateWorkspace200ResponseWorkspace) ToMap

func (o CreateWorkspace200ResponseWorkspace) ToMap() (map[string]interface{}, error)

type CreateWorkspace404Response

type CreateWorkspace404Response struct {
	Error *CreateWorkspace404ResponseError `json:"error,omitempty"`
}

CreateWorkspace404Response struct for CreateWorkspace404Response

func NewCreateWorkspace404Response

func NewCreateWorkspace404Response() *CreateWorkspace404Response

NewCreateWorkspace404Response instantiates a new CreateWorkspace404Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateWorkspace404ResponseWithDefaults

func NewCreateWorkspace404ResponseWithDefaults() *CreateWorkspace404Response

NewCreateWorkspace404ResponseWithDefaults instantiates a new CreateWorkspace404Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateWorkspace404Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*CreateWorkspace404Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspace404Response) HasError

func (o *CreateWorkspace404Response) HasError() bool

HasError returns a boolean if a field has been set.

func (CreateWorkspace404Response) MarshalJSON

func (o CreateWorkspace404Response) MarshalJSON() ([]byte, error)

func (*CreateWorkspace404Response) SetError

SetError gets a reference to the given CreateWorkspace404ResponseError and assigns it to the Error field.

func (CreateWorkspace404Response) ToMap

func (o CreateWorkspace404Response) ToMap() (map[string]interface{}, error)

type CreateWorkspace404ResponseError

type CreateWorkspace404ResponseError struct {
	// The error message.
	Message *string `json:"message,omitempty"`
	// The error name.
	Name *string `json:"name,omitempty"`
}

CreateWorkspace404ResponseError struct for CreateWorkspace404ResponseError

func NewCreateWorkspace404ResponseError

func NewCreateWorkspace404ResponseError() *CreateWorkspace404ResponseError

NewCreateWorkspace404ResponseError instantiates a new CreateWorkspace404ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateWorkspace404ResponseErrorWithDefaults

func NewCreateWorkspace404ResponseErrorWithDefaults() *CreateWorkspace404ResponseError

NewCreateWorkspace404ResponseErrorWithDefaults instantiates a new CreateWorkspace404ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateWorkspace404ResponseError) GetMessage

func (o *CreateWorkspace404ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CreateWorkspace404ResponseError) GetMessageOk

func (o *CreateWorkspace404ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspace404ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*CreateWorkspace404ResponseError) GetNameOk

func (o *CreateWorkspace404ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspace404ResponseError) HasMessage

func (o *CreateWorkspace404ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CreateWorkspace404ResponseError) HasName

HasName returns a boolean if a field has been set.

func (CreateWorkspace404ResponseError) MarshalJSON

func (o CreateWorkspace404ResponseError) MarshalJSON() ([]byte, error)

func (*CreateWorkspace404ResponseError) SetMessage

func (o *CreateWorkspace404ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CreateWorkspace404ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (CreateWorkspace404ResponseError) ToMap

func (o CreateWorkspace404ResponseError) ToMap() (map[string]interface{}, error)

type CreateWorkspaceRequest

type CreateWorkspaceRequest struct {
	Workspace *CreateWorkspaceRequestWorkspace `json:"workspace,omitempty"`
}

CreateWorkspaceRequest struct for CreateWorkspaceRequest

func NewCreateWorkspaceRequest

func NewCreateWorkspaceRequest() *CreateWorkspaceRequest

NewCreateWorkspaceRequest instantiates a new CreateWorkspaceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateWorkspaceRequestWithDefaults

func NewCreateWorkspaceRequestWithDefaults() *CreateWorkspaceRequest

NewCreateWorkspaceRequestWithDefaults instantiates a new CreateWorkspaceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateWorkspaceRequest) GetWorkspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*CreateWorkspaceRequest) GetWorkspaceOk

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspaceRequest) HasWorkspace

func (o *CreateWorkspaceRequest) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (CreateWorkspaceRequest) MarshalJSON

func (o CreateWorkspaceRequest) MarshalJSON() ([]byte, error)

func (*CreateWorkspaceRequest) SetWorkspace

SetWorkspace gets a reference to the given CreateWorkspaceRequestWorkspace and assigns it to the Workspace field.

func (CreateWorkspaceRequest) ToMap

func (o CreateWorkspaceRequest) ToMap() (map[string]interface{}, error)

type CreateWorkspaceRequestWorkspace

type CreateWorkspaceRequestWorkspace struct {
	// The workspace's description.
	Description *string `json:"description,omitempty"`
	// The workspace's name.
	Name string `json:"name"`
	// The type of workspace:  - `personal` — A personal workspace. - `team` — A team workspace.
	Type string `json:"type"`
}

CreateWorkspaceRequestWorkspace Information about the workspace.

func NewCreateWorkspaceRequestWorkspace

func NewCreateWorkspaceRequestWorkspace(name string, type_ string) *CreateWorkspaceRequestWorkspace

NewCreateWorkspaceRequestWorkspace instantiates a new CreateWorkspaceRequestWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateWorkspaceRequestWorkspaceWithDefaults

func NewCreateWorkspaceRequestWorkspaceWithDefaults() *CreateWorkspaceRequestWorkspace

NewCreateWorkspaceRequestWorkspaceWithDefaults instantiates a new CreateWorkspaceRequestWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateWorkspaceRequestWorkspace) GetDescription

func (o *CreateWorkspaceRequestWorkspace) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateWorkspaceRequestWorkspace) GetDescriptionOk

func (o *CreateWorkspaceRequestWorkspace) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspaceRequestWorkspace) GetName

GetName returns the Name field value

func (*CreateWorkspaceRequestWorkspace) GetNameOk

func (o *CreateWorkspaceRequestWorkspace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CreateWorkspaceRequestWorkspace) GetType

GetType returns the Type field value

func (*CreateWorkspaceRequestWorkspace) GetTypeOk

func (o *CreateWorkspaceRequestWorkspace) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*CreateWorkspaceRequestWorkspace) HasDescription

func (o *CreateWorkspaceRequestWorkspace) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (CreateWorkspaceRequestWorkspace) MarshalJSON

func (o CreateWorkspaceRequestWorkspace) MarshalJSON() ([]byte, error)

func (*CreateWorkspaceRequestWorkspace) SetDescription

func (o *CreateWorkspaceRequestWorkspace) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreateWorkspaceRequestWorkspace) SetName

SetName sets field value

func (*CreateWorkspaceRequestWorkspace) SetType

SetType sets field value

func (CreateWorkspaceRequestWorkspace) ToMap

func (o CreateWorkspaceRequestWorkspace) ToMap() (map[string]interface{}, error)

type DeleteEnvironment200Response

type DeleteEnvironment200Response struct {
	Environment *DeleteEnvironment200ResponseEnvironment `json:"environment,omitempty"`
}

DeleteEnvironment200Response struct for DeleteEnvironment200Response

func NewDeleteEnvironment200Response

func NewDeleteEnvironment200Response() *DeleteEnvironment200Response

NewDeleteEnvironment200Response instantiates a new DeleteEnvironment200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteEnvironment200ResponseWithDefaults

func NewDeleteEnvironment200ResponseWithDefaults() *DeleteEnvironment200Response

NewDeleteEnvironment200ResponseWithDefaults instantiates a new DeleteEnvironment200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteEnvironment200Response) GetEnvironment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*DeleteEnvironment200Response) GetEnvironmentOk

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteEnvironment200Response) HasEnvironment

func (o *DeleteEnvironment200Response) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (DeleteEnvironment200Response) MarshalJSON

func (o DeleteEnvironment200Response) MarshalJSON() ([]byte, error)

func (*DeleteEnvironment200Response) SetEnvironment

SetEnvironment gets a reference to the given DeleteEnvironment200ResponseEnvironment and assigns it to the Environment field.

func (DeleteEnvironment200Response) ToMap

func (o DeleteEnvironment200Response) ToMap() (map[string]interface{}, error)

type DeleteEnvironment200ResponseEnvironment

type DeleteEnvironment200ResponseEnvironment struct {
	// The deleted environment's ID.
	Id *string `json:"id,omitempty"`
	// The deleted environment's unique ID.
	Uid *string `json:"uid,omitempty"`
}

DeleteEnvironment200ResponseEnvironment struct for DeleteEnvironment200ResponseEnvironment

func NewDeleteEnvironment200ResponseEnvironment

func NewDeleteEnvironment200ResponseEnvironment() *DeleteEnvironment200ResponseEnvironment

NewDeleteEnvironment200ResponseEnvironment instantiates a new DeleteEnvironment200ResponseEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteEnvironment200ResponseEnvironmentWithDefaults

func NewDeleteEnvironment200ResponseEnvironmentWithDefaults() *DeleteEnvironment200ResponseEnvironment

NewDeleteEnvironment200ResponseEnvironmentWithDefaults instantiates a new DeleteEnvironment200ResponseEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteEnvironment200ResponseEnvironment) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*DeleteEnvironment200ResponseEnvironment) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteEnvironment200ResponseEnvironment) GetUid

GetUid returns the Uid field value if set, zero value otherwise.

func (*DeleteEnvironment200ResponseEnvironment) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteEnvironment200ResponseEnvironment) HasId

HasId returns a boolean if a field has been set.

func (*DeleteEnvironment200ResponseEnvironment) HasUid

HasUid returns a boolean if a field has been set.

func (DeleteEnvironment200ResponseEnvironment) MarshalJSON

func (o DeleteEnvironment200ResponseEnvironment) MarshalJSON() ([]byte, error)

func (*DeleteEnvironment200ResponseEnvironment) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*DeleteEnvironment200ResponseEnvironment) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field.

func (DeleteEnvironment200ResponseEnvironment) ToMap

func (o DeleteEnvironment200ResponseEnvironment) ToMap() (map[string]interface{}, error)

type DeleteWorkspace200Response

type DeleteWorkspace200Response struct {
	Workspace *DeleteWorkspace200ResponseWorkspace `json:"workspace,omitempty"`
}

DeleteWorkspace200Response struct for DeleteWorkspace200Response

func NewDeleteWorkspace200Response

func NewDeleteWorkspace200Response() *DeleteWorkspace200Response

NewDeleteWorkspace200Response instantiates a new DeleteWorkspace200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteWorkspace200ResponseWithDefaults

func NewDeleteWorkspace200ResponseWithDefaults() *DeleteWorkspace200Response

NewDeleteWorkspace200ResponseWithDefaults instantiates a new DeleteWorkspace200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteWorkspace200Response) GetWorkspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*DeleteWorkspace200Response) GetWorkspaceOk

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteWorkspace200Response) HasWorkspace

func (o *DeleteWorkspace200Response) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (DeleteWorkspace200Response) MarshalJSON

func (o DeleteWorkspace200Response) MarshalJSON() ([]byte, error)

func (*DeleteWorkspace200Response) SetWorkspace

SetWorkspace gets a reference to the given DeleteWorkspace200ResponseWorkspace and assigns it to the Workspace field.

func (DeleteWorkspace200Response) ToMap

func (o DeleteWorkspace200Response) ToMap() (map[string]interface{}, error)

type DeleteWorkspace200ResponseWorkspace

type DeleteWorkspace200ResponseWorkspace struct {
	// The workspace's ID.
	Id *string `json:"id,omitempty"`
}

DeleteWorkspace200ResponseWorkspace Information about the deleted workspace.

func NewDeleteWorkspace200ResponseWorkspace

func NewDeleteWorkspace200ResponseWorkspace() *DeleteWorkspace200ResponseWorkspace

NewDeleteWorkspace200ResponseWorkspace instantiates a new DeleteWorkspace200ResponseWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteWorkspace200ResponseWorkspaceWithDefaults

func NewDeleteWorkspace200ResponseWorkspaceWithDefaults() *DeleteWorkspace200ResponseWorkspace

NewDeleteWorkspace200ResponseWorkspaceWithDefaults instantiates a new DeleteWorkspace200ResponseWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteWorkspace200ResponseWorkspace) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*DeleteWorkspace200ResponseWorkspace) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteWorkspace200ResponseWorkspace) HasId

HasId returns a boolean if a field has been set.

func (DeleteWorkspace200ResponseWorkspace) MarshalJSON

func (o DeleteWorkspace200ResponseWorkspace) MarshalJSON() ([]byte, error)

func (*DeleteWorkspace200ResponseWorkspace) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (DeleteWorkspace200ResponseWorkspace) ToMap

func (o DeleteWorkspace200ResponseWorkspace) ToMap() (map[string]interface{}, error)

type EnvironmentsApiService

type EnvironmentsApiService service

EnvironmentsApiService EnvironmentsApi service

func (*EnvironmentsApiService) AllEnvironments

AllEnvironments Get all environments

Gets information about all of your [environments](https://learning.postman.com/docs/sending-requests/managing-environments/).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAllEnvironmentsRequest

func (*EnvironmentsApiService) AllEnvironmentsExecute

Execute executes the request

@return AllEnvironments200Response

func (*EnvironmentsApiService) CreateEnvironment

CreateEnvironment Create an environment

Creates an environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateEnvironmentRequest

func (*EnvironmentsApiService) CreateEnvironmentExecute

Execute executes the request

@return CreateEnvironment200Response

func (*EnvironmentsApiService) DeleteEnvironment

func (a *EnvironmentsApiService) DeleteEnvironment(ctx context.Context, environmentId string) ApiDeleteEnvironmentRequest

DeleteEnvironment Delete an environment

Deletes an environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The environment's ID.
@return ApiDeleteEnvironmentRequest

func (*EnvironmentsApiService) DeleteEnvironmentExecute

Execute executes the request

@return DeleteEnvironment200Response

func (*EnvironmentsApiService) SingleEnvironment

func (a *EnvironmentsApiService) SingleEnvironment(ctx context.Context, environmentId string) ApiSingleEnvironmentRequest

SingleEnvironment Get an environment

Gets information about an environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The environment's ID.
@return ApiSingleEnvironmentRequest

func (*EnvironmentsApiService) SingleEnvironmentExecute

Execute executes the request

@return SingleEnvironment200Response

func (*EnvironmentsApiService) UpdateEnvironment

func (a *EnvironmentsApiService) UpdateEnvironment(ctx context.Context, environmentId string) ApiUpdateEnvironmentRequest

UpdateEnvironment Update an environment

Updates an environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param environmentId The environment's ID.
@return ApiUpdateEnvironmentRequest

func (*EnvironmentsApiService) UpdateEnvironmentExecute

Execute executes the request

@return UpdateEnvironment200Response

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type ImportExportFile

type ImportExportFile struct {
	// A file containing a valid user's export .zip file.
	Input *os.File `json:"input"`
	// The `file` type value.
	Type string `json:"type"`
}

ImportExportFile struct for ImportExportFile

func NewImportExportFile

func NewImportExportFile(input *os.File, type_ string) *ImportExportFile

NewImportExportFile instantiates a new ImportExportFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewImportExportFileWithDefaults

func NewImportExportFileWithDefaults() *ImportExportFile

NewImportExportFileWithDefaults instantiates a new ImportExportFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ImportExportFile) GetInput

func (o *ImportExportFile) GetInput() *os.File

GetInput returns the Input field value

func (*ImportExportFile) GetInputOk

func (o *ImportExportFile) GetInputOk() (**os.File, bool)

GetInputOk returns a tuple with the Input field value and a boolean to check if the value has been set.

func (*ImportExportFile) GetType

func (o *ImportExportFile) GetType() string

GetType returns the Type field value

func (*ImportExportFile) GetTypeOk

func (o *ImportExportFile) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (ImportExportFile) MarshalJSON

func (o ImportExportFile) MarshalJSON() ([]byte, error)

func (*ImportExportFile) SetInput

func (o *ImportExportFile) SetInput(v *os.File)

SetInput sets field value

func (*ImportExportFile) SetType

func (o *ImportExportFile) SetType(v string)

SetType sets field value

func (ImportExportFile) ToMap

func (o ImportExportFile) ToMap() (map[string]interface{}, error)

type JsonSchema

type JsonSchema struct {
	// An object that contains a valid JSON OpenAPI definition. For more information, read the [OpenAPI documentation](https://swagger.io/docs/specification/basic-structure/).
	Input map[string]interface{} `json:"input,omitempty"`
	// The OpenAPI definition type.
	Type *string `json:"type,omitempty"`
}

JsonSchema struct for JsonSchema

func NewJsonSchema

func NewJsonSchema() *JsonSchema

NewJsonSchema instantiates a new JsonSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJsonSchemaWithDefaults

func NewJsonSchemaWithDefaults() *JsonSchema

NewJsonSchemaWithDefaults instantiates a new JsonSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*JsonSchema) GetInput

func (o *JsonSchema) GetInput() map[string]interface{}

GetInput returns the Input field value if set, zero value otherwise.

func (*JsonSchema) GetInputOk

func (o *JsonSchema) GetInputOk() (map[string]interface{}, bool)

GetInputOk returns a tuple with the Input field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonSchema) GetType

func (o *JsonSchema) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JsonSchema) GetTypeOk

func (o *JsonSchema) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonSchema) HasInput

func (o *JsonSchema) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*JsonSchema) HasType

func (o *JsonSchema) HasType() bool

HasType returns a boolean if a field has been set.

func (JsonSchema) MarshalJSON

func (o JsonSchema) MarshalJSON() ([]byte, error)

func (*JsonSchema) SetInput

func (o *JsonSchema) SetInput(v map[string]interface{})

SetInput gets a reference to the given map[string]interface{} and assigns it to the Input field.

func (*JsonSchema) SetType

func (o *JsonSchema) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (JsonSchema) ToMap

func (o JsonSchema) ToMap() (map[string]interface{}, error)

type JsonStringified

type JsonStringified struct {
	// The stringified OpenAPI definition.
	Input *string `json:"input,omitempty"`
	// The OpenAPI definition type.
	Type *string `json:"type,omitempty"`
}

JsonStringified struct for JsonStringified

func NewJsonStringified

func NewJsonStringified() *JsonStringified

NewJsonStringified instantiates a new JsonStringified object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJsonStringifiedWithDefaults

func NewJsonStringifiedWithDefaults() *JsonStringified

NewJsonStringifiedWithDefaults instantiates a new JsonStringified object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*JsonStringified) GetInput

func (o *JsonStringified) GetInput() string

GetInput returns the Input field value if set, zero value otherwise.

func (*JsonStringified) GetInputOk

func (o *JsonStringified) GetInputOk() (*string, bool)

GetInputOk returns a tuple with the Input field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonStringified) GetType

func (o *JsonStringified) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JsonStringified) GetTypeOk

func (o *JsonStringified) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonStringified) HasInput

func (o *JsonStringified) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*JsonStringified) HasType

func (o *JsonStringified) HasType() bool

HasType returns a boolean if a field has been set.

func (JsonStringified) MarshalJSON

func (o JsonStringified) MarshalJSON() ([]byte, error)

func (*JsonStringified) SetInput

func (o *JsonStringified) SetInput(v string)

SetInput gets a reference to the given string and assigns it to the Input field.

func (*JsonStringified) SetType

func (o *JsonStringified) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (JsonStringified) ToMap

func (o JsonStringified) ToMap() (map[string]interface{}, error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableAllEnvironments200Response

type NullableAllEnvironments200Response struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments200Response) Get

func (NullableAllEnvironments200Response) IsSet

func (NullableAllEnvironments200Response) MarshalJSON

func (v NullableAllEnvironments200Response) MarshalJSON() ([]byte, error)

func (*NullableAllEnvironments200Response) Set

func (*NullableAllEnvironments200Response) UnmarshalJSON

func (v *NullableAllEnvironments200Response) UnmarshalJSON(src []byte) error

func (*NullableAllEnvironments200Response) Unset

type NullableAllEnvironments200ResponseEnvironmentsInner

type NullableAllEnvironments200ResponseEnvironmentsInner struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments200ResponseEnvironmentsInner) Get

func (NullableAllEnvironments200ResponseEnvironmentsInner) IsSet

func (NullableAllEnvironments200ResponseEnvironmentsInner) MarshalJSON

func (*NullableAllEnvironments200ResponseEnvironmentsInner) Set

func (*NullableAllEnvironments200ResponseEnvironmentsInner) UnmarshalJSON

func (*NullableAllEnvironments200ResponseEnvironmentsInner) Unset

type NullableAllEnvironments401Response

type NullableAllEnvironments401Response struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments401Response) Get

func (NullableAllEnvironments401Response) IsSet

func (NullableAllEnvironments401Response) MarshalJSON

func (v NullableAllEnvironments401Response) MarshalJSON() ([]byte, error)

func (*NullableAllEnvironments401Response) Set

func (*NullableAllEnvironments401Response) UnmarshalJSON

func (v *NullableAllEnvironments401Response) UnmarshalJSON(src []byte) error

func (*NullableAllEnvironments401Response) Unset

type NullableAllEnvironments401ResponseError

type NullableAllEnvironments401ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments401ResponseError) Get

func (NullableAllEnvironments401ResponseError) IsSet

func (NullableAllEnvironments401ResponseError) MarshalJSON

func (v NullableAllEnvironments401ResponseError) MarshalJSON() ([]byte, error)

func (*NullableAllEnvironments401ResponseError) Set

func (*NullableAllEnvironments401ResponseError) UnmarshalJSON

func (v *NullableAllEnvironments401ResponseError) UnmarshalJSON(src []byte) error

func (*NullableAllEnvironments401ResponseError) Unset

type NullableAllEnvironments404Response

type NullableAllEnvironments404Response struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments404Response) Get

func (NullableAllEnvironments404Response) IsSet

func (NullableAllEnvironments404Response) MarshalJSON

func (v NullableAllEnvironments404Response) MarshalJSON() ([]byte, error)

func (*NullableAllEnvironments404Response) Set

func (*NullableAllEnvironments404Response) UnmarshalJSON

func (v *NullableAllEnvironments404Response) UnmarshalJSON(src []byte) error

func (*NullableAllEnvironments404Response) Unset

type NullableAllEnvironments404ResponseError

type NullableAllEnvironments404ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments404ResponseError) Get

func (NullableAllEnvironments404ResponseError) IsSet

func (NullableAllEnvironments404ResponseError) MarshalJSON

func (v NullableAllEnvironments404ResponseError) MarshalJSON() ([]byte, error)

func (*NullableAllEnvironments404ResponseError) Set

func (*NullableAllEnvironments404ResponseError) UnmarshalJSON

func (v *NullableAllEnvironments404ResponseError) UnmarshalJSON(src []byte) error

func (*NullableAllEnvironments404ResponseError) Unset

type NullableAllEnvironments429Response

type NullableAllEnvironments429Response struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments429Response) Get

func (NullableAllEnvironments429Response) IsSet

func (NullableAllEnvironments429Response) MarshalJSON

func (v NullableAllEnvironments429Response) MarshalJSON() ([]byte, error)

func (*NullableAllEnvironments429Response) Set

func (*NullableAllEnvironments429Response) UnmarshalJSON

func (v *NullableAllEnvironments429Response) UnmarshalJSON(src []byte) error

func (*NullableAllEnvironments429Response) Unset

type NullableAllEnvironments500Response

type NullableAllEnvironments500Response struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments500Response) Get

func (NullableAllEnvironments500Response) IsSet

func (NullableAllEnvironments500Response) MarshalJSON

func (v NullableAllEnvironments500Response) MarshalJSON() ([]byte, error)

func (*NullableAllEnvironments500Response) Set

func (*NullableAllEnvironments500Response) UnmarshalJSON

func (v *NullableAllEnvironments500Response) UnmarshalJSON(src []byte) error

func (*NullableAllEnvironments500Response) Unset

type NullableAllEnvironments500ResponseError

type NullableAllEnvironments500ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableAllEnvironments500ResponseError) Get

func (NullableAllEnvironments500ResponseError) IsSet

func (NullableAllEnvironments500ResponseError) MarshalJSON

func (v NullableAllEnvironments500ResponseError) MarshalJSON() ([]byte, error)

func (*NullableAllEnvironments500ResponseError) Set

func (*NullableAllEnvironments500ResponseError) UnmarshalJSON

func (v *NullableAllEnvironments500ResponseError) UnmarshalJSON(src []byte) error

func (*NullableAllEnvironments500ResponseError) Unset

type NullableAllWorkspaces200Response

type NullableAllWorkspaces200Response struct {
	// contains filtered or unexported fields
}

func (NullableAllWorkspaces200Response) Get

func (NullableAllWorkspaces200Response) IsSet

func (NullableAllWorkspaces200Response) MarshalJSON

func (v NullableAllWorkspaces200Response) MarshalJSON() ([]byte, error)

func (*NullableAllWorkspaces200Response) Set

func (*NullableAllWorkspaces200Response) UnmarshalJSON

func (v *NullableAllWorkspaces200Response) UnmarshalJSON(src []byte) error

func (*NullableAllWorkspaces200Response) Unset

type NullableAllWorkspaces200ResponseWorkspacesInner

type NullableAllWorkspaces200ResponseWorkspacesInner struct {
	// contains filtered or unexported fields
}

func (NullableAllWorkspaces200ResponseWorkspacesInner) Get

func (NullableAllWorkspaces200ResponseWorkspacesInner) IsSet

func (NullableAllWorkspaces200ResponseWorkspacesInner) MarshalJSON

func (*NullableAllWorkspaces200ResponseWorkspacesInner) Set

func (*NullableAllWorkspaces200ResponseWorkspacesInner) UnmarshalJSON

func (*NullableAllWorkspaces200ResponseWorkspacesInner) Unset

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCreateEnvironment200Response

type NullableCreateEnvironment200Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironment200Response) Get

func (NullableCreateEnvironment200Response) IsSet

func (NullableCreateEnvironment200Response) MarshalJSON

func (v NullableCreateEnvironment200Response) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironment200Response) Set

func (*NullableCreateEnvironment200Response) UnmarshalJSON

func (v *NullableCreateEnvironment200Response) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironment200Response) Unset

type NullableCreateEnvironment200ResponseEnvironment

type NullableCreateEnvironment200ResponseEnvironment struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironment200ResponseEnvironment) Get

func (NullableCreateEnvironment200ResponseEnvironment) IsSet

func (NullableCreateEnvironment200ResponseEnvironment) MarshalJSON

func (*NullableCreateEnvironment200ResponseEnvironment) Set

func (*NullableCreateEnvironment200ResponseEnvironment) UnmarshalJSON

func (*NullableCreateEnvironment200ResponseEnvironment) Unset

type NullableCreateEnvironment400Response

type NullableCreateEnvironment400Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironment400Response) Get

func (NullableCreateEnvironment400Response) IsSet

func (NullableCreateEnvironment400Response) MarshalJSON

func (v NullableCreateEnvironment400Response) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironment400Response) Set

func (*NullableCreateEnvironment400Response) UnmarshalJSON

func (v *NullableCreateEnvironment400Response) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironment400Response) Unset

type NullableCreateEnvironment400ResponseError

type NullableCreateEnvironment400ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironment400ResponseError) Get

func (NullableCreateEnvironment400ResponseError) IsSet

func (NullableCreateEnvironment400ResponseError) MarshalJSON

func (*NullableCreateEnvironment400ResponseError) Set

func (*NullableCreateEnvironment400ResponseError) UnmarshalJSON

func (v *NullableCreateEnvironment400ResponseError) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironment400ResponseError) Unset

type NullableCreateEnvironment403Response

type NullableCreateEnvironment403Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironment403Response) Get

func (NullableCreateEnvironment403Response) IsSet

func (NullableCreateEnvironment403Response) MarshalJSON

func (v NullableCreateEnvironment403Response) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironment403Response) Set

func (*NullableCreateEnvironment403Response) UnmarshalJSON

func (v *NullableCreateEnvironment403Response) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironment403Response) Unset

type NullableCreateEnvironment403ResponseError

type NullableCreateEnvironment403ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironment403ResponseError) Get

func (NullableCreateEnvironment403ResponseError) IsSet

func (NullableCreateEnvironment403ResponseError) MarshalJSON

func (*NullableCreateEnvironment403ResponseError) Set

func (*NullableCreateEnvironment403ResponseError) UnmarshalJSON

func (v *NullableCreateEnvironment403ResponseError) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironment403ResponseError) Unset

type NullableCreateEnvironmentRequest

type NullableCreateEnvironmentRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironmentRequest) Get

func (NullableCreateEnvironmentRequest) IsSet

func (NullableCreateEnvironmentRequest) MarshalJSON

func (v NullableCreateEnvironmentRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateEnvironmentRequest) Set

func (*NullableCreateEnvironmentRequest) UnmarshalJSON

func (v *NullableCreateEnvironmentRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironmentRequest) Unset

type NullableCreateEnvironmentRequestEnvironment

type NullableCreateEnvironmentRequestEnvironment struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironmentRequestEnvironment) Get

func (NullableCreateEnvironmentRequestEnvironment) IsSet

func (NullableCreateEnvironmentRequestEnvironment) MarshalJSON

func (*NullableCreateEnvironmentRequestEnvironment) Set

func (*NullableCreateEnvironmentRequestEnvironment) UnmarshalJSON

func (v *NullableCreateEnvironmentRequestEnvironment) UnmarshalJSON(src []byte) error

func (*NullableCreateEnvironmentRequestEnvironment) Unset

type NullableCreateEnvironmentRequestEnvironmentValuesInner

type NullableCreateEnvironmentRequestEnvironmentValuesInner struct {
	// contains filtered or unexported fields
}

func (NullableCreateEnvironmentRequestEnvironmentValuesInner) Get

func (NullableCreateEnvironmentRequestEnvironmentValuesInner) IsSet

func (NullableCreateEnvironmentRequestEnvironmentValuesInner) MarshalJSON

func (*NullableCreateEnvironmentRequestEnvironmentValuesInner) Set

func (*NullableCreateEnvironmentRequestEnvironmentValuesInner) UnmarshalJSON

func (*NullableCreateEnvironmentRequestEnvironmentValuesInner) Unset

type NullableCreatePANApi

type NullableCreatePANApi struct {
	// contains filtered or unexported fields
}

func NewNullableCreatePANApi

func NewNullableCreatePANApi(val *CreatePANApi) *NullableCreatePANApi

func (NullableCreatePANApi) Get

func (NullableCreatePANApi) IsSet

func (v NullableCreatePANApi) IsSet() bool

func (NullableCreatePANApi) MarshalJSON

func (v NullableCreatePANApi) MarshalJSON() ([]byte, error)

func (*NullableCreatePANApi) Set

func (v *NullableCreatePANApi) Set(val *CreatePANApi)

func (*NullableCreatePANApi) UnmarshalJSON

func (v *NullableCreatePANApi) UnmarshalJSON(src []byte) error

func (*NullableCreatePANApi) Unset

func (v *NullableCreatePANApi) Unset()

type NullableCreatePANApiApi

type NullableCreatePANApiApi struct {
	// contains filtered or unexported fields
}

func NewNullableCreatePANApiApi

func NewNullableCreatePANApiApi(val *CreatePANApiApi) *NullableCreatePANApiApi

func (NullableCreatePANApiApi) Get

func (NullableCreatePANApiApi) IsSet

func (v NullableCreatePANApiApi) IsSet() bool

func (NullableCreatePANApiApi) MarshalJSON

func (v NullableCreatePANApiApi) MarshalJSON() ([]byte, error)

func (*NullableCreatePANApiApi) Set

func (*NullableCreatePANApiApi) UnmarshalJSON

func (v *NullableCreatePANApiApi) UnmarshalJSON(src []byte) error

func (*NullableCreatePANApiApi) Unset

func (v *NullableCreatePANApiApi) Unset()

type NullableCreatePANCollection

type NullableCreatePANCollection struct {
	// contains filtered or unexported fields
}

func NewNullableCreatePANCollection

func NewNullableCreatePANCollection(val *CreatePANCollection) *NullableCreatePANCollection

func (NullableCreatePANCollection) Get

func (NullableCreatePANCollection) IsSet

func (NullableCreatePANCollection) MarshalJSON

func (v NullableCreatePANCollection) MarshalJSON() ([]byte, error)

func (*NullableCreatePANCollection) Set

func (*NullableCreatePANCollection) UnmarshalJSON

func (v *NullableCreatePANCollection) UnmarshalJSON(src []byte) error

func (*NullableCreatePANCollection) Unset

func (v *NullableCreatePANCollection) Unset()

type NullableCreatePANCollectionCollection

type NullableCreatePANCollectionCollection struct {
	// contains filtered or unexported fields
}

func (NullableCreatePANCollectionCollection) Get

func (NullableCreatePANCollectionCollection) IsSet

func (NullableCreatePANCollectionCollection) MarshalJSON

func (v NullableCreatePANCollectionCollection) MarshalJSON() ([]byte, error)

func (*NullableCreatePANCollectionCollection) Set

func (*NullableCreatePANCollectionCollection) UnmarshalJSON

func (v *NullableCreatePANCollectionCollection) UnmarshalJSON(src []byte) error

func (*NullableCreatePANCollectionCollection) Unset

type NullableCreatePANFolder

type NullableCreatePANFolder struct {
	// contains filtered or unexported fields
}

func NewNullableCreatePANFolder

func NewNullableCreatePANFolder(val *CreatePANFolder) *NullableCreatePANFolder

func (NullableCreatePANFolder) Get

func (NullableCreatePANFolder) IsSet

func (v NullableCreatePANFolder) IsSet() bool

func (NullableCreatePANFolder) MarshalJSON

func (v NullableCreatePANFolder) MarshalJSON() ([]byte, error)

func (*NullableCreatePANFolder) Set

func (*NullableCreatePANFolder) UnmarshalJSON

func (v *NullableCreatePANFolder) UnmarshalJSON(src []byte) error

func (*NullableCreatePANFolder) Unset

func (v *NullableCreatePANFolder) Unset()

type NullableCreatePANFolderFolder

type NullableCreatePANFolderFolder struct {
	// contains filtered or unexported fields
}

func (NullableCreatePANFolderFolder) Get

func (NullableCreatePANFolderFolder) IsSet

func (NullableCreatePANFolderFolder) MarshalJSON

func (v NullableCreatePANFolderFolder) MarshalJSON() ([]byte, error)

func (*NullableCreatePANFolderFolder) Set

func (*NullableCreatePANFolderFolder) UnmarshalJSON

func (v *NullableCreatePANFolderFolder) UnmarshalJSON(src []byte) error

func (*NullableCreatePANFolderFolder) Unset

func (v *NullableCreatePANFolderFolder) Unset()

type NullableCreatePANWorkspace

type NullableCreatePANWorkspace struct {
	// contains filtered or unexported fields
}

func NewNullableCreatePANWorkspace

func NewNullableCreatePANWorkspace(val *CreatePANWorkspace) *NullableCreatePANWorkspace

func (NullableCreatePANWorkspace) Get

func (NullableCreatePANWorkspace) IsSet

func (v NullableCreatePANWorkspace) IsSet() bool

func (NullableCreatePANWorkspace) MarshalJSON

func (v NullableCreatePANWorkspace) MarshalJSON() ([]byte, error)

func (*NullableCreatePANWorkspace) Set

func (*NullableCreatePANWorkspace) UnmarshalJSON

func (v *NullableCreatePANWorkspace) UnmarshalJSON(src []byte) error

func (*NullableCreatePANWorkspace) Unset

func (v *NullableCreatePANWorkspace) Unset()

type NullableCreatePANWorkspaceWorkspace

type NullableCreatePANWorkspaceWorkspace struct {
	// contains filtered or unexported fields
}

func (NullableCreatePANWorkspaceWorkspace) Get

func (NullableCreatePANWorkspaceWorkspace) IsSet

func (NullableCreatePANWorkspaceWorkspace) MarshalJSON

func (v NullableCreatePANWorkspaceWorkspace) MarshalJSON() ([]byte, error)

func (*NullableCreatePANWorkspaceWorkspace) Set

func (*NullableCreatePANWorkspaceWorkspace) UnmarshalJSON

func (v *NullableCreatePANWorkspaceWorkspace) UnmarshalJSON(src []byte) error

func (*NullableCreatePANWorkspaceWorkspace) Unset

type NullableCreateWorkspace200Response

type NullableCreateWorkspace200Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateWorkspace200Response) Get

func (NullableCreateWorkspace200Response) IsSet

func (NullableCreateWorkspace200Response) MarshalJSON

func (v NullableCreateWorkspace200Response) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspace200Response) Set

func (*NullableCreateWorkspace200Response) UnmarshalJSON

func (v *NullableCreateWorkspace200Response) UnmarshalJSON(src []byte) error

func (*NullableCreateWorkspace200Response) Unset

type NullableCreateWorkspace200ResponseWorkspace

type NullableCreateWorkspace200ResponseWorkspace struct {
	// contains filtered or unexported fields
}

func (NullableCreateWorkspace200ResponseWorkspace) Get

func (NullableCreateWorkspace200ResponseWorkspace) IsSet

func (NullableCreateWorkspace200ResponseWorkspace) MarshalJSON

func (*NullableCreateWorkspace200ResponseWorkspace) Set

func (*NullableCreateWorkspace200ResponseWorkspace) UnmarshalJSON

func (v *NullableCreateWorkspace200ResponseWorkspace) UnmarshalJSON(src []byte) error

func (*NullableCreateWorkspace200ResponseWorkspace) Unset

type NullableCreateWorkspace404Response

type NullableCreateWorkspace404Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateWorkspace404Response) Get

func (NullableCreateWorkspace404Response) IsSet

func (NullableCreateWorkspace404Response) MarshalJSON

func (v NullableCreateWorkspace404Response) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspace404Response) Set

func (*NullableCreateWorkspace404Response) UnmarshalJSON

func (v *NullableCreateWorkspace404Response) UnmarshalJSON(src []byte) error

func (*NullableCreateWorkspace404Response) Unset

type NullableCreateWorkspace404ResponseError

type NullableCreateWorkspace404ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableCreateWorkspace404ResponseError) Get

func (NullableCreateWorkspace404ResponseError) IsSet

func (NullableCreateWorkspace404ResponseError) MarshalJSON

func (v NullableCreateWorkspace404ResponseError) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspace404ResponseError) Set

func (*NullableCreateWorkspace404ResponseError) UnmarshalJSON

func (v *NullableCreateWorkspace404ResponseError) UnmarshalJSON(src []byte) error

func (*NullableCreateWorkspace404ResponseError) Unset

type NullableCreateWorkspaceRequest

type NullableCreateWorkspaceRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateWorkspaceRequest) Get

func (NullableCreateWorkspaceRequest) IsSet

func (NullableCreateWorkspaceRequest) MarshalJSON

func (v NullableCreateWorkspaceRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspaceRequest) Set

func (*NullableCreateWorkspaceRequest) UnmarshalJSON

func (v *NullableCreateWorkspaceRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateWorkspaceRequest) Unset

func (v *NullableCreateWorkspaceRequest) Unset()

type NullableCreateWorkspaceRequestWorkspace

type NullableCreateWorkspaceRequestWorkspace struct {
	// contains filtered or unexported fields
}

func (NullableCreateWorkspaceRequestWorkspace) Get

func (NullableCreateWorkspaceRequestWorkspace) IsSet

func (NullableCreateWorkspaceRequestWorkspace) MarshalJSON

func (v NullableCreateWorkspaceRequestWorkspace) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspaceRequestWorkspace) Set

func (*NullableCreateWorkspaceRequestWorkspace) UnmarshalJSON

func (v *NullableCreateWorkspaceRequestWorkspace) UnmarshalJSON(src []byte) error

func (*NullableCreateWorkspaceRequestWorkspace) Unset

type NullableDeleteEnvironment200Response

type NullableDeleteEnvironment200Response struct {
	// contains filtered or unexported fields
}

func (NullableDeleteEnvironment200Response) Get

func (NullableDeleteEnvironment200Response) IsSet

func (NullableDeleteEnvironment200Response) MarshalJSON

func (v NullableDeleteEnvironment200Response) MarshalJSON() ([]byte, error)

func (*NullableDeleteEnvironment200Response) Set

func (*NullableDeleteEnvironment200Response) UnmarshalJSON

func (v *NullableDeleteEnvironment200Response) UnmarshalJSON(src []byte) error

func (*NullableDeleteEnvironment200Response) Unset

type NullableDeleteEnvironment200ResponseEnvironment

type NullableDeleteEnvironment200ResponseEnvironment struct {
	// contains filtered or unexported fields
}

func (NullableDeleteEnvironment200ResponseEnvironment) Get

func (NullableDeleteEnvironment200ResponseEnvironment) IsSet

func (NullableDeleteEnvironment200ResponseEnvironment) MarshalJSON

func (*NullableDeleteEnvironment200ResponseEnvironment) Set

func (*NullableDeleteEnvironment200ResponseEnvironment) UnmarshalJSON

func (*NullableDeleteEnvironment200ResponseEnvironment) Unset

type NullableDeleteWorkspace200Response

type NullableDeleteWorkspace200Response struct {
	// contains filtered or unexported fields
}

func (NullableDeleteWorkspace200Response) Get

func (NullableDeleteWorkspace200Response) IsSet

func (NullableDeleteWorkspace200Response) MarshalJSON

func (v NullableDeleteWorkspace200Response) MarshalJSON() ([]byte, error)

func (*NullableDeleteWorkspace200Response) Set

func (*NullableDeleteWorkspace200Response) UnmarshalJSON

func (v *NullableDeleteWorkspace200Response) UnmarshalJSON(src []byte) error

func (*NullableDeleteWorkspace200Response) Unset

type NullableDeleteWorkspace200ResponseWorkspace

type NullableDeleteWorkspace200ResponseWorkspace struct {
	// contains filtered or unexported fields
}

func (NullableDeleteWorkspace200ResponseWorkspace) Get

func (NullableDeleteWorkspace200ResponseWorkspace) IsSet

func (NullableDeleteWorkspace200ResponseWorkspace) MarshalJSON

func (*NullableDeleteWorkspace200ResponseWorkspace) Set

func (*NullableDeleteWorkspace200ResponseWorkspace) UnmarshalJSON

func (v *NullableDeleteWorkspace200ResponseWorkspace) UnmarshalJSON(src []byte) error

func (*NullableDeleteWorkspace200ResponseWorkspace) Unset

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableImportExportFile

type NullableImportExportFile struct {
	// contains filtered or unexported fields
}

func NewNullableImportExportFile

func NewNullableImportExportFile(val *ImportExportFile) *NullableImportExportFile

func (NullableImportExportFile) Get

func (NullableImportExportFile) IsSet

func (v NullableImportExportFile) IsSet() bool

func (NullableImportExportFile) MarshalJSON

func (v NullableImportExportFile) MarshalJSON() ([]byte, error)

func (*NullableImportExportFile) Set

func (*NullableImportExportFile) UnmarshalJSON

func (v *NullableImportExportFile) UnmarshalJSON(src []byte) error

func (*NullableImportExportFile) Unset

func (v *NullableImportExportFile) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableJsonSchema

type NullableJsonSchema struct {
	// contains filtered or unexported fields
}

func NewNullableJsonSchema

func NewNullableJsonSchema(val *JsonSchema) *NullableJsonSchema

func (NullableJsonSchema) Get

func (v NullableJsonSchema) Get() *JsonSchema

func (NullableJsonSchema) IsSet

func (v NullableJsonSchema) IsSet() bool

func (NullableJsonSchema) MarshalJSON

func (v NullableJsonSchema) MarshalJSON() ([]byte, error)

func (*NullableJsonSchema) Set

func (v *NullableJsonSchema) Set(val *JsonSchema)

func (*NullableJsonSchema) UnmarshalJSON

func (v *NullableJsonSchema) UnmarshalJSON(src []byte) error

func (*NullableJsonSchema) Unset

func (v *NullableJsonSchema) Unset()

type NullableJsonStringified

type NullableJsonStringified struct {
	// contains filtered or unexported fields
}

func NewNullableJsonStringified

func NewNullableJsonStringified(val *JsonStringified) *NullableJsonStringified

func (NullableJsonStringified) Get

func (NullableJsonStringified) IsSet

func (v NullableJsonStringified) IsSet() bool

func (NullableJsonStringified) MarshalJSON

func (v NullableJsonStringified) MarshalJSON() ([]byte, error)

func (*NullableJsonStringified) Set

func (*NullableJsonStringified) UnmarshalJSON

func (v *NullableJsonStringified) UnmarshalJSON(src []byte) error

func (*NullableJsonStringified) Unset

func (v *NullableJsonStringified) Unset()

type NullablePANElementCreated

type NullablePANElementCreated struct {
	// contains filtered or unexported fields
}

func NewNullablePANElementCreated

func NewNullablePANElementCreated(val *PANElementCreated) *NullablePANElementCreated

func (NullablePANElementCreated) Get

func (NullablePANElementCreated) IsSet

func (v NullablePANElementCreated) IsSet() bool

func (NullablePANElementCreated) MarshalJSON

func (v NullablePANElementCreated) MarshalJSON() ([]byte, error)

func (*NullablePANElementCreated) Set

func (*NullablePANElementCreated) UnmarshalJSON

func (v *NullablePANElementCreated) UnmarshalJSON(src []byte) error

func (*NullablePANElementCreated) Unset

func (v *NullablePANElementCreated) Unset()

type NullablePANFolderCreated

type NullablePANFolderCreated struct {
	// contains filtered or unexported fields
}

func NewNullablePANFolderCreated

func NewNullablePANFolderCreated(val *PANFolderCreated) *NullablePANFolderCreated

func (NullablePANFolderCreated) Get

func (NullablePANFolderCreated) IsSet

func (v NullablePANFolderCreated) IsSet() bool

func (NullablePANFolderCreated) MarshalJSON

func (v NullablePANFolderCreated) MarshalJSON() ([]byte, error)

func (*NullablePANFolderCreated) Set

func (*NullablePANFolderCreated) UnmarshalJSON

func (v *NullablePANFolderCreated) UnmarshalJSON(src []byte) error

func (*NullablePANFolderCreated) Unset

func (v *NullablePANFolderCreated) Unset()

type NullableScimGroupResource

type NullableScimGroupResource struct {
	// contains filtered or unexported fields
}

func NewNullableScimGroupResource

func NewNullableScimGroupResource(val *ScimGroupResource) *NullableScimGroupResource

func (NullableScimGroupResource) Get

func (NullableScimGroupResource) IsSet

func (v NullableScimGroupResource) IsSet() bool

func (NullableScimGroupResource) MarshalJSON

func (v NullableScimGroupResource) MarshalJSON() ([]byte, error)

func (*NullableScimGroupResource) Set

func (*NullableScimGroupResource) UnmarshalJSON

func (v *NullableScimGroupResource) UnmarshalJSON(src []byte) error

func (*NullableScimGroupResource) Unset

func (v *NullableScimGroupResource) Unset()

type NullableScimGroupResourceMembers

type NullableScimGroupResourceMembers struct {
	// contains filtered or unexported fields
}

func (NullableScimGroupResourceMembers) Get

func (NullableScimGroupResourceMembers) IsSet

func (NullableScimGroupResourceMembers) MarshalJSON

func (v NullableScimGroupResourceMembers) MarshalJSON() ([]byte, error)

func (*NullableScimGroupResourceMembers) Set

func (*NullableScimGroupResourceMembers) UnmarshalJSON

func (v *NullableScimGroupResourceMembers) UnmarshalJSON(src []byte) error

func (*NullableScimGroupResourceMembers) Unset

type NullableScimGroupResourceMeta

type NullableScimGroupResourceMeta struct {
	// contains filtered or unexported fields
}

func (NullableScimGroupResourceMeta) Get

func (NullableScimGroupResourceMeta) IsSet

func (NullableScimGroupResourceMeta) MarshalJSON

func (v NullableScimGroupResourceMeta) MarshalJSON() ([]byte, error)

func (*NullableScimGroupResourceMeta) Set

func (*NullableScimGroupResourceMeta) UnmarshalJSON

func (v *NullableScimGroupResourceMeta) UnmarshalJSON(src []byte) error

func (*NullableScimGroupResourceMeta) Unset

func (v *NullableScimGroupResourceMeta) Unset()

type NullableScimUserResource

type NullableScimUserResource struct {
	// contains filtered or unexported fields
}

func NewNullableScimUserResource

func NewNullableScimUserResource(val *ScimUserResource) *NullableScimUserResource

func (NullableScimUserResource) Get

func (NullableScimUserResource) IsSet

func (v NullableScimUserResource) IsSet() bool

func (NullableScimUserResource) MarshalJSON

func (v NullableScimUserResource) MarshalJSON() ([]byte, error)

func (*NullableScimUserResource) Set

func (*NullableScimUserResource) UnmarshalJSON

func (v *NullableScimUserResource) UnmarshalJSON(src []byte) error

func (*NullableScimUserResource) Unset

func (v *NullableScimUserResource) Unset()

type NullableScimUserResourceMeta

type NullableScimUserResourceMeta struct {
	// contains filtered or unexported fields
}

func NewNullableScimUserResourceMeta

func NewNullableScimUserResourceMeta(val *ScimUserResourceMeta) *NullableScimUserResourceMeta

func (NullableScimUserResourceMeta) Get

func (NullableScimUserResourceMeta) IsSet

func (NullableScimUserResourceMeta) MarshalJSON

func (v NullableScimUserResourceMeta) MarshalJSON() ([]byte, error)

func (*NullableScimUserResourceMeta) Set

func (*NullableScimUserResourceMeta) UnmarshalJSON

func (v *NullableScimUserResourceMeta) UnmarshalJSON(src []byte) error

func (*NullableScimUserResourceMeta) Unset

func (v *NullableScimUserResourceMeta) Unset()

type NullableScimUserResourceName

type NullableScimUserResourceName struct {
	// contains filtered or unexported fields
}

func NewNullableScimUserResourceName

func NewNullableScimUserResourceName(val *ScimUserResourceName) *NullableScimUserResourceName

func (NullableScimUserResourceName) Get

func (NullableScimUserResourceName) IsSet

func (NullableScimUserResourceName) MarshalJSON

func (v NullableScimUserResourceName) MarshalJSON() ([]byte, error)

func (*NullableScimUserResourceName) Set

func (*NullableScimUserResourceName) UnmarshalJSON

func (v *NullableScimUserResourceName) UnmarshalJSON(src []byte) error

func (*NullableScimUserResourceName) Unset

func (v *NullableScimUserResourceName) Unset()

type NullableSingleEnvironment200Response

type NullableSingleEnvironment200Response struct {
	// contains filtered or unexported fields
}

func (NullableSingleEnvironment200Response) Get

func (NullableSingleEnvironment200Response) IsSet

func (NullableSingleEnvironment200Response) MarshalJSON

func (v NullableSingleEnvironment200Response) MarshalJSON() ([]byte, error)

func (*NullableSingleEnvironment200Response) Set

func (*NullableSingleEnvironment200Response) UnmarshalJSON

func (v *NullableSingleEnvironment200Response) UnmarshalJSON(src []byte) error

func (*NullableSingleEnvironment200Response) Unset

type NullableSingleEnvironment200ResponseEnvironment

type NullableSingleEnvironment200ResponseEnvironment struct {
	// contains filtered or unexported fields
}

func (NullableSingleEnvironment200ResponseEnvironment) Get

func (NullableSingleEnvironment200ResponseEnvironment) IsSet

func (NullableSingleEnvironment200ResponseEnvironment) MarshalJSON

func (*NullableSingleEnvironment200ResponseEnvironment) Set

func (*NullableSingleEnvironment200ResponseEnvironment) UnmarshalJSON

func (*NullableSingleEnvironment200ResponseEnvironment) Unset

type NullableSingleWorkspace200Response

type NullableSingleWorkspace200Response struct {
	// contains filtered or unexported fields
}

func (NullableSingleWorkspace200Response) Get

func (NullableSingleWorkspace200Response) IsSet

func (NullableSingleWorkspace200Response) MarshalJSON

func (v NullableSingleWorkspace200Response) MarshalJSON() ([]byte, error)

func (*NullableSingleWorkspace200Response) Set

func (*NullableSingleWorkspace200Response) UnmarshalJSON

func (v *NullableSingleWorkspace200Response) UnmarshalJSON(src []byte) error

func (*NullableSingleWorkspace200Response) Unset

type NullableSingleWorkspace200ResponseWorkspace

type NullableSingleWorkspace200ResponseWorkspace struct {
	// contains filtered or unexported fields
}

func (NullableSingleWorkspace200ResponseWorkspace) Get

func (NullableSingleWorkspace200ResponseWorkspace) IsSet

func (NullableSingleWorkspace200ResponseWorkspace) MarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspace) Set

func (*NullableSingleWorkspace200ResponseWorkspace) UnmarshalJSON

func (v *NullableSingleWorkspace200ResponseWorkspace) UnmarshalJSON(src []byte) error

func (*NullableSingleWorkspace200ResponseWorkspace) Unset

type NullableSingleWorkspace200ResponseWorkspaceApisInner

type NullableSingleWorkspace200ResponseWorkspaceApisInner struct {
	// contains filtered or unexported fields
}

func (NullableSingleWorkspace200ResponseWorkspaceApisInner) Get

func (NullableSingleWorkspace200ResponseWorkspaceApisInner) IsSet

func (NullableSingleWorkspace200ResponseWorkspaceApisInner) MarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceApisInner) Set

func (*NullableSingleWorkspace200ResponseWorkspaceApisInner) UnmarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceApisInner) Unset

type NullableSingleWorkspace200ResponseWorkspaceCollectionsInner

type NullableSingleWorkspace200ResponseWorkspaceCollectionsInner struct {
	// contains filtered or unexported fields
}

func (NullableSingleWorkspace200ResponseWorkspaceCollectionsInner) Get

func (NullableSingleWorkspace200ResponseWorkspaceCollectionsInner) IsSet

func (NullableSingleWorkspace200ResponseWorkspaceCollectionsInner) MarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceCollectionsInner) Set

func (*NullableSingleWorkspace200ResponseWorkspaceCollectionsInner) UnmarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceCollectionsInner) Unset

type NullableSingleWorkspace200ResponseWorkspaceEnvironmentsInner

type NullableSingleWorkspace200ResponseWorkspaceEnvironmentsInner struct {
	// contains filtered or unexported fields
}

func (NullableSingleWorkspace200ResponseWorkspaceEnvironmentsInner) Get

func (NullableSingleWorkspace200ResponseWorkspaceEnvironmentsInner) IsSet

func (NullableSingleWorkspace200ResponseWorkspaceEnvironmentsInner) MarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceEnvironmentsInner) Set

func (*NullableSingleWorkspace200ResponseWorkspaceEnvironmentsInner) UnmarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceEnvironmentsInner) Unset

type NullableSingleWorkspace200ResponseWorkspaceMocksInner

type NullableSingleWorkspace200ResponseWorkspaceMocksInner struct {
	// contains filtered or unexported fields
}

func (NullableSingleWorkspace200ResponseWorkspaceMocksInner) Get

func (NullableSingleWorkspace200ResponseWorkspaceMocksInner) IsSet

func (NullableSingleWorkspace200ResponseWorkspaceMocksInner) MarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceMocksInner) Set

func (*NullableSingleWorkspace200ResponseWorkspaceMocksInner) UnmarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceMocksInner) Unset

type NullableSingleWorkspace200ResponseWorkspaceMonitorsInner

type NullableSingleWorkspace200ResponseWorkspaceMonitorsInner struct {
	// contains filtered or unexported fields
}

func (NullableSingleWorkspace200ResponseWorkspaceMonitorsInner) Get

func (NullableSingleWorkspace200ResponseWorkspaceMonitorsInner) IsSet

func (NullableSingleWorkspace200ResponseWorkspaceMonitorsInner) MarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceMonitorsInner) Set

func (*NullableSingleWorkspace200ResponseWorkspaceMonitorsInner) UnmarshalJSON

func (*NullableSingleWorkspace200ResponseWorkspaceMonitorsInner) Unset

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpdateEnvironment200Response

type NullableUpdateEnvironment200Response struct {
	// contains filtered or unexported fields
}

func (NullableUpdateEnvironment200Response) Get

func (NullableUpdateEnvironment200Response) IsSet

func (NullableUpdateEnvironment200Response) MarshalJSON

func (v NullableUpdateEnvironment200Response) MarshalJSON() ([]byte, error)

func (*NullableUpdateEnvironment200Response) Set

func (*NullableUpdateEnvironment200Response) UnmarshalJSON

func (v *NullableUpdateEnvironment200Response) UnmarshalJSON(src []byte) error

func (*NullableUpdateEnvironment200Response) Unset

type NullableUpdateEnvironment200ResponseEnvironment

type NullableUpdateEnvironment200ResponseEnvironment struct {
	// contains filtered or unexported fields
}

func (NullableUpdateEnvironment200ResponseEnvironment) Get

func (NullableUpdateEnvironment200ResponseEnvironment) IsSet

func (NullableUpdateEnvironment200ResponseEnvironment) MarshalJSON

func (*NullableUpdateEnvironment200ResponseEnvironment) Set

func (*NullableUpdateEnvironment200ResponseEnvironment) UnmarshalJSON

func (*NullableUpdateEnvironment200ResponseEnvironment) Unset

type NullableUpdateEnvironment400Response

type NullableUpdateEnvironment400Response struct {
	// contains filtered or unexported fields
}

func (NullableUpdateEnvironment400Response) Get

func (NullableUpdateEnvironment400Response) IsSet

func (NullableUpdateEnvironment400Response) MarshalJSON

func (v NullableUpdateEnvironment400Response) MarshalJSON() ([]byte, error)

func (*NullableUpdateEnvironment400Response) Set

func (*NullableUpdateEnvironment400Response) UnmarshalJSON

func (v *NullableUpdateEnvironment400Response) UnmarshalJSON(src []byte) error

func (*NullableUpdateEnvironment400Response) Unset

type NullableUpdateEnvironment400ResponseError

type NullableUpdateEnvironment400ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableUpdateEnvironment400ResponseError) Get

func (NullableUpdateEnvironment400ResponseError) IsSet

func (NullableUpdateEnvironment400ResponseError) MarshalJSON

func (*NullableUpdateEnvironment400ResponseError) Set

func (*NullableUpdateEnvironment400ResponseError) UnmarshalJSON

func (v *NullableUpdateEnvironment400ResponseError) UnmarshalJSON(src []byte) error

func (*NullableUpdateEnvironment400ResponseError) Unset

type NullableUpdatePANApi

type NullableUpdatePANApi struct {
	// contains filtered or unexported fields
}

func NewNullableUpdatePANApi

func NewNullableUpdatePANApi(val *UpdatePANApi) *NullableUpdatePANApi

func (NullableUpdatePANApi) Get

func (NullableUpdatePANApi) IsSet

func (v NullableUpdatePANApi) IsSet() bool

func (NullableUpdatePANApi) MarshalJSON

func (v NullableUpdatePANApi) MarshalJSON() ([]byte, error)

func (*NullableUpdatePANApi) Set

func (v *NullableUpdatePANApi) Set(val *UpdatePANApi)

func (*NullableUpdatePANApi) UnmarshalJSON

func (v *NullableUpdatePANApi) UnmarshalJSON(src []byte) error

func (*NullableUpdatePANApi) Unset

func (v *NullableUpdatePANApi) Unset()

type NullableUpdatePANApiApi

type NullableUpdatePANApiApi struct {
	// contains filtered or unexported fields
}

func NewNullableUpdatePANApiApi

func NewNullableUpdatePANApiApi(val *UpdatePANApiApi) *NullableUpdatePANApiApi

func (NullableUpdatePANApiApi) Get

func (NullableUpdatePANApiApi) IsSet

func (v NullableUpdatePANApiApi) IsSet() bool

func (NullableUpdatePANApiApi) MarshalJSON

func (v NullableUpdatePANApiApi) MarshalJSON() ([]byte, error)

func (*NullableUpdatePANApiApi) Set

func (*NullableUpdatePANApiApi) UnmarshalJSON

func (v *NullableUpdatePANApiApi) UnmarshalJSON(src []byte) error

func (*NullableUpdatePANApiApi) Unset

func (v *NullableUpdatePANApiApi) Unset()

type NullableUpdatePANCollection

type NullableUpdatePANCollection struct {
	// contains filtered or unexported fields
}

func NewNullableUpdatePANCollection

func NewNullableUpdatePANCollection(val *UpdatePANCollection) *NullableUpdatePANCollection

func (NullableUpdatePANCollection) Get

func (NullableUpdatePANCollection) IsSet

func (NullableUpdatePANCollection) MarshalJSON

func (v NullableUpdatePANCollection) MarshalJSON() ([]byte, error)

func (*NullableUpdatePANCollection) Set

func (*NullableUpdatePANCollection) UnmarshalJSON

func (v *NullableUpdatePANCollection) UnmarshalJSON(src []byte) error

func (*NullableUpdatePANCollection) Unset

func (v *NullableUpdatePANCollection) Unset()

type NullableUpdatePANCollectionCollection

type NullableUpdatePANCollectionCollection struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePANCollectionCollection) Get

func (NullableUpdatePANCollectionCollection) IsSet

func (NullableUpdatePANCollectionCollection) MarshalJSON

func (v NullableUpdatePANCollectionCollection) MarshalJSON() ([]byte, error)

func (*NullableUpdatePANCollectionCollection) Set

func (*NullableUpdatePANCollectionCollection) UnmarshalJSON

func (v *NullableUpdatePANCollectionCollection) UnmarshalJSON(src []byte) error

func (*NullableUpdatePANCollectionCollection) Unset

type NullableUpdatePANFolder

type NullableUpdatePANFolder struct {
	// contains filtered or unexported fields
}

func NewNullableUpdatePANFolder

func NewNullableUpdatePANFolder(val *UpdatePANFolder) *NullableUpdatePANFolder

func (NullableUpdatePANFolder) Get

func (NullableUpdatePANFolder) IsSet

func (v NullableUpdatePANFolder) IsSet() bool

func (NullableUpdatePANFolder) MarshalJSON

func (v NullableUpdatePANFolder) MarshalJSON() ([]byte, error)

func (*NullableUpdatePANFolder) Set

func (*NullableUpdatePANFolder) UnmarshalJSON

func (v *NullableUpdatePANFolder) UnmarshalJSON(src []byte) error

func (*NullableUpdatePANFolder) Unset

func (v *NullableUpdatePANFolder) Unset()

type NullableUpdatePANFolderFolder

type NullableUpdatePANFolderFolder struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePANFolderFolder) Get

func (NullableUpdatePANFolderFolder) IsSet

func (NullableUpdatePANFolderFolder) MarshalJSON

func (v NullableUpdatePANFolderFolder) MarshalJSON() ([]byte, error)

func (*NullableUpdatePANFolderFolder) Set

func (*NullableUpdatePANFolderFolder) UnmarshalJSON

func (v *NullableUpdatePANFolderFolder) UnmarshalJSON(src []byte) error

func (*NullableUpdatePANFolderFolder) Unset

func (v *NullableUpdatePANFolderFolder) Unset()

type NullableUpdatePANWorkspace

type NullableUpdatePANWorkspace struct {
	// contains filtered or unexported fields
}

func NewNullableUpdatePANWorkspace

func NewNullableUpdatePANWorkspace(val *UpdatePANWorkspace) *NullableUpdatePANWorkspace

func (NullableUpdatePANWorkspace) Get

func (NullableUpdatePANWorkspace) IsSet

func (v NullableUpdatePANWorkspace) IsSet() bool

func (NullableUpdatePANWorkspace) MarshalJSON

func (v NullableUpdatePANWorkspace) MarshalJSON() ([]byte, error)

func (*NullableUpdatePANWorkspace) Set

func (*NullableUpdatePANWorkspace) UnmarshalJSON

func (v *NullableUpdatePANWorkspace) UnmarshalJSON(src []byte) error

func (*NullableUpdatePANWorkspace) Unset

func (v *NullableUpdatePANWorkspace) Unset()

type NullableUpdatePANWorkspaceWorkspace

type NullableUpdatePANWorkspaceWorkspace struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePANWorkspaceWorkspace) Get

func (NullableUpdatePANWorkspaceWorkspace) IsSet

func (NullableUpdatePANWorkspaceWorkspace) MarshalJSON

func (v NullableUpdatePANWorkspaceWorkspace) MarshalJSON() ([]byte, error)

func (*NullableUpdatePANWorkspaceWorkspace) Set

func (*NullableUpdatePANWorkspaceWorkspace) UnmarshalJSON

func (v *NullableUpdatePANWorkspaceWorkspace) UnmarshalJSON(src []byte) error

func (*NullableUpdatePANWorkspaceWorkspace) Unset

type NullableUpdateWorkspace200Response

type NullableUpdateWorkspace200Response struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspace200Response) Get

func (NullableUpdateWorkspace200Response) IsSet

func (NullableUpdateWorkspace200Response) MarshalJSON

func (v NullableUpdateWorkspace200Response) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspace200Response) Set

func (*NullableUpdateWorkspace200Response) UnmarshalJSON

func (v *NullableUpdateWorkspace200Response) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspace200Response) Unset

type NullableUpdateWorkspace200ResponseWorkspace

type NullableUpdateWorkspace200ResponseWorkspace struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspace200ResponseWorkspace) Get

func (NullableUpdateWorkspace200ResponseWorkspace) IsSet

func (NullableUpdateWorkspace200ResponseWorkspace) MarshalJSON

func (*NullableUpdateWorkspace200ResponseWorkspace) Set

func (*NullableUpdateWorkspace200ResponseWorkspace) UnmarshalJSON

func (v *NullableUpdateWorkspace200ResponseWorkspace) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspace200ResponseWorkspace) Unset

type NullableUpdateWorkspace400Response

type NullableUpdateWorkspace400Response struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspace400Response) Get

func (NullableUpdateWorkspace400Response) IsSet

func (NullableUpdateWorkspace400Response) MarshalJSON

func (v NullableUpdateWorkspace400Response) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspace400Response) Set

func (*NullableUpdateWorkspace400Response) UnmarshalJSON

func (v *NullableUpdateWorkspace400Response) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspace400Response) Unset

type NullableUpdateWorkspace400ResponseError

type NullableUpdateWorkspace400ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspace400ResponseError) Get

func (NullableUpdateWorkspace400ResponseError) IsSet

func (NullableUpdateWorkspace400ResponseError) MarshalJSON

func (v NullableUpdateWorkspace400ResponseError) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspace400ResponseError) Set

func (*NullableUpdateWorkspace400ResponseError) UnmarshalJSON

func (v *NullableUpdateWorkspace400ResponseError) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspace400ResponseError) Unset

type NullableUpdateWorkspace403Response

type NullableUpdateWorkspace403Response struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspace403Response) Get

func (NullableUpdateWorkspace403Response) IsSet

func (NullableUpdateWorkspace403Response) MarshalJSON

func (v NullableUpdateWorkspace403Response) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspace403Response) Set

func (*NullableUpdateWorkspace403Response) UnmarshalJSON

func (v *NullableUpdateWorkspace403Response) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspace403Response) Unset

type NullableUpdateWorkspace403ResponseError

type NullableUpdateWorkspace403ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspace403ResponseError) Get

func (NullableUpdateWorkspace403ResponseError) IsSet

func (NullableUpdateWorkspace403ResponseError) MarshalJSON

func (v NullableUpdateWorkspace403ResponseError) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspace403ResponseError) Set

func (*NullableUpdateWorkspace403ResponseError) UnmarshalJSON

func (v *NullableUpdateWorkspace403ResponseError) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspace403ResponseError) Unset

type NullableUpdateWorkspace404Response

type NullableUpdateWorkspace404Response struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspace404Response) Get

func (NullableUpdateWorkspace404Response) IsSet

func (NullableUpdateWorkspace404Response) MarshalJSON

func (v NullableUpdateWorkspace404Response) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspace404Response) Set

func (*NullableUpdateWorkspace404Response) UnmarshalJSON

func (v *NullableUpdateWorkspace404Response) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspace404Response) Unset

type NullableUpdateWorkspace404ResponseError

type NullableUpdateWorkspace404ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspace404ResponseError) Get

func (NullableUpdateWorkspace404ResponseError) IsSet

func (NullableUpdateWorkspace404ResponseError) MarshalJSON

func (v NullableUpdateWorkspace404ResponseError) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspace404ResponseError) Set

func (*NullableUpdateWorkspace404ResponseError) UnmarshalJSON

func (v *NullableUpdateWorkspace404ResponseError) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspace404ResponseError) Unset

type NullableUpdateWorkspaceRequest

type NullableUpdateWorkspaceRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspaceRequest) Get

func (NullableUpdateWorkspaceRequest) IsSet

func (NullableUpdateWorkspaceRequest) MarshalJSON

func (v NullableUpdateWorkspaceRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspaceRequest) Set

func (*NullableUpdateWorkspaceRequest) UnmarshalJSON

func (v *NullableUpdateWorkspaceRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspaceRequest) Unset

func (v *NullableUpdateWorkspaceRequest) Unset()

type NullableUpdateWorkspaceRequestWorkspace

type NullableUpdateWorkspaceRequestWorkspace struct {
	// contains filtered or unexported fields
}

func (NullableUpdateWorkspaceRequestWorkspace) Get

func (NullableUpdateWorkspaceRequestWorkspace) IsSet

func (NullableUpdateWorkspaceRequestWorkspace) MarshalJSON

func (v NullableUpdateWorkspaceRequestWorkspace) MarshalJSON() ([]byte, error)

func (*NullableUpdateWorkspaceRequestWorkspace) Set

func (*NullableUpdateWorkspaceRequestWorkspace) UnmarshalJSON

func (v *NullableUpdateWorkspaceRequestWorkspace) UnmarshalJSON(src []byte) error

func (*NullableUpdateWorkspaceRequestWorkspace) Unset

type PANElementCreated

type PANElementCreated struct {
	// The date and time at which the element was added.
	AddedAt *time.Time `json:"addedAt,omitempty"`
	// The user who added the element.
	AddedBy *int32 `json:"addedBy,omitempty"`
	// The date and time at which the element was created.
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	// The user who created the element.
	CreatedBy *int32 `json:"createdBy,omitempty"`
	// The element's description.
	Description *string `json:"description,omitempty"`
	// The element's Postman URL.
	Href *string `json:"href,omitempty"`
	// The element's ID or UID.
	Id *string `json:"id,omitempty"`
	// The element's name.
	Name *string `json:"name,omitempty"`
	// The parent folder's ID.
	ParentFolderId *int32 `json:"parentFolderId,omitempty"`
	// The element's summary.
	Summary *string `json:"summary,omitempty"`
	// The element's type.
	Type *string `json:"type,omitempty"`
	// The date and time at which the element was last updated.
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
	// The user who last updated the element.
	UpdatedBy *int32 `json:"updatedBy,omitempty"`
}

PANElementCreated Information about the Private API Network element.

func NewPANElementCreated

func NewPANElementCreated() *PANElementCreated

NewPANElementCreated instantiates a new PANElementCreated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPANElementCreatedWithDefaults

func NewPANElementCreatedWithDefaults() *PANElementCreated

NewPANElementCreatedWithDefaults instantiates a new PANElementCreated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PANElementCreated) GetAddedAt

func (o *PANElementCreated) GetAddedAt() time.Time

GetAddedAt returns the AddedAt field value if set, zero value otherwise.

func (*PANElementCreated) GetAddedAtOk

func (o *PANElementCreated) GetAddedAtOk() (*time.Time, bool)

GetAddedAtOk returns a tuple with the AddedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetAddedBy

func (o *PANElementCreated) GetAddedBy() int32

GetAddedBy returns the AddedBy field value if set, zero value otherwise.

func (*PANElementCreated) GetAddedByOk

func (o *PANElementCreated) GetAddedByOk() (*int32, bool)

GetAddedByOk returns a tuple with the AddedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetCreatedAt

func (o *PANElementCreated) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*PANElementCreated) GetCreatedAtOk

func (o *PANElementCreated) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetCreatedBy

func (o *PANElementCreated) GetCreatedBy() int32

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*PANElementCreated) GetCreatedByOk

func (o *PANElementCreated) GetCreatedByOk() (*int32, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetDescription

func (o *PANElementCreated) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*PANElementCreated) GetDescriptionOk

func (o *PANElementCreated) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetHref

func (o *PANElementCreated) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*PANElementCreated) GetHrefOk

func (o *PANElementCreated) GetHrefOk() (*string, bool)

GetHrefOk returns a tuple with the Href field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetId

func (o *PANElementCreated) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PANElementCreated) GetIdOk

func (o *PANElementCreated) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetName

func (o *PANElementCreated) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PANElementCreated) GetNameOk

func (o *PANElementCreated) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetParentFolderId

func (o *PANElementCreated) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value if set, zero value otherwise.

func (*PANElementCreated) GetParentFolderIdOk

func (o *PANElementCreated) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetSummary

func (o *PANElementCreated) GetSummary() string

GetSummary returns the Summary field value if set, zero value otherwise.

func (*PANElementCreated) GetSummaryOk

func (o *PANElementCreated) GetSummaryOk() (*string, bool)

GetSummaryOk returns a tuple with the Summary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetType

func (o *PANElementCreated) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PANElementCreated) GetTypeOk

func (o *PANElementCreated) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetUpdatedAt

func (o *PANElementCreated) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*PANElementCreated) GetUpdatedAtOk

func (o *PANElementCreated) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) GetUpdatedBy

func (o *PANElementCreated) GetUpdatedBy() int32

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*PANElementCreated) GetUpdatedByOk

func (o *PANElementCreated) GetUpdatedByOk() (*int32, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANElementCreated) HasAddedAt

func (o *PANElementCreated) HasAddedAt() bool

HasAddedAt returns a boolean if a field has been set.

func (*PANElementCreated) HasAddedBy

func (o *PANElementCreated) HasAddedBy() bool

HasAddedBy returns a boolean if a field has been set.

func (*PANElementCreated) HasCreatedAt

func (o *PANElementCreated) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*PANElementCreated) HasCreatedBy

func (o *PANElementCreated) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*PANElementCreated) HasDescription

func (o *PANElementCreated) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PANElementCreated) HasHref

func (o *PANElementCreated) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*PANElementCreated) HasId

func (o *PANElementCreated) HasId() bool

HasId returns a boolean if a field has been set.

func (*PANElementCreated) HasName

func (o *PANElementCreated) HasName() bool

HasName returns a boolean if a field has been set.

func (*PANElementCreated) HasParentFolderId

func (o *PANElementCreated) HasParentFolderId() bool

HasParentFolderId returns a boolean if a field has been set.

func (*PANElementCreated) HasSummary

func (o *PANElementCreated) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (*PANElementCreated) HasType

func (o *PANElementCreated) HasType() bool

HasType returns a boolean if a field has been set.

func (*PANElementCreated) HasUpdatedAt

func (o *PANElementCreated) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*PANElementCreated) HasUpdatedBy

func (o *PANElementCreated) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (PANElementCreated) MarshalJSON

func (o PANElementCreated) MarshalJSON() ([]byte, error)

func (*PANElementCreated) SetAddedAt

func (o *PANElementCreated) SetAddedAt(v time.Time)

SetAddedAt gets a reference to the given time.Time and assigns it to the AddedAt field.

func (*PANElementCreated) SetAddedBy

func (o *PANElementCreated) SetAddedBy(v int32)

SetAddedBy gets a reference to the given int32 and assigns it to the AddedBy field.

func (*PANElementCreated) SetCreatedAt

func (o *PANElementCreated) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*PANElementCreated) SetCreatedBy

func (o *PANElementCreated) SetCreatedBy(v int32)

SetCreatedBy gets a reference to the given int32 and assigns it to the CreatedBy field.

func (*PANElementCreated) SetDescription

func (o *PANElementCreated) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*PANElementCreated) SetHref

func (o *PANElementCreated) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*PANElementCreated) SetId

func (o *PANElementCreated) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PANElementCreated) SetName

func (o *PANElementCreated) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PANElementCreated) SetParentFolderId

func (o *PANElementCreated) SetParentFolderId(v int32)

SetParentFolderId gets a reference to the given int32 and assigns it to the ParentFolderId field.

func (*PANElementCreated) SetSummary

func (o *PANElementCreated) SetSummary(v string)

SetSummary gets a reference to the given string and assigns it to the Summary field.

func (*PANElementCreated) SetType

func (o *PANElementCreated) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*PANElementCreated) SetUpdatedAt

func (o *PANElementCreated) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*PANElementCreated) SetUpdatedBy

func (o *PANElementCreated) SetUpdatedBy(v int32)

SetUpdatedBy gets a reference to the given int32 and assigns it to the UpdatedBy field.

func (PANElementCreated) ToMap

func (o PANElementCreated) ToMap() (map[string]interface{}, error)

type PANFolderCreated

type PANFolderCreated struct {
	// The date and time at which the element was created.
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	// The user who created the folder.
	CreatedBy *int32 `json:"createdBy,omitempty"`
	// The folder's description.
	Description *string `json:"description,omitempty"`
	// The folder's ID.
	Id *int32 `json:"id,omitempty"`
	// The folder's name.
	Name *string `json:"name,omitempty"`
	// The parent folder ID.
	ParentFolderId *int32 `json:"parentFolderId,omitempty"`
	// The folder's type. This is always the `folder` value.
	Type *string `json:"type,omitempty"`
	// The date and time at which the folder was updated.
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
	// The user who updated the folder.
	UpdatedBy *int32 `json:"updatedBy,omitempty"`
}

PANFolderCreated Information about the Private API Network folder.

func NewPANFolderCreated

func NewPANFolderCreated() *PANFolderCreated

NewPANFolderCreated instantiates a new PANFolderCreated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPANFolderCreatedWithDefaults

func NewPANFolderCreatedWithDefaults() *PANFolderCreated

NewPANFolderCreatedWithDefaults instantiates a new PANFolderCreated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PANFolderCreated) GetCreatedAt

func (o *PANFolderCreated) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*PANFolderCreated) GetCreatedAtOk

func (o *PANFolderCreated) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) GetCreatedBy

func (o *PANFolderCreated) GetCreatedBy() int32

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*PANFolderCreated) GetCreatedByOk

func (o *PANFolderCreated) GetCreatedByOk() (*int32, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) GetDescription

func (o *PANFolderCreated) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*PANFolderCreated) GetDescriptionOk

func (o *PANFolderCreated) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) GetId

func (o *PANFolderCreated) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*PANFolderCreated) GetIdOk

func (o *PANFolderCreated) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) GetName

func (o *PANFolderCreated) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PANFolderCreated) GetNameOk

func (o *PANFolderCreated) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) GetParentFolderId

func (o *PANFolderCreated) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value if set, zero value otherwise.

func (*PANFolderCreated) GetParentFolderIdOk

func (o *PANFolderCreated) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) GetType

func (o *PANFolderCreated) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PANFolderCreated) GetTypeOk

func (o *PANFolderCreated) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) GetUpdatedAt

func (o *PANFolderCreated) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*PANFolderCreated) GetUpdatedAtOk

func (o *PANFolderCreated) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) GetUpdatedBy

func (o *PANFolderCreated) GetUpdatedBy() int32

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*PANFolderCreated) GetUpdatedByOk

func (o *PANFolderCreated) GetUpdatedByOk() (*int32, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PANFolderCreated) HasCreatedAt

func (o *PANFolderCreated) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*PANFolderCreated) HasCreatedBy

func (o *PANFolderCreated) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*PANFolderCreated) HasDescription

func (o *PANFolderCreated) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PANFolderCreated) HasId

func (o *PANFolderCreated) HasId() bool

HasId returns a boolean if a field has been set.

func (*PANFolderCreated) HasName

func (o *PANFolderCreated) HasName() bool

HasName returns a boolean if a field has been set.

func (*PANFolderCreated) HasParentFolderId

func (o *PANFolderCreated) HasParentFolderId() bool

HasParentFolderId returns a boolean if a field has been set.

func (*PANFolderCreated) HasType

func (o *PANFolderCreated) HasType() bool

HasType returns a boolean if a field has been set.

func (*PANFolderCreated) HasUpdatedAt

func (o *PANFolderCreated) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*PANFolderCreated) HasUpdatedBy

func (o *PANFolderCreated) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (PANFolderCreated) MarshalJSON

func (o PANFolderCreated) MarshalJSON() ([]byte, error)

func (*PANFolderCreated) SetCreatedAt

func (o *PANFolderCreated) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*PANFolderCreated) SetCreatedBy

func (o *PANFolderCreated) SetCreatedBy(v int32)

SetCreatedBy gets a reference to the given int32 and assigns it to the CreatedBy field.

func (*PANFolderCreated) SetDescription

func (o *PANFolderCreated) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*PANFolderCreated) SetId

func (o *PANFolderCreated) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*PANFolderCreated) SetName

func (o *PANFolderCreated) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PANFolderCreated) SetParentFolderId

func (o *PANFolderCreated) SetParentFolderId(v int32)

SetParentFolderId gets a reference to the given int32 and assigns it to the ParentFolderId field.

func (*PANFolderCreated) SetType

func (o *PANFolderCreated) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*PANFolderCreated) SetUpdatedAt

func (o *PANFolderCreated) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*PANFolderCreated) SetUpdatedBy

func (o *PANFolderCreated) SetUpdatedBy(v int32)

SetUpdatedBy gets a reference to the given int32 and assigns it to the UpdatedBy field.

func (PANFolderCreated) ToMap

func (o PANFolderCreated) ToMap() (map[string]interface{}, error)

type ScimGroupResource

type ScimGroupResource struct {
	// The group's display name.
	DisplayName *string `json:"displayName,omitempty"`
	// The group's external ID.
	ExternalId *string `json:"externalId,omitempty"`
	// The group's SCIM ID.
	Id      *string                   `json:"id,omitempty"`
	Members *ScimGroupResourceMembers `json:"members,omitempty"`
	Meta    *ScimGroupResourceMeta    `json:"meta,omitempty"`
	// A list of schema resource URIs.
	Schemas []string `json:"schemas,omitempty"`
}

ScimGroupResource The SCIM group resource object.

func NewScimGroupResource

func NewScimGroupResource() *ScimGroupResource

NewScimGroupResource instantiates a new ScimGroupResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScimGroupResourceWithDefaults

func NewScimGroupResourceWithDefaults() *ScimGroupResource

NewScimGroupResourceWithDefaults instantiates a new ScimGroupResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScimGroupResource) GetDisplayName

func (o *ScimGroupResource) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ScimGroupResource) GetDisplayNameOk

func (o *ScimGroupResource) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResource) GetExternalId

func (o *ScimGroupResource) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ScimGroupResource) GetExternalIdOk

func (o *ScimGroupResource) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResource) GetId

func (o *ScimGroupResource) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ScimGroupResource) GetIdOk

func (o *ScimGroupResource) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResource) GetMembers

GetMembers returns the Members field value if set, zero value otherwise.

func (*ScimGroupResource) GetMembersOk

func (o *ScimGroupResource) GetMembersOk() (*ScimGroupResourceMembers, bool)

GetMembersOk returns a tuple with the Members field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResource) GetMeta

GetMeta returns the Meta field value if set, zero value otherwise.

func (*ScimGroupResource) GetMetaOk

func (o *ScimGroupResource) GetMetaOk() (*ScimGroupResourceMeta, bool)

GetMetaOk returns a tuple with the Meta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResource) GetSchemas

func (o *ScimGroupResource) GetSchemas() []string

GetSchemas returns the Schemas field value if set, zero value otherwise.

func (*ScimGroupResource) GetSchemasOk

func (o *ScimGroupResource) GetSchemasOk() ([]string, bool)

GetSchemasOk returns a tuple with the Schemas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResource) HasDisplayName

func (o *ScimGroupResource) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ScimGroupResource) HasExternalId

func (o *ScimGroupResource) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ScimGroupResource) HasId

func (o *ScimGroupResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*ScimGroupResource) HasMembers

func (o *ScimGroupResource) HasMembers() bool

HasMembers returns a boolean if a field has been set.

func (*ScimGroupResource) HasMeta

func (o *ScimGroupResource) HasMeta() bool

HasMeta returns a boolean if a field has been set.

func (*ScimGroupResource) HasSchemas

func (o *ScimGroupResource) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

func (ScimGroupResource) MarshalJSON

func (o ScimGroupResource) MarshalJSON() ([]byte, error)

func (*ScimGroupResource) SetDisplayName

func (o *ScimGroupResource) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ScimGroupResource) SetExternalId

func (o *ScimGroupResource) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ScimGroupResource) SetId

func (o *ScimGroupResource) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ScimGroupResource) SetMembers

SetMembers gets a reference to the given ScimGroupResourceMembers and assigns it to the Members field.

func (*ScimGroupResource) SetMeta

SetMeta gets a reference to the given ScimGroupResourceMeta and assigns it to the Meta field.

func (*ScimGroupResource) SetSchemas

func (o *ScimGroupResource) SetSchemas(v []string)

SetSchemas gets a reference to the given []string and assigns it to the Schemas field.

func (ScimGroupResource) ToMap

func (o ScimGroupResource) ToMap() (map[string]interface{}, error)

type ScimGroupResourceMembers

type ScimGroupResourceMembers struct {
	//
	Display *string `json:"display,omitempty"`
	//
	Value *string `json:"value,omitempty"`
}

ScimGroupResourceMembers Information about the group's members.

func NewScimGroupResourceMembers

func NewScimGroupResourceMembers() *ScimGroupResourceMembers

NewScimGroupResourceMembers instantiates a new ScimGroupResourceMembers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScimGroupResourceMembersWithDefaults

func NewScimGroupResourceMembersWithDefaults() *ScimGroupResourceMembers

NewScimGroupResourceMembersWithDefaults instantiates a new ScimGroupResourceMembers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScimGroupResourceMembers) GetDisplay

func (o *ScimGroupResourceMembers) GetDisplay() string

GetDisplay returns the Display field value if set, zero value otherwise.

func (*ScimGroupResourceMembers) GetDisplayOk

func (o *ScimGroupResourceMembers) GetDisplayOk() (*string, bool)

GetDisplayOk returns a tuple with the Display field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResourceMembers) GetValue

func (o *ScimGroupResourceMembers) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ScimGroupResourceMembers) GetValueOk

func (o *ScimGroupResourceMembers) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResourceMembers) HasDisplay

func (o *ScimGroupResourceMembers) HasDisplay() bool

HasDisplay returns a boolean if a field has been set.

func (*ScimGroupResourceMembers) HasValue

func (o *ScimGroupResourceMembers) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ScimGroupResourceMembers) MarshalJSON

func (o ScimGroupResourceMembers) MarshalJSON() ([]byte, error)

func (*ScimGroupResourceMembers) SetDisplay

func (o *ScimGroupResourceMembers) SetDisplay(v string)

SetDisplay gets a reference to the given string and assigns it to the Display field.

func (*ScimGroupResourceMembers) SetValue

func (o *ScimGroupResourceMembers) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ScimGroupResourceMembers) ToMap

func (o ScimGroupResourceMembers) ToMap() (map[string]interface{}, error)

type ScimGroupResourceMeta

type ScimGroupResourceMeta struct {
	// The date and time at which the group was created.
	Created *time.Time `json:"created,omitempty"`
	// The date and time at which the group was last modified.
	LastModified *time.Time `json:"lastModified,omitempty"`
	// The resource type.
	ResourceType *string `json:"resourceType,omitempty"`
}

ScimGroupResourceMeta The response's non-standard meta information.

func NewScimGroupResourceMeta

func NewScimGroupResourceMeta() *ScimGroupResourceMeta

NewScimGroupResourceMeta instantiates a new ScimGroupResourceMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScimGroupResourceMetaWithDefaults

func NewScimGroupResourceMetaWithDefaults() *ScimGroupResourceMeta

NewScimGroupResourceMetaWithDefaults instantiates a new ScimGroupResourceMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScimGroupResourceMeta) GetCreated

func (o *ScimGroupResourceMeta) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*ScimGroupResourceMeta) GetCreatedOk

func (o *ScimGroupResourceMeta) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResourceMeta) GetLastModified

func (o *ScimGroupResourceMeta) GetLastModified() time.Time

GetLastModified returns the LastModified field value if set, zero value otherwise.

func (*ScimGroupResourceMeta) GetLastModifiedOk

func (o *ScimGroupResourceMeta) GetLastModifiedOk() (*time.Time, bool)

GetLastModifiedOk returns a tuple with the LastModified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResourceMeta) GetResourceType

func (o *ScimGroupResourceMeta) GetResourceType() string

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*ScimGroupResourceMeta) GetResourceTypeOk

func (o *ScimGroupResourceMeta) GetResourceTypeOk() (*string, bool)

GetResourceTypeOk returns a tuple with the ResourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimGroupResourceMeta) HasCreated

func (o *ScimGroupResourceMeta) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*ScimGroupResourceMeta) HasLastModified

func (o *ScimGroupResourceMeta) HasLastModified() bool

HasLastModified returns a boolean if a field has been set.

func (*ScimGroupResourceMeta) HasResourceType

func (o *ScimGroupResourceMeta) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (ScimGroupResourceMeta) MarshalJSON

func (o ScimGroupResourceMeta) MarshalJSON() ([]byte, error)

func (*ScimGroupResourceMeta) SetCreated

func (o *ScimGroupResourceMeta) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*ScimGroupResourceMeta) SetLastModified

func (o *ScimGroupResourceMeta) SetLastModified(v time.Time)

SetLastModified gets a reference to the given time.Time and assigns it to the LastModified field.

func (*ScimGroupResourceMeta) SetResourceType

func (o *ScimGroupResourceMeta) SetResourceType(v string)

SetResourceType gets a reference to the given string and assigns it to the ResourceType field.

func (ScimGroupResourceMeta) ToMap

func (o ScimGroupResourceMeta) ToMap() (map[string]interface{}, error)

type ScimUserResource

type ScimUserResource struct {
	// If true, the team member is active.
	Active *bool `json:"active,omitempty"`
	// The team member's external ID.
	ExternalId *string `json:"externalId,omitempty"`
	// The team member's SCIM ID.
	Id   *string               `json:"id,omitempty"`
	Meta *ScimUserResourceMeta `json:"meta,omitempty"`
	Name *ScimUserResourceName `json:"name,omitempty"`
	// A list of schema resource URIs.
	Schemas []string `json:"schemas,omitempty"`
	// The team member's SCIM username.
	UserName *string `json:"userName,omitempty"`
}

ScimUserResource The SCIM user resource object.

func NewScimUserResource

func NewScimUserResource() *ScimUserResource

NewScimUserResource instantiates a new ScimUserResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScimUserResourceWithDefaults

func NewScimUserResourceWithDefaults() *ScimUserResource

NewScimUserResourceWithDefaults instantiates a new ScimUserResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScimUserResource) GetActive

func (o *ScimUserResource) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*ScimUserResource) GetActiveOk

func (o *ScimUserResource) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResource) GetExternalId

func (o *ScimUserResource) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ScimUserResource) GetExternalIdOk

func (o *ScimUserResource) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResource) GetId

func (o *ScimUserResource) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ScimUserResource) GetIdOk

func (o *ScimUserResource) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResource) GetMeta

GetMeta returns the Meta field value if set, zero value otherwise.

func (*ScimUserResource) GetMetaOk

func (o *ScimUserResource) GetMetaOk() (*ScimUserResourceMeta, bool)

GetMetaOk returns a tuple with the Meta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResource) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ScimUserResource) GetNameOk

func (o *ScimUserResource) GetNameOk() (*ScimUserResourceName, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResource) GetSchemas

func (o *ScimUserResource) GetSchemas() []string

GetSchemas returns the Schemas field value if set, zero value otherwise.

func (*ScimUserResource) GetSchemasOk

func (o *ScimUserResource) GetSchemasOk() ([]string, bool)

GetSchemasOk returns a tuple with the Schemas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResource) GetUserName

func (o *ScimUserResource) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*ScimUserResource) GetUserNameOk

func (o *ScimUserResource) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResource) HasActive

func (o *ScimUserResource) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*ScimUserResource) HasExternalId

func (o *ScimUserResource) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ScimUserResource) HasId

func (o *ScimUserResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*ScimUserResource) HasMeta

func (o *ScimUserResource) HasMeta() bool

HasMeta returns a boolean if a field has been set.

func (*ScimUserResource) HasName

func (o *ScimUserResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*ScimUserResource) HasSchemas

func (o *ScimUserResource) HasSchemas() bool

HasSchemas returns a boolean if a field has been set.

func (*ScimUserResource) HasUserName

func (o *ScimUserResource) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (ScimUserResource) MarshalJSON

func (o ScimUserResource) MarshalJSON() ([]byte, error)

func (*ScimUserResource) SetActive

func (o *ScimUserResource) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*ScimUserResource) SetExternalId

func (o *ScimUserResource) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ScimUserResource) SetId

func (o *ScimUserResource) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ScimUserResource) SetMeta

func (o *ScimUserResource) SetMeta(v ScimUserResourceMeta)

SetMeta gets a reference to the given ScimUserResourceMeta and assigns it to the Meta field.

func (*ScimUserResource) SetName

func (o *ScimUserResource) SetName(v ScimUserResourceName)

SetName gets a reference to the given ScimUserResourceName and assigns it to the Name field.

func (*ScimUserResource) SetSchemas

func (o *ScimUserResource) SetSchemas(v []string)

SetSchemas gets a reference to the given []string and assigns it to the Schemas field.

func (*ScimUserResource) SetUserName

func (o *ScimUserResource) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (ScimUserResource) ToMap

func (o ScimUserResource) ToMap() (map[string]interface{}, error)

type ScimUserResourceMeta

type ScimUserResourceMeta struct {
	// The date and time at which the team member was created.
	Created *time.Time `json:"created,omitempty"`
	// The date and time at which the team member was last modified.
	LastModified *time.Time `json:"lastModified,omitempty"`
	// The resource type.
	ResourceType *string `json:"resourceType,omitempty"`
}

ScimUserResourceMeta The response's non-standard meta information.

func NewScimUserResourceMeta

func NewScimUserResourceMeta() *ScimUserResourceMeta

NewScimUserResourceMeta instantiates a new ScimUserResourceMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScimUserResourceMetaWithDefaults

func NewScimUserResourceMetaWithDefaults() *ScimUserResourceMeta

NewScimUserResourceMetaWithDefaults instantiates a new ScimUserResourceMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScimUserResourceMeta) GetCreated

func (o *ScimUserResourceMeta) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*ScimUserResourceMeta) GetCreatedOk

func (o *ScimUserResourceMeta) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResourceMeta) GetLastModified

func (o *ScimUserResourceMeta) GetLastModified() time.Time

GetLastModified returns the LastModified field value if set, zero value otherwise.

func (*ScimUserResourceMeta) GetLastModifiedOk

func (o *ScimUserResourceMeta) GetLastModifiedOk() (*time.Time, bool)

GetLastModifiedOk returns a tuple with the LastModified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResourceMeta) GetResourceType

func (o *ScimUserResourceMeta) GetResourceType() string

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*ScimUserResourceMeta) GetResourceTypeOk

func (o *ScimUserResourceMeta) GetResourceTypeOk() (*string, bool)

GetResourceTypeOk returns a tuple with the ResourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResourceMeta) HasCreated

func (o *ScimUserResourceMeta) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*ScimUserResourceMeta) HasLastModified

func (o *ScimUserResourceMeta) HasLastModified() bool

HasLastModified returns a boolean if a field has been set.

func (*ScimUserResourceMeta) HasResourceType

func (o *ScimUserResourceMeta) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (ScimUserResourceMeta) MarshalJSON

func (o ScimUserResourceMeta) MarshalJSON() ([]byte, error)

func (*ScimUserResourceMeta) SetCreated

func (o *ScimUserResourceMeta) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*ScimUserResourceMeta) SetLastModified

func (o *ScimUserResourceMeta) SetLastModified(v time.Time)

SetLastModified gets a reference to the given time.Time and assigns it to the LastModified field.

func (*ScimUserResourceMeta) SetResourceType

func (o *ScimUserResourceMeta) SetResourceType(v string)

SetResourceType gets a reference to the given string and assigns it to the ResourceType field.

func (ScimUserResourceMeta) ToMap

func (o ScimUserResourceMeta) ToMap() (map[string]interface{}, error)

type ScimUserResourceName

type ScimUserResourceName struct {
	// The team member's last name.
	FamilyName *string `json:"familyName,omitempty"`
	// The team member's first name.
	GivenName *string `json:"givenName,omitempty"`
}

ScimUserResourceName Information about the Postman team member.

func NewScimUserResourceName

func NewScimUserResourceName() *ScimUserResourceName

NewScimUserResourceName instantiates a new ScimUserResourceName object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScimUserResourceNameWithDefaults

func NewScimUserResourceNameWithDefaults() *ScimUserResourceName

NewScimUserResourceNameWithDefaults instantiates a new ScimUserResourceName object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScimUserResourceName) GetFamilyName

func (o *ScimUserResourceName) GetFamilyName() string

GetFamilyName returns the FamilyName field value if set, zero value otherwise.

func (*ScimUserResourceName) GetFamilyNameOk

func (o *ScimUserResourceName) GetFamilyNameOk() (*string, bool)

GetFamilyNameOk returns a tuple with the FamilyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResourceName) GetGivenName

func (o *ScimUserResourceName) GetGivenName() string

GetGivenName returns the GivenName field value if set, zero value otherwise.

func (*ScimUserResourceName) GetGivenNameOk

func (o *ScimUserResourceName) GetGivenNameOk() (*string, bool)

GetGivenNameOk returns a tuple with the GivenName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScimUserResourceName) HasFamilyName

func (o *ScimUserResourceName) HasFamilyName() bool

HasFamilyName returns a boolean if a field has been set.

func (*ScimUserResourceName) HasGivenName

func (o *ScimUserResourceName) HasGivenName() bool

HasGivenName returns a boolean if a field has been set.

func (ScimUserResourceName) MarshalJSON

func (o ScimUserResourceName) MarshalJSON() ([]byte, error)

func (*ScimUserResourceName) SetFamilyName

func (o *ScimUserResourceName) SetFamilyName(v string)

SetFamilyName gets a reference to the given string and assigns it to the FamilyName field.

func (*ScimUserResourceName) SetGivenName

func (o *ScimUserResourceName) SetGivenName(v string)

SetGivenName gets a reference to the given string and assigns it to the GivenName field.

func (ScimUserResourceName) ToMap

func (o ScimUserResourceName) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SingleEnvironment200Response

type SingleEnvironment200Response struct {
	Environment *SingleEnvironment200ResponseEnvironment `json:"environment,omitempty"`
}

SingleEnvironment200Response struct for SingleEnvironment200Response

func NewSingleEnvironment200Response

func NewSingleEnvironment200Response() *SingleEnvironment200Response

NewSingleEnvironment200Response instantiates a new SingleEnvironment200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleEnvironment200ResponseWithDefaults

func NewSingleEnvironment200ResponseWithDefaults() *SingleEnvironment200Response

NewSingleEnvironment200ResponseWithDefaults instantiates a new SingleEnvironment200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleEnvironment200Response) GetEnvironment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*SingleEnvironment200Response) GetEnvironmentOk

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleEnvironment200Response) HasEnvironment

func (o *SingleEnvironment200Response) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (SingleEnvironment200Response) MarshalJSON

func (o SingleEnvironment200Response) MarshalJSON() ([]byte, error)

func (*SingleEnvironment200Response) SetEnvironment

SetEnvironment gets a reference to the given SingleEnvironment200ResponseEnvironment and assigns it to the Environment field.

func (SingleEnvironment200Response) ToMap

func (o SingleEnvironment200Response) ToMap() (map[string]interface{}, error)

type SingleEnvironment200ResponseEnvironment

type SingleEnvironment200ResponseEnvironment struct {
	// The date and time at which the environment was created.
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	// The environment's ID.
	Id *string `json:"id,omitempty"`
	// If true, the environment is public.
	IsPublic *bool `json:"isPublic,omitempty"`
	// The environment's name.
	Name *string `json:"name,omitempty"`
	// The ID of environment's owner.
	Owner *string `json:"owner,omitempty"`
	// The date and time at which the environment was last updated.
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
	// Information about the environment's variables.
	Values []CreateEnvironmentRequestEnvironmentValuesInner `json:"values,omitempty"`
}

SingleEnvironment200ResponseEnvironment struct for SingleEnvironment200ResponseEnvironment

func NewSingleEnvironment200ResponseEnvironment

func NewSingleEnvironment200ResponseEnvironment() *SingleEnvironment200ResponseEnvironment

NewSingleEnvironment200ResponseEnvironment instantiates a new SingleEnvironment200ResponseEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleEnvironment200ResponseEnvironmentWithDefaults

func NewSingleEnvironment200ResponseEnvironmentWithDefaults() *SingleEnvironment200ResponseEnvironment

NewSingleEnvironment200ResponseEnvironmentWithDefaults instantiates a new SingleEnvironment200ResponseEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleEnvironment200ResponseEnvironment) GetCreatedAt

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SingleEnvironment200ResponseEnvironment) GetCreatedAtOk

func (o *SingleEnvironment200ResponseEnvironment) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleEnvironment200ResponseEnvironment) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SingleEnvironment200ResponseEnvironment) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleEnvironment200ResponseEnvironment) GetIsPublic

GetIsPublic returns the IsPublic field value if set, zero value otherwise.

func (*SingleEnvironment200ResponseEnvironment) GetIsPublicOk

func (o *SingleEnvironment200ResponseEnvironment) GetIsPublicOk() (*bool, bool)

GetIsPublicOk returns a tuple with the IsPublic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleEnvironment200ResponseEnvironment) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*SingleEnvironment200ResponseEnvironment) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleEnvironment200ResponseEnvironment) GetOwner

GetOwner returns the Owner field value if set, zero value otherwise.

func (*SingleEnvironment200ResponseEnvironment) GetOwnerOk

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleEnvironment200ResponseEnvironment) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*SingleEnvironment200ResponseEnvironment) GetUpdatedAtOk

func (o *SingleEnvironment200ResponseEnvironment) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleEnvironment200ResponseEnvironment) GetValues

GetValues returns the Values field value if set, zero value otherwise.

func (*SingleEnvironment200ResponseEnvironment) GetValuesOk

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleEnvironment200ResponseEnvironment) HasCreatedAt

HasCreatedAt returns a boolean if a field has been set.

func (*SingleEnvironment200ResponseEnvironment) HasId

HasId returns a boolean if a field has been set.

func (*SingleEnvironment200ResponseEnvironment) HasIsPublic

HasIsPublic returns a boolean if a field has been set.

func (*SingleEnvironment200ResponseEnvironment) HasName

HasName returns a boolean if a field has been set.

func (*SingleEnvironment200ResponseEnvironment) HasOwner

HasOwner returns a boolean if a field has been set.

func (*SingleEnvironment200ResponseEnvironment) HasUpdatedAt

HasUpdatedAt returns a boolean if a field has been set.

func (*SingleEnvironment200ResponseEnvironment) HasValues

HasValues returns a boolean if a field has been set.

func (SingleEnvironment200ResponseEnvironment) MarshalJSON

func (o SingleEnvironment200ResponseEnvironment) MarshalJSON() ([]byte, error)

func (*SingleEnvironment200ResponseEnvironment) SetCreatedAt

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*SingleEnvironment200ResponseEnvironment) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*SingleEnvironment200ResponseEnvironment) SetIsPublic

SetIsPublic gets a reference to the given bool and assigns it to the IsPublic field.

func (*SingleEnvironment200ResponseEnvironment) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*SingleEnvironment200ResponseEnvironment) SetOwner

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*SingleEnvironment200ResponseEnvironment) SetUpdatedAt

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*SingleEnvironment200ResponseEnvironment) SetValues

SetValues gets a reference to the given []CreateEnvironmentRequestEnvironmentValuesInner and assigns it to the Values field.

func (SingleEnvironment200ResponseEnvironment) ToMap

func (o SingleEnvironment200ResponseEnvironment) ToMap() (map[string]interface{}, error)

type SingleWorkspace200Response

type SingleWorkspace200Response struct {
	Workspace *SingleWorkspace200ResponseWorkspace `json:"workspace,omitempty"`
}

SingleWorkspace200Response struct for SingleWorkspace200Response

func NewSingleWorkspace200Response

func NewSingleWorkspace200Response() *SingleWorkspace200Response

NewSingleWorkspace200Response instantiates a new SingleWorkspace200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleWorkspace200ResponseWithDefaults

func NewSingleWorkspace200ResponseWithDefaults() *SingleWorkspace200Response

NewSingleWorkspace200ResponseWithDefaults instantiates a new SingleWorkspace200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleWorkspace200Response) GetWorkspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*SingleWorkspace200Response) GetWorkspaceOk

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200Response) HasWorkspace

func (o *SingleWorkspace200Response) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (SingleWorkspace200Response) MarshalJSON

func (o SingleWorkspace200Response) MarshalJSON() ([]byte, error)

func (*SingleWorkspace200Response) SetWorkspace

SetWorkspace gets a reference to the given SingleWorkspace200ResponseWorkspace and assigns it to the Workspace field.

func (SingleWorkspace200Response) ToMap

func (o SingleWorkspace200Response) ToMap() (map[string]interface{}, error)

type SingleWorkspace200ResponseWorkspace

type SingleWorkspace200ResponseWorkspace struct {
	// The workspace's APIs.
	Apis []SingleWorkspace200ResponseWorkspaceApisInner `json:"apis,omitempty"`
	// The workspace's collections.
	Collections []SingleWorkspace200ResponseWorkspaceCollectionsInner `json:"collections,omitempty"`
	// The date and time at which the workspace was created.
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	// The user ID of the user who created the workspace.
	CreatedBy *string `json:"createdBy,omitempty"`
	// The workspace's description.
	Description *string `json:"description,omitempty"`
	// The workspace's environments.
	Environments []SingleWorkspace200ResponseWorkspaceEnvironmentsInner `json:"environments,omitempty"`
	// The workspace's ID.
	Id *string `json:"id,omitempty"`
	// The workspace's mock servers.
	Mocks []SingleWorkspace200ResponseWorkspaceMocksInner `json:"mocks,omitempty"`
	// The workspace's monitors.
	Monitors []SingleWorkspace200ResponseWorkspaceMonitorsInner `json:"monitors,omitempty"`
	// The workspace's name.
	Name *string `json:"name,omitempty"`
	// The type of workspace.
	Type *string `json:"type,omitempty"`
	// The date and time at which the workspace was last updated.
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
	// The user ID of the user who last updated the workspace.
	UpdatedBy *string `json:"updatedBy,omitempty"`
	// The workspace's visibility. [Visibility](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/managing-workspaces/#changing-workspace-visibility) determines who can access the workspace:  - `only-me` — Applies to the **My Workspace** workspace. - `personal` — Only you can access the workspace. - `team` — All team members can access the workspace. - `private-team` — Only invited team members can access the workspace. - `public` — Everyone can access the workspace.
	Visibility *string `json:"visibility,omitempty"`
}

SingleWorkspace200ResponseWorkspace Information about the workspace.

func NewSingleWorkspace200ResponseWorkspace

func NewSingleWorkspace200ResponseWorkspace() *SingleWorkspace200ResponseWorkspace

NewSingleWorkspace200ResponseWorkspace instantiates a new SingleWorkspace200ResponseWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleWorkspace200ResponseWorkspaceWithDefaults

func NewSingleWorkspace200ResponseWorkspaceWithDefaults() *SingleWorkspace200ResponseWorkspace

NewSingleWorkspace200ResponseWorkspaceWithDefaults instantiates a new SingleWorkspace200ResponseWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleWorkspace200ResponseWorkspace) GetApis

GetApis returns the Apis field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetApisOk

GetApisOk returns a tuple with the Apis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetCollections

GetCollections returns the Collections field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetCollectionsOk

GetCollectionsOk returns a tuple with the Collections field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetCreatedAt

func (o *SingleWorkspace200ResponseWorkspace) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetCreatedAtOk

func (o *SingleWorkspace200ResponseWorkspace) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetCreatedBy

func (o *SingleWorkspace200ResponseWorkspace) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetCreatedByOk

func (o *SingleWorkspace200ResponseWorkspace) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetDescription

func (o *SingleWorkspace200ResponseWorkspace) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetDescriptionOk

func (o *SingleWorkspace200ResponseWorkspace) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetEnvironments

GetEnvironments returns the Environments field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetEnvironmentsOk

GetEnvironmentsOk returns a tuple with the Environments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetMocks

GetMocks returns the Mocks field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetMocksOk

GetMocksOk returns a tuple with the Mocks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetMonitors

GetMonitors returns the Monitors field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetMonitorsOk

GetMonitorsOk returns a tuple with the Monitors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetNameOk

func (o *SingleWorkspace200ResponseWorkspace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetTypeOk

func (o *SingleWorkspace200ResponseWorkspace) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetUpdatedAt

func (o *SingleWorkspace200ResponseWorkspace) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetUpdatedAtOk

func (o *SingleWorkspace200ResponseWorkspace) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetUpdatedBy

func (o *SingleWorkspace200ResponseWorkspace) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetUpdatedByOk

func (o *SingleWorkspace200ResponseWorkspace) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) GetVisibility

func (o *SingleWorkspace200ResponseWorkspace) GetVisibility() string

GetVisibility returns the Visibility field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspace) GetVisibilityOk

func (o *SingleWorkspace200ResponseWorkspace) GetVisibilityOk() (*string, bool)

GetVisibilityOk returns a tuple with the Visibility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspace) HasApis

HasApis returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasCollections

func (o *SingleWorkspace200ResponseWorkspace) HasCollections() bool

HasCollections returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasCreatedAt

func (o *SingleWorkspace200ResponseWorkspace) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasCreatedBy

func (o *SingleWorkspace200ResponseWorkspace) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasDescription

func (o *SingleWorkspace200ResponseWorkspace) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasEnvironments

func (o *SingleWorkspace200ResponseWorkspace) HasEnvironments() bool

HasEnvironments returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasId

HasId returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasMocks

HasMocks returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasMonitors

func (o *SingleWorkspace200ResponseWorkspace) HasMonitors() bool

HasMonitors returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasName

HasName returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasType

HasType returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasUpdatedAt

func (o *SingleWorkspace200ResponseWorkspace) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasUpdatedBy

func (o *SingleWorkspace200ResponseWorkspace) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspace) HasVisibility

func (o *SingleWorkspace200ResponseWorkspace) HasVisibility() bool

HasVisibility returns a boolean if a field has been set.

func (SingleWorkspace200ResponseWorkspace) MarshalJSON

func (o SingleWorkspace200ResponseWorkspace) MarshalJSON() ([]byte, error)

func (*SingleWorkspace200ResponseWorkspace) SetApis

SetApis gets a reference to the given []SingleWorkspace200ResponseWorkspaceApisInner and assigns it to the Apis field.

func (*SingleWorkspace200ResponseWorkspace) SetCollections

SetCollections gets a reference to the given []SingleWorkspace200ResponseWorkspaceCollectionsInner and assigns it to the Collections field.

func (*SingleWorkspace200ResponseWorkspace) SetCreatedAt

func (o *SingleWorkspace200ResponseWorkspace) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*SingleWorkspace200ResponseWorkspace) SetCreatedBy

func (o *SingleWorkspace200ResponseWorkspace) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*SingleWorkspace200ResponseWorkspace) SetDescription

func (o *SingleWorkspace200ResponseWorkspace) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*SingleWorkspace200ResponseWorkspace) SetEnvironments

SetEnvironments gets a reference to the given []SingleWorkspace200ResponseWorkspaceEnvironmentsInner and assigns it to the Environments field.

func (*SingleWorkspace200ResponseWorkspace) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*SingleWorkspace200ResponseWorkspace) SetMocks

SetMocks gets a reference to the given []SingleWorkspace200ResponseWorkspaceMocksInner and assigns it to the Mocks field.

func (*SingleWorkspace200ResponseWorkspace) SetMonitors

SetMonitors gets a reference to the given []SingleWorkspace200ResponseWorkspaceMonitorsInner and assigns it to the Monitors field.

func (*SingleWorkspace200ResponseWorkspace) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*SingleWorkspace200ResponseWorkspace) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*SingleWorkspace200ResponseWorkspace) SetUpdatedAt

func (o *SingleWorkspace200ResponseWorkspace) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*SingleWorkspace200ResponseWorkspace) SetUpdatedBy

func (o *SingleWorkspace200ResponseWorkspace) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*SingleWorkspace200ResponseWorkspace) SetVisibility

func (o *SingleWorkspace200ResponseWorkspace) SetVisibility(v string)

SetVisibility gets a reference to the given string and assigns it to the Visibility field.

func (SingleWorkspace200ResponseWorkspace) ToMap

func (o SingleWorkspace200ResponseWorkspace) ToMap() (map[string]interface{}, error)

type SingleWorkspace200ResponseWorkspaceApisInner

type SingleWorkspace200ResponseWorkspaceApisInner struct {
	// The API's ID.
	Id *string `json:"id,omitempty"`
	// The API's name.
	// Deprecated
	Name *string `json:"name,omitempty"`
	// The API's unique ID.
	// Deprecated
	Uid *string `json:"uid,omitempty"`
}

SingleWorkspace200ResponseWorkspaceApisInner Information about the API.

func NewSingleWorkspace200ResponseWorkspaceApisInner

func NewSingleWorkspace200ResponseWorkspaceApisInner() *SingleWorkspace200ResponseWorkspaceApisInner

NewSingleWorkspace200ResponseWorkspaceApisInner instantiates a new SingleWorkspace200ResponseWorkspaceApisInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleWorkspace200ResponseWorkspaceApisInnerWithDefaults

func NewSingleWorkspace200ResponseWorkspaceApisInnerWithDefaults() *SingleWorkspace200ResponseWorkspaceApisInner

NewSingleWorkspace200ResponseWorkspaceApisInnerWithDefaults instantiates a new SingleWorkspace200ResponseWorkspaceApisInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleWorkspace200ResponseWorkspaceApisInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspaceApisInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspaceApisInner) GetName

GetName returns the Name field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceApisInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceApisInner) GetUid

GetUid returns the Uid field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceApisInner) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceApisInner) HasId

HasId returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceApisInner) HasName

HasName returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceApisInner) HasUid

HasUid returns a boolean if a field has been set.

func (SingleWorkspace200ResponseWorkspaceApisInner) MarshalJSON

func (*SingleWorkspace200ResponseWorkspaceApisInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*SingleWorkspace200ResponseWorkspaceApisInner) SetName

SetName gets a reference to the given string and assigns it to the Name field. Deprecated

func (*SingleWorkspace200ResponseWorkspaceApisInner) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field. Deprecated

func (SingleWorkspace200ResponseWorkspaceApisInner) ToMap

func (o SingleWorkspace200ResponseWorkspaceApisInner) ToMap() (map[string]interface{}, error)

type SingleWorkspace200ResponseWorkspaceCollectionsInner

type SingleWorkspace200ResponseWorkspaceCollectionsInner struct {
	// The collection's ID.
	Id *string `json:"id,omitempty"`
	// The collection's name.
	// Deprecated
	Name *string `json:"name,omitempty"`
	// The collection's unique ID.
	// Deprecated
	Uid *string `json:"uid,omitempty"`
}

SingleWorkspace200ResponseWorkspaceCollectionsInner Information about the collection.

func NewSingleWorkspace200ResponseWorkspaceCollectionsInner

func NewSingleWorkspace200ResponseWorkspaceCollectionsInner() *SingleWorkspace200ResponseWorkspaceCollectionsInner

NewSingleWorkspace200ResponseWorkspaceCollectionsInner instantiates a new SingleWorkspace200ResponseWorkspaceCollectionsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleWorkspace200ResponseWorkspaceCollectionsInnerWithDefaults

func NewSingleWorkspace200ResponseWorkspaceCollectionsInnerWithDefaults() *SingleWorkspace200ResponseWorkspaceCollectionsInner

NewSingleWorkspace200ResponseWorkspaceCollectionsInnerWithDefaults instantiates a new SingleWorkspace200ResponseWorkspaceCollectionsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) GetName

GetName returns the Name field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) GetUid

GetUid returns the Uid field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) HasId

HasId returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) HasName

HasName returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) HasUid

HasUid returns a boolean if a field has been set.

func (SingleWorkspace200ResponseWorkspaceCollectionsInner) MarshalJSON

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) SetName

SetName gets a reference to the given string and assigns it to the Name field. Deprecated

func (*SingleWorkspace200ResponseWorkspaceCollectionsInner) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field. Deprecated

func (SingleWorkspace200ResponseWorkspaceCollectionsInner) ToMap

type SingleWorkspace200ResponseWorkspaceEnvironmentsInner

type SingleWorkspace200ResponseWorkspaceEnvironmentsInner struct {
	// The environment's ID.
	Id *string `json:"id,omitempty"`
	// The environment's name.
	// Deprecated
	Name *string `json:"name,omitempty"`
	// The environment's unique ID.
	// Deprecated
	Uid *string `json:"uid,omitempty"`
}

SingleWorkspace200ResponseWorkspaceEnvironmentsInner Information about the environment.

func NewSingleWorkspace200ResponseWorkspaceEnvironmentsInner

func NewSingleWorkspace200ResponseWorkspaceEnvironmentsInner() *SingleWorkspace200ResponseWorkspaceEnvironmentsInner

NewSingleWorkspace200ResponseWorkspaceEnvironmentsInner instantiates a new SingleWorkspace200ResponseWorkspaceEnvironmentsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleWorkspace200ResponseWorkspaceEnvironmentsInnerWithDefaults

func NewSingleWorkspace200ResponseWorkspaceEnvironmentsInnerWithDefaults() *SingleWorkspace200ResponseWorkspaceEnvironmentsInner

NewSingleWorkspace200ResponseWorkspaceEnvironmentsInnerWithDefaults instantiates a new SingleWorkspace200ResponseWorkspaceEnvironmentsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) GetName

GetName returns the Name field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) GetUid

GetUid returns the Uid field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) HasId

HasId returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) HasName

HasName returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) HasUid

HasUid returns a boolean if a field has been set.

func (SingleWorkspace200ResponseWorkspaceEnvironmentsInner) MarshalJSON

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) SetName

SetName gets a reference to the given string and assigns it to the Name field. Deprecated

func (*SingleWorkspace200ResponseWorkspaceEnvironmentsInner) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field. Deprecated

func (SingleWorkspace200ResponseWorkspaceEnvironmentsInner) ToMap

type SingleWorkspace200ResponseWorkspaceMocksInner

type SingleWorkspace200ResponseWorkspaceMocksInner struct {
	// The mock server's ID.
	Id *string `json:"id,omitempty"`
	// The mock server's name.
	// Deprecated
	Name *string `json:"name,omitempty"`
	// The mock server's unique ID.
	// Deprecated
	Uid *string `json:"uid,omitempty"`
}

SingleWorkspace200ResponseWorkspaceMocksInner Information about the mock server.

func NewSingleWorkspace200ResponseWorkspaceMocksInner

func NewSingleWorkspace200ResponseWorkspaceMocksInner() *SingleWorkspace200ResponseWorkspaceMocksInner

NewSingleWorkspace200ResponseWorkspaceMocksInner instantiates a new SingleWorkspace200ResponseWorkspaceMocksInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleWorkspace200ResponseWorkspaceMocksInnerWithDefaults

func NewSingleWorkspace200ResponseWorkspaceMocksInnerWithDefaults() *SingleWorkspace200ResponseWorkspaceMocksInner

NewSingleWorkspace200ResponseWorkspaceMocksInnerWithDefaults instantiates a new SingleWorkspace200ResponseWorkspaceMocksInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleWorkspace200ResponseWorkspaceMocksInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspaceMocksInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspaceMocksInner) GetName

GetName returns the Name field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMocksInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMocksInner) GetUid

GetUid returns the Uid field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMocksInner) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMocksInner) HasId

HasId returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceMocksInner) HasName

HasName returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceMocksInner) HasUid

HasUid returns a boolean if a field has been set.

func (SingleWorkspace200ResponseWorkspaceMocksInner) MarshalJSON

func (*SingleWorkspace200ResponseWorkspaceMocksInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*SingleWorkspace200ResponseWorkspaceMocksInner) SetName

SetName gets a reference to the given string and assigns it to the Name field. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMocksInner) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field. Deprecated

func (SingleWorkspace200ResponseWorkspaceMocksInner) ToMap

func (o SingleWorkspace200ResponseWorkspaceMocksInner) ToMap() (map[string]interface{}, error)

type SingleWorkspace200ResponseWorkspaceMonitorsInner

type SingleWorkspace200ResponseWorkspaceMonitorsInner struct {
	// The monitor's ID.
	Id *string `json:"id,omitempty"`
	// The monitor's name.
	// Deprecated
	Name *string `json:"name,omitempty"`
	// The monitor's unique ID.
	// Deprecated
	Uid *string `json:"uid,omitempty"`
}

SingleWorkspace200ResponseWorkspaceMonitorsInner Information about the monitor.

func NewSingleWorkspace200ResponseWorkspaceMonitorsInner

func NewSingleWorkspace200ResponseWorkspaceMonitorsInner() *SingleWorkspace200ResponseWorkspaceMonitorsInner

NewSingleWorkspace200ResponseWorkspaceMonitorsInner instantiates a new SingleWorkspace200ResponseWorkspaceMonitorsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSingleWorkspace200ResponseWorkspaceMonitorsInnerWithDefaults

func NewSingleWorkspace200ResponseWorkspaceMonitorsInnerWithDefaults() *SingleWorkspace200ResponseWorkspaceMonitorsInner

NewSingleWorkspace200ResponseWorkspaceMonitorsInnerWithDefaults instantiates a new SingleWorkspace200ResponseWorkspaceMonitorsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) GetName

GetName returns the Name field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) GetUid

GetUid returns the Uid field value if set, zero value otherwise. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) HasId

HasId returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) HasName

HasName returns a boolean if a field has been set.

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) HasUid

HasUid returns a boolean if a field has been set.

func (SingleWorkspace200ResponseWorkspaceMonitorsInner) MarshalJSON

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) SetName

SetName gets a reference to the given string and assigns it to the Name field. Deprecated

func (*SingleWorkspace200ResponseWorkspaceMonitorsInner) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field. Deprecated

func (SingleWorkspace200ResponseWorkspaceMonitorsInner) ToMap

func (o SingleWorkspace200ResponseWorkspaceMonitorsInner) ToMap() (map[string]interface{}, error)

type UpdateEnvironment200Response

type UpdateEnvironment200Response struct {
	Environment *UpdateEnvironment200ResponseEnvironment `json:"environment,omitempty"`
}

UpdateEnvironment200Response struct for UpdateEnvironment200Response

func NewUpdateEnvironment200Response

func NewUpdateEnvironment200Response() *UpdateEnvironment200Response

NewUpdateEnvironment200Response instantiates a new UpdateEnvironment200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateEnvironment200ResponseWithDefaults

func NewUpdateEnvironment200ResponseWithDefaults() *UpdateEnvironment200Response

NewUpdateEnvironment200ResponseWithDefaults instantiates a new UpdateEnvironment200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateEnvironment200Response) GetEnvironment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*UpdateEnvironment200Response) GetEnvironmentOk

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironment200Response) HasEnvironment

func (o *UpdateEnvironment200Response) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (UpdateEnvironment200Response) MarshalJSON

func (o UpdateEnvironment200Response) MarshalJSON() ([]byte, error)

func (*UpdateEnvironment200Response) SetEnvironment

SetEnvironment gets a reference to the given UpdateEnvironment200ResponseEnvironment and assigns it to the Environment field.

func (UpdateEnvironment200Response) ToMap

func (o UpdateEnvironment200Response) ToMap() (map[string]interface{}, error)

type UpdateEnvironment200ResponseEnvironment

type UpdateEnvironment200ResponseEnvironment struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
	Uid  *string `json:"uid,omitempty"`
}

UpdateEnvironment200ResponseEnvironment struct for UpdateEnvironment200ResponseEnvironment

func NewUpdateEnvironment200ResponseEnvironment

func NewUpdateEnvironment200ResponseEnvironment() *UpdateEnvironment200ResponseEnvironment

NewUpdateEnvironment200ResponseEnvironment instantiates a new UpdateEnvironment200ResponseEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateEnvironment200ResponseEnvironmentWithDefaults

func NewUpdateEnvironment200ResponseEnvironmentWithDefaults() *UpdateEnvironment200ResponseEnvironment

NewUpdateEnvironment200ResponseEnvironmentWithDefaults instantiates a new UpdateEnvironment200ResponseEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateEnvironment200ResponseEnvironment) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*UpdateEnvironment200ResponseEnvironment) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironment200ResponseEnvironment) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateEnvironment200ResponseEnvironment) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironment200ResponseEnvironment) GetUid

GetUid returns the Uid field value if set, zero value otherwise.

func (*UpdateEnvironment200ResponseEnvironment) GetUidOk

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironment200ResponseEnvironment) HasId

HasId returns a boolean if a field has been set.

func (*UpdateEnvironment200ResponseEnvironment) HasName

HasName returns a boolean if a field has been set.

func (*UpdateEnvironment200ResponseEnvironment) HasUid

HasUid returns a boolean if a field has been set.

func (UpdateEnvironment200ResponseEnvironment) MarshalJSON

func (o UpdateEnvironment200ResponseEnvironment) MarshalJSON() ([]byte, error)

func (*UpdateEnvironment200ResponseEnvironment) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*UpdateEnvironment200ResponseEnvironment) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateEnvironment200ResponseEnvironment) SetUid

SetUid gets a reference to the given string and assigns it to the Uid field.

func (UpdateEnvironment200ResponseEnvironment) ToMap

func (o UpdateEnvironment200ResponseEnvironment) ToMap() (map[string]interface{}, error)

type UpdateEnvironment400Response

type UpdateEnvironment400Response struct {
	Error *UpdateEnvironment400ResponseError `json:"error,omitempty"`
}

UpdateEnvironment400Response struct for UpdateEnvironment400Response

func NewUpdateEnvironment400Response

func NewUpdateEnvironment400Response() *UpdateEnvironment400Response

NewUpdateEnvironment400Response instantiates a new UpdateEnvironment400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateEnvironment400ResponseWithDefaults

func NewUpdateEnvironment400ResponseWithDefaults() *UpdateEnvironment400Response

NewUpdateEnvironment400ResponseWithDefaults instantiates a new UpdateEnvironment400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateEnvironment400Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*UpdateEnvironment400Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironment400Response) HasError

func (o *UpdateEnvironment400Response) HasError() bool

HasError returns a boolean if a field has been set.

func (UpdateEnvironment400Response) MarshalJSON

func (o UpdateEnvironment400Response) MarshalJSON() ([]byte, error)

func (*UpdateEnvironment400Response) SetError

SetError gets a reference to the given UpdateEnvironment400ResponseError and assigns it to the Error field.

func (UpdateEnvironment400Response) ToMap

func (o UpdateEnvironment400Response) ToMap() (map[string]interface{}, error)

type UpdateEnvironment400ResponseError

type UpdateEnvironment400ResponseError struct {
	// The error message.
	Message *string `json:"message,omitempty"`
	// The error name.
	Name *string `json:"name,omitempty"`
}

UpdateEnvironment400ResponseError struct for UpdateEnvironment400ResponseError

func NewUpdateEnvironment400ResponseError

func NewUpdateEnvironment400ResponseError() *UpdateEnvironment400ResponseError

NewUpdateEnvironment400ResponseError instantiates a new UpdateEnvironment400ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateEnvironment400ResponseErrorWithDefaults

func NewUpdateEnvironment400ResponseErrorWithDefaults() *UpdateEnvironment400ResponseError

NewUpdateEnvironment400ResponseErrorWithDefaults instantiates a new UpdateEnvironment400ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateEnvironment400ResponseError) GetMessage

func (o *UpdateEnvironment400ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*UpdateEnvironment400ResponseError) GetMessageOk

func (o *UpdateEnvironment400ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironment400ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateEnvironment400ResponseError) GetNameOk

func (o *UpdateEnvironment400ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateEnvironment400ResponseError) HasMessage

func (o *UpdateEnvironment400ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*UpdateEnvironment400ResponseError) HasName

HasName returns a boolean if a field has been set.

func (UpdateEnvironment400ResponseError) MarshalJSON

func (o UpdateEnvironment400ResponseError) MarshalJSON() ([]byte, error)

func (*UpdateEnvironment400ResponseError) SetMessage

func (o *UpdateEnvironment400ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UpdateEnvironment400ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (UpdateEnvironment400ResponseError) ToMap

func (o UpdateEnvironment400ResponseError) ToMap() (map[string]interface{}, error)

type UpdatePANApi

type UpdatePANApi struct {
	Api *UpdatePANApiApi `json:"api,omitempty"`
}

UpdatePANApi struct for UpdatePANApi

func NewUpdatePANApi

func NewUpdatePANApi() *UpdatePANApi

NewUpdatePANApi instantiates a new UpdatePANApi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePANApiWithDefaults

func NewUpdatePANApiWithDefaults() *UpdatePANApi

NewUpdatePANApiWithDefaults instantiates a new UpdatePANApi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePANApi) GetApi

func (o *UpdatePANApi) GetApi() UpdatePANApiApi

GetApi returns the Api field value if set, zero value otherwise.

func (*UpdatePANApi) GetApiOk

func (o *UpdatePANApi) GetApiOk() (*UpdatePANApiApi, bool)

GetApiOk returns a tuple with the Api field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANApi) HasApi

func (o *UpdatePANApi) HasApi() bool

HasApi returns a boolean if a field has been set.

func (UpdatePANApi) MarshalJSON

func (o UpdatePANApi) MarshalJSON() ([]byte, error)

func (*UpdatePANApi) SetApi

func (o *UpdatePANApi) SetApi(v UpdatePANApiApi)

SetApi gets a reference to the given UpdatePANApiApi and assigns it to the Api field.

func (UpdatePANApi) ToMap

func (o UpdatePANApi) ToMap() (map[string]interface{}, error)

type UpdatePANApiApi

type UpdatePANApiApi struct {
	// The API's new parent folder ID.
	ParentFolderId *int32 `json:"parentFolderId,omitempty"`
}

UpdatePANApiApi struct for UpdatePANApiApi

func NewUpdatePANApiApi

func NewUpdatePANApiApi() *UpdatePANApiApi

NewUpdatePANApiApi instantiates a new UpdatePANApiApi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePANApiApiWithDefaults

func NewUpdatePANApiApiWithDefaults() *UpdatePANApiApi

NewUpdatePANApiApiWithDefaults instantiates a new UpdatePANApiApi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePANApiApi) GetParentFolderId

func (o *UpdatePANApiApi) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value if set, zero value otherwise.

func (*UpdatePANApiApi) GetParentFolderIdOk

func (o *UpdatePANApiApi) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANApiApi) HasParentFolderId

func (o *UpdatePANApiApi) HasParentFolderId() bool

HasParentFolderId returns a boolean if a field has been set.

func (UpdatePANApiApi) MarshalJSON

func (o UpdatePANApiApi) MarshalJSON() ([]byte, error)

func (*UpdatePANApiApi) SetParentFolderId

func (o *UpdatePANApiApi) SetParentFolderId(v int32)

SetParentFolderId gets a reference to the given int32 and assigns it to the ParentFolderId field.

func (UpdatePANApiApi) ToMap

func (o UpdatePANApiApi) ToMap() (map[string]interface{}, error)

type UpdatePANCollection

type UpdatePANCollection struct {
	Collection *UpdatePANCollectionCollection `json:"collection,omitempty"`
}

UpdatePANCollection struct for UpdatePANCollection

func NewUpdatePANCollection

func NewUpdatePANCollection() *UpdatePANCollection

NewUpdatePANCollection instantiates a new UpdatePANCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePANCollectionWithDefaults

func NewUpdatePANCollectionWithDefaults() *UpdatePANCollection

NewUpdatePANCollectionWithDefaults instantiates a new UpdatePANCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePANCollection) GetCollection

GetCollection returns the Collection field value if set, zero value otherwise.

func (*UpdatePANCollection) GetCollectionOk

func (o *UpdatePANCollection) GetCollectionOk() (*UpdatePANCollectionCollection, bool)

GetCollectionOk returns a tuple with the Collection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANCollection) HasCollection

func (o *UpdatePANCollection) HasCollection() bool

HasCollection returns a boolean if a field has been set.

func (UpdatePANCollection) MarshalJSON

func (o UpdatePANCollection) MarshalJSON() ([]byte, error)

func (*UpdatePANCollection) SetCollection

SetCollection gets a reference to the given UpdatePANCollectionCollection and assigns it to the Collection field.

func (UpdatePANCollection) ToMap

func (o UpdatePANCollection) ToMap() (map[string]interface{}, error)

type UpdatePANCollectionCollection

type UpdatePANCollectionCollection struct {
	// The collection's new parent folder ID.
	ParentFolderId *int32 `json:"parentFolderId,omitempty"`
	// The collection's updated summary.
	Summary *string `json:"summary,omitempty"`
}

UpdatePANCollectionCollection struct for UpdatePANCollectionCollection

func NewUpdatePANCollectionCollection

func NewUpdatePANCollectionCollection() *UpdatePANCollectionCollection

NewUpdatePANCollectionCollection instantiates a new UpdatePANCollectionCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePANCollectionCollectionWithDefaults

func NewUpdatePANCollectionCollectionWithDefaults() *UpdatePANCollectionCollection

NewUpdatePANCollectionCollectionWithDefaults instantiates a new UpdatePANCollectionCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePANCollectionCollection) GetParentFolderId

func (o *UpdatePANCollectionCollection) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value if set, zero value otherwise.

func (*UpdatePANCollectionCollection) GetParentFolderIdOk

func (o *UpdatePANCollectionCollection) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANCollectionCollection) GetSummary

func (o *UpdatePANCollectionCollection) GetSummary() string

GetSummary returns the Summary field value if set, zero value otherwise.

func (*UpdatePANCollectionCollection) GetSummaryOk

func (o *UpdatePANCollectionCollection) GetSummaryOk() (*string, bool)

GetSummaryOk returns a tuple with the Summary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANCollectionCollection) HasParentFolderId

func (o *UpdatePANCollectionCollection) HasParentFolderId() bool

HasParentFolderId returns a boolean if a field has been set.

func (*UpdatePANCollectionCollection) HasSummary

func (o *UpdatePANCollectionCollection) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (UpdatePANCollectionCollection) MarshalJSON

func (o UpdatePANCollectionCollection) MarshalJSON() ([]byte, error)

func (*UpdatePANCollectionCollection) SetParentFolderId

func (o *UpdatePANCollectionCollection) SetParentFolderId(v int32)

SetParentFolderId gets a reference to the given int32 and assigns it to the ParentFolderId field.

func (*UpdatePANCollectionCollection) SetSummary

func (o *UpdatePANCollectionCollection) SetSummary(v string)

SetSummary gets a reference to the given string and assigns it to the Summary field.

func (UpdatePANCollectionCollection) ToMap

func (o UpdatePANCollectionCollection) ToMap() (map[string]interface{}, error)

type UpdatePANFolder

type UpdatePANFolder struct {
	Folder *UpdatePANFolderFolder `json:"folder,omitempty"`
}

UpdatePANFolder struct for UpdatePANFolder

func NewUpdatePANFolder

func NewUpdatePANFolder() *UpdatePANFolder

NewUpdatePANFolder instantiates a new UpdatePANFolder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePANFolderWithDefaults

func NewUpdatePANFolderWithDefaults() *UpdatePANFolder

NewUpdatePANFolderWithDefaults instantiates a new UpdatePANFolder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePANFolder) GetFolder

func (o *UpdatePANFolder) GetFolder() UpdatePANFolderFolder

GetFolder returns the Folder field value if set, zero value otherwise.

func (*UpdatePANFolder) GetFolderOk

func (o *UpdatePANFolder) GetFolderOk() (*UpdatePANFolderFolder, bool)

GetFolderOk returns a tuple with the Folder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANFolder) HasFolder

func (o *UpdatePANFolder) HasFolder() bool

HasFolder returns a boolean if a field has been set.

func (UpdatePANFolder) MarshalJSON

func (o UpdatePANFolder) MarshalJSON() ([]byte, error)

func (*UpdatePANFolder) SetFolder

func (o *UpdatePANFolder) SetFolder(v UpdatePANFolderFolder)

SetFolder gets a reference to the given UpdatePANFolderFolder and assigns it to the Folder field.

func (UpdatePANFolder) ToMap

func (o UpdatePANFolder) ToMap() (map[string]interface{}, error)

type UpdatePANFolderFolder

type UpdatePANFolderFolder struct {
	// The folder's updated description.
	Description *string `json:"description,omitempty"`
	// The folder's new name.
	Name *string `json:"name,omitempty"`
	// The folder's new parent folder ID.
	ParentFolderId *int32 `json:"parentFolderId,omitempty"`
}

UpdatePANFolderFolder struct for UpdatePANFolderFolder

func NewUpdatePANFolderFolder

func NewUpdatePANFolderFolder() *UpdatePANFolderFolder

NewUpdatePANFolderFolder instantiates a new UpdatePANFolderFolder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePANFolderFolderWithDefaults

func NewUpdatePANFolderFolderWithDefaults() *UpdatePANFolderFolder

NewUpdatePANFolderFolderWithDefaults instantiates a new UpdatePANFolderFolder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePANFolderFolder) GetDescription

func (o *UpdatePANFolderFolder) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdatePANFolderFolder) GetDescriptionOk

func (o *UpdatePANFolderFolder) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANFolderFolder) GetName

func (o *UpdatePANFolderFolder) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdatePANFolderFolder) GetNameOk

func (o *UpdatePANFolderFolder) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANFolderFolder) GetParentFolderId

func (o *UpdatePANFolderFolder) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value if set, zero value otherwise.

func (*UpdatePANFolderFolder) GetParentFolderIdOk

func (o *UpdatePANFolderFolder) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANFolderFolder) HasDescription

func (o *UpdatePANFolderFolder) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdatePANFolderFolder) HasName

func (o *UpdatePANFolderFolder) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdatePANFolderFolder) HasParentFolderId

func (o *UpdatePANFolderFolder) HasParentFolderId() bool

HasParentFolderId returns a boolean if a field has been set.

func (UpdatePANFolderFolder) MarshalJSON

func (o UpdatePANFolderFolder) MarshalJSON() ([]byte, error)

func (*UpdatePANFolderFolder) SetDescription

func (o *UpdatePANFolderFolder) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdatePANFolderFolder) SetName

func (o *UpdatePANFolderFolder) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdatePANFolderFolder) SetParentFolderId

func (o *UpdatePANFolderFolder) SetParentFolderId(v int32)

SetParentFolderId gets a reference to the given int32 and assigns it to the ParentFolderId field.

func (UpdatePANFolderFolder) ToMap

func (o UpdatePANFolderFolder) ToMap() (map[string]interface{}, error)

type UpdatePANWorkspace

type UpdatePANWorkspace struct {
	Workspace *UpdatePANWorkspaceWorkspace `json:"workspace,omitempty"`
}

UpdatePANWorkspace struct for UpdatePANWorkspace

func NewUpdatePANWorkspace

func NewUpdatePANWorkspace() *UpdatePANWorkspace

NewUpdatePANWorkspace instantiates a new UpdatePANWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePANWorkspaceWithDefaults

func NewUpdatePANWorkspaceWithDefaults() *UpdatePANWorkspace

NewUpdatePANWorkspaceWithDefaults instantiates a new UpdatePANWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePANWorkspace) GetWorkspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*UpdatePANWorkspace) GetWorkspaceOk

func (o *UpdatePANWorkspace) GetWorkspaceOk() (*UpdatePANWorkspaceWorkspace, bool)

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANWorkspace) HasWorkspace

func (o *UpdatePANWorkspace) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (UpdatePANWorkspace) MarshalJSON

func (o UpdatePANWorkspace) MarshalJSON() ([]byte, error)

func (*UpdatePANWorkspace) SetWorkspace

SetWorkspace gets a reference to the given UpdatePANWorkspaceWorkspace and assigns it to the Workspace field.

func (UpdatePANWorkspace) ToMap

func (o UpdatePANWorkspace) ToMap() (map[string]interface{}, error)

type UpdatePANWorkspaceWorkspace

type UpdatePANWorkspaceWorkspace struct {
	// The workspace's new parent folder ID.
	ParentFolderId *int32 `json:"parentFolderId,omitempty"`
}

UpdatePANWorkspaceWorkspace struct for UpdatePANWorkspaceWorkspace

func NewUpdatePANWorkspaceWorkspace

func NewUpdatePANWorkspaceWorkspace() *UpdatePANWorkspaceWorkspace

NewUpdatePANWorkspaceWorkspace instantiates a new UpdatePANWorkspaceWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePANWorkspaceWorkspaceWithDefaults

func NewUpdatePANWorkspaceWorkspaceWithDefaults() *UpdatePANWorkspaceWorkspace

NewUpdatePANWorkspaceWorkspaceWithDefaults instantiates a new UpdatePANWorkspaceWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePANWorkspaceWorkspace) GetParentFolderId

func (o *UpdatePANWorkspaceWorkspace) GetParentFolderId() int32

GetParentFolderId returns the ParentFolderId field value if set, zero value otherwise.

func (*UpdatePANWorkspaceWorkspace) GetParentFolderIdOk

func (o *UpdatePANWorkspaceWorkspace) GetParentFolderIdOk() (*int32, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePANWorkspaceWorkspace) HasParentFolderId

func (o *UpdatePANWorkspaceWorkspace) HasParentFolderId() bool

HasParentFolderId returns a boolean if a field has been set.

func (UpdatePANWorkspaceWorkspace) MarshalJSON

func (o UpdatePANWorkspaceWorkspace) MarshalJSON() ([]byte, error)

func (*UpdatePANWorkspaceWorkspace) SetParentFolderId

func (o *UpdatePANWorkspaceWorkspace) SetParentFolderId(v int32)

SetParentFolderId gets a reference to the given int32 and assigns it to the ParentFolderId field.

func (UpdatePANWorkspaceWorkspace) ToMap

func (o UpdatePANWorkspaceWorkspace) ToMap() (map[string]interface{}, error)

type UpdateWorkspace200Response

type UpdateWorkspace200Response struct {
	Workspace *UpdateWorkspace200ResponseWorkspace `json:"workspace,omitempty"`
}

UpdateWorkspace200Response struct for UpdateWorkspace200Response

func NewUpdateWorkspace200Response

func NewUpdateWorkspace200Response() *UpdateWorkspace200Response

NewUpdateWorkspace200Response instantiates a new UpdateWorkspace200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspace200ResponseWithDefaults

func NewUpdateWorkspace200ResponseWithDefaults() *UpdateWorkspace200Response

NewUpdateWorkspace200ResponseWithDefaults instantiates a new UpdateWorkspace200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspace200Response) GetWorkspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*UpdateWorkspace200Response) GetWorkspaceOk

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace200Response) HasWorkspace

func (o *UpdateWorkspace200Response) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (UpdateWorkspace200Response) MarshalJSON

func (o UpdateWorkspace200Response) MarshalJSON() ([]byte, error)

func (*UpdateWorkspace200Response) SetWorkspace

SetWorkspace gets a reference to the given UpdateWorkspace200ResponseWorkspace and assigns it to the Workspace field.

func (UpdateWorkspace200Response) ToMap

func (o UpdateWorkspace200Response) ToMap() (map[string]interface{}, error)

type UpdateWorkspace200ResponseWorkspace

type UpdateWorkspace200ResponseWorkspace struct {
	// The workspace's ID.
	Id *string `json:"id,omitempty"`
	// The workspace's name.
	Name *string `json:"name,omitempty"`
}

UpdateWorkspace200ResponseWorkspace Information about the updated workspace.

func NewUpdateWorkspace200ResponseWorkspace

func NewUpdateWorkspace200ResponseWorkspace() *UpdateWorkspace200ResponseWorkspace

NewUpdateWorkspace200ResponseWorkspace instantiates a new UpdateWorkspace200ResponseWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspace200ResponseWorkspaceWithDefaults

func NewUpdateWorkspace200ResponseWorkspaceWithDefaults() *UpdateWorkspace200ResponseWorkspace

NewUpdateWorkspace200ResponseWorkspaceWithDefaults instantiates a new UpdateWorkspace200ResponseWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspace200ResponseWorkspace) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*UpdateWorkspace200ResponseWorkspace) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace200ResponseWorkspace) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateWorkspace200ResponseWorkspace) GetNameOk

func (o *UpdateWorkspace200ResponseWorkspace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace200ResponseWorkspace) HasId

HasId returns a boolean if a field has been set.

func (*UpdateWorkspace200ResponseWorkspace) HasName

HasName returns a boolean if a field has been set.

func (UpdateWorkspace200ResponseWorkspace) MarshalJSON

func (o UpdateWorkspace200ResponseWorkspace) MarshalJSON() ([]byte, error)

func (*UpdateWorkspace200ResponseWorkspace) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (*UpdateWorkspace200ResponseWorkspace) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (UpdateWorkspace200ResponseWorkspace) ToMap

func (o UpdateWorkspace200ResponseWorkspace) ToMap() (map[string]interface{}, error)

type UpdateWorkspace400Response

type UpdateWorkspace400Response struct {
	Error *UpdateWorkspace400ResponseError `json:"error,omitempty"`
}

UpdateWorkspace400Response struct for UpdateWorkspace400Response

func NewUpdateWorkspace400Response

func NewUpdateWorkspace400Response() *UpdateWorkspace400Response

NewUpdateWorkspace400Response instantiates a new UpdateWorkspace400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspace400ResponseWithDefaults

func NewUpdateWorkspace400ResponseWithDefaults() *UpdateWorkspace400Response

NewUpdateWorkspace400ResponseWithDefaults instantiates a new UpdateWorkspace400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspace400Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*UpdateWorkspace400Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace400Response) HasError

func (o *UpdateWorkspace400Response) HasError() bool

HasError returns a boolean if a field has been set.

func (UpdateWorkspace400Response) MarshalJSON

func (o UpdateWorkspace400Response) MarshalJSON() ([]byte, error)

func (*UpdateWorkspace400Response) SetError

SetError gets a reference to the given UpdateWorkspace400ResponseError and assigns it to the Error field.

func (UpdateWorkspace400Response) ToMap

func (o UpdateWorkspace400Response) ToMap() (map[string]interface{}, error)

type UpdateWorkspace400ResponseError

type UpdateWorkspace400ResponseError struct {
	// The error message.
	Message *string `json:"message,omitempty"`
	// The error name.
	Name *string `json:"name,omitempty"`
}

UpdateWorkspace400ResponseError struct for UpdateWorkspace400ResponseError

func NewUpdateWorkspace400ResponseError

func NewUpdateWorkspace400ResponseError() *UpdateWorkspace400ResponseError

NewUpdateWorkspace400ResponseError instantiates a new UpdateWorkspace400ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspace400ResponseErrorWithDefaults

func NewUpdateWorkspace400ResponseErrorWithDefaults() *UpdateWorkspace400ResponseError

NewUpdateWorkspace400ResponseErrorWithDefaults instantiates a new UpdateWorkspace400ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspace400ResponseError) GetMessage

func (o *UpdateWorkspace400ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*UpdateWorkspace400ResponseError) GetMessageOk

func (o *UpdateWorkspace400ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace400ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateWorkspace400ResponseError) GetNameOk

func (o *UpdateWorkspace400ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace400ResponseError) HasMessage

func (o *UpdateWorkspace400ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*UpdateWorkspace400ResponseError) HasName

HasName returns a boolean if a field has been set.

func (UpdateWorkspace400ResponseError) MarshalJSON

func (o UpdateWorkspace400ResponseError) MarshalJSON() ([]byte, error)

func (*UpdateWorkspace400ResponseError) SetMessage

func (o *UpdateWorkspace400ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UpdateWorkspace400ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (UpdateWorkspace400ResponseError) ToMap

func (o UpdateWorkspace400ResponseError) ToMap() (map[string]interface{}, error)

type UpdateWorkspace403Response

type UpdateWorkspace403Response struct {
	Error *UpdateWorkspace403ResponseError `json:"error,omitempty"`
}

UpdateWorkspace403Response struct for UpdateWorkspace403Response

func NewUpdateWorkspace403Response

func NewUpdateWorkspace403Response() *UpdateWorkspace403Response

NewUpdateWorkspace403Response instantiates a new UpdateWorkspace403Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspace403ResponseWithDefaults

func NewUpdateWorkspace403ResponseWithDefaults() *UpdateWorkspace403Response

NewUpdateWorkspace403ResponseWithDefaults instantiates a new UpdateWorkspace403Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspace403Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*UpdateWorkspace403Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace403Response) HasError

func (o *UpdateWorkspace403Response) HasError() bool

HasError returns a boolean if a field has been set.

func (UpdateWorkspace403Response) MarshalJSON

func (o UpdateWorkspace403Response) MarshalJSON() ([]byte, error)

func (*UpdateWorkspace403Response) SetError

SetError gets a reference to the given UpdateWorkspace403ResponseError and assigns it to the Error field.

func (UpdateWorkspace403Response) ToMap

func (o UpdateWorkspace403Response) ToMap() (map[string]interface{}, error)

type UpdateWorkspace403ResponseError

type UpdateWorkspace403ResponseError struct {
	// The error message.
	Message *string `json:"message,omitempty"`
	// The error name.
	Name *string `json:"name,omitempty"`
}

UpdateWorkspace403ResponseError struct for UpdateWorkspace403ResponseError

func NewUpdateWorkspace403ResponseError

func NewUpdateWorkspace403ResponseError() *UpdateWorkspace403ResponseError

NewUpdateWorkspace403ResponseError instantiates a new UpdateWorkspace403ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspace403ResponseErrorWithDefaults

func NewUpdateWorkspace403ResponseErrorWithDefaults() *UpdateWorkspace403ResponseError

NewUpdateWorkspace403ResponseErrorWithDefaults instantiates a new UpdateWorkspace403ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspace403ResponseError) GetMessage

func (o *UpdateWorkspace403ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*UpdateWorkspace403ResponseError) GetMessageOk

func (o *UpdateWorkspace403ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace403ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateWorkspace403ResponseError) GetNameOk

func (o *UpdateWorkspace403ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace403ResponseError) HasMessage

func (o *UpdateWorkspace403ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*UpdateWorkspace403ResponseError) HasName

HasName returns a boolean if a field has been set.

func (UpdateWorkspace403ResponseError) MarshalJSON

func (o UpdateWorkspace403ResponseError) MarshalJSON() ([]byte, error)

func (*UpdateWorkspace403ResponseError) SetMessage

func (o *UpdateWorkspace403ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UpdateWorkspace403ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (UpdateWorkspace403ResponseError) ToMap

func (o UpdateWorkspace403ResponseError) ToMap() (map[string]interface{}, error)

type UpdateWorkspace404Response

type UpdateWorkspace404Response struct {
	Error *UpdateWorkspace404ResponseError `json:"error,omitempty"`
}

UpdateWorkspace404Response struct for UpdateWorkspace404Response

func NewUpdateWorkspace404Response

func NewUpdateWorkspace404Response() *UpdateWorkspace404Response

NewUpdateWorkspace404Response instantiates a new UpdateWorkspace404Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspace404ResponseWithDefaults

func NewUpdateWorkspace404ResponseWithDefaults() *UpdateWorkspace404Response

NewUpdateWorkspace404ResponseWithDefaults instantiates a new UpdateWorkspace404Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspace404Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*UpdateWorkspace404Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace404Response) HasError

func (o *UpdateWorkspace404Response) HasError() bool

HasError returns a boolean if a field has been set.

func (UpdateWorkspace404Response) MarshalJSON

func (o UpdateWorkspace404Response) MarshalJSON() ([]byte, error)

func (*UpdateWorkspace404Response) SetError

SetError gets a reference to the given UpdateWorkspace404ResponseError and assigns it to the Error field.

func (UpdateWorkspace404Response) ToMap

func (o UpdateWorkspace404Response) ToMap() (map[string]interface{}, error)

type UpdateWorkspace404ResponseError

type UpdateWorkspace404ResponseError struct {
	// The error message.
	Message *string `json:"message,omitempty"`
	// The error name.
	Name *string `json:"name,omitempty"`
}

UpdateWorkspace404ResponseError struct for UpdateWorkspace404ResponseError

func NewUpdateWorkspace404ResponseError

func NewUpdateWorkspace404ResponseError() *UpdateWorkspace404ResponseError

NewUpdateWorkspace404ResponseError instantiates a new UpdateWorkspace404ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspace404ResponseErrorWithDefaults

func NewUpdateWorkspace404ResponseErrorWithDefaults() *UpdateWorkspace404ResponseError

NewUpdateWorkspace404ResponseErrorWithDefaults instantiates a new UpdateWorkspace404ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspace404ResponseError) GetMessage

func (o *UpdateWorkspace404ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*UpdateWorkspace404ResponseError) GetMessageOk

func (o *UpdateWorkspace404ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace404ResponseError) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateWorkspace404ResponseError) GetNameOk

func (o *UpdateWorkspace404ResponseError) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspace404ResponseError) HasMessage

func (o *UpdateWorkspace404ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*UpdateWorkspace404ResponseError) HasName

HasName returns a boolean if a field has been set.

func (UpdateWorkspace404ResponseError) MarshalJSON

func (o UpdateWorkspace404ResponseError) MarshalJSON() ([]byte, error)

func (*UpdateWorkspace404ResponseError) SetMessage

func (o *UpdateWorkspace404ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UpdateWorkspace404ResponseError) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (UpdateWorkspace404ResponseError) ToMap

func (o UpdateWorkspace404ResponseError) ToMap() (map[string]interface{}, error)

type UpdateWorkspaceRequest

type UpdateWorkspaceRequest struct {
	Workspace *UpdateWorkspaceRequestWorkspace `json:"workspace,omitempty"`
}

UpdateWorkspaceRequest struct for UpdateWorkspaceRequest

func NewUpdateWorkspaceRequest

func NewUpdateWorkspaceRequest() *UpdateWorkspaceRequest

NewUpdateWorkspaceRequest instantiates a new UpdateWorkspaceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspaceRequestWithDefaults

func NewUpdateWorkspaceRequestWithDefaults() *UpdateWorkspaceRequest

NewUpdateWorkspaceRequestWithDefaults instantiates a new UpdateWorkspaceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspaceRequest) GetWorkspace

GetWorkspace returns the Workspace field value if set, zero value otherwise.

func (*UpdateWorkspaceRequest) GetWorkspaceOk

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspaceRequest) HasWorkspace

func (o *UpdateWorkspaceRequest) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (UpdateWorkspaceRequest) MarshalJSON

func (o UpdateWorkspaceRequest) MarshalJSON() ([]byte, error)

func (*UpdateWorkspaceRequest) SetWorkspace

SetWorkspace gets a reference to the given UpdateWorkspaceRequestWorkspace and assigns it to the Workspace field.

func (UpdateWorkspaceRequest) ToMap

func (o UpdateWorkspaceRequest) ToMap() (map[string]interface{}, error)

type UpdateWorkspaceRequestWorkspace

type UpdateWorkspaceRequestWorkspace struct {
	// The workspace's description.
	Description *string `json:"description,omitempty"`
	// The workspace's name.
	Name *string `json:"name,omitempty"`
	// The type of workspace:  - `personal` — A personal workspace. - `team` — A team workspace.
	Type *string `json:"type,omitempty"`
}

UpdateWorkspaceRequestWorkspace struct for UpdateWorkspaceRequestWorkspace

func NewUpdateWorkspaceRequestWorkspace

func NewUpdateWorkspaceRequestWorkspace() *UpdateWorkspaceRequestWorkspace

NewUpdateWorkspaceRequestWorkspace instantiates a new UpdateWorkspaceRequestWorkspace object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateWorkspaceRequestWorkspaceWithDefaults

func NewUpdateWorkspaceRequestWorkspaceWithDefaults() *UpdateWorkspaceRequestWorkspace

NewUpdateWorkspaceRequestWorkspaceWithDefaults instantiates a new UpdateWorkspaceRequestWorkspace object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateWorkspaceRequestWorkspace) GetDescription

func (o *UpdateWorkspaceRequestWorkspace) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateWorkspaceRequestWorkspace) GetDescriptionOk

func (o *UpdateWorkspaceRequestWorkspace) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspaceRequestWorkspace) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateWorkspaceRequestWorkspace) GetNameOk

func (o *UpdateWorkspaceRequestWorkspace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspaceRequestWorkspace) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*UpdateWorkspaceRequestWorkspace) GetTypeOk

func (o *UpdateWorkspaceRequestWorkspace) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateWorkspaceRequestWorkspace) HasDescription

func (o *UpdateWorkspaceRequestWorkspace) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateWorkspaceRequestWorkspace) HasName

HasName returns a boolean if a field has been set.

func (*UpdateWorkspaceRequestWorkspace) HasType

HasType returns a boolean if a field has been set.

func (UpdateWorkspaceRequestWorkspace) MarshalJSON

func (o UpdateWorkspaceRequestWorkspace) MarshalJSON() ([]byte, error)

func (*UpdateWorkspaceRequestWorkspace) SetDescription

func (o *UpdateWorkspaceRequestWorkspace) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateWorkspaceRequestWorkspace) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateWorkspaceRequestWorkspace) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (UpdateWorkspaceRequestWorkspace) ToMap

func (o UpdateWorkspaceRequestWorkspace) ToMap() (map[string]interface{}, error)

type WorkspacesApiService

type WorkspacesApiService service

WorkspacesApiService WorkspacesApi service

func (*WorkspacesApiService) AllWorkspaces

AllWorkspaces Get all workspaces

Gets all [workspaces](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/creating-workspaces/). The response includes your workspaces and any workspaces that you have access to.

**Note:**

This endpoint's response contains the visibility field. Visibility determines who can access the workspace:

- `only-me` — Applies to the **My Workspace** workspace. - `personal` — Only you can access the workspace. - `team` — All team members can access the workspace. - `private-team` — Only invited team members can access the workspace. - `public` — Everyone can access the workspace.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAllWorkspacesRequest

func (*WorkspacesApiService) AllWorkspacesExecute

Execute executes the request

@return AllWorkspaces200Response

func (*WorkspacesApiService) CreateWorkspace

CreateWorkspace Create a workspace

Creates a new [workspace](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/creating-workspaces/).

### Important:

We **deprecated** linking collections or environments between workspaces. We do **not** recommend that you do this.

If you have a linked collection or environment, note the following:

- The endpoint does **not** create a clone of a collection or environment. - Any changes you make to a linked collection or environment changes them in **all** workspaces. - If you delete a collection or environment linked between workspaces, the system deletes it in **all** the workspaces.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateWorkspaceRequest

func (*WorkspacesApiService) CreateWorkspaceExecute

Execute executes the request

@return CreateWorkspace200Response

func (*WorkspacesApiService) DeleteWorkspace

func (a *WorkspacesApiService) DeleteWorkspace(ctx context.Context, workspaceId string) ApiDeleteWorkspaceRequest

DeleteWorkspace Delete a workspace

Deletes an existing workspace.

### Important:

If you delete a workspace that has a linked collection or environment with another workspace, this will delete the collection and environment in **all** workspaces.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workspaceId The workspace's ID.
@return ApiDeleteWorkspaceRequest

func (*WorkspacesApiService) DeleteWorkspaceExecute

Execute executes the request

@return DeleteWorkspace200Response

func (*WorkspacesApiService) SingleWorkspace

func (a *WorkspacesApiService) SingleWorkspace(ctx context.Context, workspaceId string) ApiSingleWorkspaceRequest

SingleWorkspace Get a workspace

Gets information about a workspace.

**Note:**

This endpoint's response contains the `visibility` field. [Visibility](https://learning.postman.com/docs/collaborating-in-postman/using-workspaces/managing-workspaces/#changing-workspace-visibility) determines who can access the workspace:

- `only-me` — Applies to the **My Workspace** workspace. - `personal` — Only you can access the workspace. - `team` — All team members can access the workspace. - `private-team` — Only invited team members can access the workspace. - `public` — Everyone can access the workspace.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workspaceId The workspace's ID.
@return ApiSingleWorkspaceRequest

func (*WorkspacesApiService) SingleWorkspaceExecute

Execute executes the request

@return SingleWorkspace200Response

func (*WorkspacesApiService) UpdateWorkspace

func (a *WorkspacesApiService) UpdateWorkspace(ctx context.Context, workspaceId string) ApiUpdateWorkspaceRequest

UpdateWorkspace Update a workspace

Updates a workspace.

**Note:**

You can change a workspace's type from `personal` to `team`, but you **cannot** change a workspace from `team` to `personal`.

### Important:

We **deprecated** linking collections or environments between workspaces. We do **not** recommend that you do this.

If you have a linked collection or environment, note the following:

- The endpoint does **not** create a clone of a collection or environment. - Any changes you make to a linked collection or environment changes them in **all** workspaces. - If you delete a collection or environment linked between workspaces, the system deletes it in **all** the workspaces.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workspaceId The workspace's ID.
@return ApiUpdateWorkspaceRequest

func (*WorkspacesApiService) UpdateWorkspaceExecute

Execute executes the request

@return UpdateWorkspace200Response

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL