authzapiv1

package
v0.0.0-...-3145a01 Latest Latest
Warning

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

Go to latest
Published: Dec 19, 2024 License: Apache-2.0 Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// 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")
)
View Source
var AllowedAdministratorsAccessEnumValues = []AdministratorsAccess{
	"Undefined",
	"Full",
	"Limited",
}

All allowed values of AdministratorsAccess enum

View Source
var AllowedAuthorizationStatusEnumValues = []AuthorizationStatus{
	"Authorized",
	"ApprovalRequired",
	"Denied",
}

All allowed values of AuthorizationStatus enum

View Source
var AllowedDeliveryFailureReportTypeEnumValues = []DeliveryFailureReportType{
	"ReportToSender",
	"ReportToOwner",
	"NoReport",
}

All allowed values of DeliveryFailureReportType enum

View Source
var AllowedDynamicGroupTypeEnumValues = []DynamicGroupType{
	"Static",
	"Dynamic",
	"FullDynamic",
}

All allowed values of DynamicGroupType enum

View Source
var AllowedGroupSyncStatusEnumValues = []GroupSyncStatus{
	"NotSynced",
	"Synchronized",
	"OwnerError",
	"MetadataError",
	"DynamicError",
}

All allowed values of GroupSyncStatus enum

View Source
var AllowedGroupSyncTypeEnumValues = []GroupSyncType{
	"Slave",
	"SlaveWithPlaceholders",
	"Master",
	"SyncError",
	"NoSync",
}

All allowed values of GroupSyncType enum

View Source
var AllowedIdentityTypeEnumValues = []IdentityType{
	"Undefined",
	"Person",
	"Application",
	"Service",
	"Secondary",
}

All allowed values of IdentityType enum

View Source
var AllowedOperationTypeEnumValues = []OperationType{
	"Undefined",
	"Set",
	"Add",
	"Remove",
}

All allowed values of OperationType enum

View Source
var AllowedPolicyOperationTypeEnumValues = []PolicyOperationType{
	"Create",
	"Read",
	"ReadAll",
	"Update",
	"Delete",
	"AnyOperation",
}

All allowed values of PolicyOperationType enum

View Source
var AllowedPrivacyTypeEnumValues = []PrivacyType{
	"Open",
	"Members",
	"Admins",
}

All allowed values of PrivacyType enum

View Source
var AllowedPropertyTypeEnumValues = []PropertyType{
	"Undefined",
	"String",
	"Number",
	"Boolean",
	"DateTime",
	"Reference",
	"Binary",
	"Object",
}

All allowed values of PropertyType enum

View Source
var AllowedRequestStatusEnumValues = []RequestStatus{
	"Undefined",
	"Pending",
	"TimedOut",
	"Denied",
	"Canceled",
	"Failed",
	"Completed",
}

All allowed values of RequestStatus enum

View Source
var AllowedRequestTypeEnumValues = []RequestType{
	"Undefined",
	"Create",
	"Update",
	"Delete",
}

All allowed values of RequestType enum

View Source
var AllowedResourceCategoryEnumValues = []ResourceCategory{
	"Undefined",
	"Official",
	"Personal",
	"Test",
}

All allowed values of ResourceCategory enum

View Source
var AllowedResourceStateEnumValues = []ResourceState{
	"Active",
	"ActionRequired",
	"GracePeriod",
	"Blocked",
	"Archived",
	"Deleted",
	"Invalid",
	"Created",
}

All allowed values of ResourceState enum

View Source
var AllowedSelfSubscriptionTypeEnumValues = []SelfSubscriptionType{
	"Closed",
	"Open",
	"CernUsers",
}

All allowed values of SelfSubscriptionType enum

View Source
var AllowedTaskCreationOptionsEnumValues = []TaskCreationOptions{
	"None",
	"PreferFairness",
	"LongRunning",
	"AttachedToParent",
	"DenyChildAttach",
	"HideScheduler",
	"RunContinuationsAsynchronously",
}

All allowed values of TaskCreationOptions enum

View Source
var AllowedTaskStatusEnumValues = []TaskStatus{
	"Created",
	"WaitingForActivation",
	"WaitingToRun",
	"Running",
	"WaitingForChildrenToComplete",
	"RanToCompletion",
	"Canceled",
	"Faulted",
}

All allowed values of TaskStatus enum

View Source
var AllowedUserApplicationSubscriptionStatusEnumValues = []UserApplicationSubscriptionStatus{
	"Undefined",
	"Denied",
	"NotEligible",
	"Eligible",
	"Subscribed",
	"Invalid",
}

All allowed values of UserApplicationSubscriptionStatus enum

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 {
	ApplicationAPI *ApplicationAPIService

	GroupAPI *GroupAPIService

	IdentityAPI *IdentityAPIService

	LevelOfAssuranceAPI *LevelOfAssuranceAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Authorization Service API v. 1.0 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 Account

type Account struct {
	DisplayName           string            `json:"displayName"`
	UniqueIdentifier      string            `json:"uniqueIdentifier"`
	AccountProviderId     NullableString    `json:"accountProviderId,omitempty"`
	EmailAddress          string            `json:"emailAddress"`
	ResetPasswordRequired bool              `json:"resetPasswordRequired"`
	PersonId              NullableString    `json:"personId,omitempty"`
	AssignedScopes        []string          `json:"assignedScopes,omitempty"`
	FirstActivationDate   NullableTime      `json:"firstActivationDate,omitempty"`
	LastActivationDate    NullableTime      `json:"lastActivationDate,omitempty"`
	ResourceCategory      *ResourceCategory `json:"resourceCategory,omitempty"`
	Reassignable          *bool             `json:"reassignable,omitempty"`
	AutoReassign          *bool             `json:"autoReassign,omitempty"`
	// Deprecated
	PendingAction    *bool          `json:"pendingAction,omitempty"`
	Disabled         *bool          `json:"disabled,omitempty"`
	Blocked          *bool          `json:"blocked,omitempty"`
	SecurityIssues   *bool          `json:"securityIssues,omitempty"`
	BlockingReason   NullableString `json:"blockingReason,omitempty"`
	BlockingTime     NullableTime   `json:"blockingTime,omitempty"`
	BlockingDeadline NullableTime   `json:"blockingDeadline,omitempty"`
	ArchiveDeadline  NullableTime   `json:"archiveDeadline,omitempty"`
	DeleteDeadline   NullableTime   `json:"deleteDeadline,omitempty"`
	// Deprecated
	ExpirationDeadline  NullableTime   `json:"expirationDeadline,omitempty"`
	OwnerId             NullableString `json:"ownerId,omitempty"`
	InternalState       *ResourceState `json:"internalState,omitempty"`
	State               *ResourceState `json:"state,omitempty"`
	LastStateChangeTime NullableTime   `json:"lastStateChangeTime,omitempty"`
	ValidityLimit       NullableTime   `json:"validityLimit,omitempty"`
	Id                  NullableString `json:"id,omitempty"`
	CreationTime        *time.Time     `json:"creationTime,omitempty"`
}

Account struct for Account

func NewAccount

func NewAccount(displayName string, uniqueIdentifier string, emailAddress string, resetPasswordRequired bool) *Account

NewAccount instantiates a new Account 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 NewAccountWithDefaults

func NewAccountWithDefaults() *Account

NewAccountWithDefaults instantiates a new Account 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 (*Account) GetAccountProviderId

func (o *Account) GetAccountProviderId() string

GetAccountProviderId returns the AccountProviderId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetAccountProviderIdOk

func (o *Account) GetAccountProviderIdOk() (*string, bool)

GetAccountProviderIdOk returns a tuple with the AccountProviderId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetArchiveDeadline

func (o *Account) GetArchiveDeadline() time.Time

GetArchiveDeadline returns the ArchiveDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetArchiveDeadlineOk

func (o *Account) GetArchiveDeadlineOk() (*time.Time, bool)

GetArchiveDeadlineOk returns a tuple with the ArchiveDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetAssignedScopes

func (o *Account) GetAssignedScopes() []string

GetAssignedScopes returns the AssignedScopes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetAssignedScopesOk

func (o *Account) GetAssignedScopesOk() ([]string, bool)

GetAssignedScopesOk returns a tuple with the AssignedScopes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetAutoReassign

func (o *Account) GetAutoReassign() bool

GetAutoReassign returns the AutoReassign field value if set, zero value otherwise.

func (*Account) GetAutoReassignOk

func (o *Account) GetAutoReassignOk() (*bool, bool)

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

func (*Account) GetBlocked

func (o *Account) GetBlocked() bool

GetBlocked returns the Blocked field value if set, zero value otherwise.

func (*Account) GetBlockedOk

func (o *Account) GetBlockedOk() (*bool, bool)

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

func (*Account) GetBlockingDeadline

func (o *Account) GetBlockingDeadline() time.Time

GetBlockingDeadline returns the BlockingDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetBlockingDeadlineOk

func (o *Account) GetBlockingDeadlineOk() (*time.Time, bool)

GetBlockingDeadlineOk returns a tuple with the BlockingDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetBlockingReason

func (o *Account) GetBlockingReason() string

GetBlockingReason returns the BlockingReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetBlockingReasonOk

func (o *Account) GetBlockingReasonOk() (*string, bool)

GetBlockingReasonOk returns a tuple with the BlockingReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetBlockingTime

func (o *Account) GetBlockingTime() time.Time

GetBlockingTime returns the BlockingTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetBlockingTimeOk

func (o *Account) GetBlockingTimeOk() (*time.Time, bool)

GetBlockingTimeOk returns a tuple with the BlockingTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetCreationTime

func (o *Account) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Account) GetCreationTimeOk

func (o *Account) GetCreationTimeOk() (*time.Time, bool)

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

func (*Account) GetDeleteDeadline

func (o *Account) GetDeleteDeadline() time.Time

GetDeleteDeadline returns the DeleteDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetDeleteDeadlineOk

func (o *Account) GetDeleteDeadlineOk() (*time.Time, bool)

GetDeleteDeadlineOk returns a tuple with the DeleteDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetDisabled

func (o *Account) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*Account) GetDisabledOk

func (o *Account) GetDisabledOk() (*bool, bool)

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

func (*Account) GetDisplayName

func (o *Account) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*Account) GetDisplayNameOk

func (o *Account) GetDisplayNameOk() (*string, bool)

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

func (*Account) GetEmailAddress

func (o *Account) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value

func (*Account) GetEmailAddressOk

func (o *Account) GetEmailAddressOk() (*string, bool)

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

func (*Account) GetExpirationDeadline

func (o *Account) GetExpirationDeadline() time.Time

GetExpirationDeadline returns the ExpirationDeadline field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*Account) GetExpirationDeadlineOk

func (o *Account) GetExpirationDeadlineOk() (*time.Time, bool)

GetExpirationDeadlineOk returns a tuple with the ExpirationDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned Deprecated

func (*Account) GetFirstActivationDate

func (o *Account) GetFirstActivationDate() time.Time

GetFirstActivationDate returns the FirstActivationDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetFirstActivationDateOk

func (o *Account) GetFirstActivationDateOk() (*time.Time, bool)

GetFirstActivationDateOk returns a tuple with the FirstActivationDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetId

func (o *Account) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetIdOk

func (o *Account) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetInternalState

func (o *Account) GetInternalState() ResourceState

GetInternalState returns the InternalState field value if set, zero value otherwise.

func (*Account) GetInternalStateOk

func (o *Account) GetInternalStateOk() (*ResourceState, bool)

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

func (*Account) GetLastActivationDate

func (o *Account) GetLastActivationDate() time.Time

GetLastActivationDate returns the LastActivationDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetLastActivationDateOk

func (o *Account) GetLastActivationDateOk() (*time.Time, bool)

GetLastActivationDateOk returns a tuple with the LastActivationDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetLastStateChangeTime

func (o *Account) GetLastStateChangeTime() time.Time

GetLastStateChangeTime returns the LastStateChangeTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetLastStateChangeTimeOk

func (o *Account) GetLastStateChangeTimeOk() (*time.Time, bool)

GetLastStateChangeTimeOk returns a tuple with the LastStateChangeTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetOwnerId

func (o *Account) GetOwnerId() string

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetOwnerIdOk

func (o *Account) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetPendingAction

func (o *Account) GetPendingAction() bool

GetPendingAction returns the PendingAction field value if set, zero value otherwise. Deprecated

func (*Account) GetPendingActionOk

func (o *Account) GetPendingActionOk() (*bool, bool)

GetPendingActionOk returns a tuple with the PendingAction field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Account) GetPersonId

func (o *Account) GetPersonId() string

GetPersonId returns the PersonId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetPersonIdOk

func (o *Account) GetPersonIdOk() (*string, bool)

GetPersonIdOk returns a tuple with the PersonId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) GetReassignable

func (o *Account) GetReassignable() bool

GetReassignable returns the Reassignable field value if set, zero value otherwise.

func (*Account) GetReassignableOk

func (o *Account) GetReassignableOk() (*bool, bool)

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

func (*Account) GetResetPasswordRequired

func (o *Account) GetResetPasswordRequired() bool

GetResetPasswordRequired returns the ResetPasswordRequired field value

func (*Account) GetResetPasswordRequiredOk

func (o *Account) GetResetPasswordRequiredOk() (*bool, bool)

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

func (*Account) GetResourceCategory

func (o *Account) GetResourceCategory() ResourceCategory

GetResourceCategory returns the ResourceCategory field value if set, zero value otherwise.

func (*Account) GetResourceCategoryOk

func (o *Account) GetResourceCategoryOk() (*ResourceCategory, bool)

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

func (*Account) GetSecurityIssues

func (o *Account) GetSecurityIssues() bool

GetSecurityIssues returns the SecurityIssues field value if set, zero value otherwise.

func (*Account) GetSecurityIssuesOk

func (o *Account) GetSecurityIssuesOk() (*bool, bool)

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

func (*Account) GetState

func (o *Account) GetState() ResourceState

GetState returns the State field value if set, zero value otherwise.

func (*Account) GetStateOk

func (o *Account) GetStateOk() (*ResourceState, bool)

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

func (*Account) GetUniqueIdentifier

func (o *Account) GetUniqueIdentifier() string

GetUniqueIdentifier returns the UniqueIdentifier field value

func (*Account) GetUniqueIdentifierOk

func (o *Account) GetUniqueIdentifierOk() (*string, bool)

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

func (*Account) GetValidityLimit

func (o *Account) GetValidityLimit() time.Time

GetValidityLimit returns the ValidityLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Account) GetValidityLimitOk

func (o *Account) GetValidityLimitOk() (*time.Time, bool)

GetValidityLimitOk returns a tuple with the ValidityLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Account) HasAccountProviderId

func (o *Account) HasAccountProviderId() bool

HasAccountProviderId returns a boolean if a field has been set.

func (*Account) HasArchiveDeadline

func (o *Account) HasArchiveDeadline() bool

HasArchiveDeadline returns a boolean if a field has been set.

func (*Account) HasAssignedScopes

func (o *Account) HasAssignedScopes() bool

HasAssignedScopes returns a boolean if a field has been set.

func (*Account) HasAutoReassign

func (o *Account) HasAutoReassign() bool

HasAutoReassign returns a boolean if a field has been set.

func (*Account) HasBlocked

func (o *Account) HasBlocked() bool

HasBlocked returns a boolean if a field has been set.

func (*Account) HasBlockingDeadline

func (o *Account) HasBlockingDeadline() bool

HasBlockingDeadline returns a boolean if a field has been set.

func (*Account) HasBlockingReason

func (o *Account) HasBlockingReason() bool

HasBlockingReason returns a boolean if a field has been set.

func (*Account) HasBlockingTime

func (o *Account) HasBlockingTime() bool

HasBlockingTime returns a boolean if a field has been set.

func (*Account) HasCreationTime

func (o *Account) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*Account) HasDeleteDeadline

func (o *Account) HasDeleteDeadline() bool

HasDeleteDeadline returns a boolean if a field has been set.

func (*Account) HasDisabled

func (o *Account) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*Account) HasExpirationDeadline

func (o *Account) HasExpirationDeadline() bool

HasExpirationDeadline returns a boolean if a field has been set.

func (*Account) HasFirstActivationDate

func (o *Account) HasFirstActivationDate() bool

HasFirstActivationDate returns a boolean if a field has been set.

func (*Account) HasId

func (o *Account) HasId() bool

HasId returns a boolean if a field has been set.

func (*Account) HasInternalState

func (o *Account) HasInternalState() bool

HasInternalState returns a boolean if a field has been set.

func (*Account) HasLastActivationDate

func (o *Account) HasLastActivationDate() bool

HasLastActivationDate returns a boolean if a field has been set.

func (*Account) HasLastStateChangeTime

func (o *Account) HasLastStateChangeTime() bool

HasLastStateChangeTime returns a boolean if a field has been set.

func (*Account) HasOwnerId

func (o *Account) HasOwnerId() bool

HasOwnerId returns a boolean if a field has been set.

func (*Account) HasPendingAction

func (o *Account) HasPendingAction() bool

HasPendingAction returns a boolean if a field has been set.

func (*Account) HasPersonId

func (o *Account) HasPersonId() bool

HasPersonId returns a boolean if a field has been set.

func (*Account) HasReassignable

func (o *Account) HasReassignable() bool

HasReassignable returns a boolean if a field has been set.

func (*Account) HasResourceCategory

func (o *Account) HasResourceCategory() bool

HasResourceCategory returns a boolean if a field has been set.

func (*Account) HasSecurityIssues

func (o *Account) HasSecurityIssues() bool

HasSecurityIssues returns a boolean if a field has been set.

func (*Account) HasState

func (o *Account) HasState() bool

HasState returns a boolean if a field has been set.

func (*Account) HasValidityLimit

func (o *Account) HasValidityLimit() bool

HasValidityLimit returns a boolean if a field has been set.

func (Account) MarshalJSON

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

func (*Account) SetAccountProviderId

func (o *Account) SetAccountProviderId(v string)

SetAccountProviderId gets a reference to the given NullableString and assigns it to the AccountProviderId field.

func (*Account) SetAccountProviderIdNil

func (o *Account) SetAccountProviderIdNil()

SetAccountProviderIdNil sets the value for AccountProviderId to be an explicit nil

func (*Account) SetArchiveDeadline

func (o *Account) SetArchiveDeadline(v time.Time)

SetArchiveDeadline gets a reference to the given NullableTime and assigns it to the ArchiveDeadline field.

func (*Account) SetArchiveDeadlineNil

func (o *Account) SetArchiveDeadlineNil()

SetArchiveDeadlineNil sets the value for ArchiveDeadline to be an explicit nil

func (*Account) SetAssignedScopes

func (o *Account) SetAssignedScopes(v []string)

SetAssignedScopes gets a reference to the given []string and assigns it to the AssignedScopes field.

func (*Account) SetAutoReassign

func (o *Account) SetAutoReassign(v bool)

SetAutoReassign gets a reference to the given bool and assigns it to the AutoReassign field.

func (*Account) SetBlocked

func (o *Account) SetBlocked(v bool)

SetBlocked gets a reference to the given bool and assigns it to the Blocked field.

func (*Account) SetBlockingDeadline

func (o *Account) SetBlockingDeadline(v time.Time)

SetBlockingDeadline gets a reference to the given NullableTime and assigns it to the BlockingDeadline field.

func (*Account) SetBlockingDeadlineNil

func (o *Account) SetBlockingDeadlineNil()

SetBlockingDeadlineNil sets the value for BlockingDeadline to be an explicit nil

func (*Account) SetBlockingReason

func (o *Account) SetBlockingReason(v string)

SetBlockingReason gets a reference to the given NullableString and assigns it to the BlockingReason field.

func (*Account) SetBlockingReasonNil

func (o *Account) SetBlockingReasonNil()

SetBlockingReasonNil sets the value for BlockingReason to be an explicit nil

func (*Account) SetBlockingTime

func (o *Account) SetBlockingTime(v time.Time)

SetBlockingTime gets a reference to the given NullableTime and assigns it to the BlockingTime field.

func (*Account) SetBlockingTimeNil

func (o *Account) SetBlockingTimeNil()

SetBlockingTimeNil sets the value for BlockingTime to be an explicit nil

func (*Account) SetCreationTime

func (o *Account) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*Account) SetDeleteDeadline

func (o *Account) SetDeleteDeadline(v time.Time)

SetDeleteDeadline gets a reference to the given NullableTime and assigns it to the DeleteDeadline field.

func (*Account) SetDeleteDeadlineNil

func (o *Account) SetDeleteDeadlineNil()

SetDeleteDeadlineNil sets the value for DeleteDeadline to be an explicit nil

func (*Account) SetDisabled

func (o *Account) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*Account) SetDisplayName

func (o *Account) SetDisplayName(v string)

SetDisplayName sets field value

func (*Account) SetEmailAddress

func (o *Account) SetEmailAddress(v string)

SetEmailAddress sets field value

func (*Account) SetExpirationDeadline

func (o *Account) SetExpirationDeadline(v time.Time)

SetExpirationDeadline gets a reference to the given NullableTime and assigns it to the ExpirationDeadline field. Deprecated

func (*Account) SetExpirationDeadlineNil

func (o *Account) SetExpirationDeadlineNil()

SetExpirationDeadlineNil sets the value for ExpirationDeadline to be an explicit nil

func (*Account) SetFirstActivationDate

func (o *Account) SetFirstActivationDate(v time.Time)

SetFirstActivationDate gets a reference to the given NullableTime and assigns it to the FirstActivationDate field.

func (*Account) SetFirstActivationDateNil

func (o *Account) SetFirstActivationDateNil()

SetFirstActivationDateNil sets the value for FirstActivationDate to be an explicit nil

func (*Account) SetId

func (o *Account) SetId(v string)

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

func (*Account) SetIdNil

func (o *Account) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Account) SetInternalState

func (o *Account) SetInternalState(v ResourceState)

SetInternalState gets a reference to the given ResourceState and assigns it to the InternalState field.

func (*Account) SetLastActivationDate

func (o *Account) SetLastActivationDate(v time.Time)

SetLastActivationDate gets a reference to the given NullableTime and assigns it to the LastActivationDate field.

func (*Account) SetLastActivationDateNil

func (o *Account) SetLastActivationDateNil()

SetLastActivationDateNil sets the value for LastActivationDate to be an explicit nil

func (*Account) SetLastStateChangeTime

func (o *Account) SetLastStateChangeTime(v time.Time)

SetLastStateChangeTime gets a reference to the given NullableTime and assigns it to the LastStateChangeTime field.

func (*Account) SetLastStateChangeTimeNil

func (o *Account) SetLastStateChangeTimeNil()

SetLastStateChangeTimeNil sets the value for LastStateChangeTime to be an explicit nil

func (*Account) SetOwnerId

func (o *Account) SetOwnerId(v string)

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*Account) SetOwnerIdNil

func (o *Account) SetOwnerIdNil()

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (*Account) SetPendingAction

func (o *Account) SetPendingAction(v bool)

SetPendingAction gets a reference to the given bool and assigns it to the PendingAction field. Deprecated

func (*Account) SetPersonId

func (o *Account) SetPersonId(v string)

SetPersonId gets a reference to the given NullableString and assigns it to the PersonId field.

func (*Account) SetPersonIdNil

func (o *Account) SetPersonIdNil()

SetPersonIdNil sets the value for PersonId to be an explicit nil

func (*Account) SetReassignable

func (o *Account) SetReassignable(v bool)

SetReassignable gets a reference to the given bool and assigns it to the Reassignable field.

func (*Account) SetResetPasswordRequired

func (o *Account) SetResetPasswordRequired(v bool)

SetResetPasswordRequired sets field value

func (*Account) SetResourceCategory

func (o *Account) SetResourceCategory(v ResourceCategory)

SetResourceCategory gets a reference to the given ResourceCategory and assigns it to the ResourceCategory field.

func (*Account) SetSecurityIssues

func (o *Account) SetSecurityIssues(v bool)

SetSecurityIssues gets a reference to the given bool and assigns it to the SecurityIssues field.

func (*Account) SetState

func (o *Account) SetState(v ResourceState)

SetState gets a reference to the given ResourceState and assigns it to the State field.

func (*Account) SetUniqueIdentifier

func (o *Account) SetUniqueIdentifier(v string)

SetUniqueIdentifier sets field value

func (*Account) SetValidityLimit

func (o *Account) SetValidityLimit(v time.Time)

SetValidityLimit gets a reference to the given NullableTime and assigns it to the ValidityLimit field.

func (*Account) SetValidityLimitNil

func (o *Account) SetValidityLimitNil()

SetValidityLimitNil sets the value for ValidityLimit to be an explicit nil

func (Account) ToMap

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

func (*Account) UnmarshalJSON

func (o *Account) UnmarshalJSON(data []byte) (err error)

func (*Account) UnsetAccountProviderId

func (o *Account) UnsetAccountProviderId()

UnsetAccountProviderId ensures that no value is present for AccountProviderId, not even an explicit nil

func (*Account) UnsetArchiveDeadline

func (o *Account) UnsetArchiveDeadline()

UnsetArchiveDeadline ensures that no value is present for ArchiveDeadline, not even an explicit nil

func (*Account) UnsetBlockingDeadline

func (o *Account) UnsetBlockingDeadline()

UnsetBlockingDeadline ensures that no value is present for BlockingDeadline, not even an explicit nil

func (*Account) UnsetBlockingReason

func (o *Account) UnsetBlockingReason()

UnsetBlockingReason ensures that no value is present for BlockingReason, not even an explicit nil

func (*Account) UnsetBlockingTime

func (o *Account) UnsetBlockingTime()

UnsetBlockingTime ensures that no value is present for BlockingTime, not even an explicit nil

func (*Account) UnsetDeleteDeadline

func (o *Account) UnsetDeleteDeadline()

UnsetDeleteDeadline ensures that no value is present for DeleteDeadline, not even an explicit nil

func (*Account) UnsetExpirationDeadline

func (o *Account) UnsetExpirationDeadline()

UnsetExpirationDeadline ensures that no value is present for ExpirationDeadline, not even an explicit nil

func (*Account) UnsetFirstActivationDate

func (o *Account) UnsetFirstActivationDate()

UnsetFirstActivationDate ensures that no value is present for FirstActivationDate, not even an explicit nil

func (*Account) UnsetId

func (o *Account) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*Account) UnsetLastActivationDate

func (o *Account) UnsetLastActivationDate()

UnsetLastActivationDate ensures that no value is present for LastActivationDate, not even an explicit nil

func (*Account) UnsetLastStateChangeTime

func (o *Account) UnsetLastStateChangeTime()

UnsetLastStateChangeTime ensures that no value is present for LastStateChangeTime, not even an explicit nil

func (*Account) UnsetOwnerId

func (o *Account) UnsetOwnerId()

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

func (*Account) UnsetPersonId

func (o *Account) UnsetPersonId()

UnsetPersonId ensures that no value is present for PersonId, not even an explicit nil

func (*Account) UnsetValidityLimit

func (o *Account) UnsetValidityLimit()

UnsetValidityLimit ensures that no value is present for ValidityLimit, not even an explicit nil

type AccountEnumerateEnvelope

type AccountEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Account      `json:"data,omitempty"`
}

AccountEnumerateEnvelope struct for AccountEnumerateEnvelope

func NewAccountEnumerateEnvelope

func NewAccountEnumerateEnvelope() *AccountEnumerateEnvelope

NewAccountEnumerateEnvelope instantiates a new AccountEnumerateEnvelope 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 NewAccountEnumerateEnvelopeWithDefaults

func NewAccountEnumerateEnvelopeWithDefaults() *AccountEnumerateEnvelope

NewAccountEnumerateEnvelopeWithDefaults instantiates a new AccountEnumerateEnvelope 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 (*AccountEnumerateEnvelope) GetData

func (o *AccountEnumerateEnvelope) GetData() []Account

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountEnumerateEnvelope) GetDataOk

func (o *AccountEnumerateEnvelope) GetDataOk() ([]Account, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountEnumerateEnvelope) GetDelta

func (o *AccountEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*AccountEnumerateEnvelope) GetDeltaOk

func (o *AccountEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*AccountEnumerateEnvelope) GetMessage

func (o *AccountEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountEnumerateEnvelope) GetMessageOk

func (o *AccountEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountEnumerateEnvelope) GetPagination

func (o *AccountEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AccountEnumerateEnvelope) GetPaginationOk

func (o *AccountEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*AccountEnumerateEnvelope) GetRequestId

func (o *AccountEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountEnumerateEnvelope) GetRequestIdOk

func (o *AccountEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountEnumerateEnvelope) HasData

func (o *AccountEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*AccountEnumerateEnvelope) HasDelta

func (o *AccountEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*AccountEnumerateEnvelope) HasMessage

func (o *AccountEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AccountEnumerateEnvelope) HasPagination

func (o *AccountEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*AccountEnumerateEnvelope) HasRequestId

func (o *AccountEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AccountEnumerateEnvelope) MarshalJSON

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

func (*AccountEnumerateEnvelope) SetData

func (o *AccountEnumerateEnvelope) SetData(v []Account)

SetData gets a reference to the given []Account and assigns it to the Data field.

func (*AccountEnumerateEnvelope) SetDelta

func (o *AccountEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*AccountEnumerateEnvelope) SetMessage

func (o *AccountEnumerateEnvelope) SetMessage(v string)

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

func (*AccountEnumerateEnvelope) SetMessageNil

func (o *AccountEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccountEnumerateEnvelope) SetPagination

func (o *AccountEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*AccountEnumerateEnvelope) SetRequestId

func (o *AccountEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AccountEnumerateEnvelope) SetRequestIdNil

func (o *AccountEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AccountEnumerateEnvelope) ToMap

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

func (*AccountEnumerateEnvelope) UnsetMessage

func (o *AccountEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AccountEnumerateEnvelope) UnsetRequestId

func (o *AccountEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AccountEnvelope

type AccountEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *Account       `json:"data,omitempty"`
}

AccountEnvelope struct for AccountEnvelope

func NewAccountEnvelope

func NewAccountEnvelope() *AccountEnvelope

NewAccountEnvelope instantiates a new AccountEnvelope 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 NewAccountEnvelopeWithDefaults

func NewAccountEnvelopeWithDefaults() *AccountEnvelope

NewAccountEnvelopeWithDefaults instantiates a new AccountEnvelope 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 (*AccountEnvelope) GetData

func (o *AccountEnvelope) GetData() Account

GetData returns the Data field value if set, zero value otherwise.

func (*AccountEnvelope) GetDataOk

func (o *AccountEnvelope) GetDataOk() (*Account, bool)

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

func (*AccountEnvelope) GetMessage

func (o *AccountEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountEnvelope) GetMessageOk

func (o *AccountEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountEnvelope) GetRequestId

func (o *AccountEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountEnvelope) GetRequestIdOk

func (o *AccountEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountEnvelope) HasData

func (o *AccountEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*AccountEnvelope) HasMessage

func (o *AccountEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AccountEnvelope) HasRequestId

func (o *AccountEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AccountEnvelope) MarshalJSON

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

func (*AccountEnvelope) SetData

func (o *AccountEnvelope) SetData(v Account)

SetData gets a reference to the given Account and assigns it to the Data field.

func (*AccountEnvelope) SetMessage

func (o *AccountEnvelope) SetMessage(v string)

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

func (*AccountEnvelope) SetMessageNil

func (o *AccountEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccountEnvelope) SetRequestId

func (o *AccountEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AccountEnvelope) SetRequestIdNil

func (o *AccountEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AccountEnvelope) ToMap

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

func (*AccountEnvelope) UnsetMessage

func (o *AccountEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AccountEnvelope) UnsetRequestId

func (o *AccountEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AccountProvider

type AccountProvider struct {
	AccountProviderIdentifier NullableString `json:"accountProviderIdentifier,omitempty"`
	DisplayName               string         `json:"displayName"`
	Description               string         `json:"description"`
	LoaId                     NullableString `json:"loaId,omitempty"`
	LoaValue                  NullableInt32  `json:"loaValue,omitempty"`
	Id                        NullableString `json:"id,omitempty"`
	CreationTime              *time.Time     `json:"creationTime,omitempty"`
}

AccountProvider struct for AccountProvider

func NewAccountProvider

func NewAccountProvider(displayName string, description string) *AccountProvider

NewAccountProvider instantiates a new AccountProvider 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 NewAccountProviderWithDefaults

func NewAccountProviderWithDefaults() *AccountProvider

NewAccountProviderWithDefaults instantiates a new AccountProvider 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 (*AccountProvider) GetAccountProviderIdentifier

func (o *AccountProvider) GetAccountProviderIdentifier() string

GetAccountProviderIdentifier returns the AccountProviderIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountProvider) GetAccountProviderIdentifierOk

func (o *AccountProvider) GetAccountProviderIdentifierOk() (*string, bool)

GetAccountProviderIdentifierOk returns a tuple with the AccountProviderIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountProvider) GetCreationTime

func (o *AccountProvider) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*AccountProvider) GetCreationTimeOk

func (o *AccountProvider) GetCreationTimeOk() (*time.Time, bool)

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

func (*AccountProvider) GetDescription

func (o *AccountProvider) GetDescription() string

GetDescription returns the Description field value

func (*AccountProvider) GetDescriptionOk

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

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

func (*AccountProvider) GetDisplayName

func (o *AccountProvider) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*AccountProvider) GetDisplayNameOk

func (o *AccountProvider) GetDisplayNameOk() (*string, bool)

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

func (*AccountProvider) GetId

func (o *AccountProvider) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountProvider) GetIdOk

func (o *AccountProvider) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountProvider) GetLoaId

func (o *AccountProvider) GetLoaId() string

GetLoaId returns the LoaId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountProvider) GetLoaIdOk

func (o *AccountProvider) GetLoaIdOk() (*string, bool)

GetLoaIdOk returns a tuple with the LoaId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountProvider) GetLoaValue

func (o *AccountProvider) GetLoaValue() int32

GetLoaValue returns the LoaValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountProvider) GetLoaValueOk

func (o *AccountProvider) GetLoaValueOk() (*int32, bool)

GetLoaValueOk returns a tuple with the LoaValue field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountProvider) HasAccountProviderIdentifier

func (o *AccountProvider) HasAccountProviderIdentifier() bool

HasAccountProviderIdentifier returns a boolean if a field has been set.

func (*AccountProvider) HasCreationTime

func (o *AccountProvider) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*AccountProvider) HasId

func (o *AccountProvider) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountProvider) HasLoaId

func (o *AccountProvider) HasLoaId() bool

HasLoaId returns a boolean if a field has been set.

func (*AccountProvider) HasLoaValue

func (o *AccountProvider) HasLoaValue() bool

HasLoaValue returns a boolean if a field has been set.

func (AccountProvider) MarshalJSON

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

func (*AccountProvider) SetAccountProviderIdentifier

func (o *AccountProvider) SetAccountProviderIdentifier(v string)

SetAccountProviderIdentifier gets a reference to the given NullableString and assigns it to the AccountProviderIdentifier field.

func (*AccountProvider) SetAccountProviderIdentifierNil

func (o *AccountProvider) SetAccountProviderIdentifierNil()

SetAccountProviderIdentifierNil sets the value for AccountProviderIdentifier to be an explicit nil

func (*AccountProvider) SetCreationTime

func (o *AccountProvider) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*AccountProvider) SetDescription

func (o *AccountProvider) SetDescription(v string)

SetDescription sets field value

func (*AccountProvider) SetDisplayName

func (o *AccountProvider) SetDisplayName(v string)

SetDisplayName sets field value

func (*AccountProvider) SetId

func (o *AccountProvider) SetId(v string)

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

func (*AccountProvider) SetIdNil

func (o *AccountProvider) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*AccountProvider) SetLoaId

func (o *AccountProvider) SetLoaId(v string)

SetLoaId gets a reference to the given NullableString and assigns it to the LoaId field.

func (*AccountProvider) SetLoaIdNil

func (o *AccountProvider) SetLoaIdNil()

SetLoaIdNil sets the value for LoaId to be an explicit nil

func (*AccountProvider) SetLoaValue

func (o *AccountProvider) SetLoaValue(v int32)

SetLoaValue gets a reference to the given NullableInt32 and assigns it to the LoaValue field.

func (*AccountProvider) SetLoaValueNil

func (o *AccountProvider) SetLoaValueNil()

SetLoaValueNil sets the value for LoaValue to be an explicit nil

func (AccountProvider) ToMap

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

func (*AccountProvider) UnmarshalJSON

func (o *AccountProvider) UnmarshalJSON(data []byte) (err error)

func (*AccountProvider) UnsetAccountProviderIdentifier

func (o *AccountProvider) UnsetAccountProviderIdentifier()

UnsetAccountProviderIdentifier ensures that no value is present for AccountProviderIdentifier, not even an explicit nil

func (*AccountProvider) UnsetId

func (o *AccountProvider) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*AccountProvider) UnsetLoaId

func (o *AccountProvider) UnsetLoaId()

UnsetLoaId ensures that no value is present for LoaId, not even an explicit nil

func (*AccountProvider) UnsetLoaValue

func (o *AccountProvider) UnsetLoaValue()

UnsetLoaValue ensures that no value is present for LoaValue, not even an explicit nil

type AccountProviderEnumerateEnvelope

type AccountProviderEnumerateEnvelope struct {
	Pagination *Pagination       `json:"pagination,omitempty"`
	Delta      *Delta            `json:"delta,omitempty"`
	RequestId  NullableString    `json:"request_id,omitempty"`
	Message    NullableString    `json:"message,omitempty"`
	Data       []AccountProvider `json:"data,omitempty"`
}

AccountProviderEnumerateEnvelope struct for AccountProviderEnumerateEnvelope

func NewAccountProviderEnumerateEnvelope

func NewAccountProviderEnumerateEnvelope() *AccountProviderEnumerateEnvelope

NewAccountProviderEnumerateEnvelope instantiates a new AccountProviderEnumerateEnvelope 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 NewAccountProviderEnumerateEnvelopeWithDefaults

func NewAccountProviderEnumerateEnvelopeWithDefaults() *AccountProviderEnumerateEnvelope

NewAccountProviderEnumerateEnvelopeWithDefaults instantiates a new AccountProviderEnumerateEnvelope 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 (*AccountProviderEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountProviderEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountProviderEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*AccountProviderEnumerateEnvelope) GetDeltaOk

func (o *AccountProviderEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*AccountProviderEnumerateEnvelope) GetMessage

func (o *AccountProviderEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountProviderEnumerateEnvelope) GetMessageOk

func (o *AccountProviderEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountProviderEnumerateEnvelope) GetPagination

func (o *AccountProviderEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AccountProviderEnumerateEnvelope) GetPaginationOk

func (o *AccountProviderEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*AccountProviderEnumerateEnvelope) GetRequestId

func (o *AccountProviderEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountProviderEnumerateEnvelope) GetRequestIdOk

func (o *AccountProviderEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountProviderEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*AccountProviderEnumerateEnvelope) HasDelta

func (o *AccountProviderEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*AccountProviderEnumerateEnvelope) HasMessage

func (o *AccountProviderEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AccountProviderEnumerateEnvelope) HasPagination

func (o *AccountProviderEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*AccountProviderEnumerateEnvelope) HasRequestId

func (o *AccountProviderEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AccountProviderEnumerateEnvelope) MarshalJSON

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

func (*AccountProviderEnumerateEnvelope) SetData

SetData gets a reference to the given []AccountProvider and assigns it to the Data field.

func (*AccountProviderEnumerateEnvelope) SetDelta

func (o *AccountProviderEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*AccountProviderEnumerateEnvelope) SetMessage

func (o *AccountProviderEnumerateEnvelope) SetMessage(v string)

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

func (*AccountProviderEnumerateEnvelope) SetMessageNil

func (o *AccountProviderEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccountProviderEnumerateEnvelope) SetPagination

func (o *AccountProviderEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*AccountProviderEnumerateEnvelope) SetRequestId

func (o *AccountProviderEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AccountProviderEnumerateEnvelope) SetRequestIdNil

func (o *AccountProviderEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AccountProviderEnumerateEnvelope) ToMap

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

func (*AccountProviderEnumerateEnvelope) UnsetMessage

func (o *AccountProviderEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AccountProviderEnumerateEnvelope) UnsetRequestId

func (o *AccountProviderEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AccountScope

type AccountScope struct {
	DisplayName            string         `json:"displayName"`
	AccountScopeIdentifier string         `json:"accountScopeIdentifier"`
	Id                     NullableString `json:"id,omitempty"`
	CreationTime           *time.Time     `json:"creationTime,omitempty"`
}

AccountScope struct for AccountScope

func NewAccountScope

func NewAccountScope(displayName string, accountScopeIdentifier string) *AccountScope

NewAccountScope instantiates a new AccountScope 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 NewAccountScopeWithDefaults

func NewAccountScopeWithDefaults() *AccountScope

NewAccountScopeWithDefaults instantiates a new AccountScope 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 (*AccountScope) GetAccountScopeIdentifier

func (o *AccountScope) GetAccountScopeIdentifier() string

GetAccountScopeIdentifier returns the AccountScopeIdentifier field value

func (*AccountScope) GetAccountScopeIdentifierOk

func (o *AccountScope) GetAccountScopeIdentifierOk() (*string, bool)

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

func (*AccountScope) GetCreationTime

func (o *AccountScope) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*AccountScope) GetCreationTimeOk

func (o *AccountScope) GetCreationTimeOk() (*time.Time, bool)

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

func (*AccountScope) GetDisplayName

func (o *AccountScope) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*AccountScope) GetDisplayNameOk

func (o *AccountScope) GetDisplayNameOk() (*string, bool)

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

func (*AccountScope) GetId

func (o *AccountScope) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScope) GetIdOk

func (o *AccountScope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScope) HasCreationTime

func (o *AccountScope) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*AccountScope) HasId

func (o *AccountScope) HasId() bool

HasId returns a boolean if a field has been set.

func (AccountScope) MarshalJSON

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

func (*AccountScope) SetAccountScopeIdentifier

func (o *AccountScope) SetAccountScopeIdentifier(v string)

SetAccountScopeIdentifier sets field value

func (*AccountScope) SetCreationTime

func (o *AccountScope) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*AccountScope) SetDisplayName

func (o *AccountScope) SetDisplayName(v string)

SetDisplayName sets field value

func (*AccountScope) SetId

func (o *AccountScope) SetId(v string)

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

func (*AccountScope) SetIdNil

func (o *AccountScope) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (AccountScope) ToMap

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

func (*AccountScope) UnmarshalJSON

func (o *AccountScope) UnmarshalJSON(data []byte) (err error)

func (*AccountScope) UnsetId

func (o *AccountScope) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type AccountScopeAssignment

type AccountScopeAssignment struct {
	AccountId *string `json:"accountId,omitempty"`
	ScopeId   *string `json:"scopeId,omitempty"`
	Applied   *bool   `json:"applied,omitempty"`
	Builtin   *bool   `json:"builtin,omitempty"`
}

AccountScopeAssignment struct for AccountScopeAssignment

func NewAccountScopeAssignment

func NewAccountScopeAssignment() *AccountScopeAssignment

NewAccountScopeAssignment instantiates a new AccountScopeAssignment 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 NewAccountScopeAssignmentWithDefaults

func NewAccountScopeAssignmentWithDefaults() *AccountScopeAssignment

NewAccountScopeAssignmentWithDefaults instantiates a new AccountScopeAssignment 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 (*AccountScopeAssignment) GetAccountId

func (o *AccountScopeAssignment) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*AccountScopeAssignment) GetAccountIdOk

func (o *AccountScopeAssignment) GetAccountIdOk() (*string, bool)

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

func (*AccountScopeAssignment) GetApplied

func (o *AccountScopeAssignment) GetApplied() bool

GetApplied returns the Applied field value if set, zero value otherwise.

func (*AccountScopeAssignment) GetAppliedOk

func (o *AccountScopeAssignment) GetAppliedOk() (*bool, bool)

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

func (*AccountScopeAssignment) GetBuiltin

func (o *AccountScopeAssignment) GetBuiltin() bool

GetBuiltin returns the Builtin field value if set, zero value otherwise.

func (*AccountScopeAssignment) GetBuiltinOk

func (o *AccountScopeAssignment) GetBuiltinOk() (*bool, bool)

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

func (*AccountScopeAssignment) GetScopeId

func (o *AccountScopeAssignment) GetScopeId() string

GetScopeId returns the ScopeId field value if set, zero value otherwise.

func (*AccountScopeAssignment) GetScopeIdOk

func (o *AccountScopeAssignment) GetScopeIdOk() (*string, bool)

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

func (*AccountScopeAssignment) HasAccountId

func (o *AccountScopeAssignment) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*AccountScopeAssignment) HasApplied

func (o *AccountScopeAssignment) HasApplied() bool

HasApplied returns a boolean if a field has been set.

func (*AccountScopeAssignment) HasBuiltin

func (o *AccountScopeAssignment) HasBuiltin() bool

HasBuiltin returns a boolean if a field has been set.

func (*AccountScopeAssignment) HasScopeId

func (o *AccountScopeAssignment) HasScopeId() bool

HasScopeId returns a boolean if a field has been set.

func (AccountScopeAssignment) MarshalJSON

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

func (*AccountScopeAssignment) SetAccountId

func (o *AccountScopeAssignment) SetAccountId(v string)

SetAccountId gets a reference to the given string and assigns it to the AccountId field.

func (*AccountScopeAssignment) SetApplied

func (o *AccountScopeAssignment) SetApplied(v bool)

SetApplied gets a reference to the given bool and assigns it to the Applied field.

func (*AccountScopeAssignment) SetBuiltin

func (o *AccountScopeAssignment) SetBuiltin(v bool)

SetBuiltin gets a reference to the given bool and assigns it to the Builtin field.

func (*AccountScopeAssignment) SetScopeId

func (o *AccountScopeAssignment) SetScopeId(v string)

SetScopeId gets a reference to the given string and assigns it to the ScopeId field.

func (AccountScopeAssignment) ToMap

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

type AccountScopeAssignmentEnumerateEnvelope

type AccountScopeAssignmentEnumerateEnvelope struct {
	Pagination *Pagination              `json:"pagination,omitempty"`
	Delta      *Delta                   `json:"delta,omitempty"`
	RequestId  NullableString           `json:"request_id,omitempty"`
	Message    NullableString           `json:"message,omitempty"`
	Data       []AccountScopeAssignment `json:"data,omitempty"`
}

AccountScopeAssignmentEnumerateEnvelope struct for AccountScopeAssignmentEnumerateEnvelope

func NewAccountScopeAssignmentEnumerateEnvelope

func NewAccountScopeAssignmentEnumerateEnvelope() *AccountScopeAssignmentEnumerateEnvelope

NewAccountScopeAssignmentEnumerateEnvelope instantiates a new AccountScopeAssignmentEnumerateEnvelope 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 NewAccountScopeAssignmentEnumerateEnvelopeWithDefaults

func NewAccountScopeAssignmentEnumerateEnvelopeWithDefaults() *AccountScopeAssignmentEnumerateEnvelope

NewAccountScopeAssignmentEnumerateEnvelopeWithDefaults instantiates a new AccountScopeAssignmentEnumerateEnvelope 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 (*AccountScopeAssignmentEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeAssignmentEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeAssignmentEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*AccountScopeAssignmentEnumerateEnvelope) GetDeltaOk

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

func (*AccountScopeAssignmentEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeAssignmentEnumerateEnvelope) GetMessageOk

func (o *AccountScopeAssignmentEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeAssignmentEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AccountScopeAssignmentEnumerateEnvelope) GetPaginationOk

func (o *AccountScopeAssignmentEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*AccountScopeAssignmentEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeAssignmentEnumerateEnvelope) GetRequestIdOk

func (o *AccountScopeAssignmentEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeAssignmentEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*AccountScopeAssignmentEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*AccountScopeAssignmentEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*AccountScopeAssignmentEnumerateEnvelope) HasPagination

func (o *AccountScopeAssignmentEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*AccountScopeAssignmentEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (AccountScopeAssignmentEnumerateEnvelope) MarshalJSON

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

func (*AccountScopeAssignmentEnumerateEnvelope) SetData

SetData gets a reference to the given []AccountScopeAssignment and assigns it to the Data field.

func (*AccountScopeAssignmentEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*AccountScopeAssignmentEnumerateEnvelope) SetMessage

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

func (*AccountScopeAssignmentEnumerateEnvelope) SetMessageNil

func (o *AccountScopeAssignmentEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccountScopeAssignmentEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*AccountScopeAssignmentEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AccountScopeAssignmentEnumerateEnvelope) SetRequestIdNil

func (o *AccountScopeAssignmentEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AccountScopeAssignmentEnumerateEnvelope) ToMap

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

func (*AccountScopeAssignmentEnumerateEnvelope) UnsetMessage

func (o *AccountScopeAssignmentEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AccountScopeAssignmentEnumerateEnvelope) UnsetRequestId

func (o *AccountScopeAssignmentEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AccountScopeAssignmentEnvelope

type AccountScopeAssignmentEnvelope struct {
	RequestId NullableString          `json:"request_id,omitempty"`
	Message   NullableString          `json:"message,omitempty"`
	Data      *AccountScopeAssignment `json:"data,omitempty"`
}

AccountScopeAssignmentEnvelope struct for AccountScopeAssignmentEnvelope

func NewAccountScopeAssignmentEnvelope

func NewAccountScopeAssignmentEnvelope() *AccountScopeAssignmentEnvelope

NewAccountScopeAssignmentEnvelope instantiates a new AccountScopeAssignmentEnvelope 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 NewAccountScopeAssignmentEnvelopeWithDefaults

func NewAccountScopeAssignmentEnvelopeWithDefaults() *AccountScopeAssignmentEnvelope

NewAccountScopeAssignmentEnvelopeWithDefaults instantiates a new AccountScopeAssignmentEnvelope 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 (*AccountScopeAssignmentEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*AccountScopeAssignmentEnvelope) GetDataOk

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

func (*AccountScopeAssignmentEnvelope) GetMessage

func (o *AccountScopeAssignmentEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeAssignmentEnvelope) GetMessageOk

func (o *AccountScopeAssignmentEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeAssignmentEnvelope) GetRequestId

func (o *AccountScopeAssignmentEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeAssignmentEnvelope) GetRequestIdOk

func (o *AccountScopeAssignmentEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeAssignmentEnvelope) HasData

func (o *AccountScopeAssignmentEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*AccountScopeAssignmentEnvelope) HasMessage

func (o *AccountScopeAssignmentEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AccountScopeAssignmentEnvelope) HasRequestId

func (o *AccountScopeAssignmentEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AccountScopeAssignmentEnvelope) MarshalJSON

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

func (*AccountScopeAssignmentEnvelope) SetData

SetData gets a reference to the given AccountScopeAssignment and assigns it to the Data field.

func (*AccountScopeAssignmentEnvelope) SetMessage

func (o *AccountScopeAssignmentEnvelope) SetMessage(v string)

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

func (*AccountScopeAssignmentEnvelope) SetMessageNil

func (o *AccountScopeAssignmentEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccountScopeAssignmentEnvelope) SetRequestId

func (o *AccountScopeAssignmentEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AccountScopeAssignmentEnvelope) SetRequestIdNil

func (o *AccountScopeAssignmentEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AccountScopeAssignmentEnvelope) ToMap

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

func (*AccountScopeAssignmentEnvelope) UnsetMessage

func (o *AccountScopeAssignmentEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AccountScopeAssignmentEnvelope) UnsetRequestId

func (o *AccountScopeAssignmentEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AccountScopeEnumerateEnvelope

type AccountScopeEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []AccountScope `json:"data,omitempty"`
}

AccountScopeEnumerateEnvelope struct for AccountScopeEnumerateEnvelope

func NewAccountScopeEnumerateEnvelope

func NewAccountScopeEnumerateEnvelope() *AccountScopeEnumerateEnvelope

NewAccountScopeEnumerateEnvelope instantiates a new AccountScopeEnumerateEnvelope 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 NewAccountScopeEnumerateEnvelopeWithDefaults

func NewAccountScopeEnumerateEnvelopeWithDefaults() *AccountScopeEnumerateEnvelope

NewAccountScopeEnumerateEnvelopeWithDefaults instantiates a new AccountScopeEnumerateEnvelope 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 (*AccountScopeEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeEnumerateEnvelope) GetDataOk

func (o *AccountScopeEnumerateEnvelope) GetDataOk() ([]AccountScope, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeEnumerateEnvelope) GetDelta

func (o *AccountScopeEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*AccountScopeEnumerateEnvelope) GetDeltaOk

func (o *AccountScopeEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*AccountScopeEnumerateEnvelope) GetMessage

func (o *AccountScopeEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeEnumerateEnvelope) GetMessageOk

func (o *AccountScopeEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeEnumerateEnvelope) GetPagination

func (o *AccountScopeEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AccountScopeEnumerateEnvelope) GetPaginationOk

func (o *AccountScopeEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*AccountScopeEnumerateEnvelope) GetRequestId

func (o *AccountScopeEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeEnumerateEnvelope) GetRequestIdOk

func (o *AccountScopeEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeEnumerateEnvelope) HasData

func (o *AccountScopeEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*AccountScopeEnumerateEnvelope) HasDelta

func (o *AccountScopeEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*AccountScopeEnumerateEnvelope) HasMessage

func (o *AccountScopeEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AccountScopeEnumerateEnvelope) HasPagination

func (o *AccountScopeEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*AccountScopeEnumerateEnvelope) HasRequestId

func (o *AccountScopeEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AccountScopeEnumerateEnvelope) MarshalJSON

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

func (*AccountScopeEnumerateEnvelope) SetData

SetData gets a reference to the given []AccountScope and assigns it to the Data field.

func (*AccountScopeEnumerateEnvelope) SetDelta

func (o *AccountScopeEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*AccountScopeEnumerateEnvelope) SetMessage

func (o *AccountScopeEnumerateEnvelope) SetMessage(v string)

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

func (*AccountScopeEnumerateEnvelope) SetMessageNil

func (o *AccountScopeEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccountScopeEnumerateEnvelope) SetPagination

func (o *AccountScopeEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*AccountScopeEnumerateEnvelope) SetRequestId

func (o *AccountScopeEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AccountScopeEnumerateEnvelope) SetRequestIdNil

func (o *AccountScopeEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AccountScopeEnumerateEnvelope) ToMap

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

func (*AccountScopeEnumerateEnvelope) UnsetMessage

func (o *AccountScopeEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AccountScopeEnumerateEnvelope) UnsetRequestId

func (o *AccountScopeEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AccountScopeEnvelope

type AccountScopeEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *AccountScope  `json:"data,omitempty"`
}

AccountScopeEnvelope struct for AccountScopeEnvelope

func NewAccountScopeEnvelope

func NewAccountScopeEnvelope() *AccountScopeEnvelope

NewAccountScopeEnvelope instantiates a new AccountScopeEnvelope 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 NewAccountScopeEnvelopeWithDefaults

func NewAccountScopeEnvelopeWithDefaults() *AccountScopeEnvelope

NewAccountScopeEnvelopeWithDefaults instantiates a new AccountScopeEnvelope 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 (*AccountScopeEnvelope) GetData

func (o *AccountScopeEnvelope) GetData() AccountScope

GetData returns the Data field value if set, zero value otherwise.

func (*AccountScopeEnvelope) GetDataOk

func (o *AccountScopeEnvelope) GetDataOk() (*AccountScope, bool)

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

func (*AccountScopeEnvelope) GetMessage

func (o *AccountScopeEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeEnvelope) GetMessageOk

func (o *AccountScopeEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeEnvelope) GetRequestId

func (o *AccountScopeEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AccountScopeEnvelope) GetRequestIdOk

func (o *AccountScopeEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountScopeEnvelope) HasData

func (o *AccountScopeEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*AccountScopeEnvelope) HasMessage

func (o *AccountScopeEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AccountScopeEnvelope) HasRequestId

func (o *AccountScopeEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AccountScopeEnvelope) MarshalJSON

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

func (*AccountScopeEnvelope) SetData

func (o *AccountScopeEnvelope) SetData(v AccountScope)

SetData gets a reference to the given AccountScope and assigns it to the Data field.

func (*AccountScopeEnvelope) SetMessage

func (o *AccountScopeEnvelope) SetMessage(v string)

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

func (*AccountScopeEnvelope) SetMessageNil

func (o *AccountScopeEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AccountScopeEnvelope) SetRequestId

func (o *AccountScopeEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AccountScopeEnvelope) SetRequestIdNil

func (o *AccountScopeEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AccountScopeEnvelope) ToMap

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

func (*AccountScopeEnvelope) UnsetMessage

func (o *AccountScopeEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AccountScopeEnvelope) UnsetRequestId

func (o *AccountScopeEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ActivateOrBlockAccountResponse

type ActivateOrBlockAccountResponse struct {
	Account        *Account       `json:"account,omitempty"`
	NewPassword    NullableString `json:"newPassword,omitempty"`
	NewEdhPassword NullableString `json:"newEdhPassword,omitempty"`
}

ActivateOrBlockAccountResponse struct for ActivateOrBlockAccountResponse

func NewActivateOrBlockAccountResponse

func NewActivateOrBlockAccountResponse() *ActivateOrBlockAccountResponse

NewActivateOrBlockAccountResponse instantiates a new ActivateOrBlockAccountResponse 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 NewActivateOrBlockAccountResponseWithDefaults

func NewActivateOrBlockAccountResponseWithDefaults() *ActivateOrBlockAccountResponse

NewActivateOrBlockAccountResponseWithDefaults instantiates a new ActivateOrBlockAccountResponse 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 (*ActivateOrBlockAccountResponse) GetAccount

func (o *ActivateOrBlockAccountResponse) GetAccount() Account

GetAccount returns the Account field value if set, zero value otherwise.

func (*ActivateOrBlockAccountResponse) GetAccountOk

func (o *ActivateOrBlockAccountResponse) GetAccountOk() (*Account, bool)

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

func (*ActivateOrBlockAccountResponse) GetNewEdhPassword

func (o *ActivateOrBlockAccountResponse) GetNewEdhPassword() string

GetNewEdhPassword returns the NewEdhPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActivateOrBlockAccountResponse) GetNewEdhPasswordOk

func (o *ActivateOrBlockAccountResponse) GetNewEdhPasswordOk() (*string, bool)

GetNewEdhPasswordOk returns a tuple with the NewEdhPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActivateOrBlockAccountResponse) GetNewPassword

func (o *ActivateOrBlockAccountResponse) GetNewPassword() string

GetNewPassword returns the NewPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActivateOrBlockAccountResponse) GetNewPasswordOk

func (o *ActivateOrBlockAccountResponse) GetNewPasswordOk() (*string, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActivateOrBlockAccountResponse) HasAccount

func (o *ActivateOrBlockAccountResponse) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (*ActivateOrBlockAccountResponse) HasNewEdhPassword

func (o *ActivateOrBlockAccountResponse) HasNewEdhPassword() bool

HasNewEdhPassword returns a boolean if a field has been set.

func (*ActivateOrBlockAccountResponse) HasNewPassword

func (o *ActivateOrBlockAccountResponse) HasNewPassword() bool

HasNewPassword returns a boolean if a field has been set.

func (ActivateOrBlockAccountResponse) MarshalJSON

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

func (*ActivateOrBlockAccountResponse) SetAccount

func (o *ActivateOrBlockAccountResponse) SetAccount(v Account)

SetAccount gets a reference to the given Account and assigns it to the Account field.

func (*ActivateOrBlockAccountResponse) SetNewEdhPassword

func (o *ActivateOrBlockAccountResponse) SetNewEdhPassword(v string)

SetNewEdhPassword gets a reference to the given NullableString and assigns it to the NewEdhPassword field.

func (*ActivateOrBlockAccountResponse) SetNewEdhPasswordNil

func (o *ActivateOrBlockAccountResponse) SetNewEdhPasswordNil()

SetNewEdhPasswordNil sets the value for NewEdhPassword to be an explicit nil

func (*ActivateOrBlockAccountResponse) SetNewPassword

func (o *ActivateOrBlockAccountResponse) SetNewPassword(v string)

SetNewPassword gets a reference to the given NullableString and assigns it to the NewPassword field.

func (*ActivateOrBlockAccountResponse) SetNewPasswordNil

func (o *ActivateOrBlockAccountResponse) SetNewPasswordNil()

SetNewPasswordNil sets the value for NewPassword to be an explicit nil

func (ActivateOrBlockAccountResponse) ToMap

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

func (*ActivateOrBlockAccountResponse) UnsetNewEdhPassword

func (o *ActivateOrBlockAccountResponse) UnsetNewEdhPassword()

UnsetNewEdhPassword ensures that no value is present for NewEdhPassword, not even an explicit nil

func (*ActivateOrBlockAccountResponse) UnsetNewPassword

func (o *ActivateOrBlockAccountResponse) UnsetNewPassword()

UnsetNewPassword ensures that no value is present for NewPassword, not even an explicit nil

type ActivateOrBlockAccountResponseEnvelope

type ActivateOrBlockAccountResponseEnvelope struct {
	RequestId NullableString                  `json:"request_id,omitempty"`
	Message   NullableString                  `json:"message,omitempty"`
	Data      *ActivateOrBlockAccountResponse `json:"data,omitempty"`
}

ActivateOrBlockAccountResponseEnvelope struct for ActivateOrBlockAccountResponseEnvelope

func NewActivateOrBlockAccountResponseEnvelope

func NewActivateOrBlockAccountResponseEnvelope() *ActivateOrBlockAccountResponseEnvelope

NewActivateOrBlockAccountResponseEnvelope instantiates a new ActivateOrBlockAccountResponseEnvelope 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 NewActivateOrBlockAccountResponseEnvelopeWithDefaults

func NewActivateOrBlockAccountResponseEnvelopeWithDefaults() *ActivateOrBlockAccountResponseEnvelope

NewActivateOrBlockAccountResponseEnvelopeWithDefaults instantiates a new ActivateOrBlockAccountResponseEnvelope 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 (*ActivateOrBlockAccountResponseEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ActivateOrBlockAccountResponseEnvelope) GetDataOk

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

func (*ActivateOrBlockAccountResponseEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActivateOrBlockAccountResponseEnvelope) GetMessageOk

func (o *ActivateOrBlockAccountResponseEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActivateOrBlockAccountResponseEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActivateOrBlockAccountResponseEnvelope) GetRequestIdOk

func (o *ActivateOrBlockAccountResponseEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActivateOrBlockAccountResponseEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*ActivateOrBlockAccountResponseEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*ActivateOrBlockAccountResponseEnvelope) HasRequestId

func (o *ActivateOrBlockAccountResponseEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (ActivateOrBlockAccountResponseEnvelope) MarshalJSON

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

func (*ActivateOrBlockAccountResponseEnvelope) SetData

SetData gets a reference to the given ActivateOrBlockAccountResponse and assigns it to the Data field.

func (*ActivateOrBlockAccountResponseEnvelope) SetMessage

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

func (*ActivateOrBlockAccountResponseEnvelope) SetMessageNil

func (o *ActivateOrBlockAccountResponseEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ActivateOrBlockAccountResponseEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ActivateOrBlockAccountResponseEnvelope) SetRequestIdNil

func (o *ActivateOrBlockAccountResponseEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ActivateOrBlockAccountResponseEnvelope) ToMap

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

func (*ActivateOrBlockAccountResponseEnvelope) UnsetMessage

func (o *ActivateOrBlockAccountResponseEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ActivateOrBlockAccountResponseEnvelope) UnsetRequestId

func (o *ActivateOrBlockAccountResponseEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ActivateOrBlockIdentityResponse

type ActivateOrBlockIdentityResponse struct {
	Identity *Identity                        `json:"identity,omitempty"`
	Accounts []ActivateOrBlockAccountResponse `json:"accounts,omitempty"`
}

ActivateOrBlockIdentityResponse struct for ActivateOrBlockIdentityResponse

func NewActivateOrBlockIdentityResponse

func NewActivateOrBlockIdentityResponse() *ActivateOrBlockIdentityResponse

NewActivateOrBlockIdentityResponse instantiates a new ActivateOrBlockIdentityResponse 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 NewActivateOrBlockIdentityResponseWithDefaults

func NewActivateOrBlockIdentityResponseWithDefaults() *ActivateOrBlockIdentityResponse

NewActivateOrBlockIdentityResponseWithDefaults instantiates a new ActivateOrBlockIdentityResponse 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 (*ActivateOrBlockIdentityResponse) GetAccounts

GetAccounts returns the Accounts field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActivateOrBlockIdentityResponse) GetAccountsOk

GetAccountsOk returns a tuple with the Accounts field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActivateOrBlockIdentityResponse) GetIdentity

func (o *ActivateOrBlockIdentityResponse) GetIdentity() Identity

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*ActivateOrBlockIdentityResponse) GetIdentityOk

func (o *ActivateOrBlockIdentityResponse) GetIdentityOk() (*Identity, bool)

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

func (*ActivateOrBlockIdentityResponse) HasAccounts

func (o *ActivateOrBlockIdentityResponse) HasAccounts() bool

HasAccounts returns a boolean if a field has been set.

func (*ActivateOrBlockIdentityResponse) HasIdentity

func (o *ActivateOrBlockIdentityResponse) HasIdentity() bool

HasIdentity returns a boolean if a field has been set.

func (ActivateOrBlockIdentityResponse) MarshalJSON

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

func (*ActivateOrBlockIdentityResponse) SetAccounts

SetAccounts gets a reference to the given []ActivateOrBlockAccountResponse and assigns it to the Accounts field.

func (*ActivateOrBlockIdentityResponse) SetIdentity

func (o *ActivateOrBlockIdentityResponse) SetIdentity(v Identity)

SetIdentity gets a reference to the given Identity and assigns it to the Identity field.

func (ActivateOrBlockIdentityResponse) ToMap

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

type ActivateOrBlockIdentityResponseEnvelope

type ActivateOrBlockIdentityResponseEnvelope struct {
	RequestId NullableString                   `json:"request_id,omitempty"`
	Message   NullableString                   `json:"message,omitempty"`
	Data      *ActivateOrBlockIdentityResponse `json:"data,omitempty"`
}

ActivateOrBlockIdentityResponseEnvelope struct for ActivateOrBlockIdentityResponseEnvelope

func NewActivateOrBlockIdentityResponseEnvelope

func NewActivateOrBlockIdentityResponseEnvelope() *ActivateOrBlockIdentityResponseEnvelope

NewActivateOrBlockIdentityResponseEnvelope instantiates a new ActivateOrBlockIdentityResponseEnvelope 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 NewActivateOrBlockIdentityResponseEnvelopeWithDefaults

func NewActivateOrBlockIdentityResponseEnvelopeWithDefaults() *ActivateOrBlockIdentityResponseEnvelope

NewActivateOrBlockIdentityResponseEnvelopeWithDefaults instantiates a new ActivateOrBlockIdentityResponseEnvelope 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 (*ActivateOrBlockIdentityResponseEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ActivateOrBlockIdentityResponseEnvelope) GetDataOk

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

func (*ActivateOrBlockIdentityResponseEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActivateOrBlockIdentityResponseEnvelope) GetMessageOk

func (o *ActivateOrBlockIdentityResponseEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActivateOrBlockIdentityResponseEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ActivateOrBlockIdentityResponseEnvelope) GetRequestIdOk

func (o *ActivateOrBlockIdentityResponseEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ActivateOrBlockIdentityResponseEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*ActivateOrBlockIdentityResponseEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*ActivateOrBlockIdentityResponseEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (ActivateOrBlockIdentityResponseEnvelope) MarshalJSON

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

func (*ActivateOrBlockIdentityResponseEnvelope) SetData

SetData gets a reference to the given ActivateOrBlockIdentityResponse and assigns it to the Data field.

func (*ActivateOrBlockIdentityResponseEnvelope) SetMessage

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

func (*ActivateOrBlockIdentityResponseEnvelope) SetMessageNil

func (o *ActivateOrBlockIdentityResponseEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ActivateOrBlockIdentityResponseEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ActivateOrBlockIdentityResponseEnvelope) SetRequestIdNil

func (o *ActivateOrBlockIdentityResponseEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ActivateOrBlockIdentityResponseEnvelope) ToMap

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

func (*ActivateOrBlockIdentityResponseEnvelope) UnsetMessage

func (o *ActivateOrBlockIdentityResponseEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ActivateOrBlockIdentityResponseEnvelope) UnsetRequestId

func (o *ActivateOrBlockIdentityResponseEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ActivateOrBlockRequest

type ActivateOrBlockRequest struct {
	Blocked bool   `json:"blocked"`
	Reason  string `json:"reason"`
}

ActivateOrBlockRequest struct for ActivateOrBlockRequest

func NewActivateOrBlockRequest

func NewActivateOrBlockRequest(blocked bool, reason string) *ActivateOrBlockRequest

NewActivateOrBlockRequest instantiates a new ActivateOrBlockRequest 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 NewActivateOrBlockRequestWithDefaults

func NewActivateOrBlockRequestWithDefaults() *ActivateOrBlockRequest

NewActivateOrBlockRequestWithDefaults instantiates a new ActivateOrBlockRequest 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 (*ActivateOrBlockRequest) GetBlocked

func (o *ActivateOrBlockRequest) GetBlocked() bool

GetBlocked returns the Blocked field value

func (*ActivateOrBlockRequest) GetBlockedOk

func (o *ActivateOrBlockRequest) GetBlockedOk() (*bool, bool)

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

func (*ActivateOrBlockRequest) GetReason

func (o *ActivateOrBlockRequest) GetReason() string

GetReason returns the Reason field value

func (*ActivateOrBlockRequest) GetReasonOk

func (o *ActivateOrBlockRequest) GetReasonOk() (*string, bool)

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

func (ActivateOrBlockRequest) MarshalJSON

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

func (*ActivateOrBlockRequest) SetBlocked

func (o *ActivateOrBlockRequest) SetBlocked(v bool)

SetBlocked sets field value

func (*ActivateOrBlockRequest) SetReason

func (o *ActivateOrBlockRequest) SetReason(v string)

SetReason sets field value

func (ActivateOrBlockRequest) ToMap

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

func (*ActivateOrBlockRequest) UnmarshalJSON

func (o *ActivateOrBlockRequest) UnmarshalJSON(data []byte) (err error)

type AdministratorsAccess

type AdministratorsAccess string

AdministratorsAccess the model 'AdministratorsAccess'

const (
	ADMINISTRATORSACCESS_UNDEFINED AdministratorsAccess = "Undefined"
	ADMINISTRATORSACCESS_FULL      AdministratorsAccess = "Full"
	ADMINISTRATORSACCESS_LIMITED   AdministratorsAccess = "Limited"
)

List of AdministratorsAccess

func NewAdministratorsAccessFromValue

func NewAdministratorsAccessFromValue(v string) (*AdministratorsAccess, error)

NewAdministratorsAccessFromValue returns a pointer to a valid AdministratorsAccess for the value passed as argument, or an error if the value passed is not allowed by the enum

func (AdministratorsAccess) IsValid

func (v AdministratorsAccess) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (AdministratorsAccess) Ptr

Ptr returns reference to AdministratorsAccess value

func (*AdministratorsAccess) UnmarshalJSON

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

type Application

type Application struct {
	ApplicationIdentifier NullableString       `json:"applicationIdentifier,omitempty"`
	DisplayName           string               `json:"displayName"`
	IdentityId            NullableString       `json:"identityId,omitempty"`
	Description           NullableString       `json:"description,omitempty"`
	AdministratorsId      NullableString       `json:"administratorsId,omitempty"`
	ManagerId             NullableString       `json:"managerId,omitempty"`
	AdministratorsAccess  AdministratorsAccess `json:"administratorsAccess"`
	HomePage              NullableString       `json:"homePage,omitempty"`
	ResourceCategory      *ResourceCategory    `json:"resourceCategory,omitempty"`
	Reassignable          *bool                `json:"reassignable,omitempty"`
	AutoReassign          *bool                `json:"autoReassign,omitempty"`
	// Deprecated
	PendingAction    *bool          `json:"pendingAction,omitempty"`
	Disabled         *bool          `json:"disabled,omitempty"`
	Blocked          *bool          `json:"blocked,omitempty"`
	SecurityIssues   *bool          `json:"securityIssues,omitempty"`
	BlockingReason   NullableString `json:"blockingReason,omitempty"`
	BlockingTime     NullableTime   `json:"blockingTime,omitempty"`
	BlockingDeadline NullableTime   `json:"blockingDeadline,omitempty"`
	ArchiveDeadline  NullableTime   `json:"archiveDeadline,omitempty"`
	DeleteDeadline   NullableTime   `json:"deleteDeadline,omitempty"`
	// Deprecated
	ExpirationDeadline  NullableTime   `json:"expirationDeadline,omitempty"`
	OwnerId             NullableString `json:"ownerId,omitempty"`
	InternalState       *ResourceState `json:"internalState,omitempty"`
	State               *ResourceState `json:"state,omitempty"`
	LastStateChangeTime NullableTime   `json:"lastStateChangeTime,omitempty"`
	ValidityLimit       NullableTime   `json:"validityLimit,omitempty"`
	Id                  NullableString `json:"id,omitempty"`
	CreationTime        *time.Time     `json:"creationTime,omitempty"`
}

Application struct for Application

func NewApplication

func NewApplication(displayName string, administratorsAccess AdministratorsAccess) *Application

NewApplication instantiates a new Application 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 NewApplicationWithDefaults

func NewApplicationWithDefaults() *Application

NewApplicationWithDefaults instantiates a new Application 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 (*Application) GetAdministratorsAccess

func (o *Application) GetAdministratorsAccess() AdministratorsAccess

GetAdministratorsAccess returns the AdministratorsAccess field value

func (*Application) GetAdministratorsAccessOk

func (o *Application) GetAdministratorsAccessOk() (*AdministratorsAccess, bool)

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

func (*Application) GetAdministratorsId

func (o *Application) GetAdministratorsId() string

GetAdministratorsId returns the AdministratorsId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetAdministratorsIdOk

func (o *Application) GetAdministratorsIdOk() (*string, bool)

GetAdministratorsIdOk returns a tuple with the AdministratorsId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetApplicationIdentifier

func (o *Application) GetApplicationIdentifier() string

GetApplicationIdentifier returns the ApplicationIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetApplicationIdentifierOk

func (o *Application) GetApplicationIdentifierOk() (*string, bool)

GetApplicationIdentifierOk returns a tuple with the ApplicationIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetArchiveDeadline

func (o *Application) GetArchiveDeadline() time.Time

GetArchiveDeadline returns the ArchiveDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetArchiveDeadlineOk

func (o *Application) GetArchiveDeadlineOk() (*time.Time, bool)

GetArchiveDeadlineOk returns a tuple with the ArchiveDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetAutoReassign

func (o *Application) GetAutoReassign() bool

GetAutoReassign returns the AutoReassign field value if set, zero value otherwise.

func (*Application) GetAutoReassignOk

func (o *Application) GetAutoReassignOk() (*bool, bool)

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

func (*Application) GetBlocked

func (o *Application) GetBlocked() bool

GetBlocked returns the Blocked field value if set, zero value otherwise.

func (*Application) GetBlockedOk

func (o *Application) GetBlockedOk() (*bool, bool)

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

func (*Application) GetBlockingDeadline

func (o *Application) GetBlockingDeadline() time.Time

GetBlockingDeadline returns the BlockingDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetBlockingDeadlineOk

func (o *Application) GetBlockingDeadlineOk() (*time.Time, bool)

GetBlockingDeadlineOk returns a tuple with the BlockingDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetBlockingReason

func (o *Application) GetBlockingReason() string

GetBlockingReason returns the BlockingReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetBlockingReasonOk

func (o *Application) GetBlockingReasonOk() (*string, bool)

GetBlockingReasonOk returns a tuple with the BlockingReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetBlockingTime

func (o *Application) GetBlockingTime() time.Time

GetBlockingTime returns the BlockingTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetBlockingTimeOk

func (o *Application) GetBlockingTimeOk() (*time.Time, bool)

GetBlockingTimeOk returns a tuple with the BlockingTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetCreationTime

func (o *Application) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Application) GetCreationTimeOk

func (o *Application) GetCreationTimeOk() (*time.Time, bool)

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

func (*Application) GetDeleteDeadline

func (o *Application) GetDeleteDeadline() time.Time

GetDeleteDeadline returns the DeleteDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetDeleteDeadlineOk

func (o *Application) GetDeleteDeadlineOk() (*time.Time, bool)

GetDeleteDeadlineOk returns a tuple with the DeleteDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetDescription

func (o *Application) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetDescriptionOk

func (o *Application) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetDisabled

func (o *Application) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*Application) GetDisabledOk

func (o *Application) GetDisabledOk() (*bool, bool)

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

func (*Application) GetDisplayName

func (o *Application) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*Application) GetDisplayNameOk

func (o *Application) GetDisplayNameOk() (*string, bool)

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

func (*Application) GetExpirationDeadline

func (o *Application) GetExpirationDeadline() time.Time

GetExpirationDeadline returns the ExpirationDeadline field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*Application) GetExpirationDeadlineOk

func (o *Application) GetExpirationDeadlineOk() (*time.Time, bool)

GetExpirationDeadlineOk returns a tuple with the ExpirationDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned Deprecated

func (*Application) GetHomePage

func (o *Application) GetHomePage() string

GetHomePage returns the HomePage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetHomePageOk

func (o *Application) GetHomePageOk() (*string, bool)

GetHomePageOk returns a tuple with the HomePage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetId

func (o *Application) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetIdOk

func (o *Application) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetIdentityId

func (o *Application) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetIdentityIdOk

func (o *Application) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetInternalState

func (o *Application) GetInternalState() ResourceState

GetInternalState returns the InternalState field value if set, zero value otherwise.

func (*Application) GetInternalStateOk

func (o *Application) GetInternalStateOk() (*ResourceState, bool)

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

func (*Application) GetLastStateChangeTime

func (o *Application) GetLastStateChangeTime() time.Time

GetLastStateChangeTime returns the LastStateChangeTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetLastStateChangeTimeOk

func (o *Application) GetLastStateChangeTimeOk() (*time.Time, bool)

GetLastStateChangeTimeOk returns a tuple with the LastStateChangeTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetManagerId

func (o *Application) GetManagerId() string

GetManagerId returns the ManagerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetManagerIdOk

func (o *Application) GetManagerIdOk() (*string, bool)

GetManagerIdOk returns a tuple with the ManagerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetOwnerId

func (o *Application) GetOwnerId() string

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetOwnerIdOk

func (o *Application) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) GetPendingAction

func (o *Application) GetPendingAction() bool

GetPendingAction returns the PendingAction field value if set, zero value otherwise. Deprecated

func (*Application) GetPendingActionOk

func (o *Application) GetPendingActionOk() (*bool, bool)

GetPendingActionOk returns a tuple with the PendingAction field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Application) GetReassignable

func (o *Application) GetReassignable() bool

GetReassignable returns the Reassignable field value if set, zero value otherwise.

func (*Application) GetReassignableOk

func (o *Application) GetReassignableOk() (*bool, bool)

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

func (*Application) GetResourceCategory

func (o *Application) GetResourceCategory() ResourceCategory

GetResourceCategory returns the ResourceCategory field value if set, zero value otherwise.

func (*Application) GetResourceCategoryOk

func (o *Application) GetResourceCategoryOk() (*ResourceCategory, bool)

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

func (*Application) GetSecurityIssues

func (o *Application) GetSecurityIssues() bool

GetSecurityIssues returns the SecurityIssues field value if set, zero value otherwise.

func (*Application) GetSecurityIssuesOk

func (o *Application) GetSecurityIssuesOk() (*bool, bool)

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

func (*Application) GetState

func (o *Application) GetState() ResourceState

GetState returns the State field value if set, zero value otherwise.

func (*Application) GetStateOk

func (o *Application) GetStateOk() (*ResourceState, bool)

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

func (*Application) GetValidityLimit

func (o *Application) GetValidityLimit() time.Time

GetValidityLimit returns the ValidityLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Application) GetValidityLimitOk

func (o *Application) GetValidityLimitOk() (*time.Time, bool)

GetValidityLimitOk returns a tuple with the ValidityLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Application) HasAdministratorsId

func (o *Application) HasAdministratorsId() bool

HasAdministratorsId returns a boolean if a field has been set.

func (*Application) HasApplicationIdentifier

func (o *Application) HasApplicationIdentifier() bool

HasApplicationIdentifier returns a boolean if a field has been set.

func (*Application) HasArchiveDeadline

func (o *Application) HasArchiveDeadline() bool

HasArchiveDeadline returns a boolean if a field has been set.

func (*Application) HasAutoReassign

func (o *Application) HasAutoReassign() bool

HasAutoReassign returns a boolean if a field has been set.

func (*Application) HasBlocked

func (o *Application) HasBlocked() bool

HasBlocked returns a boolean if a field has been set.

func (*Application) HasBlockingDeadline

func (o *Application) HasBlockingDeadline() bool

HasBlockingDeadline returns a boolean if a field has been set.

func (*Application) HasBlockingReason

func (o *Application) HasBlockingReason() bool

HasBlockingReason returns a boolean if a field has been set.

func (*Application) HasBlockingTime

func (o *Application) HasBlockingTime() bool

HasBlockingTime returns a boolean if a field has been set.

func (*Application) HasCreationTime

func (o *Application) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*Application) HasDeleteDeadline

func (o *Application) HasDeleteDeadline() bool

HasDeleteDeadline returns a boolean if a field has been set.

func (*Application) HasDescription

func (o *Application) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Application) HasDisabled

func (o *Application) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*Application) HasExpirationDeadline

func (o *Application) HasExpirationDeadline() bool

HasExpirationDeadline returns a boolean if a field has been set.

func (*Application) HasHomePage

func (o *Application) HasHomePage() bool

HasHomePage returns a boolean if a field has been set.

func (*Application) HasId

func (o *Application) HasId() bool

HasId returns a boolean if a field has been set.

func (*Application) HasIdentityId

func (o *Application) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (*Application) HasInternalState

func (o *Application) HasInternalState() bool

HasInternalState returns a boolean if a field has been set.

func (*Application) HasLastStateChangeTime

func (o *Application) HasLastStateChangeTime() bool

HasLastStateChangeTime returns a boolean if a field has been set.

func (*Application) HasManagerId

func (o *Application) HasManagerId() bool

HasManagerId returns a boolean if a field has been set.

func (*Application) HasOwnerId

func (o *Application) HasOwnerId() bool

HasOwnerId returns a boolean if a field has been set.

func (*Application) HasPendingAction

func (o *Application) HasPendingAction() bool

HasPendingAction returns a boolean if a field has been set.

func (*Application) HasReassignable

func (o *Application) HasReassignable() bool

HasReassignable returns a boolean if a field has been set.

func (*Application) HasResourceCategory

func (o *Application) HasResourceCategory() bool

HasResourceCategory returns a boolean if a field has been set.

func (*Application) HasSecurityIssues

func (o *Application) HasSecurityIssues() bool

HasSecurityIssues returns a boolean if a field has been set.

func (*Application) HasState

func (o *Application) HasState() bool

HasState returns a boolean if a field has been set.

func (*Application) HasValidityLimit

func (o *Application) HasValidityLimit() bool

HasValidityLimit returns a boolean if a field has been set.

func (Application) MarshalJSON

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

func (*Application) SetAdministratorsAccess

func (o *Application) SetAdministratorsAccess(v AdministratorsAccess)

SetAdministratorsAccess sets field value

func (*Application) SetAdministratorsId

func (o *Application) SetAdministratorsId(v string)

SetAdministratorsId gets a reference to the given NullableString and assigns it to the AdministratorsId field.

func (*Application) SetAdministratorsIdNil

func (o *Application) SetAdministratorsIdNil()

SetAdministratorsIdNil sets the value for AdministratorsId to be an explicit nil

func (*Application) SetApplicationIdentifier

func (o *Application) SetApplicationIdentifier(v string)

SetApplicationIdentifier gets a reference to the given NullableString and assigns it to the ApplicationIdentifier field.

func (*Application) SetApplicationIdentifierNil

func (o *Application) SetApplicationIdentifierNil()

SetApplicationIdentifierNil sets the value for ApplicationIdentifier to be an explicit nil

func (*Application) SetArchiveDeadline

func (o *Application) SetArchiveDeadline(v time.Time)

SetArchiveDeadline gets a reference to the given NullableTime and assigns it to the ArchiveDeadline field.

func (*Application) SetArchiveDeadlineNil

func (o *Application) SetArchiveDeadlineNil()

SetArchiveDeadlineNil sets the value for ArchiveDeadline to be an explicit nil

func (*Application) SetAutoReassign

func (o *Application) SetAutoReassign(v bool)

SetAutoReassign gets a reference to the given bool and assigns it to the AutoReassign field.

func (*Application) SetBlocked

func (o *Application) SetBlocked(v bool)

SetBlocked gets a reference to the given bool and assigns it to the Blocked field.

func (*Application) SetBlockingDeadline

func (o *Application) SetBlockingDeadline(v time.Time)

SetBlockingDeadline gets a reference to the given NullableTime and assigns it to the BlockingDeadline field.

func (*Application) SetBlockingDeadlineNil

func (o *Application) SetBlockingDeadlineNil()

SetBlockingDeadlineNil sets the value for BlockingDeadline to be an explicit nil

func (*Application) SetBlockingReason

func (o *Application) SetBlockingReason(v string)

SetBlockingReason gets a reference to the given NullableString and assigns it to the BlockingReason field.

func (*Application) SetBlockingReasonNil

func (o *Application) SetBlockingReasonNil()

SetBlockingReasonNil sets the value for BlockingReason to be an explicit nil

func (*Application) SetBlockingTime

func (o *Application) SetBlockingTime(v time.Time)

SetBlockingTime gets a reference to the given NullableTime and assigns it to the BlockingTime field.

func (*Application) SetBlockingTimeNil

func (o *Application) SetBlockingTimeNil()

SetBlockingTimeNil sets the value for BlockingTime to be an explicit nil

func (*Application) SetCreationTime

func (o *Application) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*Application) SetDeleteDeadline

func (o *Application) SetDeleteDeadline(v time.Time)

SetDeleteDeadline gets a reference to the given NullableTime and assigns it to the DeleteDeadline field.

func (*Application) SetDeleteDeadlineNil

func (o *Application) SetDeleteDeadlineNil()

SetDeleteDeadlineNil sets the value for DeleteDeadline to be an explicit nil

func (*Application) SetDescription

func (o *Application) SetDescription(v string)

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

func (*Application) SetDescriptionNil

func (o *Application) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Application) SetDisabled

func (o *Application) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*Application) SetDisplayName

func (o *Application) SetDisplayName(v string)

SetDisplayName sets field value

func (*Application) SetExpirationDeadline

func (o *Application) SetExpirationDeadline(v time.Time)

SetExpirationDeadline gets a reference to the given NullableTime and assigns it to the ExpirationDeadline field. Deprecated

func (*Application) SetExpirationDeadlineNil

func (o *Application) SetExpirationDeadlineNil()

SetExpirationDeadlineNil sets the value for ExpirationDeadline to be an explicit nil

func (*Application) SetHomePage

func (o *Application) SetHomePage(v string)

SetHomePage gets a reference to the given NullableString and assigns it to the HomePage field.

func (*Application) SetHomePageNil

func (o *Application) SetHomePageNil()

SetHomePageNil sets the value for HomePage to be an explicit nil

func (*Application) SetId

func (o *Application) SetId(v string)

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

func (*Application) SetIdNil

func (o *Application) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Application) SetIdentityId

func (o *Application) SetIdentityId(v string)

SetIdentityId gets a reference to the given NullableString and assigns it to the IdentityId field.

func (*Application) SetIdentityIdNil

func (o *Application) SetIdentityIdNil()

SetIdentityIdNil sets the value for IdentityId to be an explicit nil

func (*Application) SetInternalState

func (o *Application) SetInternalState(v ResourceState)

SetInternalState gets a reference to the given ResourceState and assigns it to the InternalState field.

func (*Application) SetLastStateChangeTime

func (o *Application) SetLastStateChangeTime(v time.Time)

SetLastStateChangeTime gets a reference to the given NullableTime and assigns it to the LastStateChangeTime field.

func (*Application) SetLastStateChangeTimeNil

func (o *Application) SetLastStateChangeTimeNil()

SetLastStateChangeTimeNil sets the value for LastStateChangeTime to be an explicit nil

func (*Application) SetManagerId

func (o *Application) SetManagerId(v string)

SetManagerId gets a reference to the given NullableString and assigns it to the ManagerId field.

func (*Application) SetManagerIdNil

func (o *Application) SetManagerIdNil()

SetManagerIdNil sets the value for ManagerId to be an explicit nil

func (*Application) SetOwnerId

func (o *Application) SetOwnerId(v string)

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*Application) SetOwnerIdNil

func (o *Application) SetOwnerIdNil()

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (*Application) SetPendingAction

func (o *Application) SetPendingAction(v bool)

SetPendingAction gets a reference to the given bool and assigns it to the PendingAction field. Deprecated

func (*Application) SetReassignable

func (o *Application) SetReassignable(v bool)

SetReassignable gets a reference to the given bool and assigns it to the Reassignable field.

func (*Application) SetResourceCategory

func (o *Application) SetResourceCategory(v ResourceCategory)

SetResourceCategory gets a reference to the given ResourceCategory and assigns it to the ResourceCategory field.

func (*Application) SetSecurityIssues

func (o *Application) SetSecurityIssues(v bool)

SetSecurityIssues gets a reference to the given bool and assigns it to the SecurityIssues field.

func (*Application) SetState

func (o *Application) SetState(v ResourceState)

SetState gets a reference to the given ResourceState and assigns it to the State field.

func (*Application) SetValidityLimit

func (o *Application) SetValidityLimit(v time.Time)

SetValidityLimit gets a reference to the given NullableTime and assigns it to the ValidityLimit field.

func (*Application) SetValidityLimitNil

func (o *Application) SetValidityLimitNil()

SetValidityLimitNil sets the value for ValidityLimit to be an explicit nil

func (Application) ToMap

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

func (*Application) UnmarshalJSON

func (o *Application) UnmarshalJSON(data []byte) (err error)

func (*Application) UnsetAdministratorsId

func (o *Application) UnsetAdministratorsId()

UnsetAdministratorsId ensures that no value is present for AdministratorsId, not even an explicit nil

func (*Application) UnsetApplicationIdentifier

func (o *Application) UnsetApplicationIdentifier()

UnsetApplicationIdentifier ensures that no value is present for ApplicationIdentifier, not even an explicit nil

func (*Application) UnsetArchiveDeadline

func (o *Application) UnsetArchiveDeadline()

UnsetArchiveDeadline ensures that no value is present for ArchiveDeadline, not even an explicit nil

func (*Application) UnsetBlockingDeadline

func (o *Application) UnsetBlockingDeadline()

UnsetBlockingDeadline ensures that no value is present for BlockingDeadline, not even an explicit nil

func (*Application) UnsetBlockingReason

func (o *Application) UnsetBlockingReason()

UnsetBlockingReason ensures that no value is present for BlockingReason, not even an explicit nil

func (*Application) UnsetBlockingTime

func (o *Application) UnsetBlockingTime()

UnsetBlockingTime ensures that no value is present for BlockingTime, not even an explicit nil

func (*Application) UnsetDeleteDeadline

func (o *Application) UnsetDeleteDeadline()

UnsetDeleteDeadline ensures that no value is present for DeleteDeadline, not even an explicit nil

func (*Application) UnsetDescription

func (o *Application) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Application) UnsetExpirationDeadline

func (o *Application) UnsetExpirationDeadline()

UnsetExpirationDeadline ensures that no value is present for ExpirationDeadline, not even an explicit nil

func (*Application) UnsetHomePage

func (o *Application) UnsetHomePage()

UnsetHomePage ensures that no value is present for HomePage, not even an explicit nil

func (*Application) UnsetId

func (o *Application) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*Application) UnsetIdentityId

func (o *Application) UnsetIdentityId()

UnsetIdentityId ensures that no value is present for IdentityId, not even an explicit nil

func (*Application) UnsetLastStateChangeTime

func (o *Application) UnsetLastStateChangeTime()

UnsetLastStateChangeTime ensures that no value is present for LastStateChangeTime, not even an explicit nil

func (*Application) UnsetManagerId

func (o *Application) UnsetManagerId()

UnsetManagerId ensures that no value is present for ManagerId, not even an explicit nil

func (*Application) UnsetOwnerId

func (o *Application) UnsetOwnerId()

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

func (*Application) UnsetValidityLimit

func (o *Application) UnsetValidityLimit()

UnsetValidityLimit ensures that no value is present for ValidityLimit, not even an explicit nil

type ApplicationAPIService

type ApplicationAPIService service

ApplicationAPIService ApplicationAPI service

func (*ApplicationAPIService) ApplicationGet

ApplicationGet Gets all the Applications paginated.

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

Deprecated

func (*ApplicationAPIService) ApplicationGetExecute

Execute executes the request

@return ApplicationEnumerateEnvelope

Deprecated

func (*ApplicationAPIService) ApplicationIdActivatePut

func (a *ApplicationAPIService) ApplicationIdActivatePut(ctx context.Context, id string) ApplicationIdActivatePutRequest

ApplicationIdActivatePut Activates the resource, i.e. it changes the state from Cern.AuthorizationService.Model.DataTypes.ResourceState.Created to Cern.AuthorizationService.Model.DataTypes.ResourceState.Active.

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

func (*ApplicationAPIService) ApplicationIdActivatePutExecute

func (a *ApplicationAPIService) ApplicationIdActivatePutExecute(r ApplicationIdActivatePutRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationAPIService) ApplicationIdDelete

func (a *ApplicationAPIService) ApplicationIdDelete(ctx context.Context, id string) ApplicationIdDeleteRequest

ApplicationIdDelete Deletes the application.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@return ApplicationIdDeleteRequest

func (*ApplicationAPIService) ApplicationIdDeleteExecute

Execute executes the request

@return ApplicationEnvelope

func (*ApplicationAPIService) ApplicationIdExtendDeadlinesPut

func (a *ApplicationAPIService) ApplicationIdExtendDeadlinesPut(ctx context.Context, id string) ApplicationIdExtendDeadlinesPutRequest

ApplicationIdExtendDeadlinesPut Extends the blocking, archive and expiration deadlines of a resource.

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

func (*ApplicationAPIService) ApplicationIdExtendDeadlinesPutExecute

func (a *ApplicationAPIService) ApplicationIdExtendDeadlinesPutExecute(r ApplicationIdExtendDeadlinesPutRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationAPIService) ApplicationIdGet

ApplicationIdGet Get the specified Application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@return ApplicationIdGetRequest

func (*ApplicationAPIService) ApplicationIdGetExecute

Execute executes the request

@return ApplicationEnvelope

func (*ApplicationAPIService) ApplicationIdLifecycleSettingsGet

func (a *ApplicationAPIService) ApplicationIdLifecycleSettingsGet(ctx context.Context, id string) ApplicationIdLifecycleSettingsGetRequest

ApplicationIdLifecycleSettingsGet Gets the Cern.AuthorizationService.Model.LifecycleSettings for the Cern.AuthorizationService.Model.Application with given id.

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

func (*ApplicationAPIService) ApplicationIdLifecycleSettingsGetExecute

Execute executes the request

@return LifecycleSettingsEnumerateEnvelope

func (*ApplicationAPIService) ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGet

func (a *ApplicationAPIService) ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGet(ctx context.Context, id string, lifecycleSettingsId string) ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGetRequest

ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGet Gets the list of Cern.AuthorizationService.Model.ApiObjects.ApplicationSubscriptionInformation for the Cern.AuthorizationService.Model.Application with given id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Application id.
@param lifecycleSettingsId Lifecycle settings id.
@return ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGetRequest

func (*ApplicationAPIService) ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGetExecute

Execute executes the request

@return ApplicationSubscriptionInformationEnumerateEnvelope

func (*ApplicationAPIService) ApplicationIdPatch

func (a *ApplicationAPIService) ApplicationIdPatch(ctx context.Context, id string) ApplicationIdPatchRequest

ApplicationIdPatch Patches the application.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@return ApplicationIdPatchRequest

func (*ApplicationAPIService) ApplicationIdPatchExecute

Execute executes the request

@return ApplicationEnvelope

func (*ApplicationAPIService) ApplicationIdPut

ApplicationIdPut Updates the application.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@return ApplicationIdPutRequest

func (*ApplicationAPIService) ApplicationIdPutExecute

Execute executes the request

@return ApplicationEnvelope

func (*ApplicationAPIService) ApplicationIdRecoverPut

func (a *ApplicationAPIService) ApplicationIdRecoverPut(ctx context.Context, id string) ApplicationIdRecoverPutRequest

ApplicationIdRecoverPut Recovers the resource, i.e. it changes the state from Cern.AuthorizationService.Model.DataTypes.ResourceState.Archived to Cern.AuthorizationService.Model.DataTypes.ResourceState.Active.

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

func (*ApplicationAPIService) ApplicationIdRecoverPutExecute

func (a *ApplicationAPIService) ApplicationIdRecoverPutExecute(r ApplicationIdRecoverPutRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationAPIService) ApplicationIdRolesGet

func (a *ApplicationAPIService) ApplicationIdRolesGet(ctx context.Context, id string) ApplicationIdRolesGetRequest

ApplicationIdRolesGet Get Roles for this Application.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@return ApplicationIdRolesGetRequest

func (*ApplicationAPIService) ApplicationIdRolesGetExecute

Execute executes the request

@return RoleEnumerateEnvelope

func (*ApplicationAPIService) ApplicationIdRolesPost

func (a *ApplicationAPIService) ApplicationIdRolesPost(ctx context.Context, id string) ApplicationIdRolesPostRequest

ApplicationIdRolesPost Create Role for Application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@return ApplicationIdRolesPostRequest

func (*ApplicationAPIService) ApplicationIdRolesPostExecute

func (a *ApplicationAPIService) ApplicationIdRolesPostExecute(r ApplicationIdRolesPostRequest) (*RoleEnvelope, *http.Response, error)

Execute executes the request

@return RoleEnvelope

func (*ApplicationAPIService) ApplicationIdRolesRoleidDelete

func (a *ApplicationAPIService) ApplicationIdRolesRoleidDelete(ctx context.Context, id string, roleid string) ApplicationIdRolesRoleidDeleteRequest

ApplicationIdRolesRoleidDelete Delete Role for this Application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@param roleid The roleid.
@return ApplicationIdRolesRoleidDeleteRequest

func (*ApplicationAPIService) ApplicationIdRolesRoleidDeleteExecute

func (a *ApplicationAPIService) ApplicationIdRolesRoleidDeleteExecute(r ApplicationIdRolesRoleidDeleteRequest) (*RoleEnvelope, *http.Response, error)

Execute executes the request

@return RoleEnvelope

func (*ApplicationAPIService) ApplicationIdRolesRoleidGet

func (a *ApplicationAPIService) ApplicationIdRolesRoleidGet(ctx context.Context, id string, roleid string) ApplicationIdRolesRoleidGetRequest

ApplicationIdRolesRoleidGet Get one Role for this Application.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@param roleid The role ID or Unique Identifier.
@return ApplicationIdRolesRoleidGetRequest

func (*ApplicationAPIService) ApplicationIdRolesRoleidGetExecute

func (a *ApplicationAPIService) ApplicationIdRolesRoleidGetExecute(r ApplicationIdRolesRoleidGetRequest) (*RoleEnvelope, *http.Response, error)

Execute executes the request

@return RoleEnvelope

func (*ApplicationAPIService) ApplicationIdRolesRoleidGroupsGet

func (a *ApplicationAPIService) ApplicationIdRolesRoleidGroupsGet(ctx context.Context, id string, roleid string) ApplicationIdRolesRoleidGroupsGetRequest

ApplicationIdRolesRoleidGroupsGet Get groups for this role for this application.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@param roleid The role ID or Unique Identifier.
@return ApplicationIdRolesRoleidGroupsGetRequest

func (*ApplicationAPIService) ApplicationIdRolesRoleidGroupsGetExecute

func (a *ApplicationAPIService) ApplicationIdRolesRoleidGroupsGetExecute(r ApplicationIdRolesRoleidGroupsGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

func (*ApplicationAPIService) ApplicationIdRolesRoleidGroupsGroupidDelete

func (a *ApplicationAPIService) ApplicationIdRolesRoleidGroupsGroupidDelete(ctx context.Context, id string, roleid string, groupid string) ApplicationIdRolesRoleidGroupsGroupidDeleteRequest

ApplicationIdRolesRoleidGroupsGroupidDelete Remove group from a given rolerole

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@param roleid The role ID or Unique Identifier.
@param groupid The group ID or Unique Identifier.
@return ApplicationIdRolesRoleidGroupsGroupidDeleteRequest

func (*ApplicationAPIService) ApplicationIdRolesRoleidGroupsGroupidDeleteExecute

func (a *ApplicationAPIService) ApplicationIdRolesRoleidGroupsGroupidDeleteExecute(r ApplicationIdRolesRoleidGroupsGroupidDeleteRequest) (*AssignmentEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return AssignmentEnumerateEnvelope

func (*ApplicationAPIService) ApplicationIdRolesRoleidGroupsGroupidPost

func (a *ApplicationAPIService) ApplicationIdRolesRoleidGroupsGroupidPost(ctx context.Context, id string, roleid string, groupid string) ApplicationIdRolesRoleidGroupsGroupidPostRequest

ApplicationIdRolesRoleidGroupsGroupidPost Adds a group to a Role, checking if the group can be used by the application to define roles.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@param roleid The role ID or Unique Identifier.
@param groupid The group ID or Unique Identifier.
@return ApplicationIdRolesRoleidGroupsGroupidPostRequest

func (*ApplicationAPIService) ApplicationIdRolesRoleidGroupsGroupidPostExecute

func (a *ApplicationAPIService) ApplicationIdRolesRoleidGroupsGroupidPostExecute(r ApplicationIdRolesRoleidGroupsGroupidPostRequest) (*AssignmentEnvelope, *http.Response, error)

Execute executes the request

@return AssignmentEnvelope

func (*ApplicationAPIService) ApplicationIdRolesRoleidIdentitiesGet

func (a *ApplicationAPIService) ApplicationIdRolesRoleidIdentitiesGet(ctx context.Context, id string, roleid string) ApplicationIdRolesRoleidIdentitiesGetRequest

ApplicationIdRolesRoleidIdentitiesGet Get identities that can have a given role in the given application. Note: Since roles depend on the Level of Assurance from the login process, the real roles of a logged-in identity returned here might not have it. Note2: This will return an empty list for roles that apply to all identities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@param roleid The role ID or Unique Identifier.
@return ApplicationIdRolesRoleidIdentitiesGetRequest

func (*ApplicationAPIService) ApplicationIdRolesRoleidIdentitiesGetExecute

Execute executes the request

@return IdentityEnumerateEnvelope

func (*ApplicationAPIService) ApplicationIdRolesRoleidPut

func (a *ApplicationAPIService) ApplicationIdRolesRoleidPut(ctx context.Context, id string, roleid string) ApplicationIdRolesRoleidPutRequest

ApplicationIdRolesRoleidPut Update Role for this Application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Application Id or Unique Identifier.
@param roleid The Role Id or Unique Identifier.
@return ApplicationIdRolesRoleidPutRequest

func (*ApplicationAPIService) ApplicationIdRolesRoleidPutExecute

func (a *ApplicationAPIService) ApplicationIdRolesRoleidPutExecute(r ApplicationIdRolesRoleidPutRequest) (*RoleEnvelope, *http.Response, error)

Execute executes the request

@return RoleEnvelope

func (*ApplicationAPIService) ApplicationIdStatusPut

func (a *ApplicationAPIService) ApplicationIdStatusPut(ctx context.Context, id string) ApplicationIdStatusPutRequest

ApplicationIdStatusPut Sets the application status (blocked or not blocked), triggering changes in Keycloak and blocking the app's identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@return ApplicationIdStatusPutRequest

func (*ApplicationAPIService) ApplicationIdStatusPutExecute

Execute executes the request

@return ApplicationEnvelope

func (*ApplicationAPIService) ApplicationIdTransferNewOwnerIdPut

func (a *ApplicationAPIService) ApplicationIdTransferNewOwnerIdPut(ctx context.Context, id string, newOwnerId string) ApplicationIdTransferNewOwnerIdPutRequest

ApplicationIdTransferNewOwnerIdPut Assigns the target resource to a new owner, who must be a valid owner (eligible) for the resource. Depending on the caller's privileges, the operation might need to be approved by the new owner.

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

func (*ApplicationAPIService) ApplicationIdTransferNewOwnerIdPutExecute

func (a *ApplicationAPIService) ApplicationIdTransferNewOwnerIdPutExecute(r ApplicationIdTransferNewOwnerIdPutRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationAPIService) ApplicationIdUsersCurrentRolesGet

func (a *ApplicationAPIService) ApplicationIdUsersCurrentRolesGet(ctx context.Context, id string) ApplicationIdUsersCurrentRolesGetRequest

ApplicationIdUsersCurrentRolesGet Get roles that the current user can have for the given application. Note: Since roles depend on the Level of Assurance from the login process, the real roles of the current user for the given application might only be a subset of the list returned here. .

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@return ApplicationIdUsersCurrentRolesGetRequest

func (*ApplicationAPIService) ApplicationIdUsersCurrentRolesGetExecute

func (a *ApplicationAPIService) ApplicationIdUsersCurrentRolesGetExecute(r ApplicationIdUsersCurrentRolesGetRequest) (*RoleEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return RoleEnumerateEnvelope

func (*ApplicationAPIService) ApplicationIdUsersIdentityIdRolesGet

func (a *ApplicationAPIService) ApplicationIdUsersIdentityIdRolesGet(ctx context.Context, id string, identityId string) ApplicationIdUsersIdentityIdRolesGetRequest

ApplicationIdUsersIdentityIdRolesGet Get roles that the given identity can have for the given application. Note: Since roles depend on the Level of Assurance from the login process, the real roles of the given identity for the given application might only be a subset of the list returned here. .

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The application ID or Unique Identifier.
@param identityId The Identity ID or UPN.
@return ApplicationIdUsersIdentityIdRolesGetRequest

func (*ApplicationAPIService) ApplicationIdUsersIdentityIdRolesGetExecute

func (a *ApplicationAPIService) ApplicationIdUsersIdentityIdRolesGetExecute(r ApplicationIdUsersIdentityIdRolesGetRequest) (*RoleEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return RoleEnumerateEnvelope

func (*ApplicationAPIService) ApplicationMyGet

ApplicationMyGet Gets all the Applications owned or administered by the current user.

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

Deprecated

func (*ApplicationAPIService) ApplicationMyGetExecute

Execute executes the request

@return ApplicationEnumerateEnvelope

Deprecated

func (*ApplicationAPIService) ApplicationPost

ApplicationPost Creates an application owned by the current user.

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

func (*ApplicationAPIService) ApplicationPostExecute

Execute executes the request

@return ApplicationEnvelope

type ApplicationBlockingRequest

type ApplicationBlockingRequest struct {
	Enabled        bool           `json:"enabled"`
	BlockingReason NullableString `json:"blockingReason,omitempty"`
}

ApplicationBlockingRequest struct for ApplicationBlockingRequest

func NewApplicationBlockingRequest

func NewApplicationBlockingRequest(enabled bool) *ApplicationBlockingRequest

NewApplicationBlockingRequest instantiates a new ApplicationBlockingRequest 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 NewApplicationBlockingRequestWithDefaults

func NewApplicationBlockingRequestWithDefaults() *ApplicationBlockingRequest

NewApplicationBlockingRequestWithDefaults instantiates a new ApplicationBlockingRequest 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 (*ApplicationBlockingRequest) GetBlockingReason

func (o *ApplicationBlockingRequest) GetBlockingReason() string

GetBlockingReason returns the BlockingReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationBlockingRequest) GetBlockingReasonOk

func (o *ApplicationBlockingRequest) GetBlockingReasonOk() (*string, bool)

GetBlockingReasonOk returns a tuple with the BlockingReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationBlockingRequest) GetEnabled

func (o *ApplicationBlockingRequest) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*ApplicationBlockingRequest) GetEnabledOk

func (o *ApplicationBlockingRequest) GetEnabledOk() (*bool, bool)

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

func (*ApplicationBlockingRequest) HasBlockingReason

func (o *ApplicationBlockingRequest) HasBlockingReason() bool

HasBlockingReason returns a boolean if a field has been set.

func (ApplicationBlockingRequest) MarshalJSON

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

func (*ApplicationBlockingRequest) SetBlockingReason

func (o *ApplicationBlockingRequest) SetBlockingReason(v string)

SetBlockingReason gets a reference to the given NullableString and assigns it to the BlockingReason field.

func (*ApplicationBlockingRequest) SetBlockingReasonNil

func (o *ApplicationBlockingRequest) SetBlockingReasonNil()

SetBlockingReasonNil sets the value for BlockingReason to be an explicit nil

func (*ApplicationBlockingRequest) SetEnabled

func (o *ApplicationBlockingRequest) SetEnabled(v bool)

SetEnabled sets field value

func (ApplicationBlockingRequest) ToMap

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

func (*ApplicationBlockingRequest) UnmarshalJSON

func (o *ApplicationBlockingRequest) UnmarshalJSON(data []byte) (err error)

func (*ApplicationBlockingRequest) UnsetBlockingReason

func (o *ApplicationBlockingRequest) UnsetBlockingReason()

UnsetBlockingReason ensures that no value is present for BlockingReason, not even an explicit nil

type ApplicationEnumerateEnvelope

type ApplicationEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Application  `json:"data,omitempty"`
}

ApplicationEnumerateEnvelope struct for ApplicationEnumerateEnvelope

func NewApplicationEnumerateEnvelope

func NewApplicationEnumerateEnvelope() *ApplicationEnumerateEnvelope

NewApplicationEnumerateEnvelope instantiates a new ApplicationEnumerateEnvelope 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 NewApplicationEnumerateEnvelopeWithDefaults

func NewApplicationEnumerateEnvelopeWithDefaults() *ApplicationEnumerateEnvelope

NewApplicationEnumerateEnvelopeWithDefaults instantiates a new ApplicationEnumerateEnvelope 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 (*ApplicationEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationEnumerateEnvelope) GetDataOk

func (o *ApplicationEnumerateEnvelope) GetDataOk() ([]Application, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationEnumerateEnvelope) GetDelta

func (o *ApplicationEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*ApplicationEnumerateEnvelope) GetDeltaOk

func (o *ApplicationEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*ApplicationEnumerateEnvelope) GetMessage

func (o *ApplicationEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationEnumerateEnvelope) GetMessageOk

func (o *ApplicationEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationEnumerateEnvelope) GetPagination

func (o *ApplicationEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ApplicationEnumerateEnvelope) GetPaginationOk

func (o *ApplicationEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*ApplicationEnumerateEnvelope) GetRequestId

func (o *ApplicationEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationEnumerateEnvelope) GetRequestIdOk

func (o *ApplicationEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationEnumerateEnvelope) HasData

func (o *ApplicationEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*ApplicationEnumerateEnvelope) HasDelta

func (o *ApplicationEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*ApplicationEnumerateEnvelope) HasMessage

func (o *ApplicationEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ApplicationEnumerateEnvelope) HasPagination

func (o *ApplicationEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*ApplicationEnumerateEnvelope) HasRequestId

func (o *ApplicationEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (ApplicationEnumerateEnvelope) MarshalJSON

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

func (*ApplicationEnumerateEnvelope) SetData

func (o *ApplicationEnumerateEnvelope) SetData(v []Application)

SetData gets a reference to the given []Application and assigns it to the Data field.

func (*ApplicationEnumerateEnvelope) SetDelta

func (o *ApplicationEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*ApplicationEnumerateEnvelope) SetMessage

func (o *ApplicationEnumerateEnvelope) SetMessage(v string)

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

func (*ApplicationEnumerateEnvelope) SetMessageNil

func (o *ApplicationEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ApplicationEnumerateEnvelope) SetPagination

func (o *ApplicationEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*ApplicationEnumerateEnvelope) SetRequestId

func (o *ApplicationEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ApplicationEnumerateEnvelope) SetRequestIdNil

func (o *ApplicationEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ApplicationEnumerateEnvelope) ToMap

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

func (*ApplicationEnumerateEnvelope) UnsetMessage

func (o *ApplicationEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ApplicationEnumerateEnvelope) UnsetRequestId

func (o *ApplicationEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ApplicationEnvelope

type ApplicationEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *Application   `json:"data,omitempty"`
}

ApplicationEnvelope struct for ApplicationEnvelope

func NewApplicationEnvelope

func NewApplicationEnvelope() *ApplicationEnvelope

NewApplicationEnvelope instantiates a new ApplicationEnvelope 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 NewApplicationEnvelopeWithDefaults

func NewApplicationEnvelopeWithDefaults() *ApplicationEnvelope

NewApplicationEnvelopeWithDefaults instantiates a new ApplicationEnvelope 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 (*ApplicationEnvelope) GetData

func (o *ApplicationEnvelope) GetData() Application

GetData returns the Data field value if set, zero value otherwise.

func (*ApplicationEnvelope) GetDataOk

func (o *ApplicationEnvelope) GetDataOk() (*Application, bool)

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

func (*ApplicationEnvelope) GetMessage

func (o *ApplicationEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationEnvelope) GetMessageOk

func (o *ApplicationEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationEnvelope) GetRequestId

func (o *ApplicationEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationEnvelope) GetRequestIdOk

func (o *ApplicationEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationEnvelope) HasData

func (o *ApplicationEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*ApplicationEnvelope) HasMessage

func (o *ApplicationEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ApplicationEnvelope) HasRequestId

func (o *ApplicationEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (ApplicationEnvelope) MarshalJSON

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

func (*ApplicationEnvelope) SetData

func (o *ApplicationEnvelope) SetData(v Application)

SetData gets a reference to the given Application and assigns it to the Data field.

func (*ApplicationEnvelope) SetMessage

func (o *ApplicationEnvelope) SetMessage(v string)

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

func (*ApplicationEnvelope) SetMessageNil

func (o *ApplicationEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ApplicationEnvelope) SetRequestId

func (o *ApplicationEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ApplicationEnvelope) SetRequestIdNil

func (o *ApplicationEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ApplicationEnvelope) ToMap

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

func (*ApplicationEnvelope) UnsetMessage

func (o *ApplicationEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ApplicationEnvelope) UnsetRequestId

func (o *ApplicationEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ApplicationGetRequest

type ApplicationGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationGetRequest) Execute

func (ApplicationGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (ApplicationGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (ApplicationGetRequest) IncludeArchivedAndDeleted

func (r ApplicationGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) ApplicationGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (ApplicationGetRequest) Limit

Maximum number of objects to return.

func (ApplicationGetRequest) Offset

Index of the first object to return.

func (ApplicationGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (ApplicationGetRequest) Token

Pagination token.

type ApplicationIdActivatePutRequest

type ApplicationIdActivatePutRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdActivatePutRequest) Execute

type ApplicationIdDeleteRequest

type ApplicationIdDeleteRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdDeleteRequest) Execute

type ApplicationIdExtendDeadlinesPutRequest

type ApplicationIdExtendDeadlinesPutRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdExtendDeadlinesPutRequest) Execute

func (ApplicationIdExtendDeadlinesPutRequest) NewArchiveDeadline

func (ApplicationIdExtendDeadlinesPutRequest) NewBlockingDeadline

func (ApplicationIdExtendDeadlinesPutRequest) NewDeleteDeadline

type ApplicationIdGetRequest

type ApplicationIdGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdGetRequest) Execute

type ApplicationIdLifecycleSettingsGetRequest

type ApplicationIdLifecycleSettingsGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdLifecycleSettingsGetRequest) Execute

func (ApplicationIdLifecycleSettingsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (ApplicationIdLifecycleSettingsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (ApplicationIdLifecycleSettingsGetRequest) Limit

Maximum number of objects to return.

func (ApplicationIdLifecycleSettingsGetRequest) Offset

Index of the first object to return.

func (ApplicationIdLifecycleSettingsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (ApplicationIdLifecycleSettingsGetRequest) Token

Pagination token.

type ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGetRequest

type ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGetRequest) Execute

func (ApplicationIdLifecycleSettingsLifecycleSettingsIdSubscriptionsGetRequest) Statuses

Subscription statuses to include. If not specified, all statuses are returned.

type ApplicationIdPatchRequest

type ApplicationIdPatchRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdPatchRequest) Execute

func (ApplicationIdPatchRequest) Operation

The value.

type ApplicationIdPutRequest

type ApplicationIdPutRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdPutRequest) Application

func (r ApplicationIdPutRequest) Application(application Application) ApplicationIdPutRequest

The value.

func (ApplicationIdPutRequest) Execute

type ApplicationIdRecoverPutRequest

type ApplicationIdRecoverPutRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRecoverPutRequest) Execute

type ApplicationIdRolesGetRequest

type ApplicationIdRolesGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesGetRequest) Execute

func (ApplicationIdRolesGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (ApplicationIdRolesGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (ApplicationIdRolesGetRequest) Limit

Maximum number of objects to return.

func (ApplicationIdRolesGetRequest) Offset

Index of the first object to return.

func (ApplicationIdRolesGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (ApplicationIdRolesGetRequest) Token

Pagination token.

type ApplicationIdRolesPostRequest

type ApplicationIdRolesPostRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesPostRequest) Execute

func (ApplicationIdRolesPostRequest) Role

The value.

type ApplicationIdRolesRoleidDeleteRequest

type ApplicationIdRolesRoleidDeleteRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesRoleidDeleteRequest) Execute

type ApplicationIdRolesRoleidGetRequest

type ApplicationIdRolesRoleidGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesRoleidGetRequest) Execute

type ApplicationIdRolesRoleidGroupsGetRequest

type ApplicationIdRolesRoleidGroupsGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesRoleidGroupsGetRequest) Execute

func (ApplicationIdRolesRoleidGroupsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (ApplicationIdRolesRoleidGroupsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (ApplicationIdRolesRoleidGroupsGetRequest) IncludeArchivedAndDeleted

func (r ApplicationIdRolesRoleidGroupsGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) ApplicationIdRolesRoleidGroupsGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (ApplicationIdRolesRoleidGroupsGetRequest) Limit

Maximum number of objects to return.

func (ApplicationIdRolesRoleidGroupsGetRequest) Offset

Index of the first object to return.

func (ApplicationIdRolesRoleidGroupsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (ApplicationIdRolesRoleidGroupsGetRequest) Token

Pagination token.

type ApplicationIdRolesRoleidGroupsGroupidDeleteRequest

type ApplicationIdRolesRoleidGroupsGroupidDeleteRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesRoleidGroupsGroupidDeleteRequest) Execute

type ApplicationIdRolesRoleidGroupsGroupidPostRequest

type ApplicationIdRolesRoleidGroupsGroupidPostRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesRoleidGroupsGroupidPostRequest) Execute

type ApplicationIdRolesRoleidIdentitiesGetRequest

type ApplicationIdRolesRoleidIdentitiesGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesRoleidIdentitiesGetRequest) Execute

func (ApplicationIdRolesRoleidIdentitiesGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (ApplicationIdRolesRoleidIdentitiesGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (ApplicationIdRolesRoleidIdentitiesGetRequest) IncludeArchivedAndDeleted

func (r ApplicationIdRolesRoleidIdentitiesGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) ApplicationIdRolesRoleidIdentitiesGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (ApplicationIdRolesRoleidIdentitiesGetRequest) Limit

Maximum number of objects to return.

func (ApplicationIdRolesRoleidIdentitiesGetRequest) Offset

Index of the first object to return.

func (ApplicationIdRolesRoleidIdentitiesGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (ApplicationIdRolesRoleidIdentitiesGetRequest) Token

Pagination token.

type ApplicationIdRolesRoleidPutRequest

type ApplicationIdRolesRoleidPutRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdRolesRoleidPutRequest) Execute

func (ApplicationIdRolesRoleidPutRequest) Role

The value.

type ApplicationIdStatusPutRequest

type ApplicationIdStatusPutRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdStatusPutRequest) ApplicationBlockingRequest

func (r ApplicationIdStatusPutRequest) ApplicationBlockingRequest(applicationBlockingRequest ApplicationBlockingRequest) ApplicationIdStatusPutRequest

The blocking request.

func (ApplicationIdStatusPutRequest) Execute

type ApplicationIdTransferNewOwnerIdPutRequest

type ApplicationIdTransferNewOwnerIdPutRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdTransferNewOwnerIdPutRequest) Execute

type ApplicationIdUsersCurrentRolesGetRequest

type ApplicationIdUsersCurrentRolesGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdUsersCurrentRolesGetRequest) Execute

func (ApplicationIdUsersCurrentRolesGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (ApplicationIdUsersCurrentRolesGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (ApplicationIdUsersCurrentRolesGetRequest) Limit

Maximum number of objects to return.

func (ApplicationIdUsersCurrentRolesGetRequest) Offset

Index of the first object to return.

func (ApplicationIdUsersCurrentRolesGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (ApplicationIdUsersCurrentRolesGetRequest) Token

Pagination token.

type ApplicationIdUsersIdentityIdRolesGetRequest

type ApplicationIdUsersIdentityIdRolesGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationIdUsersIdentityIdRolesGetRequest) Execute

func (ApplicationIdUsersIdentityIdRolesGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (ApplicationIdUsersIdentityIdRolesGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (ApplicationIdUsersIdentityIdRolesGetRequest) Limit

Maximum number of objects to return.

func (ApplicationIdUsersIdentityIdRolesGetRequest) Offset

Index of the first object to return.

func (ApplicationIdUsersIdentityIdRolesGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (ApplicationIdUsersIdentityIdRolesGetRequest) Token

Pagination token.

type ApplicationInfo

type ApplicationInfo struct {
	Id                    NullableString `json:"id,omitempty"`
	ApplicationIdentifier NullableString `json:"applicationIdentifier,omitempty"`
	DisplayName           NullableString `json:"displayName,omitempty"`
	Description           NullableString `json:"description,omitempty"`
	HomePage              NullableString `json:"homePage,omitempty"`
}

ApplicationInfo struct for ApplicationInfo

func NewApplicationInfo

func NewApplicationInfo() *ApplicationInfo

NewApplicationInfo instantiates a new ApplicationInfo 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 NewApplicationInfoWithDefaults

func NewApplicationInfoWithDefaults() *ApplicationInfo

NewApplicationInfoWithDefaults instantiates a new ApplicationInfo 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 (*ApplicationInfo) GetApplicationIdentifier

func (o *ApplicationInfo) GetApplicationIdentifier() string

GetApplicationIdentifier returns the ApplicationIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationInfo) GetApplicationIdentifierOk

func (o *ApplicationInfo) GetApplicationIdentifierOk() (*string, bool)

GetApplicationIdentifierOk returns a tuple with the ApplicationIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationInfo) GetDescription

func (o *ApplicationInfo) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationInfo) GetDescriptionOk

func (o *ApplicationInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationInfo) GetDisplayName

func (o *ApplicationInfo) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationInfo) GetDisplayNameOk

func (o *ApplicationInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationInfo) GetHomePage

func (o *ApplicationInfo) GetHomePage() string

GetHomePage returns the HomePage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationInfo) GetHomePageOk

func (o *ApplicationInfo) GetHomePageOk() (*string, bool)

GetHomePageOk returns a tuple with the HomePage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationInfo) GetId

func (o *ApplicationInfo) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationInfo) GetIdOk

func (o *ApplicationInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationInfo) HasApplicationIdentifier

func (o *ApplicationInfo) HasApplicationIdentifier() bool

HasApplicationIdentifier returns a boolean if a field has been set.

func (*ApplicationInfo) HasDescription

func (o *ApplicationInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ApplicationInfo) HasDisplayName

func (o *ApplicationInfo) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ApplicationInfo) HasHomePage

func (o *ApplicationInfo) HasHomePage() bool

HasHomePage returns a boolean if a field has been set.

func (*ApplicationInfo) HasId

func (o *ApplicationInfo) HasId() bool

HasId returns a boolean if a field has been set.

func (ApplicationInfo) MarshalJSON

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

func (*ApplicationInfo) SetApplicationIdentifier

func (o *ApplicationInfo) SetApplicationIdentifier(v string)

SetApplicationIdentifier gets a reference to the given NullableString and assigns it to the ApplicationIdentifier field.

func (*ApplicationInfo) SetApplicationIdentifierNil

func (o *ApplicationInfo) SetApplicationIdentifierNil()

SetApplicationIdentifierNil sets the value for ApplicationIdentifier to be an explicit nil

func (*ApplicationInfo) SetDescription

func (o *ApplicationInfo) SetDescription(v string)

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

func (*ApplicationInfo) SetDescriptionNil

func (o *ApplicationInfo) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ApplicationInfo) SetDisplayName

func (o *ApplicationInfo) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*ApplicationInfo) SetDisplayNameNil

func (o *ApplicationInfo) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*ApplicationInfo) SetHomePage

func (o *ApplicationInfo) SetHomePage(v string)

SetHomePage gets a reference to the given NullableString and assigns it to the HomePage field.

func (*ApplicationInfo) SetHomePageNil

func (o *ApplicationInfo) SetHomePageNil()

SetHomePageNil sets the value for HomePage to be an explicit nil

func (*ApplicationInfo) SetId

func (o *ApplicationInfo) SetId(v string)

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

func (*ApplicationInfo) SetIdNil

func (o *ApplicationInfo) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (ApplicationInfo) ToMap

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

func (*ApplicationInfo) UnsetApplicationIdentifier

func (o *ApplicationInfo) UnsetApplicationIdentifier()

UnsetApplicationIdentifier ensures that no value is present for ApplicationIdentifier, not even an explicit nil

func (*ApplicationInfo) UnsetDescription

func (o *ApplicationInfo) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*ApplicationInfo) UnsetDisplayName

func (o *ApplicationInfo) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*ApplicationInfo) UnsetHomePage

func (o *ApplicationInfo) UnsetHomePage()

UnsetHomePage ensures that no value is present for HomePage, not even an explicit nil

func (*ApplicationInfo) UnsetId

func (o *ApplicationInfo) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type ApplicationMyGetRequest

type ApplicationMyGetRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationMyGetRequest) Execute

func (ApplicationMyGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (ApplicationMyGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (ApplicationMyGetRequest) Limit

Maximum number of objects to return.

func (ApplicationMyGetRequest) Offset

Index of the first object to return.

func (ApplicationMyGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (ApplicationMyGetRequest) Token

Pagination token.

type ApplicationPostRequest

type ApplicationPostRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApplicationPostRequest) Application

func (r ApplicationPostRequest) Application(application Application) ApplicationPostRequest

The value.

func (ApplicationPostRequest) Execute

type ApplicationRegistration

type ApplicationRegistration struct {
	RegistrationId      *string        `json:"registrationId,omitempty"`
	RegistrationName    NullableString `json:"registrationName,omitempty"`
	ProviderIdentifier  NullableString `json:"providerIdentifier,omitempty"`
	ProviderDisplayName NullableString `json:"providerDisplayName,omitempty"`
	ProviderDescription NullableString `json:"providerDescription,omitempty"`
	Registration        interface{}    `json:"registration,omitempty"`
}

ApplicationRegistration struct for ApplicationRegistration

func NewApplicationRegistration

func NewApplicationRegistration() *ApplicationRegistration

NewApplicationRegistration instantiates a new ApplicationRegistration 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 NewApplicationRegistrationWithDefaults

func NewApplicationRegistrationWithDefaults() *ApplicationRegistration

NewApplicationRegistrationWithDefaults instantiates a new ApplicationRegistration 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 (*ApplicationRegistration) GetProviderDescription

func (o *ApplicationRegistration) GetProviderDescription() string

GetProviderDescription returns the ProviderDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistration) GetProviderDescriptionOk

func (o *ApplicationRegistration) GetProviderDescriptionOk() (*string, bool)

GetProviderDescriptionOk returns a tuple with the ProviderDescription field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistration) GetProviderDisplayName

func (o *ApplicationRegistration) GetProviderDisplayName() string

GetProviderDisplayName returns the ProviderDisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistration) GetProviderDisplayNameOk

func (o *ApplicationRegistration) GetProviderDisplayNameOk() (*string, bool)

GetProviderDisplayNameOk returns a tuple with the ProviderDisplayName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistration) GetProviderIdentifier

func (o *ApplicationRegistration) GetProviderIdentifier() string

GetProviderIdentifier returns the ProviderIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistration) GetProviderIdentifierOk

func (o *ApplicationRegistration) GetProviderIdentifierOk() (*string, bool)

GetProviderIdentifierOk returns a tuple with the ProviderIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistration) GetRegistration

func (o *ApplicationRegistration) GetRegistration() interface{}

GetRegistration returns the Registration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistration) GetRegistrationId

func (o *ApplicationRegistration) GetRegistrationId() string

GetRegistrationId returns the RegistrationId field value if set, zero value otherwise.

func (*ApplicationRegistration) GetRegistrationIdOk

func (o *ApplicationRegistration) GetRegistrationIdOk() (*string, bool)

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

func (*ApplicationRegistration) GetRegistrationName

func (o *ApplicationRegistration) GetRegistrationName() string

GetRegistrationName returns the RegistrationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistration) GetRegistrationNameOk

func (o *ApplicationRegistration) GetRegistrationNameOk() (*string, bool)

GetRegistrationNameOk returns a tuple with the RegistrationName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistration) GetRegistrationOk

func (o *ApplicationRegistration) GetRegistrationOk() (*interface{}, bool)

GetRegistrationOk returns a tuple with the Registration field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistration) HasProviderDescription

func (o *ApplicationRegistration) HasProviderDescription() bool

HasProviderDescription returns a boolean if a field has been set.

func (*ApplicationRegistration) HasProviderDisplayName

func (o *ApplicationRegistration) HasProviderDisplayName() bool

HasProviderDisplayName returns a boolean if a field has been set.

func (*ApplicationRegistration) HasProviderIdentifier

func (o *ApplicationRegistration) HasProviderIdentifier() bool

HasProviderIdentifier returns a boolean if a field has been set.

func (*ApplicationRegistration) HasRegistration

func (o *ApplicationRegistration) HasRegistration() bool

HasRegistration returns a boolean if a field has been set.

func (*ApplicationRegistration) HasRegistrationId

func (o *ApplicationRegistration) HasRegistrationId() bool

HasRegistrationId returns a boolean if a field has been set.

func (*ApplicationRegistration) HasRegistrationName

func (o *ApplicationRegistration) HasRegistrationName() bool

HasRegistrationName returns a boolean if a field has been set.

func (ApplicationRegistration) MarshalJSON

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

func (*ApplicationRegistration) SetProviderDescription

func (o *ApplicationRegistration) SetProviderDescription(v string)

SetProviderDescription gets a reference to the given NullableString and assigns it to the ProviderDescription field.

func (*ApplicationRegistration) SetProviderDescriptionNil

func (o *ApplicationRegistration) SetProviderDescriptionNil()

SetProviderDescriptionNil sets the value for ProviderDescription to be an explicit nil

func (*ApplicationRegistration) SetProviderDisplayName

func (o *ApplicationRegistration) SetProviderDisplayName(v string)

SetProviderDisplayName gets a reference to the given NullableString and assigns it to the ProviderDisplayName field.

func (*ApplicationRegistration) SetProviderDisplayNameNil

func (o *ApplicationRegistration) SetProviderDisplayNameNil()

SetProviderDisplayNameNil sets the value for ProviderDisplayName to be an explicit nil

func (*ApplicationRegistration) SetProviderIdentifier

func (o *ApplicationRegistration) SetProviderIdentifier(v string)

SetProviderIdentifier gets a reference to the given NullableString and assigns it to the ProviderIdentifier field.

func (*ApplicationRegistration) SetProviderIdentifierNil

func (o *ApplicationRegistration) SetProviderIdentifierNil()

SetProviderIdentifierNil sets the value for ProviderIdentifier to be an explicit nil

func (*ApplicationRegistration) SetRegistration

func (o *ApplicationRegistration) SetRegistration(v interface{})

SetRegistration gets a reference to the given interface{} and assigns it to the Registration field.

func (*ApplicationRegistration) SetRegistrationId

func (o *ApplicationRegistration) SetRegistrationId(v string)

SetRegistrationId gets a reference to the given string and assigns it to the RegistrationId field.

func (*ApplicationRegistration) SetRegistrationName

func (o *ApplicationRegistration) SetRegistrationName(v string)

SetRegistrationName gets a reference to the given NullableString and assigns it to the RegistrationName field.

func (*ApplicationRegistration) SetRegistrationNameNil

func (o *ApplicationRegistration) SetRegistrationNameNil()

SetRegistrationNameNil sets the value for RegistrationName to be an explicit nil

func (ApplicationRegistration) ToMap

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

func (*ApplicationRegistration) UnsetProviderDescription

func (o *ApplicationRegistration) UnsetProviderDescription()

UnsetProviderDescription ensures that no value is present for ProviderDescription, not even an explicit nil

func (*ApplicationRegistration) UnsetProviderDisplayName

func (o *ApplicationRegistration) UnsetProviderDisplayName()

UnsetProviderDisplayName ensures that no value is present for ProviderDisplayName, not even an explicit nil

func (*ApplicationRegistration) UnsetProviderIdentifier

func (o *ApplicationRegistration) UnsetProviderIdentifier()

UnsetProviderIdentifier ensures that no value is present for ProviderIdentifier, not even an explicit nil

func (*ApplicationRegistration) UnsetRegistrationName

func (o *ApplicationRegistration) UnsetRegistrationName()

UnsetRegistrationName ensures that no value is present for RegistrationName, not even an explicit nil

type ApplicationRegistrationEnumerateEnvelope

type ApplicationRegistrationEnumerateEnvelope struct {
	Pagination *Pagination               `json:"pagination,omitempty"`
	Delta      *Delta                    `json:"delta,omitempty"`
	RequestId  NullableString            `json:"request_id,omitempty"`
	Message    NullableString            `json:"message,omitempty"`
	Data       []ApplicationRegistration `json:"data,omitempty"`
}

ApplicationRegistrationEnumerateEnvelope struct for ApplicationRegistrationEnumerateEnvelope

func NewApplicationRegistrationEnumerateEnvelope

func NewApplicationRegistrationEnumerateEnvelope() *ApplicationRegistrationEnumerateEnvelope

NewApplicationRegistrationEnumerateEnvelope instantiates a new ApplicationRegistrationEnumerateEnvelope 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 NewApplicationRegistrationEnumerateEnvelopeWithDefaults

func NewApplicationRegistrationEnumerateEnvelopeWithDefaults() *ApplicationRegistrationEnumerateEnvelope

NewApplicationRegistrationEnumerateEnvelopeWithDefaults instantiates a new ApplicationRegistrationEnumerateEnvelope 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 (*ApplicationRegistrationEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistrationEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistrationEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*ApplicationRegistrationEnumerateEnvelope) GetDeltaOk

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

func (*ApplicationRegistrationEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistrationEnumerateEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistrationEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ApplicationRegistrationEnumerateEnvelope) GetPaginationOk

func (o *ApplicationRegistrationEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*ApplicationRegistrationEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistrationEnumerateEnvelope) GetRequestIdOk

func (o *ApplicationRegistrationEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistrationEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*ApplicationRegistrationEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*ApplicationRegistrationEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*ApplicationRegistrationEnumerateEnvelope) HasPagination

HasPagination returns a boolean if a field has been set.

func (*ApplicationRegistrationEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (ApplicationRegistrationEnumerateEnvelope) MarshalJSON

func (*ApplicationRegistrationEnumerateEnvelope) SetData

SetData gets a reference to the given []ApplicationRegistration and assigns it to the Data field.

func (*ApplicationRegistrationEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*ApplicationRegistrationEnumerateEnvelope) SetMessage

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

func (*ApplicationRegistrationEnumerateEnvelope) SetMessageNil

func (o *ApplicationRegistrationEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ApplicationRegistrationEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*ApplicationRegistrationEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ApplicationRegistrationEnumerateEnvelope) SetRequestIdNil

func (o *ApplicationRegistrationEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ApplicationRegistrationEnumerateEnvelope) ToMap

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

func (*ApplicationRegistrationEnumerateEnvelope) UnsetMessage

func (o *ApplicationRegistrationEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ApplicationRegistrationEnumerateEnvelope) UnsetRequestId

func (o *ApplicationRegistrationEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ApplicationRegistrationEnvelope

type ApplicationRegistrationEnvelope struct {
	RequestId NullableString           `json:"request_id,omitempty"`
	Message   NullableString           `json:"message,omitempty"`
	Data      *ApplicationRegistration `json:"data,omitempty"`
}

ApplicationRegistrationEnvelope struct for ApplicationRegistrationEnvelope

func NewApplicationRegistrationEnvelope

func NewApplicationRegistrationEnvelope() *ApplicationRegistrationEnvelope

NewApplicationRegistrationEnvelope instantiates a new ApplicationRegistrationEnvelope 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 NewApplicationRegistrationEnvelopeWithDefaults

func NewApplicationRegistrationEnvelopeWithDefaults() *ApplicationRegistrationEnvelope

NewApplicationRegistrationEnvelopeWithDefaults instantiates a new ApplicationRegistrationEnvelope 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 (*ApplicationRegistrationEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ApplicationRegistrationEnvelope) GetDataOk

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

func (*ApplicationRegistrationEnvelope) GetMessage

func (o *ApplicationRegistrationEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistrationEnvelope) GetMessageOk

func (o *ApplicationRegistrationEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistrationEnvelope) GetRequestId

func (o *ApplicationRegistrationEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationRegistrationEnvelope) GetRequestIdOk

func (o *ApplicationRegistrationEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationRegistrationEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*ApplicationRegistrationEnvelope) HasMessage

func (o *ApplicationRegistrationEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ApplicationRegistrationEnvelope) HasRequestId

func (o *ApplicationRegistrationEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (ApplicationRegistrationEnvelope) MarshalJSON

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

func (*ApplicationRegistrationEnvelope) SetData

SetData gets a reference to the given ApplicationRegistration and assigns it to the Data field.

func (*ApplicationRegistrationEnvelope) SetMessage

func (o *ApplicationRegistrationEnvelope) SetMessage(v string)

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

func (*ApplicationRegistrationEnvelope) SetMessageNil

func (o *ApplicationRegistrationEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ApplicationRegistrationEnvelope) SetRequestId

func (o *ApplicationRegistrationEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ApplicationRegistrationEnvelope) SetRequestIdNil

func (o *ApplicationRegistrationEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ApplicationRegistrationEnvelope) ToMap

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

func (*ApplicationRegistrationEnvelope) UnsetMessage

func (o *ApplicationRegistrationEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ApplicationRegistrationEnvelope) UnsetRequestId

func (o *ApplicationRegistrationEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ApplicationSubscriptionInformation

type ApplicationSubscriptionInformation struct {
	Identity         *IdentityInfo                      `json:"identity,omitempty"`
	Status           *UserApplicationSubscriptionStatus `json:"status,omitempty"`
	PendingRequestId NullableString                     `json:"pendingRequestId,omitempty"`
}

ApplicationSubscriptionInformation struct for ApplicationSubscriptionInformation

func NewApplicationSubscriptionInformation

func NewApplicationSubscriptionInformation() *ApplicationSubscriptionInformation

NewApplicationSubscriptionInformation instantiates a new ApplicationSubscriptionInformation 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 NewApplicationSubscriptionInformationWithDefaults

func NewApplicationSubscriptionInformationWithDefaults() *ApplicationSubscriptionInformation

NewApplicationSubscriptionInformationWithDefaults instantiates a new ApplicationSubscriptionInformation 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 (*ApplicationSubscriptionInformation) GetIdentity

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*ApplicationSubscriptionInformation) GetIdentityOk

func (o *ApplicationSubscriptionInformation) GetIdentityOk() (*IdentityInfo, bool)

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

func (*ApplicationSubscriptionInformation) GetPendingRequestId

func (o *ApplicationSubscriptionInformation) GetPendingRequestId() string

GetPendingRequestId returns the PendingRequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationSubscriptionInformation) GetPendingRequestIdOk

func (o *ApplicationSubscriptionInformation) GetPendingRequestIdOk() (*string, bool)

GetPendingRequestIdOk returns a tuple with the PendingRequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationSubscriptionInformation) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ApplicationSubscriptionInformation) GetStatusOk

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

func (*ApplicationSubscriptionInformation) HasIdentity

func (o *ApplicationSubscriptionInformation) HasIdentity() bool

HasIdentity returns a boolean if a field has been set.

func (*ApplicationSubscriptionInformation) HasPendingRequestId

func (o *ApplicationSubscriptionInformation) HasPendingRequestId() bool

HasPendingRequestId returns a boolean if a field has been set.

func (*ApplicationSubscriptionInformation) HasStatus

HasStatus returns a boolean if a field has been set.

func (ApplicationSubscriptionInformation) MarshalJSON

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

func (*ApplicationSubscriptionInformation) SetIdentity

SetIdentity gets a reference to the given IdentityInfo and assigns it to the Identity field.

func (*ApplicationSubscriptionInformation) SetPendingRequestId

func (o *ApplicationSubscriptionInformation) SetPendingRequestId(v string)

SetPendingRequestId gets a reference to the given NullableString and assigns it to the PendingRequestId field.

func (*ApplicationSubscriptionInformation) SetPendingRequestIdNil

func (o *ApplicationSubscriptionInformation) SetPendingRequestIdNil()

SetPendingRequestIdNil sets the value for PendingRequestId to be an explicit nil

func (*ApplicationSubscriptionInformation) SetStatus

SetStatus gets a reference to the given UserApplicationSubscriptionStatus and assigns it to the Status field.

func (ApplicationSubscriptionInformation) ToMap

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

func (*ApplicationSubscriptionInformation) UnsetPendingRequestId

func (o *ApplicationSubscriptionInformation) UnsetPendingRequestId()

UnsetPendingRequestId ensures that no value is present for PendingRequestId, not even an explicit nil

type ApplicationSubscriptionInformationEnumerateEnvelope

type ApplicationSubscriptionInformationEnumerateEnvelope struct {
	Pagination *Pagination                          `json:"pagination,omitempty"`
	Delta      *Delta                               `json:"delta,omitempty"`
	RequestId  NullableString                       `json:"request_id,omitempty"`
	Message    NullableString                       `json:"message,omitempty"`
	Data       []ApplicationSubscriptionInformation `json:"data,omitempty"`
}

ApplicationSubscriptionInformationEnumerateEnvelope struct for ApplicationSubscriptionInformationEnumerateEnvelope

func NewApplicationSubscriptionInformationEnumerateEnvelope

func NewApplicationSubscriptionInformationEnumerateEnvelope() *ApplicationSubscriptionInformationEnumerateEnvelope

NewApplicationSubscriptionInformationEnumerateEnvelope instantiates a new ApplicationSubscriptionInformationEnumerateEnvelope 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 NewApplicationSubscriptionInformationEnumerateEnvelopeWithDefaults

func NewApplicationSubscriptionInformationEnumerateEnvelopeWithDefaults() *ApplicationSubscriptionInformationEnumerateEnvelope

NewApplicationSubscriptionInformationEnumerateEnvelopeWithDefaults instantiates a new ApplicationSubscriptionInformationEnumerateEnvelope 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 (*ApplicationSubscriptionInformationEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetDeltaOk

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

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetPaginationOk

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

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationSubscriptionInformationEnumerateEnvelope) GetRequestIdOk

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationSubscriptionInformationEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) HasPagination

HasPagination returns a boolean if a field has been set.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (ApplicationSubscriptionInformationEnumerateEnvelope) MarshalJSON

func (*ApplicationSubscriptionInformationEnumerateEnvelope) SetData

SetData gets a reference to the given []ApplicationSubscriptionInformation and assigns it to the Data field.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) SetMessage

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

func (*ApplicationSubscriptionInformationEnumerateEnvelope) SetMessageNil

SetMessageNil sets the value for Message to be an explicit nil

func (*ApplicationSubscriptionInformationEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ApplicationSubscriptionInformationEnumerateEnvelope) SetRequestIdNil

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ApplicationSubscriptionInformationEnumerateEnvelope) ToMap

func (*ApplicationSubscriptionInformationEnumerateEnvelope) UnsetMessage

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ApplicationSubscriptionInformationEnumerateEnvelope) UnsetRequestId

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type Assignment

type Assignment struct {
	RoleId  *string `json:"roleId,omitempty"`
	GroupId *string `json:"groupId,omitempty"`
	Builtin *bool   `json:"builtin,omitempty"`
}

Assignment struct for Assignment

func NewAssignment

func NewAssignment() *Assignment

NewAssignment instantiates a new Assignment 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 NewAssignmentWithDefaults

func NewAssignmentWithDefaults() *Assignment

NewAssignmentWithDefaults instantiates a new Assignment 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 (*Assignment) GetBuiltin

func (o *Assignment) GetBuiltin() bool

GetBuiltin returns the Builtin field value if set, zero value otherwise.

func (*Assignment) GetBuiltinOk

func (o *Assignment) GetBuiltinOk() (*bool, bool)

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

func (*Assignment) GetGroupId

func (o *Assignment) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*Assignment) GetGroupIdOk

func (o *Assignment) GetGroupIdOk() (*string, bool)

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

func (*Assignment) GetRoleId

func (o *Assignment) GetRoleId() string

GetRoleId returns the RoleId field value if set, zero value otherwise.

func (*Assignment) GetRoleIdOk

func (o *Assignment) GetRoleIdOk() (*string, bool)

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

func (*Assignment) HasBuiltin

func (o *Assignment) HasBuiltin() bool

HasBuiltin returns a boolean if a field has been set.

func (*Assignment) HasGroupId

func (o *Assignment) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*Assignment) HasRoleId

func (o *Assignment) HasRoleId() bool

HasRoleId returns a boolean if a field has been set.

func (Assignment) MarshalJSON

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

func (*Assignment) SetBuiltin

func (o *Assignment) SetBuiltin(v bool)

SetBuiltin gets a reference to the given bool and assigns it to the Builtin field.

func (*Assignment) SetGroupId

func (o *Assignment) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*Assignment) SetRoleId

func (o *Assignment) SetRoleId(v string)

SetRoleId gets a reference to the given string and assigns it to the RoleId field.

func (Assignment) ToMap

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

type AssignmentEnumerateEnvelope

type AssignmentEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Assignment   `json:"data,omitempty"`
}

AssignmentEnumerateEnvelope struct for AssignmentEnumerateEnvelope

func NewAssignmentEnumerateEnvelope

func NewAssignmentEnumerateEnvelope() *AssignmentEnumerateEnvelope

NewAssignmentEnumerateEnvelope instantiates a new AssignmentEnumerateEnvelope 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 NewAssignmentEnumerateEnvelopeWithDefaults

func NewAssignmentEnumerateEnvelopeWithDefaults() *AssignmentEnumerateEnvelope

NewAssignmentEnumerateEnvelopeWithDefaults instantiates a new AssignmentEnumerateEnvelope 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 (*AssignmentEnumerateEnvelope) GetData

func (o *AssignmentEnumerateEnvelope) GetData() []Assignment

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssignmentEnumerateEnvelope) GetDataOk

func (o *AssignmentEnumerateEnvelope) GetDataOk() ([]Assignment, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssignmentEnumerateEnvelope) GetDelta

func (o *AssignmentEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*AssignmentEnumerateEnvelope) GetDeltaOk

func (o *AssignmentEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*AssignmentEnumerateEnvelope) GetMessage

func (o *AssignmentEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssignmentEnumerateEnvelope) GetMessageOk

func (o *AssignmentEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssignmentEnumerateEnvelope) GetPagination

func (o *AssignmentEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AssignmentEnumerateEnvelope) GetPaginationOk

func (o *AssignmentEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*AssignmentEnumerateEnvelope) GetRequestId

func (o *AssignmentEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssignmentEnumerateEnvelope) GetRequestIdOk

func (o *AssignmentEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssignmentEnumerateEnvelope) HasData

func (o *AssignmentEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*AssignmentEnumerateEnvelope) HasDelta

func (o *AssignmentEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*AssignmentEnumerateEnvelope) HasMessage

func (o *AssignmentEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AssignmentEnumerateEnvelope) HasPagination

func (o *AssignmentEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*AssignmentEnumerateEnvelope) HasRequestId

func (o *AssignmentEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AssignmentEnumerateEnvelope) MarshalJSON

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

func (*AssignmentEnumerateEnvelope) SetData

func (o *AssignmentEnumerateEnvelope) SetData(v []Assignment)

SetData gets a reference to the given []Assignment and assigns it to the Data field.

func (*AssignmentEnumerateEnvelope) SetDelta

func (o *AssignmentEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*AssignmentEnumerateEnvelope) SetMessage

func (o *AssignmentEnumerateEnvelope) SetMessage(v string)

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

func (*AssignmentEnumerateEnvelope) SetMessageNil

func (o *AssignmentEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AssignmentEnumerateEnvelope) SetPagination

func (o *AssignmentEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*AssignmentEnumerateEnvelope) SetRequestId

func (o *AssignmentEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AssignmentEnumerateEnvelope) SetRequestIdNil

func (o *AssignmentEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AssignmentEnumerateEnvelope) ToMap

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

func (*AssignmentEnumerateEnvelope) UnsetMessage

func (o *AssignmentEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AssignmentEnumerateEnvelope) UnsetRequestId

func (o *AssignmentEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AssignmentEnvelope

type AssignmentEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *Assignment    `json:"data,omitempty"`
}

AssignmentEnvelope struct for AssignmentEnvelope

func NewAssignmentEnvelope

func NewAssignmentEnvelope() *AssignmentEnvelope

NewAssignmentEnvelope instantiates a new AssignmentEnvelope 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 NewAssignmentEnvelopeWithDefaults

func NewAssignmentEnvelopeWithDefaults() *AssignmentEnvelope

NewAssignmentEnvelopeWithDefaults instantiates a new AssignmentEnvelope 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 (*AssignmentEnvelope) GetData

func (o *AssignmentEnvelope) GetData() Assignment

GetData returns the Data field value if set, zero value otherwise.

func (*AssignmentEnvelope) GetDataOk

func (o *AssignmentEnvelope) GetDataOk() (*Assignment, bool)

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

func (*AssignmentEnvelope) GetMessage

func (o *AssignmentEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssignmentEnvelope) GetMessageOk

func (o *AssignmentEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssignmentEnvelope) GetRequestId

func (o *AssignmentEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AssignmentEnvelope) GetRequestIdOk

func (o *AssignmentEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AssignmentEnvelope) HasData

func (o *AssignmentEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*AssignmentEnvelope) HasMessage

func (o *AssignmentEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AssignmentEnvelope) HasRequestId

func (o *AssignmentEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AssignmentEnvelope) MarshalJSON

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

func (*AssignmentEnvelope) SetData

func (o *AssignmentEnvelope) SetData(v Assignment)

SetData gets a reference to the given Assignment and assigns it to the Data field.

func (*AssignmentEnvelope) SetMessage

func (o *AssignmentEnvelope) SetMessage(v string)

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

func (*AssignmentEnvelope) SetMessageNil

func (o *AssignmentEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AssignmentEnvelope) SetRequestId

func (o *AssignmentEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AssignmentEnvelope) SetRequestIdNil

func (o *AssignmentEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AssignmentEnvelope) ToMap

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

func (*AssignmentEnvelope) UnsetMessage

func (o *AssignmentEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AssignmentEnvelope) UnsetRequestId

func (o *AssignmentEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AuditOperationDetails

type AuditOperationDetails struct {
	Application *Application `json:"application,omitempty"`
	Account     *Account     `json:"account,omitempty"`
	Identity    *Identity    `json:"identity,omitempty"`
	Target1     interface{}  `json:"target1,omitempty"`
	Target2     interface{}  `json:"target2,omitempty"`
}

AuditOperationDetails struct for AuditOperationDetails

func NewAuditOperationDetails

func NewAuditOperationDetails() *AuditOperationDetails

NewAuditOperationDetails instantiates a new AuditOperationDetails 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 NewAuditOperationDetailsWithDefaults

func NewAuditOperationDetailsWithDefaults() *AuditOperationDetails

NewAuditOperationDetailsWithDefaults instantiates a new AuditOperationDetails 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 (*AuditOperationDetails) GetAccount

func (o *AuditOperationDetails) GetAccount() Account

GetAccount returns the Account field value if set, zero value otherwise.

func (*AuditOperationDetails) GetAccountOk

func (o *AuditOperationDetails) GetAccountOk() (*Account, bool)

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

func (*AuditOperationDetails) GetApplication

func (o *AuditOperationDetails) GetApplication() Application

GetApplication returns the Application field value if set, zero value otherwise.

func (*AuditOperationDetails) GetApplicationOk

func (o *AuditOperationDetails) GetApplicationOk() (*Application, bool)

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

func (*AuditOperationDetails) GetIdentity

func (o *AuditOperationDetails) GetIdentity() Identity

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*AuditOperationDetails) GetIdentityOk

func (o *AuditOperationDetails) GetIdentityOk() (*Identity, bool)

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

func (*AuditOperationDetails) GetTarget1

func (o *AuditOperationDetails) GetTarget1() interface{}

GetTarget1 returns the Target1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuditOperationDetails) GetTarget1Ok

func (o *AuditOperationDetails) GetTarget1Ok() (*interface{}, bool)

GetTarget1Ok returns a tuple with the Target1 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuditOperationDetails) GetTarget2

func (o *AuditOperationDetails) GetTarget2() interface{}

GetTarget2 returns the Target2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuditOperationDetails) GetTarget2Ok

func (o *AuditOperationDetails) GetTarget2Ok() (*interface{}, bool)

GetTarget2Ok returns a tuple with the Target2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuditOperationDetails) HasAccount

func (o *AuditOperationDetails) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (*AuditOperationDetails) HasApplication

func (o *AuditOperationDetails) HasApplication() bool

HasApplication returns a boolean if a field has been set.

func (*AuditOperationDetails) HasIdentity

func (o *AuditOperationDetails) HasIdentity() bool

HasIdentity returns a boolean if a field has been set.

func (*AuditOperationDetails) HasTarget1

func (o *AuditOperationDetails) HasTarget1() bool

HasTarget1 returns a boolean if a field has been set.

func (*AuditOperationDetails) HasTarget2

func (o *AuditOperationDetails) HasTarget2() bool

HasTarget2 returns a boolean if a field has been set.

func (AuditOperationDetails) MarshalJSON

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

func (*AuditOperationDetails) SetAccount

func (o *AuditOperationDetails) SetAccount(v Account)

SetAccount gets a reference to the given Account and assigns it to the Account field.

func (*AuditOperationDetails) SetApplication

func (o *AuditOperationDetails) SetApplication(v Application)

SetApplication gets a reference to the given Application and assigns it to the Application field.

func (*AuditOperationDetails) SetIdentity

func (o *AuditOperationDetails) SetIdentity(v Identity)

SetIdentity gets a reference to the given Identity and assigns it to the Identity field.

func (*AuditOperationDetails) SetTarget1

func (o *AuditOperationDetails) SetTarget1(v interface{})

SetTarget1 gets a reference to the given interface{} and assigns it to the Target1 field.

func (*AuditOperationDetails) SetTarget2

func (o *AuditOperationDetails) SetTarget2(v interface{})

SetTarget2 gets a reference to the given interface{} and assigns it to the Target2 field.

func (AuditOperationDetails) ToMap

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

type AuditOperationDetailsEnvelope

type AuditOperationDetailsEnvelope struct {
	RequestId NullableString         `json:"request_id,omitempty"`
	Message   NullableString         `json:"message,omitempty"`
	Data      *AuditOperationDetails `json:"data,omitempty"`
}

AuditOperationDetailsEnvelope struct for AuditOperationDetailsEnvelope

func NewAuditOperationDetailsEnvelope

func NewAuditOperationDetailsEnvelope() *AuditOperationDetailsEnvelope

NewAuditOperationDetailsEnvelope instantiates a new AuditOperationDetailsEnvelope 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 NewAuditOperationDetailsEnvelopeWithDefaults

func NewAuditOperationDetailsEnvelopeWithDefaults() *AuditOperationDetailsEnvelope

NewAuditOperationDetailsEnvelopeWithDefaults instantiates a new AuditOperationDetailsEnvelope 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 (*AuditOperationDetailsEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*AuditOperationDetailsEnvelope) GetDataOk

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

func (*AuditOperationDetailsEnvelope) GetMessage

func (o *AuditOperationDetailsEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuditOperationDetailsEnvelope) GetMessageOk

func (o *AuditOperationDetailsEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuditOperationDetailsEnvelope) GetRequestId

func (o *AuditOperationDetailsEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuditOperationDetailsEnvelope) GetRequestIdOk

func (o *AuditOperationDetailsEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuditOperationDetailsEnvelope) HasData

func (o *AuditOperationDetailsEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*AuditOperationDetailsEnvelope) HasMessage

func (o *AuditOperationDetailsEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AuditOperationDetailsEnvelope) HasRequestId

func (o *AuditOperationDetailsEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (AuditOperationDetailsEnvelope) MarshalJSON

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

func (*AuditOperationDetailsEnvelope) SetData

SetData gets a reference to the given AuditOperationDetails and assigns it to the Data field.

func (*AuditOperationDetailsEnvelope) SetMessage

func (o *AuditOperationDetailsEnvelope) SetMessage(v string)

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

func (*AuditOperationDetailsEnvelope) SetMessageNil

func (o *AuditOperationDetailsEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AuditOperationDetailsEnvelope) SetRequestId

func (o *AuditOperationDetailsEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AuditOperationDetailsEnvelope) SetRequestIdNil

func (o *AuditOperationDetailsEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AuditOperationDetailsEnvelope) ToMap

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

func (*AuditOperationDetailsEnvelope) UnsetMessage

func (o *AuditOperationDetailsEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AuditOperationDetailsEnvelope) UnsetRequestId

func (o *AuditOperationDetailsEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AuthenticationProviderDescription

type AuthenticationProviderDescription struct {
	Id                               *string               `json:"id,omitempty"`
	DisplayName                      NullableString        `json:"displayName,omitempty"`
	Description                      NullableString        `json:"description,omitempty"`
	PropertyDescriptions             []PropertyDescription `json:"propertyDescriptions,omitempty"`
	AuthenticationProviderIdentifier NullableString        `json:"authenticationProviderIdentifier,omitempty"`
}

AuthenticationProviderDescription struct for AuthenticationProviderDescription

func NewAuthenticationProviderDescription

func NewAuthenticationProviderDescription() *AuthenticationProviderDescription

NewAuthenticationProviderDescription instantiates a new AuthenticationProviderDescription 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 NewAuthenticationProviderDescriptionWithDefaults

func NewAuthenticationProviderDescriptionWithDefaults() *AuthenticationProviderDescription

NewAuthenticationProviderDescriptionWithDefaults instantiates a new AuthenticationProviderDescription 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 (*AuthenticationProviderDescription) GetAuthenticationProviderIdentifier

func (o *AuthenticationProviderDescription) GetAuthenticationProviderIdentifier() string

GetAuthenticationProviderIdentifier returns the AuthenticationProviderIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderDescription) GetAuthenticationProviderIdentifierOk

func (o *AuthenticationProviderDescription) GetAuthenticationProviderIdentifierOk() (*string, bool)

GetAuthenticationProviderIdentifierOk returns a tuple with the AuthenticationProviderIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderDescription) GetDescription

func (o *AuthenticationProviderDescription) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderDescription) GetDescriptionOk

func (o *AuthenticationProviderDescription) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderDescription) GetDisplayName

func (o *AuthenticationProviderDescription) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderDescription) GetDisplayNameOk

func (o *AuthenticationProviderDescription) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderDescription) GetId

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

func (*AuthenticationProviderDescription) 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 (*AuthenticationProviderDescription) GetPropertyDescriptions

func (o *AuthenticationProviderDescription) GetPropertyDescriptions() []PropertyDescription

GetPropertyDescriptions returns the PropertyDescriptions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderDescription) GetPropertyDescriptionsOk

func (o *AuthenticationProviderDescription) GetPropertyDescriptionsOk() ([]PropertyDescription, bool)

GetPropertyDescriptionsOk returns a tuple with the PropertyDescriptions field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderDescription) HasAuthenticationProviderIdentifier

func (o *AuthenticationProviderDescription) HasAuthenticationProviderIdentifier() bool

HasAuthenticationProviderIdentifier returns a boolean if a field has been set.

func (*AuthenticationProviderDescription) HasDescription

func (o *AuthenticationProviderDescription) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AuthenticationProviderDescription) HasDisplayName

func (o *AuthenticationProviderDescription) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*AuthenticationProviderDescription) HasId

HasId returns a boolean if a field has been set.

func (*AuthenticationProviderDescription) HasPropertyDescriptions

func (o *AuthenticationProviderDescription) HasPropertyDescriptions() bool

HasPropertyDescriptions returns a boolean if a field has been set.

func (AuthenticationProviderDescription) MarshalJSON

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

func (*AuthenticationProviderDescription) SetAuthenticationProviderIdentifier

func (o *AuthenticationProviderDescription) SetAuthenticationProviderIdentifier(v string)

SetAuthenticationProviderIdentifier gets a reference to the given NullableString and assigns it to the AuthenticationProviderIdentifier field.

func (*AuthenticationProviderDescription) SetAuthenticationProviderIdentifierNil

func (o *AuthenticationProviderDescription) SetAuthenticationProviderIdentifierNil()

SetAuthenticationProviderIdentifierNil sets the value for AuthenticationProviderIdentifier to be an explicit nil

func (*AuthenticationProviderDescription) SetDescription

func (o *AuthenticationProviderDescription) SetDescription(v string)

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

func (*AuthenticationProviderDescription) SetDescriptionNil

func (o *AuthenticationProviderDescription) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*AuthenticationProviderDescription) SetDisplayName

func (o *AuthenticationProviderDescription) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*AuthenticationProviderDescription) SetDisplayNameNil

func (o *AuthenticationProviderDescription) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*AuthenticationProviderDescription) SetId

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

func (*AuthenticationProviderDescription) SetPropertyDescriptions

func (o *AuthenticationProviderDescription) SetPropertyDescriptions(v []PropertyDescription)

SetPropertyDescriptions gets a reference to the given []PropertyDescription and assigns it to the PropertyDescriptions field.

func (AuthenticationProviderDescription) ToMap

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

func (*AuthenticationProviderDescription) UnsetAuthenticationProviderIdentifier

func (o *AuthenticationProviderDescription) UnsetAuthenticationProviderIdentifier()

UnsetAuthenticationProviderIdentifier ensures that no value is present for AuthenticationProviderIdentifier, not even an explicit nil

func (*AuthenticationProviderDescription) UnsetDescription

func (o *AuthenticationProviderDescription) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*AuthenticationProviderDescription) UnsetDisplayName

func (o *AuthenticationProviderDescription) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

type AuthenticationProviderDescriptionEnumerateEnvelope

type AuthenticationProviderDescriptionEnumerateEnvelope struct {
	Pagination *Pagination                         `json:"pagination,omitempty"`
	Delta      *Delta                              `json:"delta,omitempty"`
	RequestId  NullableString                      `json:"request_id,omitempty"`
	Message    NullableString                      `json:"message,omitempty"`
	Data       []AuthenticationProviderDescription `json:"data,omitempty"`
}

AuthenticationProviderDescriptionEnumerateEnvelope struct for AuthenticationProviderDescriptionEnumerateEnvelope

func NewAuthenticationProviderDescriptionEnumerateEnvelope

func NewAuthenticationProviderDescriptionEnumerateEnvelope() *AuthenticationProviderDescriptionEnumerateEnvelope

NewAuthenticationProviderDescriptionEnumerateEnvelope instantiates a new AuthenticationProviderDescriptionEnumerateEnvelope 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 NewAuthenticationProviderDescriptionEnumerateEnvelopeWithDefaults

func NewAuthenticationProviderDescriptionEnumerateEnvelopeWithDefaults() *AuthenticationProviderDescriptionEnumerateEnvelope

NewAuthenticationProviderDescriptionEnumerateEnvelopeWithDefaults instantiates a new AuthenticationProviderDescriptionEnumerateEnvelope 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 (*AuthenticationProviderDescriptionEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetDeltaOk

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

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetPaginationOk

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

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderDescriptionEnumerateEnvelope) GetRequestIdOk

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderDescriptionEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) HasPagination

HasPagination returns a boolean if a field has been set.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (AuthenticationProviderDescriptionEnumerateEnvelope) MarshalJSON

func (*AuthenticationProviderDescriptionEnumerateEnvelope) SetData

SetData gets a reference to the given []AuthenticationProviderDescription and assigns it to the Data field.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) SetMessage

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

func (*AuthenticationProviderDescriptionEnumerateEnvelope) SetMessageNil

SetMessageNil sets the value for Message to be an explicit nil

func (*AuthenticationProviderDescriptionEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AuthenticationProviderDescriptionEnumerateEnvelope) SetRequestIdNil

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AuthenticationProviderDescriptionEnumerateEnvelope) ToMap

func (*AuthenticationProviderDescriptionEnumerateEnvelope) UnsetMessage

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AuthenticationProviderDescriptionEnumerateEnvelope) UnsetRequestId

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AuthenticationProviderRegistration

type AuthenticationProviderRegistration struct {
	ApplicationId            *string        `json:"applicationId,omitempty"`
	JsonSchemaId             *string        `json:"jsonSchemaId,omitempty"`
	AuthenticationProviderId NullableString `json:"authenticationProviderId,omitempty"`
	RegistrationName         NullableString `json:"registrationName,omitempty"`
	Id                       NullableString `json:"id,omitempty"`
	CreationTime             *time.Time     `json:"creationTime,omitempty"`
}

AuthenticationProviderRegistration struct for AuthenticationProviderRegistration

func NewAuthenticationProviderRegistration

func NewAuthenticationProviderRegistration() *AuthenticationProviderRegistration

NewAuthenticationProviderRegistration instantiates a new AuthenticationProviderRegistration 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 NewAuthenticationProviderRegistrationWithDefaults

func NewAuthenticationProviderRegistrationWithDefaults() *AuthenticationProviderRegistration

NewAuthenticationProviderRegistrationWithDefaults instantiates a new AuthenticationProviderRegistration 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 (*AuthenticationProviderRegistration) GetApplicationId

func (o *AuthenticationProviderRegistration) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise.

func (*AuthenticationProviderRegistration) GetApplicationIdOk

func (o *AuthenticationProviderRegistration) GetApplicationIdOk() (*string, bool)

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

func (*AuthenticationProviderRegistration) GetAuthenticationProviderId

func (o *AuthenticationProviderRegistration) GetAuthenticationProviderId() string

GetAuthenticationProviderId returns the AuthenticationProviderId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderRegistration) GetAuthenticationProviderIdOk

func (o *AuthenticationProviderRegistration) GetAuthenticationProviderIdOk() (*string, bool)

GetAuthenticationProviderIdOk returns a tuple with the AuthenticationProviderId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderRegistration) GetCreationTime

func (o *AuthenticationProviderRegistration) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*AuthenticationProviderRegistration) GetCreationTimeOk

func (o *AuthenticationProviderRegistration) GetCreationTimeOk() (*time.Time, bool)

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

func (*AuthenticationProviderRegistration) GetId

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderRegistration) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderRegistration) GetJsonSchemaId

func (o *AuthenticationProviderRegistration) GetJsonSchemaId() string

GetJsonSchemaId returns the JsonSchemaId field value if set, zero value otherwise.

func (*AuthenticationProviderRegistration) GetJsonSchemaIdOk

func (o *AuthenticationProviderRegistration) GetJsonSchemaIdOk() (*string, bool)

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

func (*AuthenticationProviderRegistration) GetRegistrationName

func (o *AuthenticationProviderRegistration) GetRegistrationName() string

GetRegistrationName returns the RegistrationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderRegistration) GetRegistrationNameOk

func (o *AuthenticationProviderRegistration) GetRegistrationNameOk() (*string, bool)

GetRegistrationNameOk returns a tuple with the RegistrationName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderRegistration) HasApplicationId

func (o *AuthenticationProviderRegistration) HasApplicationId() bool

HasApplicationId returns a boolean if a field has been set.

func (*AuthenticationProviderRegistration) HasAuthenticationProviderId

func (o *AuthenticationProviderRegistration) HasAuthenticationProviderId() bool

HasAuthenticationProviderId returns a boolean if a field has been set.

func (*AuthenticationProviderRegistration) HasCreationTime

func (o *AuthenticationProviderRegistration) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*AuthenticationProviderRegistration) HasId

HasId returns a boolean if a field has been set.

func (*AuthenticationProviderRegistration) HasJsonSchemaId

func (o *AuthenticationProviderRegistration) HasJsonSchemaId() bool

HasJsonSchemaId returns a boolean if a field has been set.

func (*AuthenticationProviderRegistration) HasRegistrationName

func (o *AuthenticationProviderRegistration) HasRegistrationName() bool

HasRegistrationName returns a boolean if a field has been set.

func (AuthenticationProviderRegistration) MarshalJSON

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

func (*AuthenticationProviderRegistration) SetApplicationId

func (o *AuthenticationProviderRegistration) SetApplicationId(v string)

SetApplicationId gets a reference to the given string and assigns it to the ApplicationId field.

func (*AuthenticationProviderRegistration) SetAuthenticationProviderId

func (o *AuthenticationProviderRegistration) SetAuthenticationProviderId(v string)

SetAuthenticationProviderId gets a reference to the given NullableString and assigns it to the AuthenticationProviderId field.

func (*AuthenticationProviderRegistration) SetAuthenticationProviderIdNil

func (o *AuthenticationProviderRegistration) SetAuthenticationProviderIdNil()

SetAuthenticationProviderIdNil sets the value for AuthenticationProviderId to be an explicit nil

func (*AuthenticationProviderRegistration) SetCreationTime

func (o *AuthenticationProviderRegistration) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*AuthenticationProviderRegistration) SetId

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

func (*AuthenticationProviderRegistration) SetIdNil

func (o *AuthenticationProviderRegistration) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*AuthenticationProviderRegistration) SetJsonSchemaId

func (o *AuthenticationProviderRegistration) SetJsonSchemaId(v string)

SetJsonSchemaId gets a reference to the given string and assigns it to the JsonSchemaId field.

func (*AuthenticationProviderRegistration) SetRegistrationName

func (o *AuthenticationProviderRegistration) SetRegistrationName(v string)

SetRegistrationName gets a reference to the given NullableString and assigns it to the RegistrationName field.

func (*AuthenticationProviderRegistration) SetRegistrationNameNil

func (o *AuthenticationProviderRegistration) SetRegistrationNameNil()

SetRegistrationNameNil sets the value for RegistrationName to be an explicit nil

func (AuthenticationProviderRegistration) ToMap

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

func (*AuthenticationProviderRegistration) UnsetAuthenticationProviderId

func (o *AuthenticationProviderRegistration) UnsetAuthenticationProviderId()

UnsetAuthenticationProviderId ensures that no value is present for AuthenticationProviderId, not even an explicit nil

func (*AuthenticationProviderRegistration) UnsetId

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*AuthenticationProviderRegistration) UnsetRegistrationName

func (o *AuthenticationProviderRegistration) UnsetRegistrationName()

UnsetRegistrationName ensures that no value is present for RegistrationName, not even an explicit nil

type AuthenticationProviderRegistrationEnumerateEnvelope

type AuthenticationProviderRegistrationEnumerateEnvelope struct {
	Pagination *Pagination                          `json:"pagination,omitempty"`
	Delta      *Delta                               `json:"delta,omitempty"`
	RequestId  NullableString                       `json:"request_id,omitempty"`
	Message    NullableString                       `json:"message,omitempty"`
	Data       []AuthenticationProviderRegistration `json:"data,omitempty"`
}

AuthenticationProviderRegistrationEnumerateEnvelope struct for AuthenticationProviderRegistrationEnumerateEnvelope

func NewAuthenticationProviderRegistrationEnumerateEnvelope

func NewAuthenticationProviderRegistrationEnumerateEnvelope() *AuthenticationProviderRegistrationEnumerateEnvelope

NewAuthenticationProviderRegistrationEnumerateEnvelope instantiates a new AuthenticationProviderRegistrationEnumerateEnvelope 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 NewAuthenticationProviderRegistrationEnumerateEnvelopeWithDefaults

func NewAuthenticationProviderRegistrationEnumerateEnvelopeWithDefaults() *AuthenticationProviderRegistrationEnumerateEnvelope

NewAuthenticationProviderRegistrationEnumerateEnvelopeWithDefaults instantiates a new AuthenticationProviderRegistrationEnumerateEnvelope 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 (*AuthenticationProviderRegistrationEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetDeltaOk

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

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetPaginationOk

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

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderRegistrationEnumerateEnvelope) GetRequestIdOk

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderRegistrationEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) HasPagination

HasPagination returns a boolean if a field has been set.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (AuthenticationProviderRegistrationEnumerateEnvelope) MarshalJSON

func (*AuthenticationProviderRegistrationEnumerateEnvelope) SetData

SetData gets a reference to the given []AuthenticationProviderRegistration and assigns it to the Data field.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) SetMessage

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

func (*AuthenticationProviderRegistrationEnumerateEnvelope) SetMessageNil

SetMessageNil sets the value for Message to be an explicit nil

func (*AuthenticationProviderRegistrationEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AuthenticationProviderRegistrationEnumerateEnvelope) SetRequestIdNil

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AuthenticationProviderRegistrationEnumerateEnvelope) ToMap

func (*AuthenticationProviderRegistrationEnumerateEnvelope) UnsetMessage

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AuthenticationProviderRegistrationEnumerateEnvelope) UnsetRequestId

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AuthenticationProviderRegistrationEnvelope

type AuthenticationProviderRegistrationEnvelope struct {
	RequestId NullableString                      `json:"request_id,omitempty"`
	Message   NullableString                      `json:"message,omitempty"`
	Data      *AuthenticationProviderRegistration `json:"data,omitempty"`
}

AuthenticationProviderRegistrationEnvelope struct for AuthenticationProviderRegistrationEnvelope

func NewAuthenticationProviderRegistrationEnvelope

func NewAuthenticationProviderRegistrationEnvelope() *AuthenticationProviderRegistrationEnvelope

NewAuthenticationProviderRegistrationEnvelope instantiates a new AuthenticationProviderRegistrationEnvelope 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 NewAuthenticationProviderRegistrationEnvelopeWithDefaults

func NewAuthenticationProviderRegistrationEnvelopeWithDefaults() *AuthenticationProviderRegistrationEnvelope

NewAuthenticationProviderRegistrationEnvelopeWithDefaults instantiates a new AuthenticationProviderRegistrationEnvelope 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 (*AuthenticationProviderRegistrationEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*AuthenticationProviderRegistrationEnvelope) GetDataOk

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

func (*AuthenticationProviderRegistrationEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderRegistrationEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderRegistrationEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AuthenticationProviderRegistrationEnvelope) GetRequestIdOk

func (o *AuthenticationProviderRegistrationEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AuthenticationProviderRegistrationEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*AuthenticationProviderRegistrationEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*AuthenticationProviderRegistrationEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (AuthenticationProviderRegistrationEnvelope) MarshalJSON

func (*AuthenticationProviderRegistrationEnvelope) SetData

SetData gets a reference to the given AuthenticationProviderRegistration and assigns it to the Data field.

func (*AuthenticationProviderRegistrationEnvelope) SetMessage

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

func (*AuthenticationProviderRegistrationEnvelope) SetMessageNil

func (o *AuthenticationProviderRegistrationEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*AuthenticationProviderRegistrationEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*AuthenticationProviderRegistrationEnvelope) SetRequestIdNil

func (o *AuthenticationProviderRegistrationEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (AuthenticationProviderRegistrationEnvelope) ToMap

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

func (*AuthenticationProviderRegistrationEnvelope) UnsetMessage

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*AuthenticationProviderRegistrationEnvelope) UnsetRequestId

func (o *AuthenticationProviderRegistrationEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type AuthorizationStatus

type AuthorizationStatus string

AuthorizationStatus the model 'AuthorizationStatus'

const (
	AUTHORIZATIONSTATUS_AUTHORIZED        AuthorizationStatus = "Authorized"
	AUTHORIZATIONSTATUS_APPROVAL_REQUIRED AuthorizationStatus = "ApprovalRequired"
	AUTHORIZATIONSTATUS_DENIED            AuthorizationStatus = "Denied"
)

List of AuthorizationStatus

func NewAuthorizationStatusFromValue

func NewAuthorizationStatusFromValue(v string) (*AuthorizationStatus, error)

NewAuthorizationStatusFromValue returns a pointer to a valid AuthorizationStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (AuthorizationStatus) IsValid

func (v AuthorizationStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (AuthorizationStatus) Ptr

Ptr returns reference to AuthorizationStatus value

func (*AuthorizationStatus) UnmarshalJSON

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

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 CaptchaAnswer

type CaptchaAnswer struct {
	Id     *string        `json:"id,omitempty"`
	Answer NullableString `json:"answer,omitempty"`
}

CaptchaAnswer struct for CaptchaAnswer

func NewCaptchaAnswer

func NewCaptchaAnswer() *CaptchaAnswer

NewCaptchaAnswer instantiates a new CaptchaAnswer 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 NewCaptchaAnswerWithDefaults

func NewCaptchaAnswerWithDefaults() *CaptchaAnswer

NewCaptchaAnswerWithDefaults instantiates a new CaptchaAnswer 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 (*CaptchaAnswer) GetAnswer

func (o *CaptchaAnswer) GetAnswer() string

GetAnswer returns the Answer field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CaptchaAnswer) GetAnswerOk

func (o *CaptchaAnswer) GetAnswerOk() (*string, bool)

GetAnswerOk returns a tuple with the Answer field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CaptchaAnswer) GetId

func (o *CaptchaAnswer) GetId() string

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

func (*CaptchaAnswer) GetIdOk

func (o *CaptchaAnswer) 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 (*CaptchaAnswer) HasAnswer

func (o *CaptchaAnswer) HasAnswer() bool

HasAnswer returns a boolean if a field has been set.

func (*CaptchaAnswer) HasId

func (o *CaptchaAnswer) HasId() bool

HasId returns a boolean if a field has been set.

func (CaptchaAnswer) MarshalJSON

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

func (*CaptchaAnswer) SetAnswer

func (o *CaptchaAnswer) SetAnswer(v string)

SetAnswer gets a reference to the given NullableString and assigns it to the Answer field.

func (*CaptchaAnswer) SetAnswerNil

func (o *CaptchaAnswer) SetAnswerNil()

SetAnswerNil sets the value for Answer to be an explicit nil

func (*CaptchaAnswer) SetId

func (o *CaptchaAnswer) SetId(v string)

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

func (CaptchaAnswer) ToMap

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

func (*CaptchaAnswer) UnsetAnswer

func (o *CaptchaAnswer) UnsetAnswer()

UnsetAnswer ensures that no value is present for Answer, not even an explicit nil

type CaptchaResponse

type CaptchaResponse struct {
	Success *bool `json:"success,omitempty"`
}

CaptchaResponse struct for CaptchaResponse

func NewCaptchaResponse

func NewCaptchaResponse() *CaptchaResponse

NewCaptchaResponse instantiates a new CaptchaResponse 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 NewCaptchaResponseWithDefaults

func NewCaptchaResponseWithDefaults() *CaptchaResponse

NewCaptchaResponseWithDefaults instantiates a new CaptchaResponse 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 (*CaptchaResponse) GetSuccess

func (o *CaptchaResponse) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*CaptchaResponse) GetSuccessOk

func (o *CaptchaResponse) GetSuccessOk() (*bool, bool)

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

func (*CaptchaResponse) HasSuccess

func (o *CaptchaResponse) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (CaptchaResponse) MarshalJSON

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

func (*CaptchaResponse) SetSuccess

func (o *CaptchaResponse) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (CaptchaResponse) ToMap

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

type CaptchaResponseEnvelope

type CaptchaResponseEnvelope struct {
	RequestId NullableString   `json:"request_id,omitempty"`
	Message   NullableString   `json:"message,omitempty"`
	Data      *CaptchaResponse `json:"data,omitempty"`
}

CaptchaResponseEnvelope struct for CaptchaResponseEnvelope

func NewCaptchaResponseEnvelope

func NewCaptchaResponseEnvelope() *CaptchaResponseEnvelope

NewCaptchaResponseEnvelope instantiates a new CaptchaResponseEnvelope 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 NewCaptchaResponseEnvelopeWithDefaults

func NewCaptchaResponseEnvelopeWithDefaults() *CaptchaResponseEnvelope

NewCaptchaResponseEnvelopeWithDefaults instantiates a new CaptchaResponseEnvelope 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 (*CaptchaResponseEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*CaptchaResponseEnvelope) GetDataOk

func (o *CaptchaResponseEnvelope) GetDataOk() (*CaptchaResponse, bool)

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

func (*CaptchaResponseEnvelope) GetMessage

func (o *CaptchaResponseEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CaptchaResponseEnvelope) GetMessageOk

func (o *CaptchaResponseEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CaptchaResponseEnvelope) GetRequestId

func (o *CaptchaResponseEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CaptchaResponseEnvelope) GetRequestIdOk

func (o *CaptchaResponseEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CaptchaResponseEnvelope) HasData

func (o *CaptchaResponseEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*CaptchaResponseEnvelope) HasMessage

func (o *CaptchaResponseEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CaptchaResponseEnvelope) HasRequestId

func (o *CaptchaResponseEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (CaptchaResponseEnvelope) MarshalJSON

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

func (*CaptchaResponseEnvelope) SetData

SetData gets a reference to the given CaptchaResponse and assigns it to the Data field.

func (*CaptchaResponseEnvelope) SetMessage

func (o *CaptchaResponseEnvelope) SetMessage(v string)

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

func (*CaptchaResponseEnvelope) SetMessageNil

func (o *CaptchaResponseEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*CaptchaResponseEnvelope) SetRequestId

func (o *CaptchaResponseEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*CaptchaResponseEnvelope) SetRequestIdNil

func (o *CaptchaResponseEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (CaptchaResponseEnvelope) ToMap

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

func (*CaptchaResponseEnvelope) UnsetMessage

func (o *CaptchaResponseEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*CaptchaResponseEnvelope) UnsetRequestId

func (o *CaptchaResponseEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type CompleteSelfServiceResetRequest

type CompleteSelfServiceResetRequest struct {
	Code        *string        `json:"code,omitempty"`
	NewPassword NullableString `json:"newPassword,omitempty"`
}

CompleteSelfServiceResetRequest struct for CompleteSelfServiceResetRequest

func NewCompleteSelfServiceResetRequest

func NewCompleteSelfServiceResetRequest() *CompleteSelfServiceResetRequest

NewCompleteSelfServiceResetRequest instantiates a new CompleteSelfServiceResetRequest 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 NewCompleteSelfServiceResetRequestWithDefaults

func NewCompleteSelfServiceResetRequestWithDefaults() *CompleteSelfServiceResetRequest

NewCompleteSelfServiceResetRequestWithDefaults instantiates a new CompleteSelfServiceResetRequest 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 (*CompleteSelfServiceResetRequest) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*CompleteSelfServiceResetRequest) GetCodeOk

func (o *CompleteSelfServiceResetRequest) GetCodeOk() (*string, bool)

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

func (*CompleteSelfServiceResetRequest) GetNewPassword

func (o *CompleteSelfServiceResetRequest) GetNewPassword() string

GetNewPassword returns the NewPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CompleteSelfServiceResetRequest) GetNewPasswordOk

func (o *CompleteSelfServiceResetRequest) GetNewPasswordOk() (*string, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CompleteSelfServiceResetRequest) HasCode

HasCode returns a boolean if a field has been set.

func (*CompleteSelfServiceResetRequest) HasNewPassword

func (o *CompleteSelfServiceResetRequest) HasNewPassword() bool

HasNewPassword returns a boolean if a field has been set.

func (CompleteSelfServiceResetRequest) MarshalJSON

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

func (*CompleteSelfServiceResetRequest) SetCode

SetCode gets a reference to the given string and assigns it to the Code field.

func (*CompleteSelfServiceResetRequest) SetNewPassword

func (o *CompleteSelfServiceResetRequest) SetNewPassword(v string)

SetNewPassword gets a reference to the given NullableString and assigns it to the NewPassword field.

func (*CompleteSelfServiceResetRequest) SetNewPasswordNil

func (o *CompleteSelfServiceResetRequest) SetNewPasswordNil()

SetNewPasswordNil sets the value for NewPassword to be an explicit nil

func (CompleteSelfServiceResetRequest) ToMap

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

func (*CompleteSelfServiceResetRequest) UnsetNewPassword

func (o *CompleteSelfServiceResetRequest) UnsetNewPassword()

UnsetNewPassword ensures that no value is present for NewPassword, not even an explicit nil

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 Criterion

type Criterion struct {
	Id            NullableString `json:"id,omitempty"`
	Description   NullableString `json:"description,omitempty"`
	ExampleValues NullableString `json:"exampleValues,omitempty"`
	Datatype      NullableString `json:"datatype,omitempty"`
	Restricted    *bool          `json:"restricted,omitempty"`
}

Criterion struct for Criterion

func NewCriterion

func NewCriterion() *Criterion

NewCriterion instantiates a new Criterion 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 NewCriterionWithDefaults

func NewCriterionWithDefaults() *Criterion

NewCriterionWithDefaults instantiates a new Criterion 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 (*Criterion) GetDatatype

func (o *Criterion) GetDatatype() string

GetDatatype returns the Datatype field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Criterion) GetDatatypeOk

func (o *Criterion) GetDatatypeOk() (*string, bool)

GetDatatypeOk returns a tuple with the Datatype field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Criterion) GetDescription

func (o *Criterion) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Criterion) GetDescriptionOk

func (o *Criterion) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Criterion) GetExampleValues

func (o *Criterion) GetExampleValues() string

GetExampleValues returns the ExampleValues field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Criterion) GetExampleValuesOk

func (o *Criterion) GetExampleValuesOk() (*string, bool)

GetExampleValuesOk returns a tuple with the ExampleValues field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Criterion) GetId

func (o *Criterion) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Criterion) GetIdOk

func (o *Criterion) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Criterion) GetRestricted

func (o *Criterion) GetRestricted() bool

GetRestricted returns the Restricted field value if set, zero value otherwise.

func (*Criterion) GetRestrictedOk

func (o *Criterion) GetRestrictedOk() (*bool, bool)

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

func (*Criterion) HasDatatype

func (o *Criterion) HasDatatype() bool

HasDatatype returns a boolean if a field has been set.

func (*Criterion) HasDescription

func (o *Criterion) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Criterion) HasExampleValues

func (o *Criterion) HasExampleValues() bool

HasExampleValues returns a boolean if a field has been set.

func (*Criterion) HasId

func (o *Criterion) HasId() bool

HasId returns a boolean if a field has been set.

func (*Criterion) HasRestricted

func (o *Criterion) HasRestricted() bool

HasRestricted returns a boolean if a field has been set.

func (Criterion) MarshalJSON

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

func (*Criterion) SetDatatype

func (o *Criterion) SetDatatype(v string)

SetDatatype gets a reference to the given NullableString and assigns it to the Datatype field.

func (*Criterion) SetDatatypeNil

func (o *Criterion) SetDatatypeNil()

SetDatatypeNil sets the value for Datatype to be an explicit nil

func (*Criterion) SetDescription

func (o *Criterion) SetDescription(v string)

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

func (*Criterion) SetDescriptionNil

func (o *Criterion) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Criterion) SetExampleValues

func (o *Criterion) SetExampleValues(v string)

SetExampleValues gets a reference to the given NullableString and assigns it to the ExampleValues field.

func (*Criterion) SetExampleValuesNil

func (o *Criterion) SetExampleValuesNil()

SetExampleValuesNil sets the value for ExampleValues to be an explicit nil

func (*Criterion) SetId

func (o *Criterion) SetId(v string)

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

func (*Criterion) SetIdNil

func (o *Criterion) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Criterion) SetRestricted

func (o *Criterion) SetRestricted(v bool)

SetRestricted gets a reference to the given bool and assigns it to the Restricted field.

func (Criterion) ToMap

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

func (*Criterion) UnsetDatatype

func (o *Criterion) UnsetDatatype()

UnsetDatatype ensures that no value is present for Datatype, not even an explicit nil

func (*Criterion) UnsetDescription

func (o *Criterion) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Criterion) UnsetExampleValues

func (o *Criterion) UnsetExampleValues()

UnsetExampleValues ensures that no value is present for ExampleValues, not even an explicit nil

func (*Criterion) UnsetId

func (o *Criterion) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type CriterionEnumerateEnvelope

type CriterionEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Criterion    `json:"data,omitempty"`
}

CriterionEnumerateEnvelope struct for CriterionEnumerateEnvelope

func NewCriterionEnumerateEnvelope

func NewCriterionEnumerateEnvelope() *CriterionEnumerateEnvelope

NewCriterionEnumerateEnvelope instantiates a new CriterionEnumerateEnvelope 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 NewCriterionEnumerateEnvelopeWithDefaults

func NewCriterionEnumerateEnvelopeWithDefaults() *CriterionEnumerateEnvelope

NewCriterionEnumerateEnvelopeWithDefaults instantiates a new CriterionEnumerateEnvelope 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 (*CriterionEnumerateEnvelope) GetData

func (o *CriterionEnumerateEnvelope) GetData() []Criterion

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CriterionEnumerateEnvelope) GetDataOk

func (o *CriterionEnumerateEnvelope) GetDataOk() ([]Criterion, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CriterionEnumerateEnvelope) GetDelta

func (o *CriterionEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*CriterionEnumerateEnvelope) GetDeltaOk

func (o *CriterionEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*CriterionEnumerateEnvelope) GetMessage

func (o *CriterionEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CriterionEnumerateEnvelope) GetMessageOk

func (o *CriterionEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CriterionEnumerateEnvelope) GetPagination

func (o *CriterionEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*CriterionEnumerateEnvelope) GetPaginationOk

func (o *CriterionEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*CriterionEnumerateEnvelope) GetRequestId

func (o *CriterionEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CriterionEnumerateEnvelope) GetRequestIdOk

func (o *CriterionEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CriterionEnumerateEnvelope) HasData

func (o *CriterionEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*CriterionEnumerateEnvelope) HasDelta

func (o *CriterionEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*CriterionEnumerateEnvelope) HasMessage

func (o *CriterionEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CriterionEnumerateEnvelope) HasPagination

func (o *CriterionEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*CriterionEnumerateEnvelope) HasRequestId

func (o *CriterionEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (CriterionEnumerateEnvelope) MarshalJSON

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

func (*CriterionEnumerateEnvelope) SetData

func (o *CriterionEnumerateEnvelope) SetData(v []Criterion)

SetData gets a reference to the given []Criterion and assigns it to the Data field.

func (*CriterionEnumerateEnvelope) SetDelta

func (o *CriterionEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*CriterionEnumerateEnvelope) SetMessage

func (o *CriterionEnumerateEnvelope) SetMessage(v string)

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

func (*CriterionEnumerateEnvelope) SetMessageNil

func (o *CriterionEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*CriterionEnumerateEnvelope) SetPagination

func (o *CriterionEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*CriterionEnumerateEnvelope) SetRequestId

func (o *CriterionEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*CriterionEnumerateEnvelope) SetRequestIdNil

func (o *CriterionEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (CriterionEnumerateEnvelope) ToMap

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

func (*CriterionEnumerateEnvelope) UnsetMessage

func (o *CriterionEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*CriterionEnumerateEnvelope) UnsetRequestId

func (o *CriterionEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type DeliveryFailureReportType

type DeliveryFailureReportType string

DeliveryFailureReportType the model 'DeliveryFailureReportType'

const (
	DELIVERYFAILUREREPORTTYPE_REPORT_TO_SENDER DeliveryFailureReportType = "ReportToSender"
	DELIVERYFAILUREREPORTTYPE_REPORT_TO_OWNER  DeliveryFailureReportType = "ReportToOwner"
	DELIVERYFAILUREREPORTTYPE_NO_REPORT        DeliveryFailureReportType = "NoReport"
)

List of DeliveryFailureReportType

func NewDeliveryFailureReportTypeFromValue

func NewDeliveryFailureReportTypeFromValue(v string) (*DeliveryFailureReportType, error)

NewDeliveryFailureReportTypeFromValue returns a pointer to a valid DeliveryFailureReportType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DeliveryFailureReportType) IsValid

func (v DeliveryFailureReportType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DeliveryFailureReportType) Ptr

Ptr returns reference to DeliveryFailureReportType value

func (*DeliveryFailureReportType) UnmarshalJSON

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

type Delta

type Delta struct {
	Token NullableString `json:"token,omitempty"`
}

Delta struct for Delta

func NewDelta

func NewDelta() *Delta

NewDelta instantiates a new Delta 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 NewDeltaWithDefaults

func NewDeltaWithDefaults() *Delta

NewDeltaWithDefaults instantiates a new Delta 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 (*Delta) GetToken

func (o *Delta) GetToken() string

GetToken returns the Token field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Delta) GetTokenOk

func (o *Delta) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Delta) HasToken

func (o *Delta) HasToken() bool

HasToken returns a boolean if a field has been set.

func (Delta) MarshalJSON

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

func (*Delta) SetToken

func (o *Delta) SetToken(v string)

SetToken gets a reference to the given NullableString and assigns it to the Token field.

func (*Delta) SetTokenNil

func (o *Delta) SetTokenNil()

SetTokenNil sets the value for Token to be an explicit nil

func (Delta) ToMap

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

func (*Delta) UnsetToken

func (o *Delta) UnsetToken()

UnsetToken ensures that no value is present for Token, not even an explicit nil

type DynamicGroupType

type DynamicGroupType string

DynamicGroupType the model 'DynamicGroupType'

const (
	DYNAMICGROUPTYPE_STATIC       DynamicGroupType = "Static"
	DYNAMICGROUPTYPE_DYNAMIC      DynamicGroupType = "Dynamic"
	DYNAMICGROUPTYPE_FULL_DYNAMIC DynamicGroupType = "FullDynamic"
)

List of DynamicGroupType

func NewDynamicGroupTypeFromValue

func NewDynamicGroupTypeFromValue(v string) (*DynamicGroupType, error)

NewDynamicGroupTypeFromValue returns a pointer to a valid DynamicGroupType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DynamicGroupType) IsValid

func (v DynamicGroupType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DynamicGroupType) Ptr

Ptr returns reference to DynamicGroupType value

func (*DynamicGroupType) UnmarshalJSON

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

type ExceptionActionResult

type ExceptionActionResult struct {
	// The identifier of the request.
	HttpRequestId NullableString `json:"httpRequestId,omitempty"`
	// A user readable message.
	Message NullableString `json:"message,omitempty"`
}

ExceptionActionResult An Microsoft.AspNetCore.Mvc.ActionResult with exception information in the body.

func NewExceptionActionResult

func NewExceptionActionResult() *ExceptionActionResult

NewExceptionActionResult instantiates a new ExceptionActionResult 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 NewExceptionActionResultWithDefaults

func NewExceptionActionResultWithDefaults() *ExceptionActionResult

NewExceptionActionResultWithDefaults instantiates a new ExceptionActionResult 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 (*ExceptionActionResult) GetHttpRequestId

func (o *ExceptionActionResult) GetHttpRequestId() string

GetHttpRequestId returns the HttpRequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ExceptionActionResult) GetHttpRequestIdOk

func (o *ExceptionActionResult) GetHttpRequestIdOk() (*string, bool)

GetHttpRequestIdOk returns a tuple with the HttpRequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ExceptionActionResult) GetMessage

func (o *ExceptionActionResult) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ExceptionActionResult) GetMessageOk

func (o *ExceptionActionResult) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ExceptionActionResult) HasHttpRequestId

func (o *ExceptionActionResult) HasHttpRequestId() bool

HasHttpRequestId returns a boolean if a field has been set.

func (*ExceptionActionResult) HasMessage

func (o *ExceptionActionResult) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ExceptionActionResult) MarshalJSON

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

func (*ExceptionActionResult) SetHttpRequestId

func (o *ExceptionActionResult) SetHttpRequestId(v string)

SetHttpRequestId gets a reference to the given NullableString and assigns it to the HttpRequestId field.

func (*ExceptionActionResult) SetHttpRequestIdNil

func (o *ExceptionActionResult) SetHttpRequestIdNil()

SetHttpRequestIdNil sets the value for HttpRequestId to be an explicit nil

func (*ExceptionActionResult) SetMessage

func (o *ExceptionActionResult) SetMessage(v string)

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

func (*ExceptionActionResult) SetMessageNil

func (o *ExceptionActionResult) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (ExceptionActionResult) ToMap

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

func (*ExceptionActionResult) UnsetHttpRequestId

func (o *ExceptionActionResult) UnsetHttpRequestId()

UnsetHttpRequestId ensures that no value is present for HttpRequestId, not even an explicit nil

func (*ExceptionActionResult) UnsetMessage

func (o *ExceptionActionResult) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type ExceptionInfo

type ExceptionInfo struct {
	Message         NullableString  `json:"message,omitempty"`
	StackTrace      []string        `json:"stackTrace,omitempty"`
	InnerExceptions []ExceptionInfo `json:"innerExceptions,omitempty"`
}

ExceptionInfo struct for ExceptionInfo

func NewExceptionInfo

func NewExceptionInfo() *ExceptionInfo

NewExceptionInfo instantiates a new ExceptionInfo 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 NewExceptionInfoWithDefaults

func NewExceptionInfoWithDefaults() *ExceptionInfo

NewExceptionInfoWithDefaults instantiates a new ExceptionInfo 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 (*ExceptionInfo) GetInnerExceptions

func (o *ExceptionInfo) GetInnerExceptions() []ExceptionInfo

GetInnerExceptions returns the InnerExceptions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ExceptionInfo) GetInnerExceptionsOk

func (o *ExceptionInfo) GetInnerExceptionsOk() ([]ExceptionInfo, bool)

GetInnerExceptionsOk returns a tuple with the InnerExceptions field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ExceptionInfo) GetMessage

func (o *ExceptionInfo) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ExceptionInfo) GetMessageOk

func (o *ExceptionInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ExceptionInfo) GetStackTrace

func (o *ExceptionInfo) GetStackTrace() []string

GetStackTrace returns the StackTrace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ExceptionInfo) GetStackTraceOk

func (o *ExceptionInfo) GetStackTraceOk() ([]string, bool)

GetStackTraceOk returns a tuple with the StackTrace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ExceptionInfo) HasInnerExceptions

func (o *ExceptionInfo) HasInnerExceptions() bool

HasInnerExceptions returns a boolean if a field has been set.

func (*ExceptionInfo) HasMessage

func (o *ExceptionInfo) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ExceptionInfo) HasStackTrace

func (o *ExceptionInfo) HasStackTrace() bool

HasStackTrace returns a boolean if a field has been set.

func (ExceptionInfo) MarshalJSON

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

func (*ExceptionInfo) SetInnerExceptions

func (o *ExceptionInfo) SetInnerExceptions(v []ExceptionInfo)

SetInnerExceptions gets a reference to the given []ExceptionInfo and assigns it to the InnerExceptions field.

func (*ExceptionInfo) SetMessage

func (o *ExceptionInfo) SetMessage(v string)

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

func (*ExceptionInfo) SetMessageNil

func (o *ExceptionInfo) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ExceptionInfo) SetStackTrace

func (o *ExceptionInfo) SetStackTrace(v []string)

SetStackTrace gets a reference to the given []string and assigns it to the StackTrace field.

func (ExceptionInfo) ToMap

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

func (*ExceptionInfo) UnsetMessage

func (o *ExceptionInfo) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type GeneratedCaptcha

type GeneratedCaptcha struct {
	Id  *string        `json:"id,omitempty"`
	Img NullableString `json:"img,omitempty"`
}

GeneratedCaptcha struct for GeneratedCaptcha

func NewGeneratedCaptcha

func NewGeneratedCaptcha() *GeneratedCaptcha

NewGeneratedCaptcha instantiates a new GeneratedCaptcha 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 NewGeneratedCaptchaWithDefaults

func NewGeneratedCaptchaWithDefaults() *GeneratedCaptcha

NewGeneratedCaptchaWithDefaults instantiates a new GeneratedCaptcha 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 (*GeneratedCaptcha) GetId

func (o *GeneratedCaptcha) GetId() string

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

func (*GeneratedCaptcha) GetIdOk

func (o *GeneratedCaptcha) 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 (*GeneratedCaptcha) GetImg

func (o *GeneratedCaptcha) GetImg() string

GetImg returns the Img field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GeneratedCaptcha) GetImgOk

func (o *GeneratedCaptcha) GetImgOk() (*string, bool)

GetImgOk returns a tuple with the Img field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GeneratedCaptcha) HasId

func (o *GeneratedCaptcha) HasId() bool

HasId returns a boolean if a field has been set.

func (*GeneratedCaptcha) HasImg

func (o *GeneratedCaptcha) HasImg() bool

HasImg returns a boolean if a field has been set.

func (GeneratedCaptcha) MarshalJSON

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

func (*GeneratedCaptcha) SetId

func (o *GeneratedCaptcha) SetId(v string)

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

func (*GeneratedCaptcha) SetImg

func (o *GeneratedCaptcha) SetImg(v string)

SetImg gets a reference to the given NullableString and assigns it to the Img field.

func (*GeneratedCaptcha) SetImgNil

func (o *GeneratedCaptcha) SetImgNil()

SetImgNil sets the value for Img to be an explicit nil

func (GeneratedCaptcha) ToMap

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

func (*GeneratedCaptcha) UnsetImg

func (o *GeneratedCaptcha) UnsetImg()

UnsetImg ensures that no value is present for Img, not even an explicit nil

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 Group

type Group struct {
	GroupIdentifier               NullableString         `json:"groupIdentifier,omitempty"`
	DisplayName                   string                 `json:"displayName"`
	Description                   string                 `json:"description"`
	Public                        *bool                  `json:"public,omitempty"`
	EnforceMembershipRestrictions *bool                  `json:"enforceMembershipRestrictions,omitempty"`
	AdministratorsId              NullableString         `json:"administratorsId,omitempty"`
	ApprovalRequired              *bool                  `json:"approvalRequired,omitempty"`
	SelfSubscriptionType          *SelfSubscriptionType  `json:"selfSubscriptionType,omitempty"`
	PrivacyType                   *PrivacyType           `json:"privacyType,omitempty"`
	Dynamic                       *bool                  `json:"dynamic,omitempty"`
	DynamicGroupType              *DynamicGroupType      `json:"dynamicGroupType,omitempty"`
	Criteria                      map[string]interface{} `json:"criteria,omitempty"`
	Source                        NullableString         `json:"source,omitempty"`
	SyncType                      GroupSyncType          `json:"syncType"`
	SyncStatus                    GroupSyncStatus        `json:"syncStatus"`
	Gid                           NullableInt32          `json:"gid,omitempty"`
	IsComputingGroup              *bool                  `json:"isComputingGroup,omitempty"`
	RemoveNonActiveMembers        *bool                  `json:"removeNonActiveMembers,omitempty"`
	// Deprecated
	Topic                      NullableString    `json:"topic,omitempty"`
	MemberOfIdsRecursive       []string          `json:"memberOfIdsRecursive,omitempty"`
	MemberGroupIds             []string          `json:"memberGroupIds,omitempty"`
	MemberGroupIdsRecursive    []string          `json:"memberGroupIdsRecursive,omitempty"`
	MemberIdentityIds          []string          `json:"memberIdentityIds,omitempty"`
	MemberIdentityIdsRecursive []string          `json:"memberIdentityIdsRecursive,omitempty"`
	Owner                      *Identity         `json:"owner,omitempty"`
	AssignedScopes             []string          `json:"assignedScopes,omitempty"`
	GroupModeratorIds          []string          `json:"groupModeratorIds,omitempty"`
	ModeratedGroupIds          []string          `json:"moderatedGroupIds,omitempty"`
	ResourceCategory           *ResourceCategory `json:"resourceCategory,omitempty"`
	Reassignable               *bool             `json:"reassignable,omitempty"`
	AutoReassign               *bool             `json:"autoReassign,omitempty"`
	// Deprecated
	PendingAction    *bool          `json:"pendingAction,omitempty"`
	Disabled         *bool          `json:"disabled,omitempty"`
	Blocked          *bool          `json:"blocked,omitempty"`
	SecurityIssues   *bool          `json:"securityIssues,omitempty"`
	BlockingReason   NullableString `json:"blockingReason,omitempty"`
	BlockingTime     NullableTime   `json:"blockingTime,omitempty"`
	BlockingDeadline NullableTime   `json:"blockingDeadline,omitempty"`
	ArchiveDeadline  NullableTime   `json:"archiveDeadline,omitempty"`
	DeleteDeadline   NullableTime   `json:"deleteDeadline,omitempty"`
	// Deprecated
	ExpirationDeadline  NullableTime   `json:"expirationDeadline,omitempty"`
	OwnerId             NullableString `json:"ownerId,omitempty"`
	InternalState       *ResourceState `json:"internalState,omitempty"`
	State               *ResourceState `json:"state,omitempty"`
	LastStateChangeTime NullableTime   `json:"lastStateChangeTime,omitempty"`
	ValidityLimit       NullableTime   `json:"validityLimit,omitempty"`
	Id                  NullableString `json:"id,omitempty"`
	CreationTime        *time.Time     `json:"creationTime,omitempty"`
}

Group struct for Group

func NewGroup

func NewGroup(displayName string, description string, syncType GroupSyncType, syncStatus GroupSyncStatus) *Group

NewGroup instantiates a new Group 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 NewGroupWithDefaults

func NewGroupWithDefaults() *Group

NewGroupWithDefaults instantiates a new Group 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 (*Group) GetAdministratorsId

func (o *Group) GetAdministratorsId() string

GetAdministratorsId returns the AdministratorsId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetAdministratorsIdOk

func (o *Group) GetAdministratorsIdOk() (*string, bool)

GetAdministratorsIdOk returns a tuple with the AdministratorsId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetApprovalRequired

func (o *Group) GetApprovalRequired() bool

GetApprovalRequired returns the ApprovalRequired field value if set, zero value otherwise.

func (*Group) GetApprovalRequiredOk

func (o *Group) GetApprovalRequiredOk() (*bool, bool)

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

func (*Group) GetArchiveDeadline

func (o *Group) GetArchiveDeadline() time.Time

GetArchiveDeadline returns the ArchiveDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetArchiveDeadlineOk

func (o *Group) GetArchiveDeadlineOk() (*time.Time, bool)

GetArchiveDeadlineOk returns a tuple with the ArchiveDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetAssignedScopes

func (o *Group) GetAssignedScopes() []string

GetAssignedScopes returns the AssignedScopes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetAssignedScopesOk

func (o *Group) GetAssignedScopesOk() ([]string, bool)

GetAssignedScopesOk returns a tuple with the AssignedScopes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetAutoReassign

func (o *Group) GetAutoReassign() bool

GetAutoReassign returns the AutoReassign field value if set, zero value otherwise.

func (*Group) GetAutoReassignOk

func (o *Group) GetAutoReassignOk() (*bool, bool)

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

func (*Group) GetBlocked

func (o *Group) GetBlocked() bool

GetBlocked returns the Blocked field value if set, zero value otherwise.

func (*Group) GetBlockedOk

func (o *Group) GetBlockedOk() (*bool, bool)

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

func (*Group) GetBlockingDeadline

func (o *Group) GetBlockingDeadline() time.Time

GetBlockingDeadline returns the BlockingDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetBlockingDeadlineOk

func (o *Group) GetBlockingDeadlineOk() (*time.Time, bool)

GetBlockingDeadlineOk returns a tuple with the BlockingDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetBlockingReason

func (o *Group) GetBlockingReason() string

GetBlockingReason returns the BlockingReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetBlockingReasonOk

func (o *Group) GetBlockingReasonOk() (*string, bool)

GetBlockingReasonOk returns a tuple with the BlockingReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetBlockingTime

func (o *Group) GetBlockingTime() time.Time

GetBlockingTime returns the BlockingTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetBlockingTimeOk

func (o *Group) GetBlockingTimeOk() (*time.Time, bool)

GetBlockingTimeOk returns a tuple with the BlockingTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetCreationTime

func (o *Group) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Group) GetCreationTimeOk

func (o *Group) GetCreationTimeOk() (*time.Time, bool)

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

func (*Group) GetCriteria

func (o *Group) GetCriteria() map[string]interface{}

GetCriteria returns the Criteria field value if set, zero value otherwise.

func (*Group) GetCriteriaOk

func (o *Group) GetCriteriaOk() (map[string]interface{}, bool)

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

func (*Group) GetDeleteDeadline

func (o *Group) GetDeleteDeadline() time.Time

GetDeleteDeadline returns the DeleteDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetDeleteDeadlineOk

func (o *Group) GetDeleteDeadlineOk() (*time.Time, bool)

GetDeleteDeadlineOk returns a tuple with the DeleteDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetDescription

func (o *Group) GetDescription() string

GetDescription returns the Description field value

func (*Group) GetDescriptionOk

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

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

func (*Group) GetDisabled

func (o *Group) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*Group) GetDisabledOk

func (o *Group) GetDisabledOk() (*bool, bool)

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

func (*Group) GetDisplayName

func (o *Group) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*Group) GetDisplayNameOk

func (o *Group) GetDisplayNameOk() (*string, bool)

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

func (*Group) GetDynamic

func (o *Group) GetDynamic() bool

GetDynamic returns the Dynamic field value if set, zero value otherwise.

func (*Group) GetDynamicGroupType

func (o *Group) GetDynamicGroupType() DynamicGroupType

GetDynamicGroupType returns the DynamicGroupType field value if set, zero value otherwise.

func (*Group) GetDynamicGroupTypeOk

func (o *Group) GetDynamicGroupTypeOk() (*DynamicGroupType, bool)

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

func (*Group) GetDynamicOk

func (o *Group) GetDynamicOk() (*bool, bool)

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

func (*Group) GetEnforceMembershipRestrictions

func (o *Group) GetEnforceMembershipRestrictions() bool

GetEnforceMembershipRestrictions returns the EnforceMembershipRestrictions field value if set, zero value otherwise.

func (*Group) GetEnforceMembershipRestrictionsOk

func (o *Group) GetEnforceMembershipRestrictionsOk() (*bool, bool)

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

func (*Group) GetExpirationDeadline

func (o *Group) GetExpirationDeadline() time.Time

GetExpirationDeadline returns the ExpirationDeadline field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*Group) GetExpirationDeadlineOk

func (o *Group) GetExpirationDeadlineOk() (*time.Time, bool)

GetExpirationDeadlineOk returns a tuple with the ExpirationDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned Deprecated

func (*Group) GetGid

func (o *Group) GetGid() int32

GetGid returns the Gid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetGidOk

func (o *Group) GetGidOk() (*int32, bool)

GetGidOk returns a tuple with the Gid field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetGroupIdentifier

func (o *Group) GetGroupIdentifier() string

GetGroupIdentifier returns the GroupIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetGroupIdentifierOk

func (o *Group) GetGroupIdentifierOk() (*string, bool)

GetGroupIdentifierOk returns a tuple with the GroupIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetGroupModeratorIds

func (o *Group) GetGroupModeratorIds() []string

GetGroupModeratorIds returns the GroupModeratorIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetGroupModeratorIdsOk

func (o *Group) GetGroupModeratorIdsOk() ([]string, bool)

GetGroupModeratorIdsOk returns a tuple with the GroupModeratorIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetId

func (o *Group) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetIdOk

func (o *Group) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetInternalState

func (o *Group) GetInternalState() ResourceState

GetInternalState returns the InternalState field value if set, zero value otherwise.

func (*Group) GetInternalStateOk

func (o *Group) GetInternalStateOk() (*ResourceState, bool)

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

func (*Group) GetIsComputingGroup

func (o *Group) GetIsComputingGroup() bool

GetIsComputingGroup returns the IsComputingGroup field value if set, zero value otherwise.

func (*Group) GetIsComputingGroupOk

func (o *Group) GetIsComputingGroupOk() (*bool, bool)

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

func (*Group) GetLastStateChangeTime

func (o *Group) GetLastStateChangeTime() time.Time

GetLastStateChangeTime returns the LastStateChangeTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetLastStateChangeTimeOk

func (o *Group) GetLastStateChangeTimeOk() (*time.Time, bool)

GetLastStateChangeTimeOk returns a tuple with the LastStateChangeTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetMemberGroupIds

func (o *Group) GetMemberGroupIds() []string

GetMemberGroupIds returns the MemberGroupIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetMemberGroupIdsOk

func (o *Group) GetMemberGroupIdsOk() ([]string, bool)

GetMemberGroupIdsOk returns a tuple with the MemberGroupIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetMemberGroupIdsRecursive

func (o *Group) GetMemberGroupIdsRecursive() []string

GetMemberGroupIdsRecursive returns the MemberGroupIdsRecursive field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetMemberGroupIdsRecursiveOk

func (o *Group) GetMemberGroupIdsRecursiveOk() ([]string, bool)

GetMemberGroupIdsRecursiveOk returns a tuple with the MemberGroupIdsRecursive field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetMemberIdentityIds

func (o *Group) GetMemberIdentityIds() []string

GetMemberIdentityIds returns the MemberIdentityIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetMemberIdentityIdsOk

func (o *Group) GetMemberIdentityIdsOk() ([]string, bool)

GetMemberIdentityIdsOk returns a tuple with the MemberIdentityIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetMemberIdentityIdsRecursive

func (o *Group) GetMemberIdentityIdsRecursive() []string

GetMemberIdentityIdsRecursive returns the MemberIdentityIdsRecursive field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetMemberIdentityIdsRecursiveOk

func (o *Group) GetMemberIdentityIdsRecursiveOk() ([]string, bool)

GetMemberIdentityIdsRecursiveOk returns a tuple with the MemberIdentityIdsRecursive field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetMemberOfIdsRecursive

func (o *Group) GetMemberOfIdsRecursive() []string

GetMemberOfIdsRecursive returns the MemberOfIdsRecursive field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetMemberOfIdsRecursiveOk

func (o *Group) GetMemberOfIdsRecursiveOk() ([]string, bool)

GetMemberOfIdsRecursiveOk returns a tuple with the MemberOfIdsRecursive field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetModeratedGroupIds

func (o *Group) GetModeratedGroupIds() []string

GetModeratedGroupIds returns the ModeratedGroupIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetModeratedGroupIdsOk

func (o *Group) GetModeratedGroupIdsOk() ([]string, bool)

GetModeratedGroupIdsOk returns a tuple with the ModeratedGroupIds field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetOwner

func (o *Group) GetOwner() Identity

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

func (*Group) GetOwnerId

func (o *Group) GetOwnerId() string

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetOwnerIdOk

func (o *Group) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetOwnerOk

func (o *Group) GetOwnerOk() (*Identity, bool)

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 (*Group) GetPendingAction

func (o *Group) GetPendingAction() bool

GetPendingAction returns the PendingAction field value if set, zero value otherwise. Deprecated

func (*Group) GetPendingActionOk

func (o *Group) GetPendingActionOk() (*bool, bool)

GetPendingActionOk returns a tuple with the PendingAction field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Group) GetPrivacyType

func (o *Group) GetPrivacyType() PrivacyType

GetPrivacyType returns the PrivacyType field value if set, zero value otherwise.

func (*Group) GetPrivacyTypeOk

func (o *Group) GetPrivacyTypeOk() (*PrivacyType, bool)

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

func (*Group) GetPublic

func (o *Group) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise.

func (*Group) GetPublicOk

func (o *Group) GetPublicOk() (*bool, bool)

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

func (*Group) GetReassignable

func (o *Group) GetReassignable() bool

GetReassignable returns the Reassignable field value if set, zero value otherwise.

func (*Group) GetReassignableOk

func (o *Group) GetReassignableOk() (*bool, bool)

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

func (*Group) GetRemoveNonActiveMembers

func (o *Group) GetRemoveNonActiveMembers() bool

GetRemoveNonActiveMembers returns the RemoveNonActiveMembers field value if set, zero value otherwise.

func (*Group) GetRemoveNonActiveMembersOk

func (o *Group) GetRemoveNonActiveMembersOk() (*bool, bool)

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

func (*Group) GetResourceCategory

func (o *Group) GetResourceCategory() ResourceCategory

GetResourceCategory returns the ResourceCategory field value if set, zero value otherwise.

func (*Group) GetResourceCategoryOk

func (o *Group) GetResourceCategoryOk() (*ResourceCategory, bool)

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

func (*Group) GetSecurityIssues

func (o *Group) GetSecurityIssues() bool

GetSecurityIssues returns the SecurityIssues field value if set, zero value otherwise.

func (*Group) GetSecurityIssuesOk

func (o *Group) GetSecurityIssuesOk() (*bool, bool)

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

func (*Group) GetSelfSubscriptionType

func (o *Group) GetSelfSubscriptionType() SelfSubscriptionType

GetSelfSubscriptionType returns the SelfSubscriptionType field value if set, zero value otherwise.

func (*Group) GetSelfSubscriptionTypeOk

func (o *Group) GetSelfSubscriptionTypeOk() (*SelfSubscriptionType, bool)

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

func (*Group) GetSource

func (o *Group) GetSource() string

GetSource returns the Source field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetSourceOk

func (o *Group) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) GetState

func (o *Group) GetState() ResourceState

GetState returns the State field value if set, zero value otherwise.

func (*Group) GetStateOk

func (o *Group) GetStateOk() (*ResourceState, bool)

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

func (*Group) GetSyncStatus

func (o *Group) GetSyncStatus() GroupSyncStatus

GetSyncStatus returns the SyncStatus field value

func (*Group) GetSyncStatusOk

func (o *Group) GetSyncStatusOk() (*GroupSyncStatus, bool)

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

func (*Group) GetSyncType

func (o *Group) GetSyncType() GroupSyncType

GetSyncType returns the SyncType field value

func (*Group) GetSyncTypeOk

func (o *Group) GetSyncTypeOk() (*GroupSyncType, bool)

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

func (*Group) GetTopic

func (o *Group) GetTopic() string

GetTopic returns the Topic field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*Group) GetTopicOk

func (o *Group) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned Deprecated

func (*Group) GetValidityLimit

func (o *Group) GetValidityLimit() time.Time

GetValidityLimit returns the ValidityLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Group) GetValidityLimitOk

func (o *Group) GetValidityLimitOk() (*time.Time, bool)

GetValidityLimitOk returns a tuple with the ValidityLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Group) HasAdministratorsId

func (o *Group) HasAdministratorsId() bool

HasAdministratorsId returns a boolean if a field has been set.

func (*Group) HasApprovalRequired

func (o *Group) HasApprovalRequired() bool

HasApprovalRequired returns a boolean if a field has been set.

func (*Group) HasArchiveDeadline

func (o *Group) HasArchiveDeadline() bool

HasArchiveDeadline returns a boolean if a field has been set.

func (*Group) HasAssignedScopes

func (o *Group) HasAssignedScopes() bool

HasAssignedScopes returns a boolean if a field has been set.

func (*Group) HasAutoReassign

func (o *Group) HasAutoReassign() bool

HasAutoReassign returns a boolean if a field has been set.

func (*Group) HasBlocked

func (o *Group) HasBlocked() bool

HasBlocked returns a boolean if a field has been set.

func (*Group) HasBlockingDeadline

func (o *Group) HasBlockingDeadline() bool

HasBlockingDeadline returns a boolean if a field has been set.

func (*Group) HasBlockingReason

func (o *Group) HasBlockingReason() bool

HasBlockingReason returns a boolean if a field has been set.

func (*Group) HasBlockingTime

func (o *Group) HasBlockingTime() bool

HasBlockingTime returns a boolean if a field has been set.

func (*Group) HasCreationTime

func (o *Group) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*Group) HasCriteria

func (o *Group) HasCriteria() bool

HasCriteria returns a boolean if a field has been set.

func (*Group) HasDeleteDeadline

func (o *Group) HasDeleteDeadline() bool

HasDeleteDeadline returns a boolean if a field has been set.

func (*Group) HasDisabled

func (o *Group) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*Group) HasDynamic

func (o *Group) HasDynamic() bool

HasDynamic returns a boolean if a field has been set.

func (*Group) HasDynamicGroupType

func (o *Group) HasDynamicGroupType() bool

HasDynamicGroupType returns a boolean if a field has been set.

func (*Group) HasEnforceMembershipRestrictions

func (o *Group) HasEnforceMembershipRestrictions() bool

HasEnforceMembershipRestrictions returns a boolean if a field has been set.

func (*Group) HasExpirationDeadline

func (o *Group) HasExpirationDeadline() bool

HasExpirationDeadline returns a boolean if a field has been set.

func (*Group) HasGid

func (o *Group) HasGid() bool

HasGid returns a boolean if a field has been set.

func (*Group) HasGroupIdentifier

func (o *Group) HasGroupIdentifier() bool

HasGroupIdentifier returns a boolean if a field has been set.

func (*Group) HasGroupModeratorIds

func (o *Group) HasGroupModeratorIds() bool

HasGroupModeratorIds returns a boolean if a field has been set.

func (*Group) HasId

func (o *Group) HasId() bool

HasId returns a boolean if a field has been set.

func (*Group) HasInternalState

func (o *Group) HasInternalState() bool

HasInternalState returns a boolean if a field has been set.

func (*Group) HasIsComputingGroup

func (o *Group) HasIsComputingGroup() bool

HasIsComputingGroup returns a boolean if a field has been set.

func (*Group) HasLastStateChangeTime

func (o *Group) HasLastStateChangeTime() bool

HasLastStateChangeTime returns a boolean if a field has been set.

func (*Group) HasMemberGroupIds

func (o *Group) HasMemberGroupIds() bool

HasMemberGroupIds returns a boolean if a field has been set.

func (*Group) HasMemberGroupIdsRecursive

func (o *Group) HasMemberGroupIdsRecursive() bool

HasMemberGroupIdsRecursive returns a boolean if a field has been set.

func (*Group) HasMemberIdentityIds

func (o *Group) HasMemberIdentityIds() bool

HasMemberIdentityIds returns a boolean if a field has been set.

func (*Group) HasMemberIdentityIdsRecursive

func (o *Group) HasMemberIdentityIdsRecursive() bool

HasMemberIdentityIdsRecursive returns a boolean if a field has been set.

func (*Group) HasMemberOfIdsRecursive

func (o *Group) HasMemberOfIdsRecursive() bool

HasMemberOfIdsRecursive returns a boolean if a field has been set.

func (*Group) HasModeratedGroupIds

func (o *Group) HasModeratedGroupIds() bool

HasModeratedGroupIds returns a boolean if a field has been set.

func (*Group) HasOwner

func (o *Group) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Group) HasOwnerId

func (o *Group) HasOwnerId() bool

HasOwnerId returns a boolean if a field has been set.

func (*Group) HasPendingAction

func (o *Group) HasPendingAction() bool

HasPendingAction returns a boolean if a field has been set.

func (*Group) HasPrivacyType

func (o *Group) HasPrivacyType() bool

HasPrivacyType returns a boolean if a field has been set.

func (*Group) HasPublic

func (o *Group) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (*Group) HasReassignable

func (o *Group) HasReassignable() bool

HasReassignable returns a boolean if a field has been set.

func (*Group) HasRemoveNonActiveMembers

func (o *Group) HasRemoveNonActiveMembers() bool

HasRemoveNonActiveMembers returns a boolean if a field has been set.

func (*Group) HasResourceCategory

func (o *Group) HasResourceCategory() bool

HasResourceCategory returns a boolean if a field has been set.

func (*Group) HasSecurityIssues

func (o *Group) HasSecurityIssues() bool

HasSecurityIssues returns a boolean if a field has been set.

func (*Group) HasSelfSubscriptionType

func (o *Group) HasSelfSubscriptionType() bool

HasSelfSubscriptionType returns a boolean if a field has been set.

func (*Group) HasSource

func (o *Group) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*Group) HasState

func (o *Group) HasState() bool

HasState returns a boolean if a field has been set.

func (*Group) HasTopic

func (o *Group) HasTopic() bool

HasTopic returns a boolean if a field has been set.

func (*Group) HasValidityLimit

func (o *Group) HasValidityLimit() bool

HasValidityLimit returns a boolean if a field has been set.

func (Group) MarshalJSON

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

func (*Group) SetAdministratorsId

func (o *Group) SetAdministratorsId(v string)

SetAdministratorsId gets a reference to the given NullableString and assigns it to the AdministratorsId field.

func (*Group) SetAdministratorsIdNil

func (o *Group) SetAdministratorsIdNil()

SetAdministratorsIdNil sets the value for AdministratorsId to be an explicit nil

func (*Group) SetApprovalRequired

func (o *Group) SetApprovalRequired(v bool)

SetApprovalRequired gets a reference to the given bool and assigns it to the ApprovalRequired field.

func (*Group) SetArchiveDeadline

func (o *Group) SetArchiveDeadline(v time.Time)

SetArchiveDeadline gets a reference to the given NullableTime and assigns it to the ArchiveDeadline field.

func (*Group) SetArchiveDeadlineNil

func (o *Group) SetArchiveDeadlineNil()

SetArchiveDeadlineNil sets the value for ArchiveDeadline to be an explicit nil

func (*Group) SetAssignedScopes

func (o *Group) SetAssignedScopes(v []string)

SetAssignedScopes gets a reference to the given []string and assigns it to the AssignedScopes field.

func (*Group) SetAutoReassign

func (o *Group) SetAutoReassign(v bool)

SetAutoReassign gets a reference to the given bool and assigns it to the AutoReassign field.

func (*Group) SetBlocked

func (o *Group) SetBlocked(v bool)

SetBlocked gets a reference to the given bool and assigns it to the Blocked field.

func (*Group) SetBlockingDeadline

func (o *Group) SetBlockingDeadline(v time.Time)

SetBlockingDeadline gets a reference to the given NullableTime and assigns it to the BlockingDeadline field.

func (*Group) SetBlockingDeadlineNil

func (o *Group) SetBlockingDeadlineNil()

SetBlockingDeadlineNil sets the value for BlockingDeadline to be an explicit nil

func (*Group) SetBlockingReason

func (o *Group) SetBlockingReason(v string)

SetBlockingReason gets a reference to the given NullableString and assigns it to the BlockingReason field.

func (*Group) SetBlockingReasonNil

func (o *Group) SetBlockingReasonNil()

SetBlockingReasonNil sets the value for BlockingReason to be an explicit nil

func (*Group) SetBlockingTime

func (o *Group) SetBlockingTime(v time.Time)

SetBlockingTime gets a reference to the given NullableTime and assigns it to the BlockingTime field.

func (*Group) SetBlockingTimeNil

func (o *Group) SetBlockingTimeNil()

SetBlockingTimeNil sets the value for BlockingTime to be an explicit nil

func (*Group) SetCreationTime

func (o *Group) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*Group) SetCriteria

func (o *Group) SetCriteria(v map[string]interface{})

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

func (*Group) SetDeleteDeadline

func (o *Group) SetDeleteDeadline(v time.Time)

SetDeleteDeadline gets a reference to the given NullableTime and assigns it to the DeleteDeadline field.

func (*Group) SetDeleteDeadlineNil

func (o *Group) SetDeleteDeadlineNil()

SetDeleteDeadlineNil sets the value for DeleteDeadline to be an explicit nil

func (*Group) SetDescription

func (o *Group) SetDescription(v string)

SetDescription sets field value

func (*Group) SetDisabled

func (o *Group) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*Group) SetDisplayName

func (o *Group) SetDisplayName(v string)

SetDisplayName sets field value

func (*Group) SetDynamic

func (o *Group) SetDynamic(v bool)

SetDynamic gets a reference to the given bool and assigns it to the Dynamic field.

func (*Group) SetDynamicGroupType

func (o *Group) SetDynamicGroupType(v DynamicGroupType)

SetDynamicGroupType gets a reference to the given DynamicGroupType and assigns it to the DynamicGroupType field.

func (*Group) SetEnforceMembershipRestrictions

func (o *Group) SetEnforceMembershipRestrictions(v bool)

SetEnforceMembershipRestrictions gets a reference to the given bool and assigns it to the EnforceMembershipRestrictions field.

func (*Group) SetExpirationDeadline

func (o *Group) SetExpirationDeadline(v time.Time)

SetExpirationDeadline gets a reference to the given NullableTime and assigns it to the ExpirationDeadline field. Deprecated

func (*Group) SetExpirationDeadlineNil

func (o *Group) SetExpirationDeadlineNil()

SetExpirationDeadlineNil sets the value for ExpirationDeadline to be an explicit nil

func (*Group) SetGid

func (o *Group) SetGid(v int32)

SetGid gets a reference to the given NullableInt32 and assigns it to the Gid field.

func (*Group) SetGidNil

func (o *Group) SetGidNil()

SetGidNil sets the value for Gid to be an explicit nil

func (*Group) SetGroupIdentifier

func (o *Group) SetGroupIdentifier(v string)

SetGroupIdentifier gets a reference to the given NullableString and assigns it to the GroupIdentifier field.

func (*Group) SetGroupIdentifierNil

func (o *Group) SetGroupIdentifierNil()

SetGroupIdentifierNil sets the value for GroupIdentifier to be an explicit nil

func (*Group) SetGroupModeratorIds

func (o *Group) SetGroupModeratorIds(v []string)

SetGroupModeratorIds gets a reference to the given []string and assigns it to the GroupModeratorIds field.

func (*Group) SetId

func (o *Group) SetId(v string)

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

func (*Group) SetIdNil

func (o *Group) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Group) SetInternalState

func (o *Group) SetInternalState(v ResourceState)

SetInternalState gets a reference to the given ResourceState and assigns it to the InternalState field.

func (*Group) SetIsComputingGroup

func (o *Group) SetIsComputingGroup(v bool)

SetIsComputingGroup gets a reference to the given bool and assigns it to the IsComputingGroup field.

func (*Group) SetLastStateChangeTime

func (o *Group) SetLastStateChangeTime(v time.Time)

SetLastStateChangeTime gets a reference to the given NullableTime and assigns it to the LastStateChangeTime field.

func (*Group) SetLastStateChangeTimeNil

func (o *Group) SetLastStateChangeTimeNil()

SetLastStateChangeTimeNil sets the value for LastStateChangeTime to be an explicit nil

func (*Group) SetMemberGroupIds

func (o *Group) SetMemberGroupIds(v []string)

SetMemberGroupIds gets a reference to the given []string and assigns it to the MemberGroupIds field.

func (*Group) SetMemberGroupIdsRecursive

func (o *Group) SetMemberGroupIdsRecursive(v []string)

SetMemberGroupIdsRecursive gets a reference to the given []string and assigns it to the MemberGroupIdsRecursive field.

func (*Group) SetMemberIdentityIds

func (o *Group) SetMemberIdentityIds(v []string)

SetMemberIdentityIds gets a reference to the given []string and assigns it to the MemberIdentityIds field.

func (*Group) SetMemberIdentityIdsRecursive

func (o *Group) SetMemberIdentityIdsRecursive(v []string)

SetMemberIdentityIdsRecursive gets a reference to the given []string and assigns it to the MemberIdentityIdsRecursive field.

func (*Group) SetMemberOfIdsRecursive

func (o *Group) SetMemberOfIdsRecursive(v []string)

SetMemberOfIdsRecursive gets a reference to the given []string and assigns it to the MemberOfIdsRecursive field.

func (*Group) SetModeratedGroupIds

func (o *Group) SetModeratedGroupIds(v []string)

SetModeratedGroupIds gets a reference to the given []string and assigns it to the ModeratedGroupIds field.

func (*Group) SetOwner

func (o *Group) SetOwner(v Identity)

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

func (*Group) SetOwnerId

func (o *Group) SetOwnerId(v string)

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*Group) SetOwnerIdNil

func (o *Group) SetOwnerIdNil()

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (*Group) SetPendingAction

func (o *Group) SetPendingAction(v bool)

SetPendingAction gets a reference to the given bool and assigns it to the PendingAction field. Deprecated

func (*Group) SetPrivacyType

func (o *Group) SetPrivacyType(v PrivacyType)

SetPrivacyType gets a reference to the given PrivacyType and assigns it to the PrivacyType field.

func (*Group) SetPublic

func (o *Group) SetPublic(v bool)

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (*Group) SetReassignable

func (o *Group) SetReassignable(v bool)

SetReassignable gets a reference to the given bool and assigns it to the Reassignable field.

func (*Group) SetRemoveNonActiveMembers

func (o *Group) SetRemoveNonActiveMembers(v bool)

SetRemoveNonActiveMembers gets a reference to the given bool and assigns it to the RemoveNonActiveMembers field.

func (*Group) SetResourceCategory

func (o *Group) SetResourceCategory(v ResourceCategory)

SetResourceCategory gets a reference to the given ResourceCategory and assigns it to the ResourceCategory field.

func (*Group) SetSecurityIssues

func (o *Group) SetSecurityIssues(v bool)

SetSecurityIssues gets a reference to the given bool and assigns it to the SecurityIssues field.

func (*Group) SetSelfSubscriptionType

func (o *Group) SetSelfSubscriptionType(v SelfSubscriptionType)

SetSelfSubscriptionType gets a reference to the given SelfSubscriptionType and assigns it to the SelfSubscriptionType field.

func (*Group) SetSource

func (o *Group) SetSource(v string)

SetSource gets a reference to the given NullableString and assigns it to the Source field.

func (*Group) SetSourceNil

func (o *Group) SetSourceNil()

SetSourceNil sets the value for Source to be an explicit nil

func (*Group) SetState

func (o *Group) SetState(v ResourceState)

SetState gets a reference to the given ResourceState and assigns it to the State field.

func (*Group) SetSyncStatus

func (o *Group) SetSyncStatus(v GroupSyncStatus)

SetSyncStatus sets field value

func (*Group) SetSyncType

func (o *Group) SetSyncType(v GroupSyncType)

SetSyncType sets field value

func (*Group) SetTopic

func (o *Group) SetTopic(v string)

SetTopic gets a reference to the given NullableString and assigns it to the Topic field. Deprecated

func (*Group) SetTopicNil

func (o *Group) SetTopicNil()

SetTopicNil sets the value for Topic to be an explicit nil

func (*Group) SetValidityLimit

func (o *Group) SetValidityLimit(v time.Time)

SetValidityLimit gets a reference to the given NullableTime and assigns it to the ValidityLimit field.

func (*Group) SetValidityLimitNil

func (o *Group) SetValidityLimitNil()

SetValidityLimitNil sets the value for ValidityLimit to be an explicit nil

func (Group) ToMap

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

func (*Group) UnmarshalJSON

func (o *Group) UnmarshalJSON(data []byte) (err error)

func (*Group) UnsetAdministratorsId

func (o *Group) UnsetAdministratorsId()

UnsetAdministratorsId ensures that no value is present for AdministratorsId, not even an explicit nil

func (*Group) UnsetArchiveDeadline

func (o *Group) UnsetArchiveDeadline()

UnsetArchiveDeadline ensures that no value is present for ArchiveDeadline, not even an explicit nil

func (*Group) UnsetBlockingDeadline

func (o *Group) UnsetBlockingDeadline()

UnsetBlockingDeadline ensures that no value is present for BlockingDeadline, not even an explicit nil

func (*Group) UnsetBlockingReason

func (o *Group) UnsetBlockingReason()

UnsetBlockingReason ensures that no value is present for BlockingReason, not even an explicit nil

func (*Group) UnsetBlockingTime

func (o *Group) UnsetBlockingTime()

UnsetBlockingTime ensures that no value is present for BlockingTime, not even an explicit nil

func (*Group) UnsetDeleteDeadline

func (o *Group) UnsetDeleteDeadline()

UnsetDeleteDeadline ensures that no value is present for DeleteDeadline, not even an explicit nil

func (*Group) UnsetExpirationDeadline

func (o *Group) UnsetExpirationDeadline()

UnsetExpirationDeadline ensures that no value is present for ExpirationDeadline, not even an explicit nil

func (*Group) UnsetGid

func (o *Group) UnsetGid()

UnsetGid ensures that no value is present for Gid, not even an explicit nil

func (*Group) UnsetGroupIdentifier

func (o *Group) UnsetGroupIdentifier()

UnsetGroupIdentifier ensures that no value is present for GroupIdentifier, not even an explicit nil

func (*Group) UnsetId

func (o *Group) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*Group) UnsetLastStateChangeTime

func (o *Group) UnsetLastStateChangeTime()

UnsetLastStateChangeTime ensures that no value is present for LastStateChangeTime, not even an explicit nil

func (*Group) UnsetOwnerId

func (o *Group) UnsetOwnerId()

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

func (*Group) UnsetSource

func (o *Group) UnsetSource()

UnsetSource ensures that no value is present for Source, not even an explicit nil

func (*Group) UnsetTopic

func (o *Group) UnsetTopic()

UnsetTopic ensures that no value is present for Topic, not even an explicit nil

func (*Group) UnsetValidityLimit

func (o *Group) UnsetValidityLimit()

UnsetValidityLimit ensures that no value is present for ValidityLimit, not even an explicit nil

type GroupAPIService

type GroupAPIService service

GroupAPIService GroupAPI service

func (*GroupAPIService) GroupBulkDelete

func (a *GroupAPIService) GroupBulkDelete(ctx context.Context) GroupBulkDeleteRequest

GroupBulkDelete Deletes a batch of groups Restricted to group administrators.

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

func (*GroupAPIService) GroupBulkDeleteExecute

Execute executes the request

@return JObjectBulkOperationResultEnumerateEnvelope

func (*GroupAPIService) GroupBulkPatch

func (a *GroupAPIService) GroupBulkPatch(ctx context.Context) GroupBulkPatchRequest

GroupBulkPatch Updates a batch of (Guid, Group) tuples. Restricted to group administrators.

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

func (*GroupAPIService) GroupBulkPatchExecute

Execute executes the request

@return JObjectBulkOperationResultEnumerateEnvelope

func (*GroupAPIService) GroupBulkPost

func (a *GroupAPIService) GroupBulkPost(ctx context.Context) GroupBulkPostRequest

GroupBulkPost Creates a batch of groups. Restricted to group administrators.

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

func (*GroupAPIService) GroupBulkPostExecute

Execute executes the request

@return JObjectBulkOperationResultEnumerateEnvelope

func (*GroupAPIService) GroupBulkPut

func (a *GroupAPIService) GroupBulkPut(ctx context.Context) GroupBulkPutRequest

GroupBulkPut Updates a batch of (Guid, Group) tuples. Restricted to group administrators.

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

func (*GroupAPIService) GroupBulkPutExecute

Execute executes the request

@return JObjectBulkOperationResultEnumerateEnvelope

func (*GroupAPIService) GroupCriteriaGet

func (a *GroupAPIService) GroupCriteriaGet(ctx context.Context) GroupCriteriaGetRequest

GroupCriteriaGet Get the dynamic criteria that users can use to define groups

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

func (*GroupAPIService) GroupCriteriaGetExecute

Execute executes the request

@return CriterionEnumerateEnvelope

func (*GroupAPIService) GroupGet

GroupGet Gets all the groups.

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

func (*GroupAPIService) GroupGetExecute

Execute executes the request

@return GroupEnumerateEnvelope

func (*GroupAPIService) GroupGetbyscopeScopeNameGet

func (a *GroupAPIService) GroupGetbyscopeScopeNameGet(ctx context.Context, scopeName string) GroupGetbyscopeScopeNameGetRequest

GroupGetbyscopeScopeNameGet Gets all the group for a specific scope.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scopeName Name of the scope.
@return GroupGetbyscopeScopeNameGetRequest

func (*GroupAPIService) GroupGetbyscopeScopeNameGetExecute

func (a *GroupAPIService) GroupGetbyscopeScopeNameGetExecute(r GroupGetbyscopeScopeNameGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

func (*GroupAPIService) GroupIdActivatePut

func (a *GroupAPIService) GroupIdActivatePut(ctx context.Context, id string) GroupIdActivatePutRequest

GroupIdActivatePut Activates the resource, i.e. it changes the state from Cern.AuthorizationService.Model.DataTypes.ResourceState.Created to Cern.AuthorizationService.Model.DataTypes.ResourceState.Active.

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

func (*GroupAPIService) GroupIdActivatePutExecute

func (a *GroupAPIService) GroupIdActivatePutExecute(r GroupIdActivatePutRequest) (*http.Response, error)

Execute executes the request

func (*GroupAPIService) GroupIdApplicationApplicationidDelete

func (a *GroupAPIService) GroupIdApplicationApplicationidDelete(ctx context.Context, id string, applicationid string) GroupIdApplicationApplicationidDeleteRequest

GroupIdApplicationApplicationidDelete Remove authorized application for group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@param applicationid The application Id or Unique Identifier.
@return GroupIdApplicationApplicationidDeleteRequest

func (*GroupAPIService) GroupIdApplicationApplicationidDeleteExecute

Execute executes the request

@return GroupAuthorizationEnumerateEnvelope

func (*GroupAPIService) GroupIdApplicationApplicationidPost

func (a *GroupAPIService) GroupIdApplicationApplicationidPost(ctx context.Context, id string, applicationid string) GroupIdApplicationApplicationidPostRequest

GroupIdApplicationApplicationidPost Authorize the application to use this group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@param applicationid The application Id or Unique Identifier.
@return GroupIdApplicationApplicationidPostRequest

func (*GroupAPIService) GroupIdApplicationApplicationidPostExecute

func (a *GroupAPIService) GroupIdApplicationApplicationidPostExecute(r GroupIdApplicationApplicationidPostRequest) (*GroupAuthorizationEnvelope, *http.Response, error)

Execute executes the request

@return GroupAuthorizationEnvelope

func (*GroupAPIService) GroupIdApplicationGet

func (a *GroupAPIService) GroupIdApplicationGet(ctx context.Context, id string) GroupIdApplicationGetRequest

GroupIdApplicationGet Get authorized application list for this group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdApplicationGetRequest

func (*GroupAPIService) GroupIdApplicationGetExecute

Execute executes the request

@return ApplicationEnumerateEnvelope

func (*GroupAPIService) GroupIdDelete

func (a *GroupAPIService) GroupIdDelete(ctx context.Context, id string) GroupIdDeleteRequest

GroupIdDelete Delete group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdDeleteRequest

func (*GroupAPIService) GroupIdDeleteExecute

func (a *GroupAPIService) GroupIdDeleteExecute(r GroupIdDeleteRequest) (*GroupEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnvelope

func (*GroupAPIService) GroupIdExtendDeadlinesPut

func (a *GroupAPIService) GroupIdExtendDeadlinesPut(ctx context.Context, id string) GroupIdExtendDeadlinesPutRequest

GroupIdExtendDeadlinesPut Extends the blocking, archive and expiration deadlines of a resource.

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

func (*GroupAPIService) GroupIdExtendDeadlinesPutExecute

func (a *GroupAPIService) GroupIdExtendDeadlinesPutExecute(r GroupIdExtendDeadlinesPutRequest) (*http.Response, error)

Execute executes the request

func (*GroupAPIService) GroupIdGet

func (a *GroupAPIService) GroupIdGet(ctx context.Context, id string) GroupIdGetRequest

GroupIdGet Get the specified group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdGetRequest

func (*GroupAPIService) GroupIdGetExecute

func (a *GroupAPIService) GroupIdGetExecute(r GroupIdGetRequest) (*GroupEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnvelope

func (*GroupAPIService) GroupIdMembergroupsDelete

func (a *GroupAPIService) GroupIdMembergroupsDelete(ctx context.Context, id string) GroupIdMembergroupsDeleteRequest

GroupIdMembergroupsDelete Remove member group from group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembergroupsDeleteRequest

Deprecated

func (*GroupAPIService) GroupIdMembergroupsDeleteExecute

Execute executes the request

@return GroupMembershipEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMembergroupsGet

func (a *GroupAPIService) GroupIdMembergroupsGet(ctx context.Context, id string) GroupIdMembergroupsGetRequest

GroupIdMembergroupsGet Get the group member groups.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembergroupsGetRequest

Deprecated

func (*GroupAPIService) GroupIdMembergroupsGetExecute

func (a *GroupAPIService) GroupIdMembergroupsGetExecute(r GroupIdMembergroupsGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMembergroupsGroupIdPut

func (a *GroupAPIService) GroupIdMembergroupsGroupIdPut(ctx context.Context, id string, groupId string) GroupIdMembergroupsGroupIdPutRequest

GroupIdMembergroupsGroupIdPut Update member group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@param groupId The subGroup Id or Unique Identifier.
@return GroupIdMembergroupsGroupIdPutRequest

Deprecated

func (*GroupAPIService) GroupIdMembergroupsGroupIdPutExecute

func (a *GroupAPIService) GroupIdMembergroupsGroupIdPutExecute(r GroupIdMembergroupsGroupIdPutRequest) (*GroupMembership, *http.Response, error)

Execute executes the request

@return GroupMembership

Deprecated

func (*GroupAPIService) GroupIdMembergroupsPost

func (a *GroupAPIService) GroupIdMembergroupsPost(ctx context.Context, id string) GroupIdMembergroupsPostRequest

GroupIdMembergroupsPost Add member group to group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembergroupsPostRequest

Deprecated

func (*GroupAPIService) GroupIdMembergroupsPostExecute

Execute executes the request

@return GroupMembershipEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMembergroupsPrecomputedGet

func (a *GroupAPIService) GroupIdMembergroupsPrecomputedGet(ctx context.Context, id string) GroupIdMembergroupsPrecomputedGetRequest

GroupIdMembergroupsPrecomputedGet Get the group member groups from the precomputed recursive tables.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembergroupsPrecomputedGetRequest

Deprecated

func (*GroupAPIService) GroupIdMembergroupsPrecomputedGetExecute

func (a *GroupAPIService) GroupIdMembergroupsPrecomputedGetExecute(r GroupIdMembergroupsPrecomputedGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMembergroupsRecursiveGet

func (a *GroupAPIService) GroupIdMembergroupsRecursiveGet(ctx context.Context, id string) GroupIdMembergroupsRecursiveGetRequest

GroupIdMembergroupsRecursiveGet Get the group member groups from the precomputed recursive tables.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembergroupsRecursiveGetRequest

Deprecated

func (*GroupAPIService) GroupIdMembergroupsRecursiveGetExecute

func (a *GroupAPIService) GroupIdMembergroupsRecursiveGetExecute(r GroupIdMembergroupsRecursiveGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesDelete

func (a *GroupAPIService) GroupIdMemberidentitiesDelete(ctx context.Context, id string) GroupIdMemberidentitiesDeleteRequest

GroupIdMemberidentitiesDelete Remove members from group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMemberidentitiesDeleteRequest

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesDeleteExecute

Execute executes the request

@return IdentityMembershipEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesExternalPost

func (a *GroupAPIService) GroupIdMemberidentitiesExternalPost(ctx context.Context, id string) GroupIdMemberidentitiesExternalPostRequest

GroupIdMemberidentitiesExternalPost Add members to group by email.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMemberidentitiesExternalPostRequest

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesExternalPostExecute

Execute executes the request

@return IdentityMembershipEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesGet

func (a *GroupAPIService) GroupIdMemberidentitiesGet(ctx context.Context, id string) GroupIdMemberidentitiesGetRequest

GroupIdMemberidentitiesGet Get the group members.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMemberidentitiesGetRequest

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesGetExecute

func (a *GroupAPIService) GroupIdMemberidentitiesGetExecute(r GroupIdMemberidentitiesGetRequest) (*IdentityEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesPost

func (a *GroupAPIService) GroupIdMemberidentitiesPost(ctx context.Context, id string) GroupIdMemberidentitiesPostRequest

GroupIdMemberidentitiesPost Add members to group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMemberidentitiesPostRequest

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesPostExecute

Execute executes the request

@return IdentityMembershipEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesPrecomputedGet

func (a *GroupAPIService) GroupIdMemberidentitiesPrecomputedGet(ctx context.Context, id string) GroupIdMemberidentitiesPrecomputedGetRequest

GroupIdMemberidentitiesPrecomputedGet Get the group members from the precomputed recursive memberships.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMemberidentitiesPrecomputedGetRequest

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesPrecomputedGetExecute

func (a *GroupAPIService) GroupIdMemberidentitiesPrecomputedGetExecute(r GroupIdMemberidentitiesPrecomputedGetRequest) (*IdentityEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesRecursiveGet

func (a *GroupAPIService) GroupIdMemberidentitiesRecursiveGet(ctx context.Context, id string) GroupIdMemberidentitiesRecursiveGetRequest

GroupIdMemberidentitiesRecursiveGet Get the group members from the precomputed recursive memberships.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMemberidentitiesRecursiveGetRequest

Deprecated

func (*GroupAPIService) GroupIdMemberidentitiesRecursiveGetExecute

func (a *GroupAPIService) GroupIdMemberidentitiesRecursiveGetExecute(r GroupIdMemberidentitiesRecursiveGetRequest) (*IdentityEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnumerateEnvelope

Deprecated

func (*GroupAPIService) GroupIdMembersCsvGet

func (a *GroupAPIService) GroupIdMembersCsvGet(ctx context.Context, id string) GroupIdMembersCsvGetRequest

GroupIdMembersCsvGet Get the group members (groups and identities) for the given Cern.AuthorizationService.Model.Group as a CSV sheet.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersCsvGetRequest

func (*GroupAPIService) GroupIdMembersCsvGetExecute

func (a *GroupAPIService) GroupIdMembersCsvGetExecute(r GroupIdMembersCsvGetRequest) (*http.Response, error)

Execute executes the request

func (*GroupAPIService) GroupIdMembersCsvPut

func (a *GroupAPIService) GroupIdMembersCsvPut(ctx context.Context, id string) GroupIdMembersCsvPutRequest

GroupIdMembersCsvPut Updates all members of a given group using a CSV sheet.

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

func (*GroupAPIService) GroupIdMembersCsvPutExecute

func (a *GroupAPIService) GroupIdMembersCsvPutExecute(r GroupIdMembersCsvPutRequest) (*GroupMemberTask, *http.Response, error)

Execute executes the request

@return GroupMemberTask

func (*GroupAPIService) GroupIdMembersGroupsDelete

func (a *GroupAPIService) GroupIdMembersGroupsDelete(ctx context.Context, id string) GroupIdMembersGroupsDeleteRequest

GroupIdMembersGroupsDelete Removes groups as members for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersGroupsDeleteRequest

func (*GroupAPIService) GroupIdMembersGroupsDeleteExecute

Execute executes the request

@return GroupMembershipInfoEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersGroupsGet

func (a *GroupAPIService) GroupIdMembersGroupsGet(ctx context.Context, id string) GroupIdMembersGroupsGetRequest

GroupIdMembersGroupsGet Get the group members (groups) for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersGroupsGetRequest

func (*GroupAPIService) GroupIdMembersGroupsGetExecute

func (a *GroupAPIService) GroupIdMembersGroupsGetExecute(r GroupIdMembersGroupsGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersGroupsGroupIdDelete

func (a *GroupAPIService) GroupIdMembersGroupsGroupIdDelete(ctx context.Context, id string, groupId string) GroupIdMembersGroupsGroupIdDeleteRequest

GroupIdMembersGroupsGroupIdDelete Removes an group for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@param groupId The member to be removed
@return GroupIdMembersGroupsGroupIdDeleteRequest

func (*GroupAPIService) GroupIdMembersGroupsGroupIdDeleteExecute

Execute executes the request

@return GroupMembershipInfoEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersGroupsGroupIdPut

func (a *GroupAPIService) GroupIdMembersGroupsGroupIdPut(ctx context.Context, id string, groupId string) GroupIdMembersGroupsGroupIdPutRequest

GroupIdMembersGroupsGroupIdPut Update the comment associated to a given Cern.AuthorizationService.Model.Group as a member of the given Cern.AuthorizationService.Model.Group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@param groupId The subGroup Id or Unique Identifier.
@return GroupIdMembersGroupsGroupIdPutRequest

func (*GroupAPIService) GroupIdMembersGroupsGroupIdPutExecute

func (a *GroupAPIService) GroupIdMembersGroupsGroupIdPutExecute(r GroupIdMembersGroupsGroupIdPutRequest) (*GroupMembership, *http.Response, error)

Execute executes the request

@return GroupMembership

func (*GroupAPIService) GroupIdMembersGroupsPost

func (a *GroupAPIService) GroupIdMembersGroupsPost(ctx context.Context, id string) GroupIdMembersGroupsPostRequest

GroupIdMembersGroupsPost Add groups as members to the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersGroupsPostRequest

func (*GroupAPIService) GroupIdMembersGroupsPostExecute

Execute executes the request

@return GroupMembershipEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersGroupsRecursiveGet

func (a *GroupAPIService) GroupIdMembersGroupsRecursiveGet(ctx context.Context, id string) GroupIdMembersGroupsRecursiveGetRequest

GroupIdMembersGroupsRecursiveGet Get the group member groups (groups), including membership through subgroups, for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersGroupsRecursiveGetRequest

func (*GroupAPIService) GroupIdMembersGroupsRecursiveGetExecute

func (a *GroupAPIService) GroupIdMembersGroupsRecursiveGetExecute(r GroupIdMembersGroupsRecursiveGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersGroupsWithCommentsGet

func (a *GroupAPIService) GroupIdMembersGroupsWithCommentsGet(ctx context.Context, id string) GroupIdMembersGroupsWithCommentsGetRequest

GroupIdMembersGroupsWithCommentsGet Get the group members (identities), as GroupInfo with comments, for the given Cern.AuthorizationService.Model.Group. Returns a list of Cern.AuthorizationService.Model.ApiObjects.GroupMembershipInfo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersGroupsWithCommentsGetRequest

func (*GroupAPIService) GroupIdMembersGroupsWithCommentsGetExecute

Execute executes the request

@return GroupMembershipInfoEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersIdentitiesDelete

func (a *GroupAPIService) GroupIdMembersIdentitiesDelete(ctx context.Context, id string) GroupIdMembersIdentitiesDeleteRequest

GroupIdMembersIdentitiesDelete Removes identities as members for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersIdentitiesDeleteRequest

func (*GroupAPIService) GroupIdMembersIdentitiesDeleteExecute

Execute executes the request

@return IdentityMembershipInfoEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersIdentitiesGet

func (a *GroupAPIService) GroupIdMembersIdentitiesGet(ctx context.Context, id string) GroupIdMembersIdentitiesGetRequest

GroupIdMembersIdentitiesGet Get the group members (identities) for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersIdentitiesGetRequest

func (*GroupAPIService) GroupIdMembersIdentitiesGetExecute

func (a *GroupAPIService) GroupIdMembersIdentitiesGetExecute(r GroupIdMembersIdentitiesGetRequest) (*IdentityEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersIdentitiesIdentityIdDelete

func (a *GroupAPIService) GroupIdMembersIdentitiesIdentityIdDelete(ctx context.Context, id string, identityId string) GroupIdMembersIdentitiesIdentityIdDeleteRequest

GroupIdMembersIdentitiesIdentityIdDelete Removes an identity for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@param identityId The identity Id or UPN.
@return GroupIdMembersIdentitiesIdentityIdDeleteRequest

func (*GroupAPIService) GroupIdMembersIdentitiesIdentityIdDeleteExecute

Execute executes the request

@return IdentityMembershipInfoEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersIdentitiesIdentityIdPut

func (a *GroupAPIService) GroupIdMembersIdentitiesIdentityIdPut(ctx context.Context, id string, identityId string) GroupIdMembersIdentitiesIdentityIdPutRequest

GroupIdMembersIdentitiesIdentityIdPut Update the comment associated to a given Cern.AuthorizationService.Model.Identity as a member of the given Cern.AuthorizationService.Model.Group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@param identityId The identity Id or UPN.
@return GroupIdMembersIdentitiesIdentityIdPutRequest

func (*GroupAPIService) GroupIdMembersIdentitiesIdentityIdPutExecute

func (a *GroupAPIService) GroupIdMembersIdentitiesIdentityIdPutExecute(r GroupIdMembersIdentitiesIdentityIdPutRequest) (*IdentityMembershipEnvelope, *http.Response, error)

Execute executes the request

@return IdentityMembershipEnvelope

func (*GroupAPIService) GroupIdMembersIdentitiesPost

func (a *GroupAPIService) GroupIdMembersIdentitiesPost(ctx context.Context, id string) GroupIdMembersIdentitiesPostRequest

GroupIdMembersIdentitiesPost Add identities as member to the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersIdentitiesPostRequest

func (*GroupAPIService) GroupIdMembersIdentitiesPostExecute

Execute executes the request

@return IdentityMembershipEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersIdentitiesRecursiveGet

func (a *GroupAPIService) GroupIdMembersIdentitiesRecursiveGet(ctx context.Context, id string) GroupIdMembersIdentitiesRecursiveGetRequest

GroupIdMembersIdentitiesRecursiveGet Get the group members (identities), including membership through subgroups, for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersIdentitiesRecursiveGetRequest

func (*GroupAPIService) GroupIdMembersIdentitiesRecursiveGetExecute

func (a *GroupAPIService) GroupIdMembersIdentitiesRecursiveGetExecute(r GroupIdMembersIdentitiesRecursiveGetRequest) (*IdentityEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersIdentitiesWithCommentsGet

func (a *GroupAPIService) GroupIdMembersIdentitiesWithCommentsGet(ctx context.Context, id string) GroupIdMembersIdentitiesWithCommentsGetRequest

GroupIdMembersIdentitiesWithCommentsGet Get the group members (identities), as identityInfo with comments, for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersIdentitiesWithCommentsGetRequest

func (*GroupAPIService) GroupIdMembersIdentitiesWithCommentsGetExecute

Execute executes the request

@return IdentityMembershipInfoEnumerateEnvelope

func (*GroupAPIService) GroupIdMembersPost

func (a *GroupAPIService) GroupIdMembersPost(ctx context.Context, id string) GroupIdMembersPostRequest

GroupIdMembersPost Creates memberships for the given Cern.AuthorizationService.Model.Group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembersPostRequest

func (*GroupAPIService) GroupIdMembersPostExecute

func (a *GroupAPIService) GroupIdMembersPostExecute(r GroupIdMembersPostRequest) (*GroupMemberEnvelope, *http.Response, error)

Execute executes the request

@return GroupMemberEnvelope

func (*GroupAPIService) GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDelete

func (a *GroupAPIService) GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDelete(ctx context.Context, id string, sourceGroupId string) GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDeleteRequest

GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDelete Remove group membership restriction for the given parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier of the group that was restricted.
@param sourceGroupId id of the source group
@return GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDeleteRequest

func (*GroupAPIService) GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDeleteExecute

func (a *GroupAPIService) GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDeleteExecute(r GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDeleteRequest) (*GroupMembershipRestrictionEnvelope, *http.Response, error)

Execute executes the request

@return GroupMembershipRestrictionEnvelope

func (*GroupAPIService) GroupIdMembershipRestrictionsSourceGroupsGet

func (a *GroupAPIService) GroupIdMembershipRestrictionsSourceGroupsGet(ctx context.Context, id string) GroupIdMembershipRestrictionsSourceGroupsGetRequest

GroupIdMembershipRestrictionsSourceGroupsGet Get group membership restrictions, where group is restricted

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdMembershipRestrictionsSourceGroupsGetRequest

func (*GroupAPIService) GroupIdMembershipRestrictionsSourceGroupsGetExecute

func (a *GroupAPIService) GroupIdMembershipRestrictionsSourceGroupsGetExecute(r GroupIdMembershipRestrictionsSourceGroupsGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

func (*GroupAPIService) GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPost

func (a *GroupAPIService) GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPost(ctx context.Context, id string, sourceGroupId string) GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPostRequest

GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPost Creates the group membership restriction between two groups: source and restricted. To belong restricted group, user should exist in source group. If user removed from source group, it can not belong to restricted group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier of the group that should be restricted.
@param sourceGroupId id of the source group where user belongs to
@return GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPostRequest

func (*GroupAPIService) GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPostExecute

func (a *GroupAPIService) GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPostExecute(r GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPostRequest) (*GroupMembershipRestrictionEnvelope, *http.Response, error)

Execute executes the request

@return GroupMembershipRestrictionEnvelope

func (*GroupAPIService) GroupIdPatch

func (a *GroupAPIService) GroupIdPatch(ctx context.Context, id string) GroupIdPatchRequest

GroupIdPatch Patches the group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdPatchRequest

func (*GroupAPIService) GroupIdPatchExecute

func (a *GroupAPIService) GroupIdPatchExecute(r GroupIdPatchRequest) (*GroupEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnvelope

func (*GroupAPIService) GroupIdPut

func (a *GroupAPIService) GroupIdPut(ctx context.Context, id string) GroupIdPutRequest

GroupIdPut Update the group.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdPutRequest

func (*GroupAPIService) GroupIdPutExecute

func (a *GroupAPIService) GroupIdPutExecute(r GroupIdPutRequest) (*GroupEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnvelope

func (*GroupAPIService) GroupIdRecoverPut

func (a *GroupAPIService) GroupIdRecoverPut(ctx context.Context, id string) GroupIdRecoverPutRequest

GroupIdRecoverPut Recovers the resource, i.e. it changes the state from Cern.AuthorizationService.Model.DataTypes.ResourceState.Archived to Cern.AuthorizationService.Model.DataTypes.ResourceState.Active.

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

func (*GroupAPIService) GroupIdRecoverPutExecute

func (a *GroupAPIService) GroupIdRecoverPutExecute(r GroupIdRecoverPutRequest) (*http.Response, error)

Execute executes the request

func (*GroupAPIService) GroupIdRolesGet

func (a *GroupAPIService) GroupIdRolesGet(ctx context.Context, id string) GroupIdRolesGetRequest

GroupIdRolesGet Gets the roles for this group, grouped by application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdRolesGetRequest

func (*GroupAPIService) GroupIdRolesGetExecute

Execute executes the request

@return GroupRolesResponseEnumerateEnvelope

func (*GroupAPIService) GroupIdScopesGet

func (a *GroupAPIService) GroupIdScopesGet(ctx context.Context, id string) GroupIdScopesGetRequest

GroupIdScopesGet Get all the scopes assigned to a group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group Id or Unique Identifier.
@return GroupIdScopesGetRequest

func (*GroupAPIService) GroupIdScopesGetExecute

Execute executes the request

@return GroupScopeEnumerateEnvelope

func (*GroupAPIService) GroupIdScopesScopeIdDelete

func (a *GroupAPIService) GroupIdScopesScopeIdDelete(ctx context.Context, id string, scopeId string) GroupIdScopesScopeIdDeleteRequest

GroupIdScopesScopeIdDelete Get all the scopes assigned to a group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group ID or Unique Identifier.
@param scopeId The scope ID.
@return GroupIdScopesScopeIdDeleteRequest

func (*GroupAPIService) GroupIdScopesScopeIdDeleteExecute

Execute executes the request

@return GroupScopeAssignmentEnvelope

func (*GroupAPIService) GroupIdScopesScopeIdPost

func (a *GroupAPIService) GroupIdScopesScopeIdPost(ctx context.Context, id string, scopeId string) GroupIdScopesScopeIdPostRequest

GroupIdScopesScopeIdPost Add a scope to a group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The group ID or Unique Identifier.
@param scopeId The scope ID.
@return GroupIdScopesScopeIdPostRequest

func (*GroupAPIService) GroupIdScopesScopeIdPostExecute

Execute executes the request

@return GroupScopeAssignmentEnvelope

func (*GroupAPIService) GroupIdTransferNewOwnerIdPut

func (a *GroupAPIService) GroupIdTransferNewOwnerIdPut(ctx context.Context, id string, newOwnerId string) GroupIdTransferNewOwnerIdPutRequest

GroupIdTransferNewOwnerIdPut Assigns the target resource to a new owner, who must be a valid owner (eligible) for the resource. Depending on the caller's privileges, the operation might need to be approved by the new owner.

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

func (*GroupAPIService) GroupIdTransferNewOwnerIdPutExecute

func (a *GroupAPIService) GroupIdTransferNewOwnerIdPutExecute(r GroupIdTransferNewOwnerIdPutRequest) (*http.Response, error)

Execute executes the request

func (*GroupAPIService) GroupIdentifierAvailabilityPost

func (a *GroupAPIService) GroupIdentifierAvailabilityPost(ctx context.Context) GroupIdentifierAvailabilityPostRequest

GroupIdentifierAvailabilityPost Checks which string identifiers from a list of identifiers are available

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

func (*GroupAPIService) GroupIdentifierAvailabilityPostExecute

func (a *GroupAPIService) GroupIdentifierAvailabilityPostExecute(r GroupIdentifierAvailabilityPostRequest) (*IdentifierEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return IdentifierEnumerateEnvelope

func (*GroupAPIService) GroupMyGet

func (a *GroupAPIService) GroupMyGet(ctx context.Context) GroupMyGetRequest

GroupMyGet Gets all the Groups where the user is owner or administrator.

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

func (*GroupAPIService) GroupMyGetExecute

Execute executes the request

@return GroupEnumerateEnvelope

func (*GroupAPIService) GroupPost

func (a *GroupAPIService) GroupPost(ctx context.Context) GroupPostRequest

GroupPost Creates a group. Restricted to LOA CERN registered

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

func (*GroupAPIService) GroupPostExecute

func (a *GroupAPIService) GroupPostExecute(r GroupPostRequest) (*GroupEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnvelope

type GroupAuthorization

type GroupAuthorization struct {
	GroupId       *string `json:"groupId,omitempty"`
	ApplicationId *string `json:"applicationId,omitempty"`
	Builtin       *bool   `json:"builtin,omitempty"`
}

GroupAuthorization struct for GroupAuthorization

func NewGroupAuthorization

func NewGroupAuthorization() *GroupAuthorization

NewGroupAuthorization instantiates a new GroupAuthorization 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 NewGroupAuthorizationWithDefaults

func NewGroupAuthorizationWithDefaults() *GroupAuthorization

NewGroupAuthorizationWithDefaults instantiates a new GroupAuthorization 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 (*GroupAuthorization) GetApplicationId

func (o *GroupAuthorization) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise.

func (*GroupAuthorization) GetApplicationIdOk

func (o *GroupAuthorization) GetApplicationIdOk() (*string, bool)

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

func (*GroupAuthorization) GetBuiltin

func (o *GroupAuthorization) GetBuiltin() bool

GetBuiltin returns the Builtin field value if set, zero value otherwise.

func (*GroupAuthorization) GetBuiltinOk

func (o *GroupAuthorization) GetBuiltinOk() (*bool, bool)

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

func (*GroupAuthorization) GetGroupId

func (o *GroupAuthorization) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*GroupAuthorization) GetGroupIdOk

func (o *GroupAuthorization) GetGroupIdOk() (*string, bool)

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

func (*GroupAuthorization) HasApplicationId

func (o *GroupAuthorization) HasApplicationId() bool

HasApplicationId returns a boolean if a field has been set.

func (*GroupAuthorization) HasBuiltin

func (o *GroupAuthorization) HasBuiltin() bool

HasBuiltin returns a boolean if a field has been set.

func (*GroupAuthorization) HasGroupId

func (o *GroupAuthorization) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (GroupAuthorization) MarshalJSON

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

func (*GroupAuthorization) SetApplicationId

func (o *GroupAuthorization) SetApplicationId(v string)

SetApplicationId gets a reference to the given string and assigns it to the ApplicationId field.

func (*GroupAuthorization) SetBuiltin

func (o *GroupAuthorization) SetBuiltin(v bool)

SetBuiltin gets a reference to the given bool and assigns it to the Builtin field.

func (*GroupAuthorization) SetGroupId

func (o *GroupAuthorization) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (GroupAuthorization) ToMap

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

type GroupAuthorizationEnumerateEnvelope

type GroupAuthorizationEnumerateEnvelope struct {
	Pagination *Pagination          `json:"pagination,omitempty"`
	Delta      *Delta               `json:"delta,omitempty"`
	RequestId  NullableString       `json:"request_id,omitempty"`
	Message    NullableString       `json:"message,omitempty"`
	Data       []GroupAuthorization `json:"data,omitempty"`
}

GroupAuthorizationEnumerateEnvelope struct for GroupAuthorizationEnumerateEnvelope

func NewGroupAuthorizationEnumerateEnvelope

func NewGroupAuthorizationEnumerateEnvelope() *GroupAuthorizationEnumerateEnvelope

NewGroupAuthorizationEnumerateEnvelope instantiates a new GroupAuthorizationEnumerateEnvelope 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 NewGroupAuthorizationEnumerateEnvelopeWithDefaults

func NewGroupAuthorizationEnumerateEnvelopeWithDefaults() *GroupAuthorizationEnumerateEnvelope

NewGroupAuthorizationEnumerateEnvelopeWithDefaults instantiates a new GroupAuthorizationEnumerateEnvelope 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 (*GroupAuthorizationEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupAuthorizationEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupAuthorizationEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*GroupAuthorizationEnumerateEnvelope) GetDeltaOk

func (o *GroupAuthorizationEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*GroupAuthorizationEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupAuthorizationEnumerateEnvelope) GetMessageOk

func (o *GroupAuthorizationEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupAuthorizationEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*GroupAuthorizationEnumerateEnvelope) GetPaginationOk

func (o *GroupAuthorizationEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*GroupAuthorizationEnumerateEnvelope) GetRequestId

func (o *GroupAuthorizationEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupAuthorizationEnumerateEnvelope) GetRequestIdOk

func (o *GroupAuthorizationEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupAuthorizationEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*GroupAuthorizationEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*GroupAuthorizationEnumerateEnvelope) HasMessage

func (o *GroupAuthorizationEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupAuthorizationEnumerateEnvelope) HasPagination

func (o *GroupAuthorizationEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*GroupAuthorizationEnumerateEnvelope) HasRequestId

func (o *GroupAuthorizationEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupAuthorizationEnumerateEnvelope) MarshalJSON

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

func (*GroupAuthorizationEnumerateEnvelope) SetData

SetData gets a reference to the given []GroupAuthorization and assigns it to the Data field.

func (*GroupAuthorizationEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*GroupAuthorizationEnumerateEnvelope) SetMessage

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

func (*GroupAuthorizationEnumerateEnvelope) SetMessageNil

func (o *GroupAuthorizationEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupAuthorizationEnumerateEnvelope) SetPagination

func (o *GroupAuthorizationEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*GroupAuthorizationEnumerateEnvelope) SetRequestId

func (o *GroupAuthorizationEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupAuthorizationEnumerateEnvelope) SetRequestIdNil

func (o *GroupAuthorizationEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupAuthorizationEnumerateEnvelope) ToMap

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

func (*GroupAuthorizationEnumerateEnvelope) UnsetMessage

func (o *GroupAuthorizationEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupAuthorizationEnumerateEnvelope) UnsetRequestId

func (o *GroupAuthorizationEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupAuthorizationEnvelope

type GroupAuthorizationEnvelope struct {
	RequestId NullableString      `json:"request_id,omitempty"`
	Message   NullableString      `json:"message,omitempty"`
	Data      *GroupAuthorization `json:"data,omitempty"`
}

GroupAuthorizationEnvelope struct for GroupAuthorizationEnvelope

func NewGroupAuthorizationEnvelope

func NewGroupAuthorizationEnvelope() *GroupAuthorizationEnvelope

NewGroupAuthorizationEnvelope instantiates a new GroupAuthorizationEnvelope 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 NewGroupAuthorizationEnvelopeWithDefaults

func NewGroupAuthorizationEnvelopeWithDefaults() *GroupAuthorizationEnvelope

NewGroupAuthorizationEnvelopeWithDefaults instantiates a new GroupAuthorizationEnvelope 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 (*GroupAuthorizationEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GroupAuthorizationEnvelope) GetDataOk

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

func (*GroupAuthorizationEnvelope) GetMessage

func (o *GroupAuthorizationEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupAuthorizationEnvelope) GetMessageOk

func (o *GroupAuthorizationEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupAuthorizationEnvelope) GetRequestId

func (o *GroupAuthorizationEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupAuthorizationEnvelope) GetRequestIdOk

func (o *GroupAuthorizationEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupAuthorizationEnvelope) HasData

func (o *GroupAuthorizationEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupAuthorizationEnvelope) HasMessage

func (o *GroupAuthorizationEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupAuthorizationEnvelope) HasRequestId

func (o *GroupAuthorizationEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupAuthorizationEnvelope) MarshalJSON

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

func (*GroupAuthorizationEnvelope) SetData

SetData gets a reference to the given GroupAuthorization and assigns it to the Data field.

func (*GroupAuthorizationEnvelope) SetMessage

func (o *GroupAuthorizationEnvelope) SetMessage(v string)

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

func (*GroupAuthorizationEnvelope) SetMessageNil

func (o *GroupAuthorizationEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupAuthorizationEnvelope) SetRequestId

func (o *GroupAuthorizationEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupAuthorizationEnvelope) SetRequestIdNil

func (o *GroupAuthorizationEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupAuthorizationEnvelope) ToMap

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

func (*GroupAuthorizationEnvelope) UnsetMessage

func (o *GroupAuthorizationEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupAuthorizationEnvelope) UnsetRequestId

func (o *GroupAuthorizationEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupBulkDeleteRequest

type GroupBulkDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupBulkDeleteRequest) Execute

func (GroupBulkDeleteRequest) RequestBody

func (r GroupBulkDeleteRequest) RequestBody(requestBody []string) GroupBulkDeleteRequest

The deleted groups.

type GroupBulkPatchRequest

type GroupBulkPatchRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupBulkPatchRequest) Execute

func (GroupBulkPatchRequest) GuidJsonPatchDocumentValueTuple

func (r GroupBulkPatchRequest) GuidJsonPatchDocumentValueTuple(guidJsonPatchDocumentValueTuple []GuidJsonPatchDocumentValueTuple) GroupBulkPatchRequest

The patch documents for the groups.

type GroupBulkPostRequest

type GroupBulkPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupBulkPostRequest) Execute

func (GroupBulkPostRequest) RequestBody

func (r GroupBulkPostRequest) RequestBody(requestBody []interface{}) GroupBulkPostRequest

The list of groups to create.

type GroupBulkPutRequest

type GroupBulkPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupBulkPutRequest) Execute

func (GroupBulkPutRequest) GuidGroupValueTuple

func (r GroupBulkPutRequest) GuidGroupValueTuple(guidGroupValueTuple []GuidGroupValueTuple) GroupBulkPutRequest

The updated groups.

type GroupCriteriaGetRequest

type GroupCriteriaGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupCriteriaGetRequest) Execute

type GroupEnumerateEnvelope

type GroupEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Group        `json:"data,omitempty"`
}

GroupEnumerateEnvelope struct for GroupEnumerateEnvelope

func NewGroupEnumerateEnvelope

func NewGroupEnumerateEnvelope() *GroupEnumerateEnvelope

NewGroupEnumerateEnvelope instantiates a new GroupEnumerateEnvelope 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 NewGroupEnumerateEnvelopeWithDefaults

func NewGroupEnumerateEnvelopeWithDefaults() *GroupEnumerateEnvelope

NewGroupEnumerateEnvelopeWithDefaults instantiates a new GroupEnumerateEnvelope 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 (*GroupEnumerateEnvelope) GetData

func (o *GroupEnumerateEnvelope) GetData() []Group

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupEnumerateEnvelope) GetDataOk

func (o *GroupEnumerateEnvelope) GetDataOk() ([]Group, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupEnumerateEnvelope) GetDelta

func (o *GroupEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*GroupEnumerateEnvelope) GetDeltaOk

func (o *GroupEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*GroupEnumerateEnvelope) GetMessage

func (o *GroupEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupEnumerateEnvelope) GetMessageOk

func (o *GroupEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupEnumerateEnvelope) GetPagination

func (o *GroupEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*GroupEnumerateEnvelope) GetPaginationOk

func (o *GroupEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*GroupEnumerateEnvelope) GetRequestId

func (o *GroupEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupEnumerateEnvelope) GetRequestIdOk

func (o *GroupEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupEnumerateEnvelope) HasData

func (o *GroupEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupEnumerateEnvelope) HasDelta

func (o *GroupEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*GroupEnumerateEnvelope) HasMessage

func (o *GroupEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupEnumerateEnvelope) HasPagination

func (o *GroupEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*GroupEnumerateEnvelope) HasRequestId

func (o *GroupEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupEnumerateEnvelope) MarshalJSON

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

func (*GroupEnumerateEnvelope) SetData

func (o *GroupEnumerateEnvelope) SetData(v []Group)

SetData gets a reference to the given []Group and assigns it to the Data field.

func (*GroupEnumerateEnvelope) SetDelta

func (o *GroupEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*GroupEnumerateEnvelope) SetMessage

func (o *GroupEnumerateEnvelope) SetMessage(v string)

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

func (*GroupEnumerateEnvelope) SetMessageNil

func (o *GroupEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupEnumerateEnvelope) SetPagination

func (o *GroupEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*GroupEnumerateEnvelope) SetRequestId

func (o *GroupEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupEnumerateEnvelope) SetRequestIdNil

func (o *GroupEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupEnumerateEnvelope) ToMap

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

func (*GroupEnumerateEnvelope) UnsetMessage

func (o *GroupEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupEnumerateEnvelope) UnsetRequestId

func (o *GroupEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupEnvelope

type GroupEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *Group         `json:"data,omitempty"`
}

GroupEnvelope struct for GroupEnvelope

func NewGroupEnvelope

func NewGroupEnvelope() *GroupEnvelope

NewGroupEnvelope instantiates a new GroupEnvelope 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 NewGroupEnvelopeWithDefaults

func NewGroupEnvelopeWithDefaults() *GroupEnvelope

NewGroupEnvelopeWithDefaults instantiates a new GroupEnvelope 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 (*GroupEnvelope) GetData

func (o *GroupEnvelope) GetData() Group

GetData returns the Data field value if set, zero value otherwise.

func (*GroupEnvelope) GetDataOk

func (o *GroupEnvelope) GetDataOk() (*Group, bool)

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

func (*GroupEnvelope) GetMessage

func (o *GroupEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupEnvelope) GetMessageOk

func (o *GroupEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupEnvelope) GetRequestId

func (o *GroupEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupEnvelope) GetRequestIdOk

func (o *GroupEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupEnvelope) HasData

func (o *GroupEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupEnvelope) HasMessage

func (o *GroupEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupEnvelope) HasRequestId

func (o *GroupEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupEnvelope) MarshalJSON

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

func (*GroupEnvelope) SetData

func (o *GroupEnvelope) SetData(v Group)

SetData gets a reference to the given Group and assigns it to the Data field.

func (*GroupEnvelope) SetMessage

func (o *GroupEnvelope) SetMessage(v string)

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

func (*GroupEnvelope) SetMessageNil

func (o *GroupEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupEnvelope) SetRequestId

func (o *GroupEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupEnvelope) SetRequestIdNil

func (o *GroupEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupEnvelope) ToMap

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

func (*GroupEnvelope) UnsetMessage

func (o *GroupEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupEnvelope) UnsetRequestId

func (o *GroupEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupGetRequest

type GroupGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupGetRequest) Execute

func (GroupGetRequest) Field

func (r GroupGetRequest) Field(field []string) GroupGetRequest

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupGetRequest) Filter

func (r GroupGetRequest) Filter(filter []string) GroupGetRequest

The filter (property:value). Multiple values can be specified.

func (GroupGetRequest) IncludeArchivedAndDeleted

func (r GroupGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupGetRequest) Limit

func (r GroupGetRequest) Limit(limit int32) GroupGetRequest

Maximum number of objects to return.

func (GroupGetRequest) Offset

func (r GroupGetRequest) Offset(offset int32) GroupGetRequest

Index of the first object to return.

func (GroupGetRequest) Sort

func (r GroupGetRequest) Sort(sort []string) GroupGetRequest

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupGetRequest) Token

func (r GroupGetRequest) Token(token string) GroupGetRequest

Pagination token.

type GroupGetbyscopeScopeNameGetRequest

type GroupGetbyscopeScopeNameGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupGetbyscopeScopeNameGetRequest) Execute

func (GroupGetbyscopeScopeNameGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupGetbyscopeScopeNameGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupGetbyscopeScopeNameGetRequest) IncludeArchivedAndDeleted

func (r GroupGetbyscopeScopeNameGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupGetbyscopeScopeNameGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupGetbyscopeScopeNameGetRequest) Limit

Maximum number of objects to return.

func (GroupGetbyscopeScopeNameGetRequest) Offset

Index of the first object to return.

func (GroupGetbyscopeScopeNameGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupGetbyscopeScopeNameGetRequest) Token

Pagination token.

type GroupIdActivatePutRequest

type GroupIdActivatePutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdActivatePutRequest) Execute

func (r GroupIdActivatePutRequest) Execute() (*http.Response, error)

type GroupIdApplicationApplicationidDeleteRequest

type GroupIdApplicationApplicationidDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdApplicationApplicationidDeleteRequest) Execute

type GroupIdApplicationApplicationidPostRequest

type GroupIdApplicationApplicationidPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdApplicationApplicationidPostRequest) Execute

type GroupIdApplicationGetRequest

type GroupIdApplicationGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdApplicationGetRequest) Execute

func (GroupIdApplicationGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdApplicationGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdApplicationGetRequest) IncludeArchivedAndDeleted

func (r GroupIdApplicationGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdApplicationGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdApplicationGetRequest) Limit

Maximum number of objects to return.

func (GroupIdApplicationGetRequest) Offset

Index of the first object to return.

func (GroupIdApplicationGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdApplicationGetRequest) Token

Pagination token.

type GroupIdDeleteRequest

type GroupIdDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdDeleteRequest) Execute

type GroupIdExtendDeadlinesPutRequest

type GroupIdExtendDeadlinesPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdExtendDeadlinesPutRequest) Execute

func (GroupIdExtendDeadlinesPutRequest) NewArchiveDeadline

func (r GroupIdExtendDeadlinesPutRequest) NewArchiveDeadline(newArchiveDeadline time.Time) GroupIdExtendDeadlinesPutRequest

func (GroupIdExtendDeadlinesPutRequest) NewBlockingDeadline

func (r GroupIdExtendDeadlinesPutRequest) NewBlockingDeadline(newBlockingDeadline time.Time) GroupIdExtendDeadlinesPutRequest

func (GroupIdExtendDeadlinesPutRequest) NewDeleteDeadline

func (r GroupIdExtendDeadlinesPutRequest) NewDeleteDeadline(newDeleteDeadline time.Time) GroupIdExtendDeadlinesPutRequest

type GroupIdGetRequest

type GroupIdGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdGetRequest) Execute

type GroupIdMembergroupsDeleteRequest

type GroupIdMembergroupsDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembergroupsDeleteRequest) Execute

func (GroupIdMembergroupsDeleteRequest) Ids

The member group ids.

type GroupIdMembergroupsGetRequest

type GroupIdMembergroupsGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembergroupsGetRequest) Execute

func (GroupIdMembergroupsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMembergroupsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMembergroupsGetRequest) IncludeArchivedAndDeleted

func (r GroupIdMembergroupsGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdMembergroupsGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdMembergroupsGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembergroupsGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembergroupsGetRequest) Recursive

OBSOLETE please use {id}/membergroups/recursive instead

func (GroupIdMembergroupsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMembergroupsGetRequest) Token

Pagination token.

type GroupIdMembergroupsGroupIdPutRequest

type GroupIdMembergroupsGroupIdPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembergroupsGroupIdPutRequest) Comment

func (GroupIdMembergroupsGroupIdPutRequest) Execute

type GroupIdMembergroupsPostRequest

type GroupIdMembergroupsPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembergroupsPostRequest) Execute

func (GroupIdMembergroupsPostRequest) Ids

The member group ids.

type GroupIdMembergroupsPrecomputedGetRequest

type GroupIdMembergroupsPrecomputedGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembergroupsPrecomputedGetRequest) Execute

func (GroupIdMembergroupsPrecomputedGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMembergroupsPrecomputedGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMembergroupsPrecomputedGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembergroupsPrecomputedGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembergroupsPrecomputedGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMembergroupsPrecomputedGetRequest) Token

Pagination token.

type GroupIdMembergroupsRecursiveGetRequest

type GroupIdMembergroupsRecursiveGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembergroupsRecursiveGetRequest) Execute

func (GroupIdMembergroupsRecursiveGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMembergroupsRecursiveGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMembergroupsRecursiveGetRequest) IncludeArchivedAndDeleted

func (r GroupIdMembergroupsRecursiveGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdMembergroupsRecursiveGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdMembergroupsRecursiveGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembergroupsRecursiveGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembergroupsRecursiveGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMembergroupsRecursiveGetRequest) Token

Pagination token.

type GroupIdMemberidentitiesDeleteRequest

type GroupIdMemberidentitiesDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMemberidentitiesDeleteRequest) Execute

func (GroupIdMemberidentitiesDeleteRequest) Ids

The identity id's of the members to remove.

type GroupIdMemberidentitiesExternalPostRequest

type GroupIdMemberidentitiesExternalPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMemberidentitiesExternalPostRequest) Emails

The identity emails.

func (GroupIdMemberidentitiesExternalPostRequest) Execute

type GroupIdMemberidentitiesGetRequest

type GroupIdMemberidentitiesGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMemberidentitiesGetRequest) Execute

func (GroupIdMemberidentitiesGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMemberidentitiesGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMemberidentitiesGetRequest) IncludeArchivedAndDeleted

func (r GroupIdMemberidentitiesGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdMemberidentitiesGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdMemberidentitiesGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMemberidentitiesGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMemberidentitiesGetRequest) Recursive

Obsolete, please use {id}/memberidentities/recursive instead

func (GroupIdMemberidentitiesGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMemberidentitiesGetRequest) Token

Pagination token.

type GroupIdMemberidentitiesPostRequest

type GroupIdMemberidentitiesPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMemberidentitiesPostRequest) Execute

func (GroupIdMemberidentitiesPostRequest) Ids

The identityid.

type GroupIdMemberidentitiesPrecomputedGetRequest

type GroupIdMemberidentitiesPrecomputedGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMemberidentitiesPrecomputedGetRequest) Execute

func (GroupIdMemberidentitiesPrecomputedGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMemberidentitiesPrecomputedGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMemberidentitiesPrecomputedGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMemberidentitiesPrecomputedGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMemberidentitiesPrecomputedGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMemberidentitiesPrecomputedGetRequest) Token

Pagination token.

type GroupIdMemberidentitiesRecursiveGetRequest

type GroupIdMemberidentitiesRecursiveGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMemberidentitiesRecursiveGetRequest) Execute

func (GroupIdMemberidentitiesRecursiveGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMemberidentitiesRecursiveGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMemberidentitiesRecursiveGetRequest) IncludeArchivedAndDeleted

func (r GroupIdMemberidentitiesRecursiveGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdMemberidentitiesRecursiveGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdMemberidentitiesRecursiveGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMemberidentitiesRecursiveGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMemberidentitiesRecursiveGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMemberidentitiesRecursiveGetRequest) Token

Pagination token.

type GroupIdMembersCsvGetRequest

type GroupIdMembersCsvGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersCsvGetRequest) CompatibilityMode

func (r GroupIdMembersCsvGetRequest) CompatibilityMode(compatibilityMode bool) GroupIdMembersCsvGetRequest

Defines if the sheet is backward compatible with Egroups

func (GroupIdMembersCsvGetRequest) Execute

type GroupIdMembersCsvPutRequest

type GroupIdMembersCsvPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersCsvPutRequest) CompatibilityMode

func (r GroupIdMembersCsvPutRequest) CompatibilityMode(compatibilityMode bool) GroupIdMembersCsvPutRequest

Defines if the sheet is backward compatible with Egroups

func (GroupIdMembersCsvPutRequest) Execute

func (GroupIdMembersCsvPutRequest) File

func (GroupIdMembersCsvPutRequest) Replace

Defines if the list should overwrite the members in the group.

type GroupIdMembersGroupsDeleteRequest

type GroupIdMembersGroupsDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersGroupsDeleteRequest) Execute

func (GroupIdMembersGroupsDeleteRequest) RequestBody

The member to be removed

type GroupIdMembersGroupsGetRequest

type GroupIdMembersGroupsGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersGroupsGetRequest) Execute

func (GroupIdMembersGroupsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMembersGroupsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMembersGroupsGetRequest) IncludeArchivedAndDeleted

func (r GroupIdMembersGroupsGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdMembersGroupsGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdMembersGroupsGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembersGroupsGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembersGroupsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMembersGroupsGetRequest) Token

Pagination token.

type GroupIdMembersGroupsGroupIdDeleteRequest

type GroupIdMembersGroupsGroupIdDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersGroupsGroupIdDeleteRequest) Execute

type GroupIdMembersGroupsGroupIdPutRequest

type GroupIdMembersGroupsGroupIdPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersGroupsGroupIdPutRequest) Comment

A comment to be associated to this membership (optional)

func (GroupIdMembersGroupsGroupIdPutRequest) Execute

type GroupIdMembersGroupsPostRequest

type GroupIdMembersGroupsPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersGroupsPostRequest) Execute

func (GroupIdMembersGroupsPostRequest) GroupMemberItem

The list of members to be included

type GroupIdMembersGroupsRecursiveGetRequest

type GroupIdMembersGroupsRecursiveGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersGroupsRecursiveGetRequest) Execute

func (GroupIdMembersGroupsRecursiveGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMembersGroupsRecursiveGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMembersGroupsRecursiveGetRequest) IncludeArchivedAndDeleted

func (r GroupIdMembersGroupsRecursiveGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdMembersGroupsRecursiveGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdMembersGroupsRecursiveGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembersGroupsRecursiveGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembersGroupsRecursiveGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMembersGroupsRecursiveGetRequest) Token

Pagination token.

type GroupIdMembersGroupsWithCommentsGetRequest

type GroupIdMembersGroupsWithCommentsGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersGroupsWithCommentsGetRequest) Execute

func (GroupIdMembersGroupsWithCommentsGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembersGroupsWithCommentsGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembersGroupsWithCommentsGetRequest) Token

Pagination token.

type GroupIdMembersIdentitiesDeleteRequest

type GroupIdMembersIdentitiesDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersIdentitiesDeleteRequest) Execute

func (GroupIdMembersIdentitiesDeleteRequest) RequestBody

The member to be removed

type GroupIdMembersIdentitiesGetRequest

type GroupIdMembersIdentitiesGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersIdentitiesGetRequest) Execute

func (GroupIdMembersIdentitiesGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMembersIdentitiesGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMembersIdentitiesGetRequest) IncludeArchivedAndDeleted

func (r GroupIdMembersIdentitiesGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdMembersIdentitiesGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdMembersIdentitiesGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembersIdentitiesGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembersIdentitiesGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMembersIdentitiesGetRequest) Token

Pagination token.

type GroupIdMembersIdentitiesIdentityIdDeleteRequest

type GroupIdMembersIdentitiesIdentityIdDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersIdentitiesIdentityIdDeleteRequest) Execute

type GroupIdMembersIdentitiesIdentityIdPutRequest

type GroupIdMembersIdentitiesIdentityIdPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersIdentitiesIdentityIdPutRequest) Comment

A comment to be associated to this membership (optional)

func (GroupIdMembersIdentitiesIdentityIdPutRequest) Execute

type GroupIdMembersIdentitiesPostRequest

type GroupIdMembersIdentitiesPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersIdentitiesPostRequest) Execute

func (GroupIdMembersIdentitiesPostRequest) GroupMemberItem

The list of members to be included

type GroupIdMembersIdentitiesRecursiveGetRequest

type GroupIdMembersIdentitiesRecursiveGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersIdentitiesRecursiveGetRequest) Execute

func (GroupIdMembersIdentitiesRecursiveGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupIdMembersIdentitiesRecursiveGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (GroupIdMembersIdentitiesRecursiveGetRequest) IncludeArchivedAndDeleted

func (r GroupIdMembersIdentitiesRecursiveGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupIdMembersIdentitiesRecursiveGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupIdMembersIdentitiesRecursiveGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembersIdentitiesRecursiveGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembersIdentitiesRecursiveGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupIdMembersIdentitiesRecursiveGetRequest) Token

Pagination token.

type GroupIdMembersIdentitiesWithCommentsGetRequest

type GroupIdMembersIdentitiesWithCommentsGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersIdentitiesWithCommentsGetRequest) Execute

func (GroupIdMembersIdentitiesWithCommentsGetRequest) Limit

Maximum number of objects to return.

func (GroupIdMembersIdentitiesWithCommentsGetRequest) Offset

Index of the first object to return. Please use Pagination token instead whenever possible.

func (GroupIdMembersIdentitiesWithCommentsGetRequest) Token

Pagination token.

type GroupIdMembersPostRequest

type GroupIdMembersPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembersPostRequest) Execute

func (GroupIdMembersPostRequest) GroupMember

The list of members to be included.

type GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDeleteRequest

type GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembershipRestrictionsSourceGroupSourceGroupIdDeleteRequest) Execute

type GroupIdMembershipRestrictionsSourceGroupsGetRequest

type GroupIdMembershipRestrictionsSourceGroupsGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembershipRestrictionsSourceGroupsGetRequest) Execute

type GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPostRequest

type GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdMembershipRestrictionsSourceGroupsSourceGroupIdPostRequest) Execute

type GroupIdPatchRequest

type GroupIdPatchRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdPatchRequest) Execute

func (GroupIdPatchRequest) Operation

func (r GroupIdPatchRequest) Operation(operation []Operation) GroupIdPatchRequest

The value.

type GroupIdPutRequest

type GroupIdPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdPutRequest) Execute

func (GroupIdPutRequest) Group

func (r GroupIdPutRequest) Group(group Group) GroupIdPutRequest

The value.

type GroupIdRecoverPutRequest

type GroupIdRecoverPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdRecoverPutRequest) Execute

func (r GroupIdRecoverPutRequest) Execute() (*http.Response, error)

type GroupIdRolesGetRequest

type GroupIdRolesGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdRolesGetRequest) Execute

type GroupIdScopesGetRequest

type GroupIdScopesGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdScopesGetRequest) Execute

type GroupIdScopesScopeIdDeleteRequest

type GroupIdScopesScopeIdDeleteRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdScopesScopeIdDeleteRequest) Execute

type GroupIdScopesScopeIdPostRequest

type GroupIdScopesScopeIdPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdScopesScopeIdPostRequest) Execute

type GroupIdTransferNewOwnerIdPutRequest

type GroupIdTransferNewOwnerIdPutRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdTransferNewOwnerIdPutRequest) Execute

type GroupIdentifierAvailabilityPostRequest

type GroupIdentifierAvailabilityPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupIdentifierAvailabilityPostRequest) Execute

func (GroupIdentifierAvailabilityPostRequest) IdentifierInputWrapper

type GroupInfo

type GroupInfo struct {
	Id              NullableString `json:"id,omitempty"`
	GroupIdentifier NullableString `json:"groupIdentifier,omitempty"`
	DisplayName     NullableString `json:"displayName,omitempty"`
	Description     NullableString `json:"description,omitempty"`
}

GroupInfo struct for GroupInfo

func NewGroupInfo

func NewGroupInfo() *GroupInfo

NewGroupInfo instantiates a new GroupInfo 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 NewGroupInfoWithDefaults

func NewGroupInfoWithDefaults() *GroupInfo

NewGroupInfoWithDefaults instantiates a new GroupInfo 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 (*GroupInfo) GetDescription

func (o *GroupInfo) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupInfo) GetDescriptionOk

func (o *GroupInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupInfo) GetDisplayName

func (o *GroupInfo) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupInfo) GetDisplayNameOk

func (o *GroupInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupInfo) GetGroupIdentifier

func (o *GroupInfo) GetGroupIdentifier() string

GetGroupIdentifier returns the GroupIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupInfo) GetGroupIdentifierOk

func (o *GroupInfo) GetGroupIdentifierOk() (*string, bool)

GetGroupIdentifierOk returns a tuple with the GroupIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupInfo) GetId

func (o *GroupInfo) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupInfo) GetIdOk

func (o *GroupInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupInfo) HasDescription

func (o *GroupInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GroupInfo) HasDisplayName

func (o *GroupInfo) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*GroupInfo) HasGroupIdentifier

func (o *GroupInfo) HasGroupIdentifier() bool

HasGroupIdentifier returns a boolean if a field has been set.

func (*GroupInfo) HasId

func (o *GroupInfo) HasId() bool

HasId returns a boolean if a field has been set.

func (GroupInfo) MarshalJSON

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

func (*GroupInfo) SetDescription

func (o *GroupInfo) SetDescription(v string)

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

func (*GroupInfo) SetDescriptionNil

func (o *GroupInfo) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*GroupInfo) SetDisplayName

func (o *GroupInfo) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*GroupInfo) SetDisplayNameNil

func (o *GroupInfo) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*GroupInfo) SetGroupIdentifier

func (o *GroupInfo) SetGroupIdentifier(v string)

SetGroupIdentifier gets a reference to the given NullableString and assigns it to the GroupIdentifier field.

func (*GroupInfo) SetGroupIdentifierNil

func (o *GroupInfo) SetGroupIdentifierNil()

SetGroupIdentifierNil sets the value for GroupIdentifier to be an explicit nil

func (*GroupInfo) SetId

func (o *GroupInfo) SetId(v string)

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

func (*GroupInfo) SetIdNil

func (o *GroupInfo) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (GroupInfo) ToMap

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

func (*GroupInfo) UnsetDescription

func (o *GroupInfo) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*GroupInfo) UnsetDisplayName

func (o *GroupInfo) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*GroupInfo) UnsetGroupIdentifier

func (o *GroupInfo) UnsetGroupIdentifier()

UnsetGroupIdentifier ensures that no value is present for GroupIdentifier, not even an explicit nil

func (*GroupInfo) UnsetId

func (o *GroupInfo) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type GroupMailProperties

type GroupMailProperties struct {
	Id                             NullableString             `json:"id,omitempty"`
	AllowAuthenticatedMessagesOnly *bool                      `json:"allowAuthenticatedMessagesOnly,omitempty"`
	EnableArchive                  *bool                      `json:"enableArchive,omitempty"`
	DeliveryFailureReport          *DeliveryFailureReportType `json:"deliveryFailureReport,omitempty"`
	GroupId                        NullableString             `json:"groupId,omitempty"`
	PrimaryMailAlias               NullableString             `json:"primaryMailAlias,omitempty"`
	GroupsAllowedToPost            []GroupInfo                `json:"groupsAllowedToPost,omitempty"`
	IdentitiesAllowedToPost        []IdentityInfo             `json:"identitiesAllowedToPost,omitempty"`
	MailAliases                    []string                   `json:"mailAliases,omitempty"`
}

GroupMailProperties struct for GroupMailProperties

func NewGroupMailProperties

func NewGroupMailProperties() *GroupMailProperties

NewGroupMailProperties instantiates a new GroupMailProperties 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 NewGroupMailPropertiesWithDefaults

func NewGroupMailPropertiesWithDefaults() *GroupMailProperties

NewGroupMailPropertiesWithDefaults instantiates a new GroupMailProperties 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 (*GroupMailProperties) GetAllowAuthenticatedMessagesOnly

func (o *GroupMailProperties) GetAllowAuthenticatedMessagesOnly() bool

GetAllowAuthenticatedMessagesOnly returns the AllowAuthenticatedMessagesOnly field value if set, zero value otherwise.

func (*GroupMailProperties) GetAllowAuthenticatedMessagesOnlyOk

func (o *GroupMailProperties) GetAllowAuthenticatedMessagesOnlyOk() (*bool, bool)

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

func (*GroupMailProperties) GetDeliveryFailureReport

func (o *GroupMailProperties) GetDeliveryFailureReport() DeliveryFailureReportType

GetDeliveryFailureReport returns the DeliveryFailureReport field value if set, zero value otherwise.

func (*GroupMailProperties) GetDeliveryFailureReportOk

func (o *GroupMailProperties) GetDeliveryFailureReportOk() (*DeliveryFailureReportType, bool)

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

func (*GroupMailProperties) GetEnableArchive

func (o *GroupMailProperties) GetEnableArchive() bool

GetEnableArchive returns the EnableArchive field value if set, zero value otherwise.

func (*GroupMailProperties) GetEnableArchiveOk

func (o *GroupMailProperties) GetEnableArchiveOk() (*bool, bool)

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

func (*GroupMailProperties) GetGroupId

func (o *GroupMailProperties) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailProperties) GetGroupIdOk

func (o *GroupMailProperties) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailProperties) GetGroupsAllowedToPost

func (o *GroupMailProperties) GetGroupsAllowedToPost() []GroupInfo

GetGroupsAllowedToPost returns the GroupsAllowedToPost field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailProperties) GetGroupsAllowedToPostOk

func (o *GroupMailProperties) GetGroupsAllowedToPostOk() ([]GroupInfo, bool)

GetGroupsAllowedToPostOk returns a tuple with the GroupsAllowedToPost field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailProperties) GetId

func (o *GroupMailProperties) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailProperties) GetIdOk

func (o *GroupMailProperties) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailProperties) GetIdentitiesAllowedToPost

func (o *GroupMailProperties) GetIdentitiesAllowedToPost() []IdentityInfo

GetIdentitiesAllowedToPost returns the IdentitiesAllowedToPost field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailProperties) GetIdentitiesAllowedToPostOk

func (o *GroupMailProperties) GetIdentitiesAllowedToPostOk() ([]IdentityInfo, bool)

GetIdentitiesAllowedToPostOk returns a tuple with the IdentitiesAllowedToPost field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailProperties) GetMailAliases

func (o *GroupMailProperties) GetMailAliases() []string

GetMailAliases returns the MailAliases field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailProperties) GetMailAliasesOk

func (o *GroupMailProperties) GetMailAliasesOk() ([]string, bool)

GetMailAliasesOk returns a tuple with the MailAliases field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailProperties) GetPrimaryMailAlias

func (o *GroupMailProperties) GetPrimaryMailAlias() string

GetPrimaryMailAlias returns the PrimaryMailAlias field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailProperties) GetPrimaryMailAliasOk

func (o *GroupMailProperties) GetPrimaryMailAliasOk() (*string, bool)

GetPrimaryMailAliasOk returns a tuple with the PrimaryMailAlias field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailProperties) HasAllowAuthenticatedMessagesOnly

func (o *GroupMailProperties) HasAllowAuthenticatedMessagesOnly() bool

HasAllowAuthenticatedMessagesOnly returns a boolean if a field has been set.

func (*GroupMailProperties) HasDeliveryFailureReport

func (o *GroupMailProperties) HasDeliveryFailureReport() bool

HasDeliveryFailureReport returns a boolean if a field has been set.

func (*GroupMailProperties) HasEnableArchive

func (o *GroupMailProperties) HasEnableArchive() bool

HasEnableArchive returns a boolean if a field has been set.

func (*GroupMailProperties) HasGroupId

func (o *GroupMailProperties) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*GroupMailProperties) HasGroupsAllowedToPost

func (o *GroupMailProperties) HasGroupsAllowedToPost() bool

HasGroupsAllowedToPost returns a boolean if a field has been set.

func (*GroupMailProperties) HasId

func (o *GroupMailProperties) HasId() bool

HasId returns a boolean if a field has been set.

func (*GroupMailProperties) HasIdentitiesAllowedToPost

func (o *GroupMailProperties) HasIdentitiesAllowedToPost() bool

HasIdentitiesAllowedToPost returns a boolean if a field has been set.

func (*GroupMailProperties) HasMailAliases

func (o *GroupMailProperties) HasMailAliases() bool

HasMailAliases returns a boolean if a field has been set.

func (*GroupMailProperties) HasPrimaryMailAlias

func (o *GroupMailProperties) HasPrimaryMailAlias() bool

HasPrimaryMailAlias returns a boolean if a field has been set.

func (GroupMailProperties) MarshalJSON

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

func (*GroupMailProperties) SetAllowAuthenticatedMessagesOnly

func (o *GroupMailProperties) SetAllowAuthenticatedMessagesOnly(v bool)

SetAllowAuthenticatedMessagesOnly gets a reference to the given bool and assigns it to the AllowAuthenticatedMessagesOnly field.

func (*GroupMailProperties) SetDeliveryFailureReport

func (o *GroupMailProperties) SetDeliveryFailureReport(v DeliveryFailureReportType)

SetDeliveryFailureReport gets a reference to the given DeliveryFailureReportType and assigns it to the DeliveryFailureReport field.

func (*GroupMailProperties) SetEnableArchive

func (o *GroupMailProperties) SetEnableArchive(v bool)

SetEnableArchive gets a reference to the given bool and assigns it to the EnableArchive field.

func (*GroupMailProperties) SetGroupId

func (o *GroupMailProperties) SetGroupId(v string)

SetGroupId gets a reference to the given NullableString and assigns it to the GroupId field.

func (*GroupMailProperties) SetGroupIdNil

func (o *GroupMailProperties) SetGroupIdNil()

SetGroupIdNil sets the value for GroupId to be an explicit nil

func (*GroupMailProperties) SetGroupsAllowedToPost

func (o *GroupMailProperties) SetGroupsAllowedToPost(v []GroupInfo)

SetGroupsAllowedToPost gets a reference to the given []GroupInfo and assigns it to the GroupsAllowedToPost field.

func (*GroupMailProperties) SetId

func (o *GroupMailProperties) SetId(v string)

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

func (*GroupMailProperties) SetIdNil

func (o *GroupMailProperties) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*GroupMailProperties) SetIdentitiesAllowedToPost

func (o *GroupMailProperties) SetIdentitiesAllowedToPost(v []IdentityInfo)

SetIdentitiesAllowedToPost gets a reference to the given []IdentityInfo and assigns it to the IdentitiesAllowedToPost field.

func (*GroupMailProperties) SetMailAliases

func (o *GroupMailProperties) SetMailAliases(v []string)

SetMailAliases gets a reference to the given []string and assigns it to the MailAliases field.

func (*GroupMailProperties) SetPrimaryMailAlias

func (o *GroupMailProperties) SetPrimaryMailAlias(v string)

SetPrimaryMailAlias gets a reference to the given NullableString and assigns it to the PrimaryMailAlias field.

func (*GroupMailProperties) SetPrimaryMailAliasNil

func (o *GroupMailProperties) SetPrimaryMailAliasNil()

SetPrimaryMailAliasNil sets the value for PrimaryMailAlias to be an explicit nil

func (GroupMailProperties) ToMap

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

func (*GroupMailProperties) UnsetGroupId

func (o *GroupMailProperties) UnsetGroupId()

UnsetGroupId ensures that no value is present for GroupId, not even an explicit nil

func (*GroupMailProperties) UnsetId

func (o *GroupMailProperties) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*GroupMailProperties) UnsetPrimaryMailAlias

func (o *GroupMailProperties) UnsetPrimaryMailAlias()

UnsetPrimaryMailAlias ensures that no value is present for PrimaryMailAlias, not even an explicit nil

type GroupMailPropertiesEnumerateEnvelope

type GroupMailPropertiesEnumerateEnvelope struct {
	Pagination *Pagination           `json:"pagination,omitempty"`
	Delta      *Delta                `json:"delta,omitempty"`
	RequestId  NullableString        `json:"request_id,omitempty"`
	Message    NullableString        `json:"message,omitempty"`
	Data       []GroupMailProperties `json:"data,omitempty"`
}

GroupMailPropertiesEnumerateEnvelope struct for GroupMailPropertiesEnumerateEnvelope

func NewGroupMailPropertiesEnumerateEnvelope

func NewGroupMailPropertiesEnumerateEnvelope() *GroupMailPropertiesEnumerateEnvelope

NewGroupMailPropertiesEnumerateEnvelope instantiates a new GroupMailPropertiesEnumerateEnvelope 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 NewGroupMailPropertiesEnumerateEnvelopeWithDefaults

func NewGroupMailPropertiesEnumerateEnvelopeWithDefaults() *GroupMailPropertiesEnumerateEnvelope

NewGroupMailPropertiesEnumerateEnvelopeWithDefaults instantiates a new GroupMailPropertiesEnumerateEnvelope 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 (*GroupMailPropertiesEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailPropertiesEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailPropertiesEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*GroupMailPropertiesEnumerateEnvelope) GetDeltaOk

func (o *GroupMailPropertiesEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*GroupMailPropertiesEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailPropertiesEnumerateEnvelope) GetMessageOk

func (o *GroupMailPropertiesEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailPropertiesEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*GroupMailPropertiesEnumerateEnvelope) GetPaginationOk

func (o *GroupMailPropertiesEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*GroupMailPropertiesEnumerateEnvelope) GetRequestId

func (o *GroupMailPropertiesEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailPropertiesEnumerateEnvelope) GetRequestIdOk

func (o *GroupMailPropertiesEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailPropertiesEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*GroupMailPropertiesEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*GroupMailPropertiesEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*GroupMailPropertiesEnumerateEnvelope) HasPagination

func (o *GroupMailPropertiesEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*GroupMailPropertiesEnumerateEnvelope) HasRequestId

func (o *GroupMailPropertiesEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupMailPropertiesEnumerateEnvelope) MarshalJSON

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

func (*GroupMailPropertiesEnumerateEnvelope) SetData

SetData gets a reference to the given []GroupMailProperties and assigns it to the Data field.

func (*GroupMailPropertiesEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*GroupMailPropertiesEnumerateEnvelope) SetMessage

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

func (*GroupMailPropertiesEnumerateEnvelope) SetMessageNil

func (o *GroupMailPropertiesEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupMailPropertiesEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*GroupMailPropertiesEnumerateEnvelope) SetRequestId

func (o *GroupMailPropertiesEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupMailPropertiesEnumerateEnvelope) SetRequestIdNil

func (o *GroupMailPropertiesEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupMailPropertiesEnumerateEnvelope) ToMap

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

func (*GroupMailPropertiesEnumerateEnvelope) UnsetMessage

func (o *GroupMailPropertiesEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupMailPropertiesEnumerateEnvelope) UnsetRequestId

func (o *GroupMailPropertiesEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupMailPropertiesEnvelope

type GroupMailPropertiesEnvelope struct {
	RequestId NullableString       `json:"request_id,omitempty"`
	Message   NullableString       `json:"message,omitempty"`
	Data      *GroupMailProperties `json:"data,omitempty"`
}

GroupMailPropertiesEnvelope struct for GroupMailPropertiesEnvelope

func NewGroupMailPropertiesEnvelope

func NewGroupMailPropertiesEnvelope() *GroupMailPropertiesEnvelope

NewGroupMailPropertiesEnvelope instantiates a new GroupMailPropertiesEnvelope 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 NewGroupMailPropertiesEnvelopeWithDefaults

func NewGroupMailPropertiesEnvelopeWithDefaults() *GroupMailPropertiesEnvelope

NewGroupMailPropertiesEnvelopeWithDefaults instantiates a new GroupMailPropertiesEnvelope 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 (*GroupMailPropertiesEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GroupMailPropertiesEnvelope) GetDataOk

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

func (*GroupMailPropertiesEnvelope) GetMessage

func (o *GroupMailPropertiesEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailPropertiesEnvelope) GetMessageOk

func (o *GroupMailPropertiesEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailPropertiesEnvelope) GetRequestId

func (o *GroupMailPropertiesEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMailPropertiesEnvelope) GetRequestIdOk

func (o *GroupMailPropertiesEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMailPropertiesEnvelope) HasData

func (o *GroupMailPropertiesEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupMailPropertiesEnvelope) HasMessage

func (o *GroupMailPropertiesEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupMailPropertiesEnvelope) HasRequestId

func (o *GroupMailPropertiesEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupMailPropertiesEnvelope) MarshalJSON

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

func (*GroupMailPropertiesEnvelope) SetData

SetData gets a reference to the given GroupMailProperties and assigns it to the Data field.

func (*GroupMailPropertiesEnvelope) SetMessage

func (o *GroupMailPropertiesEnvelope) SetMessage(v string)

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

func (*GroupMailPropertiesEnvelope) SetMessageNil

func (o *GroupMailPropertiesEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupMailPropertiesEnvelope) SetRequestId

func (o *GroupMailPropertiesEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupMailPropertiesEnvelope) SetRequestIdNil

func (o *GroupMailPropertiesEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupMailPropertiesEnvelope) ToMap

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

func (*GroupMailPropertiesEnvelope) UnsetMessage

func (o *GroupMailPropertiesEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupMailPropertiesEnvelope) UnsetRequestId

func (o *GroupMailPropertiesEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupMember

type GroupMember struct {
	MemberGroups     []GroupMemberItem `json:"memberGroups,omitempty"`
	MemberIdentities []GroupMemberItem `json:"memberIdentities,omitempty"`
}

GroupMember struct for GroupMember

func NewGroupMember

func NewGroupMember() *GroupMember

NewGroupMember instantiates a new GroupMember 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 NewGroupMemberWithDefaults

func NewGroupMemberWithDefaults() *GroupMember

NewGroupMemberWithDefaults instantiates a new GroupMember 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 (*GroupMember) GetMemberGroups

func (o *GroupMember) GetMemberGroups() []GroupMemberItem

GetMemberGroups returns the MemberGroups field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMember) GetMemberGroupsOk

func (o *GroupMember) GetMemberGroupsOk() ([]GroupMemberItem, bool)

GetMemberGroupsOk returns a tuple with the MemberGroups field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMember) GetMemberIdentities

func (o *GroupMember) GetMemberIdentities() []GroupMemberItem

GetMemberIdentities returns the MemberIdentities field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMember) GetMemberIdentitiesOk

func (o *GroupMember) GetMemberIdentitiesOk() ([]GroupMemberItem, bool)

GetMemberIdentitiesOk returns a tuple with the MemberIdentities field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMember) HasMemberGroups

func (o *GroupMember) HasMemberGroups() bool

HasMemberGroups returns a boolean if a field has been set.

func (*GroupMember) HasMemberIdentities

func (o *GroupMember) HasMemberIdentities() bool

HasMemberIdentities returns a boolean if a field has been set.

func (GroupMember) MarshalJSON

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

func (*GroupMember) SetMemberGroups

func (o *GroupMember) SetMemberGroups(v []GroupMemberItem)

SetMemberGroups gets a reference to the given []GroupMemberItem and assigns it to the MemberGroups field.

func (*GroupMember) SetMemberIdentities

func (o *GroupMember) SetMemberIdentities(v []GroupMemberItem)

SetMemberIdentities gets a reference to the given []GroupMemberItem and assigns it to the MemberIdentities field.

func (GroupMember) ToMap

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

type GroupMemberEnvelope

type GroupMemberEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *GroupMember   `json:"data,omitempty"`
}

GroupMemberEnvelope struct for GroupMemberEnvelope

func NewGroupMemberEnvelope

func NewGroupMemberEnvelope() *GroupMemberEnvelope

NewGroupMemberEnvelope instantiates a new GroupMemberEnvelope 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 NewGroupMemberEnvelopeWithDefaults

func NewGroupMemberEnvelopeWithDefaults() *GroupMemberEnvelope

NewGroupMemberEnvelopeWithDefaults instantiates a new GroupMemberEnvelope 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 (*GroupMemberEnvelope) GetData

func (o *GroupMemberEnvelope) GetData() GroupMember

GetData returns the Data field value if set, zero value otherwise.

func (*GroupMemberEnvelope) GetDataOk

func (o *GroupMemberEnvelope) GetDataOk() (*GroupMember, bool)

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

func (*GroupMemberEnvelope) GetMessage

func (o *GroupMemberEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMemberEnvelope) GetMessageOk

func (o *GroupMemberEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMemberEnvelope) GetRequestId

func (o *GroupMemberEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMemberEnvelope) GetRequestIdOk

func (o *GroupMemberEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMemberEnvelope) HasData

func (o *GroupMemberEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupMemberEnvelope) HasMessage

func (o *GroupMemberEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupMemberEnvelope) HasRequestId

func (o *GroupMemberEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupMemberEnvelope) MarshalJSON

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

func (*GroupMemberEnvelope) SetData

func (o *GroupMemberEnvelope) SetData(v GroupMember)

SetData gets a reference to the given GroupMember and assigns it to the Data field.

func (*GroupMemberEnvelope) SetMessage

func (o *GroupMemberEnvelope) SetMessage(v string)

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

func (*GroupMemberEnvelope) SetMessageNil

func (o *GroupMemberEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupMemberEnvelope) SetRequestId

func (o *GroupMemberEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupMemberEnvelope) SetRequestIdNil

func (o *GroupMemberEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupMemberEnvelope) ToMap

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

func (*GroupMemberEnvelope) UnsetMessage

func (o *GroupMemberEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupMemberEnvelope) UnsetRequestId

func (o *GroupMemberEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupMemberItem

type GroupMemberItem struct {
	Id      NullableString `json:"id,omitempty"`
	Comment NullableString `json:"comment,omitempty"`
}

GroupMemberItem struct for GroupMemberItem

func NewGroupMemberItem

func NewGroupMemberItem() *GroupMemberItem

NewGroupMemberItem instantiates a new GroupMemberItem 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 NewGroupMemberItemWithDefaults

func NewGroupMemberItemWithDefaults() *GroupMemberItem

NewGroupMemberItemWithDefaults instantiates a new GroupMemberItem 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 (*GroupMemberItem) GetComment

func (o *GroupMemberItem) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMemberItem) GetCommentOk

func (o *GroupMemberItem) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMemberItem) GetId

func (o *GroupMemberItem) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMemberItem) GetIdOk

func (o *GroupMemberItem) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMemberItem) HasComment

func (o *GroupMemberItem) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*GroupMemberItem) HasId

func (o *GroupMemberItem) HasId() bool

HasId returns a boolean if a field has been set.

func (GroupMemberItem) MarshalJSON

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

func (*GroupMemberItem) SetComment

func (o *GroupMemberItem) SetComment(v string)

SetComment gets a reference to the given NullableString and assigns it to the Comment field.

func (*GroupMemberItem) SetCommentNil

func (o *GroupMemberItem) SetCommentNil()

SetCommentNil sets the value for Comment to be an explicit nil

func (*GroupMemberItem) SetId

func (o *GroupMemberItem) SetId(v string)

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

func (*GroupMemberItem) SetIdNil

func (o *GroupMemberItem) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (GroupMemberItem) ToMap

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

func (*GroupMemberItem) UnsetComment

func (o *GroupMemberItem) UnsetComment()

UnsetComment ensures that no value is present for Comment, not even an explicit nil

func (*GroupMemberItem) UnsetId

func (o *GroupMemberItem) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type GroupMemberTask

type GroupMemberTask struct {
	Result                  *GroupMember         `json:"result,omitempty"`
	Id                      *int32               `json:"id,omitempty"`
	Exception               interface{}          `json:"exception,omitempty"`
	Status                  *TaskStatus          `json:"status,omitempty"`
	IsCanceled              *bool                `json:"isCanceled,omitempty"`
	IsCompleted             *bool                `json:"isCompleted,omitempty"`
	IsCompletedSuccessfully *bool                `json:"isCompletedSuccessfully,omitempty"`
	CreationOptions         *TaskCreationOptions `json:"creationOptions,omitempty"`
	AsyncState              interface{}          `json:"asyncState,omitempty"`
	IsFaulted               *bool                `json:"isFaulted,omitempty"`
}

GroupMemberTask struct for GroupMemberTask

func NewGroupMemberTask

func NewGroupMemberTask() *GroupMemberTask

NewGroupMemberTask instantiates a new GroupMemberTask 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 NewGroupMemberTaskWithDefaults

func NewGroupMemberTaskWithDefaults() *GroupMemberTask

NewGroupMemberTaskWithDefaults instantiates a new GroupMemberTask 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 (*GroupMemberTask) GetAsyncState

func (o *GroupMemberTask) GetAsyncState() interface{}

GetAsyncState returns the AsyncState field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMemberTask) GetAsyncStateOk

func (o *GroupMemberTask) GetAsyncStateOk() (*interface{}, bool)

GetAsyncStateOk returns a tuple with the AsyncState field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMemberTask) GetCreationOptions

func (o *GroupMemberTask) GetCreationOptions() TaskCreationOptions

GetCreationOptions returns the CreationOptions field value if set, zero value otherwise.

func (*GroupMemberTask) GetCreationOptionsOk

func (o *GroupMemberTask) GetCreationOptionsOk() (*TaskCreationOptions, bool)

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

func (*GroupMemberTask) GetException

func (o *GroupMemberTask) GetException() interface{}

GetException returns the Exception field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMemberTask) GetExceptionOk

func (o *GroupMemberTask) GetExceptionOk() (*interface{}, bool)

GetExceptionOk returns a tuple with the Exception field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMemberTask) GetId

func (o *GroupMemberTask) GetId() int32

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

func (*GroupMemberTask) GetIdOk

func (o *GroupMemberTask) 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 (*GroupMemberTask) GetIsCanceled

func (o *GroupMemberTask) GetIsCanceled() bool

GetIsCanceled returns the IsCanceled field value if set, zero value otherwise.

func (*GroupMemberTask) GetIsCanceledOk

func (o *GroupMemberTask) GetIsCanceledOk() (*bool, bool)

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

func (*GroupMemberTask) GetIsCompleted

func (o *GroupMemberTask) GetIsCompleted() bool

GetIsCompleted returns the IsCompleted field value if set, zero value otherwise.

func (*GroupMemberTask) GetIsCompletedOk

func (o *GroupMemberTask) GetIsCompletedOk() (*bool, bool)

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

func (*GroupMemberTask) GetIsCompletedSuccessfully

func (o *GroupMemberTask) GetIsCompletedSuccessfully() bool

GetIsCompletedSuccessfully returns the IsCompletedSuccessfully field value if set, zero value otherwise.

func (*GroupMemberTask) GetIsCompletedSuccessfullyOk

func (o *GroupMemberTask) GetIsCompletedSuccessfullyOk() (*bool, bool)

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

func (*GroupMemberTask) GetIsFaulted

func (o *GroupMemberTask) GetIsFaulted() bool

GetIsFaulted returns the IsFaulted field value if set, zero value otherwise.

func (*GroupMemberTask) GetIsFaultedOk

func (o *GroupMemberTask) GetIsFaultedOk() (*bool, bool)

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

func (*GroupMemberTask) GetResult

func (o *GroupMemberTask) GetResult() GroupMember

GetResult returns the Result field value if set, zero value otherwise.

func (*GroupMemberTask) GetResultOk

func (o *GroupMemberTask) GetResultOk() (*GroupMember, bool)

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

func (*GroupMemberTask) GetStatus

func (o *GroupMemberTask) GetStatus() TaskStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GroupMemberTask) GetStatusOk

func (o *GroupMemberTask) GetStatusOk() (*TaskStatus, bool)

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

func (*GroupMemberTask) HasAsyncState

func (o *GroupMemberTask) HasAsyncState() bool

HasAsyncState returns a boolean if a field has been set.

func (*GroupMemberTask) HasCreationOptions

func (o *GroupMemberTask) HasCreationOptions() bool

HasCreationOptions returns a boolean if a field has been set.

func (*GroupMemberTask) HasException

func (o *GroupMemberTask) HasException() bool

HasException returns a boolean if a field has been set.

func (*GroupMemberTask) HasId

func (o *GroupMemberTask) HasId() bool

HasId returns a boolean if a field has been set.

func (*GroupMemberTask) HasIsCanceled

func (o *GroupMemberTask) HasIsCanceled() bool

HasIsCanceled returns a boolean if a field has been set.

func (*GroupMemberTask) HasIsCompleted

func (o *GroupMemberTask) HasIsCompleted() bool

HasIsCompleted returns a boolean if a field has been set.

func (*GroupMemberTask) HasIsCompletedSuccessfully

func (o *GroupMemberTask) HasIsCompletedSuccessfully() bool

HasIsCompletedSuccessfully returns a boolean if a field has been set.

func (*GroupMemberTask) HasIsFaulted

func (o *GroupMemberTask) HasIsFaulted() bool

HasIsFaulted returns a boolean if a field has been set.

func (*GroupMemberTask) HasResult

func (o *GroupMemberTask) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*GroupMemberTask) HasStatus

func (o *GroupMemberTask) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (GroupMemberTask) MarshalJSON

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

func (*GroupMemberTask) SetAsyncState

func (o *GroupMemberTask) SetAsyncState(v interface{})

SetAsyncState gets a reference to the given interface{} and assigns it to the AsyncState field.

func (*GroupMemberTask) SetCreationOptions

func (o *GroupMemberTask) SetCreationOptions(v TaskCreationOptions)

SetCreationOptions gets a reference to the given TaskCreationOptions and assigns it to the CreationOptions field.

func (*GroupMemberTask) SetException

func (o *GroupMemberTask) SetException(v interface{})

SetException gets a reference to the given interface{} and assigns it to the Exception field.

func (*GroupMemberTask) SetId

func (o *GroupMemberTask) SetId(v int32)

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

func (*GroupMemberTask) SetIsCanceled

func (o *GroupMemberTask) SetIsCanceled(v bool)

SetIsCanceled gets a reference to the given bool and assigns it to the IsCanceled field.

func (*GroupMemberTask) SetIsCompleted

func (o *GroupMemberTask) SetIsCompleted(v bool)

SetIsCompleted gets a reference to the given bool and assigns it to the IsCompleted field.

func (*GroupMemberTask) SetIsCompletedSuccessfully

func (o *GroupMemberTask) SetIsCompletedSuccessfully(v bool)

SetIsCompletedSuccessfully gets a reference to the given bool and assigns it to the IsCompletedSuccessfully field.

func (*GroupMemberTask) SetIsFaulted

func (o *GroupMemberTask) SetIsFaulted(v bool)

SetIsFaulted gets a reference to the given bool and assigns it to the IsFaulted field.

func (*GroupMemberTask) SetResult

func (o *GroupMemberTask) SetResult(v GroupMember)

SetResult gets a reference to the given GroupMember and assigns it to the Result field.

func (*GroupMemberTask) SetStatus

func (o *GroupMemberTask) SetStatus(v TaskStatus)

SetStatus gets a reference to the given TaskStatus and assigns it to the Status field.

func (GroupMemberTask) ToMap

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

type GroupMembership

type GroupMembership struct {
	ParentGroupId *string        `json:"parentGroupId,omitempty"`
	ChildGroupId  *string        `json:"childGroupId,omitempty"`
	Comment       NullableString `json:"comment,omitempty"`
	Builtin       *bool          `json:"builtin,omitempty"`
}

GroupMembership struct for GroupMembership

func NewGroupMembership

func NewGroupMembership() *GroupMembership

NewGroupMembership instantiates a new GroupMembership 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 NewGroupMembershipWithDefaults

func NewGroupMembershipWithDefaults() *GroupMembership

NewGroupMembershipWithDefaults instantiates a new GroupMembership 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 (*GroupMembership) GetBuiltin

func (o *GroupMembership) GetBuiltin() bool

GetBuiltin returns the Builtin field value if set, zero value otherwise.

func (*GroupMembership) GetBuiltinOk

func (o *GroupMembership) GetBuiltinOk() (*bool, bool)

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

func (*GroupMembership) GetChildGroupId

func (o *GroupMembership) GetChildGroupId() string

GetChildGroupId returns the ChildGroupId field value if set, zero value otherwise.

func (*GroupMembership) GetChildGroupIdOk

func (o *GroupMembership) GetChildGroupIdOk() (*string, bool)

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

func (*GroupMembership) GetComment

func (o *GroupMembership) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembership) GetCommentOk

func (o *GroupMembership) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembership) GetParentGroupId

func (o *GroupMembership) GetParentGroupId() string

GetParentGroupId returns the ParentGroupId field value if set, zero value otherwise.

func (*GroupMembership) GetParentGroupIdOk

func (o *GroupMembership) GetParentGroupIdOk() (*string, bool)

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

func (*GroupMembership) HasBuiltin

func (o *GroupMembership) HasBuiltin() bool

HasBuiltin returns a boolean if a field has been set.

func (*GroupMembership) HasChildGroupId

func (o *GroupMembership) HasChildGroupId() bool

HasChildGroupId returns a boolean if a field has been set.

func (*GroupMembership) HasComment

func (o *GroupMembership) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*GroupMembership) HasParentGroupId

func (o *GroupMembership) HasParentGroupId() bool

HasParentGroupId returns a boolean if a field has been set.

func (GroupMembership) MarshalJSON

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

func (*GroupMembership) SetBuiltin

func (o *GroupMembership) SetBuiltin(v bool)

SetBuiltin gets a reference to the given bool and assigns it to the Builtin field.

func (*GroupMembership) SetChildGroupId

func (o *GroupMembership) SetChildGroupId(v string)

SetChildGroupId gets a reference to the given string and assigns it to the ChildGroupId field.

func (*GroupMembership) SetComment

func (o *GroupMembership) SetComment(v string)

SetComment gets a reference to the given NullableString and assigns it to the Comment field.

func (*GroupMembership) SetCommentNil

func (o *GroupMembership) SetCommentNil()

SetCommentNil sets the value for Comment to be an explicit nil

func (*GroupMembership) SetParentGroupId

func (o *GroupMembership) SetParentGroupId(v string)

SetParentGroupId gets a reference to the given string and assigns it to the ParentGroupId field.

func (GroupMembership) ToMap

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

func (*GroupMembership) UnsetComment

func (o *GroupMembership) UnsetComment()

UnsetComment ensures that no value is present for Comment, not even an explicit nil

type GroupMembershipEnumerateEnvelope

type GroupMembershipEnumerateEnvelope struct {
	Pagination *Pagination       `json:"pagination,omitempty"`
	Delta      *Delta            `json:"delta,omitempty"`
	RequestId  NullableString    `json:"request_id,omitempty"`
	Message    NullableString    `json:"message,omitempty"`
	Data       []GroupMembership `json:"data,omitempty"`
}

GroupMembershipEnumerateEnvelope struct for GroupMembershipEnumerateEnvelope

func NewGroupMembershipEnumerateEnvelope

func NewGroupMembershipEnumerateEnvelope() *GroupMembershipEnumerateEnvelope

NewGroupMembershipEnumerateEnvelope instantiates a new GroupMembershipEnumerateEnvelope 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 NewGroupMembershipEnumerateEnvelopeWithDefaults

func NewGroupMembershipEnumerateEnvelopeWithDefaults() *GroupMembershipEnumerateEnvelope

NewGroupMembershipEnumerateEnvelopeWithDefaults instantiates a new GroupMembershipEnumerateEnvelope 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 (*GroupMembershipEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*GroupMembershipEnumerateEnvelope) GetDeltaOk

func (o *GroupMembershipEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*GroupMembershipEnumerateEnvelope) GetMessage

func (o *GroupMembershipEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipEnumerateEnvelope) GetMessageOk

func (o *GroupMembershipEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipEnumerateEnvelope) GetPagination

func (o *GroupMembershipEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*GroupMembershipEnumerateEnvelope) GetPaginationOk

func (o *GroupMembershipEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*GroupMembershipEnumerateEnvelope) GetRequestId

func (o *GroupMembershipEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipEnumerateEnvelope) GetRequestIdOk

func (o *GroupMembershipEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*GroupMembershipEnumerateEnvelope) HasDelta

func (o *GroupMembershipEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*GroupMembershipEnumerateEnvelope) HasMessage

func (o *GroupMembershipEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupMembershipEnumerateEnvelope) HasPagination

func (o *GroupMembershipEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*GroupMembershipEnumerateEnvelope) HasRequestId

func (o *GroupMembershipEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupMembershipEnumerateEnvelope) MarshalJSON

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

func (*GroupMembershipEnumerateEnvelope) SetData

SetData gets a reference to the given []GroupMembership and assigns it to the Data field.

func (*GroupMembershipEnumerateEnvelope) SetDelta

func (o *GroupMembershipEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*GroupMembershipEnumerateEnvelope) SetMessage

func (o *GroupMembershipEnumerateEnvelope) SetMessage(v string)

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

func (*GroupMembershipEnumerateEnvelope) SetMessageNil

func (o *GroupMembershipEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupMembershipEnumerateEnvelope) SetPagination

func (o *GroupMembershipEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*GroupMembershipEnumerateEnvelope) SetRequestId

func (o *GroupMembershipEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupMembershipEnumerateEnvelope) SetRequestIdNil

func (o *GroupMembershipEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupMembershipEnumerateEnvelope) ToMap

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

func (*GroupMembershipEnumerateEnvelope) UnsetMessage

func (o *GroupMembershipEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupMembershipEnumerateEnvelope) UnsetRequestId

func (o *GroupMembershipEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupMembershipInfo

type GroupMembershipInfo struct {
	MemberGroup *GroupInfo     `json:"memberGroup,omitempty"`
	Comment     NullableString `json:"comment,omitempty"`
}

GroupMembershipInfo struct for GroupMembershipInfo

func NewGroupMembershipInfo

func NewGroupMembershipInfo() *GroupMembershipInfo

NewGroupMembershipInfo instantiates a new GroupMembershipInfo 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 NewGroupMembershipInfoWithDefaults

func NewGroupMembershipInfoWithDefaults() *GroupMembershipInfo

NewGroupMembershipInfoWithDefaults instantiates a new GroupMembershipInfo 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 (*GroupMembershipInfo) GetComment

func (o *GroupMembershipInfo) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipInfo) GetCommentOk

func (o *GroupMembershipInfo) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipInfo) GetMemberGroup

func (o *GroupMembershipInfo) GetMemberGroup() GroupInfo

GetMemberGroup returns the MemberGroup field value if set, zero value otherwise.

func (*GroupMembershipInfo) GetMemberGroupOk

func (o *GroupMembershipInfo) GetMemberGroupOk() (*GroupInfo, bool)

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

func (*GroupMembershipInfo) HasComment

func (o *GroupMembershipInfo) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*GroupMembershipInfo) HasMemberGroup

func (o *GroupMembershipInfo) HasMemberGroup() bool

HasMemberGroup returns a boolean if a field has been set.

func (GroupMembershipInfo) MarshalJSON

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

func (*GroupMembershipInfo) SetComment

func (o *GroupMembershipInfo) SetComment(v string)

SetComment gets a reference to the given NullableString and assigns it to the Comment field.

func (*GroupMembershipInfo) SetCommentNil

func (o *GroupMembershipInfo) SetCommentNil()

SetCommentNil sets the value for Comment to be an explicit nil

func (*GroupMembershipInfo) SetMemberGroup

func (o *GroupMembershipInfo) SetMemberGroup(v GroupInfo)

SetMemberGroup gets a reference to the given GroupInfo and assigns it to the MemberGroup field.

func (GroupMembershipInfo) ToMap

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

func (*GroupMembershipInfo) UnsetComment

func (o *GroupMembershipInfo) UnsetComment()

UnsetComment ensures that no value is present for Comment, not even an explicit nil

type GroupMembershipInfoEnumerateEnvelope

type GroupMembershipInfoEnumerateEnvelope struct {
	Pagination *Pagination           `json:"pagination,omitempty"`
	Delta      *Delta                `json:"delta,omitempty"`
	RequestId  NullableString        `json:"request_id,omitempty"`
	Message    NullableString        `json:"message,omitempty"`
	Data       []GroupMembershipInfo `json:"data,omitempty"`
}

GroupMembershipInfoEnumerateEnvelope struct for GroupMembershipInfoEnumerateEnvelope

func NewGroupMembershipInfoEnumerateEnvelope

func NewGroupMembershipInfoEnumerateEnvelope() *GroupMembershipInfoEnumerateEnvelope

NewGroupMembershipInfoEnumerateEnvelope instantiates a new GroupMembershipInfoEnumerateEnvelope 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 NewGroupMembershipInfoEnumerateEnvelopeWithDefaults

func NewGroupMembershipInfoEnumerateEnvelopeWithDefaults() *GroupMembershipInfoEnumerateEnvelope

NewGroupMembershipInfoEnumerateEnvelopeWithDefaults instantiates a new GroupMembershipInfoEnumerateEnvelope 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 (*GroupMembershipInfoEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipInfoEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipInfoEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*GroupMembershipInfoEnumerateEnvelope) GetDeltaOk

func (o *GroupMembershipInfoEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*GroupMembershipInfoEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipInfoEnumerateEnvelope) GetMessageOk

func (o *GroupMembershipInfoEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipInfoEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*GroupMembershipInfoEnumerateEnvelope) GetPaginationOk

func (o *GroupMembershipInfoEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*GroupMembershipInfoEnumerateEnvelope) GetRequestId

func (o *GroupMembershipInfoEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipInfoEnumerateEnvelope) GetRequestIdOk

func (o *GroupMembershipInfoEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipInfoEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*GroupMembershipInfoEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*GroupMembershipInfoEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*GroupMembershipInfoEnumerateEnvelope) HasPagination

func (o *GroupMembershipInfoEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*GroupMembershipInfoEnumerateEnvelope) HasRequestId

func (o *GroupMembershipInfoEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupMembershipInfoEnumerateEnvelope) MarshalJSON

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

func (*GroupMembershipInfoEnumerateEnvelope) SetData

SetData gets a reference to the given []GroupMembershipInfo and assigns it to the Data field.

func (*GroupMembershipInfoEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*GroupMembershipInfoEnumerateEnvelope) SetMessage

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

func (*GroupMembershipInfoEnumerateEnvelope) SetMessageNil

func (o *GroupMembershipInfoEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupMembershipInfoEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*GroupMembershipInfoEnumerateEnvelope) SetRequestId

func (o *GroupMembershipInfoEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupMembershipInfoEnumerateEnvelope) SetRequestIdNil

func (o *GroupMembershipInfoEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupMembershipInfoEnumerateEnvelope) ToMap

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

func (*GroupMembershipInfoEnumerateEnvelope) UnsetMessage

func (o *GroupMembershipInfoEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupMembershipInfoEnumerateEnvelope) UnsetRequestId

func (o *GroupMembershipInfoEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupMembershipRestriction

type GroupMembershipRestriction struct {
	SourceGroupId     *string `json:"sourceGroupId,omitempty"`
	RestrictedGroupId *string `json:"restrictedGroupId,omitempty"`
	Builtin           *bool   `json:"builtin,omitempty"`
}

GroupMembershipRestriction struct for GroupMembershipRestriction

func NewGroupMembershipRestriction

func NewGroupMembershipRestriction() *GroupMembershipRestriction

NewGroupMembershipRestriction instantiates a new GroupMembershipRestriction 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 NewGroupMembershipRestrictionWithDefaults

func NewGroupMembershipRestrictionWithDefaults() *GroupMembershipRestriction

NewGroupMembershipRestrictionWithDefaults instantiates a new GroupMembershipRestriction 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 (*GroupMembershipRestriction) GetBuiltin

func (o *GroupMembershipRestriction) GetBuiltin() bool

GetBuiltin returns the Builtin field value if set, zero value otherwise.

func (*GroupMembershipRestriction) GetBuiltinOk

func (o *GroupMembershipRestriction) GetBuiltinOk() (*bool, bool)

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

func (*GroupMembershipRestriction) GetRestrictedGroupId

func (o *GroupMembershipRestriction) GetRestrictedGroupId() string

GetRestrictedGroupId returns the RestrictedGroupId field value if set, zero value otherwise.

func (*GroupMembershipRestriction) GetRestrictedGroupIdOk

func (o *GroupMembershipRestriction) GetRestrictedGroupIdOk() (*string, bool)

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

func (*GroupMembershipRestriction) GetSourceGroupId

func (o *GroupMembershipRestriction) GetSourceGroupId() string

GetSourceGroupId returns the SourceGroupId field value if set, zero value otherwise.

func (*GroupMembershipRestriction) GetSourceGroupIdOk

func (o *GroupMembershipRestriction) GetSourceGroupIdOk() (*string, bool)

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

func (*GroupMembershipRestriction) HasBuiltin

func (o *GroupMembershipRestriction) HasBuiltin() bool

HasBuiltin returns a boolean if a field has been set.

func (*GroupMembershipRestriction) HasRestrictedGroupId

func (o *GroupMembershipRestriction) HasRestrictedGroupId() bool

HasRestrictedGroupId returns a boolean if a field has been set.

func (*GroupMembershipRestriction) HasSourceGroupId

func (o *GroupMembershipRestriction) HasSourceGroupId() bool

HasSourceGroupId returns a boolean if a field has been set.

func (GroupMembershipRestriction) MarshalJSON

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

func (*GroupMembershipRestriction) SetBuiltin

func (o *GroupMembershipRestriction) SetBuiltin(v bool)

SetBuiltin gets a reference to the given bool and assigns it to the Builtin field.

func (*GroupMembershipRestriction) SetRestrictedGroupId

func (o *GroupMembershipRestriction) SetRestrictedGroupId(v string)

SetRestrictedGroupId gets a reference to the given string and assigns it to the RestrictedGroupId field.

func (*GroupMembershipRestriction) SetSourceGroupId

func (o *GroupMembershipRestriction) SetSourceGroupId(v string)

SetSourceGroupId gets a reference to the given string and assigns it to the SourceGroupId field.

func (GroupMembershipRestriction) ToMap

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

type GroupMembershipRestrictionEnvelope

type GroupMembershipRestrictionEnvelope struct {
	RequestId NullableString              `json:"request_id,omitempty"`
	Message   NullableString              `json:"message,omitempty"`
	Data      *GroupMembershipRestriction `json:"data,omitempty"`
}

GroupMembershipRestrictionEnvelope struct for GroupMembershipRestrictionEnvelope

func NewGroupMembershipRestrictionEnvelope

func NewGroupMembershipRestrictionEnvelope() *GroupMembershipRestrictionEnvelope

NewGroupMembershipRestrictionEnvelope instantiates a new GroupMembershipRestrictionEnvelope 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 NewGroupMembershipRestrictionEnvelopeWithDefaults

func NewGroupMembershipRestrictionEnvelopeWithDefaults() *GroupMembershipRestrictionEnvelope

NewGroupMembershipRestrictionEnvelopeWithDefaults instantiates a new GroupMembershipRestrictionEnvelope 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 (*GroupMembershipRestrictionEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GroupMembershipRestrictionEnvelope) GetDataOk

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

func (*GroupMembershipRestrictionEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipRestrictionEnvelope) GetMessageOk

func (o *GroupMembershipRestrictionEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipRestrictionEnvelope) GetRequestId

func (o *GroupMembershipRestrictionEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupMembershipRestrictionEnvelope) GetRequestIdOk

func (o *GroupMembershipRestrictionEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupMembershipRestrictionEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*GroupMembershipRestrictionEnvelope) HasMessage

func (o *GroupMembershipRestrictionEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupMembershipRestrictionEnvelope) HasRequestId

func (o *GroupMembershipRestrictionEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupMembershipRestrictionEnvelope) MarshalJSON

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

func (*GroupMembershipRestrictionEnvelope) SetData

SetData gets a reference to the given GroupMembershipRestriction and assigns it to the Data field.

func (*GroupMembershipRestrictionEnvelope) SetMessage

func (o *GroupMembershipRestrictionEnvelope) SetMessage(v string)

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

func (*GroupMembershipRestrictionEnvelope) SetMessageNil

func (o *GroupMembershipRestrictionEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupMembershipRestrictionEnvelope) SetRequestId

func (o *GroupMembershipRestrictionEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupMembershipRestrictionEnvelope) SetRequestIdNil

func (o *GroupMembershipRestrictionEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupMembershipRestrictionEnvelope) ToMap

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

func (*GroupMembershipRestrictionEnvelope) UnsetMessage

func (o *GroupMembershipRestrictionEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupMembershipRestrictionEnvelope) UnsetRequestId

func (o *GroupMembershipRestrictionEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupMyGetRequest

type GroupMyGetRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupMyGetRequest) Execute

func (GroupMyGetRequest) Field

func (r GroupMyGetRequest) Field(field []string) GroupMyGetRequest

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (GroupMyGetRequest) Filter

func (r GroupMyGetRequest) Filter(filter []string) GroupMyGetRequest

The filter (property:value). Multiple values can be specified.

func (GroupMyGetRequest) IncludeArchivedAndDeleted

func (r GroupMyGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) GroupMyGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (GroupMyGetRequest) Limit

func (r GroupMyGetRequest) Limit(limit int32) GroupMyGetRequest

Maximum number of objects to return.

func (GroupMyGetRequest) Offset

func (r GroupMyGetRequest) Offset(offset int32) GroupMyGetRequest

Index of the first object to return.

func (GroupMyGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (GroupMyGetRequest) Token

Pagination token.

type GroupPostRequest

type GroupPostRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (GroupPostRequest) Execute

func (r GroupPostRequest) Execute() (*GroupEnvelope, *http.Response, error)

func (GroupPostRequest) Group

func (r GroupPostRequest) Group(group Group) GroupPostRequest

The value.

type GroupRolesResponse

type GroupRolesResponse struct {
	ApplicationId         NullableString `json:"applicationId,omitempty"`
	ApplicationIdentifier NullableString `json:"applicationIdentifier,omitempty"`
	Roles                 []Role         `json:"roles,omitempty"`
}

GroupRolesResponse struct for GroupRolesResponse

func NewGroupRolesResponse

func NewGroupRolesResponse() *GroupRolesResponse

NewGroupRolesResponse instantiates a new GroupRolesResponse 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 NewGroupRolesResponseWithDefaults

func NewGroupRolesResponseWithDefaults() *GroupRolesResponse

NewGroupRolesResponseWithDefaults instantiates a new GroupRolesResponse 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 (*GroupRolesResponse) GetApplicationId

func (o *GroupRolesResponse) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupRolesResponse) GetApplicationIdOk

func (o *GroupRolesResponse) GetApplicationIdOk() (*string, bool)

GetApplicationIdOk returns a tuple with the ApplicationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupRolesResponse) GetApplicationIdentifier

func (o *GroupRolesResponse) GetApplicationIdentifier() string

GetApplicationIdentifier returns the ApplicationIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupRolesResponse) GetApplicationIdentifierOk

func (o *GroupRolesResponse) GetApplicationIdentifierOk() (*string, bool)

GetApplicationIdentifierOk returns a tuple with the ApplicationIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupRolesResponse) GetRoles

func (o *GroupRolesResponse) GetRoles() []Role

GetRoles returns the Roles field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupRolesResponse) GetRolesOk

func (o *GroupRolesResponse) GetRolesOk() ([]Role, bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupRolesResponse) HasApplicationId

func (o *GroupRolesResponse) HasApplicationId() bool

HasApplicationId returns a boolean if a field has been set.

func (*GroupRolesResponse) HasApplicationIdentifier

func (o *GroupRolesResponse) HasApplicationIdentifier() bool

HasApplicationIdentifier returns a boolean if a field has been set.

func (*GroupRolesResponse) HasRoles

func (o *GroupRolesResponse) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (GroupRolesResponse) MarshalJSON

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

func (*GroupRolesResponse) SetApplicationId

func (o *GroupRolesResponse) SetApplicationId(v string)

SetApplicationId gets a reference to the given NullableString and assigns it to the ApplicationId field.

func (*GroupRolesResponse) SetApplicationIdNil

func (o *GroupRolesResponse) SetApplicationIdNil()

SetApplicationIdNil sets the value for ApplicationId to be an explicit nil

func (*GroupRolesResponse) SetApplicationIdentifier

func (o *GroupRolesResponse) SetApplicationIdentifier(v string)

SetApplicationIdentifier gets a reference to the given NullableString and assigns it to the ApplicationIdentifier field.

func (*GroupRolesResponse) SetApplicationIdentifierNil

func (o *GroupRolesResponse) SetApplicationIdentifierNil()

SetApplicationIdentifierNil sets the value for ApplicationIdentifier to be an explicit nil

func (*GroupRolesResponse) SetRoles

func (o *GroupRolesResponse) SetRoles(v []Role)

SetRoles gets a reference to the given []Role and assigns it to the Roles field.

func (GroupRolesResponse) ToMap

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

func (*GroupRolesResponse) UnsetApplicationId

func (o *GroupRolesResponse) UnsetApplicationId()

UnsetApplicationId ensures that no value is present for ApplicationId, not even an explicit nil

func (*GroupRolesResponse) UnsetApplicationIdentifier

func (o *GroupRolesResponse) UnsetApplicationIdentifier()

UnsetApplicationIdentifier ensures that no value is present for ApplicationIdentifier, not even an explicit nil

type GroupRolesResponseEnumerateEnvelope

type GroupRolesResponseEnumerateEnvelope struct {
	Pagination *Pagination          `json:"pagination,omitempty"`
	Delta      *Delta               `json:"delta,omitempty"`
	RequestId  NullableString       `json:"request_id,omitempty"`
	Message    NullableString       `json:"message,omitempty"`
	Data       []GroupRolesResponse `json:"data,omitempty"`
}

GroupRolesResponseEnumerateEnvelope struct for GroupRolesResponseEnumerateEnvelope

func NewGroupRolesResponseEnumerateEnvelope

func NewGroupRolesResponseEnumerateEnvelope() *GroupRolesResponseEnumerateEnvelope

NewGroupRolesResponseEnumerateEnvelope instantiates a new GroupRolesResponseEnumerateEnvelope 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 NewGroupRolesResponseEnumerateEnvelopeWithDefaults

func NewGroupRolesResponseEnumerateEnvelopeWithDefaults() *GroupRolesResponseEnumerateEnvelope

NewGroupRolesResponseEnumerateEnvelopeWithDefaults instantiates a new GroupRolesResponseEnumerateEnvelope 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 (*GroupRolesResponseEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupRolesResponseEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupRolesResponseEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*GroupRolesResponseEnumerateEnvelope) GetDeltaOk

func (o *GroupRolesResponseEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*GroupRolesResponseEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupRolesResponseEnumerateEnvelope) GetMessageOk

func (o *GroupRolesResponseEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupRolesResponseEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*GroupRolesResponseEnumerateEnvelope) GetPaginationOk

func (o *GroupRolesResponseEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*GroupRolesResponseEnumerateEnvelope) GetRequestId

func (o *GroupRolesResponseEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupRolesResponseEnumerateEnvelope) GetRequestIdOk

func (o *GroupRolesResponseEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupRolesResponseEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*GroupRolesResponseEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*GroupRolesResponseEnumerateEnvelope) HasMessage

func (o *GroupRolesResponseEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupRolesResponseEnumerateEnvelope) HasPagination

func (o *GroupRolesResponseEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*GroupRolesResponseEnumerateEnvelope) HasRequestId

func (o *GroupRolesResponseEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupRolesResponseEnumerateEnvelope) MarshalJSON

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

func (*GroupRolesResponseEnumerateEnvelope) SetData

SetData gets a reference to the given []GroupRolesResponse and assigns it to the Data field.

func (*GroupRolesResponseEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*GroupRolesResponseEnumerateEnvelope) SetMessage

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

func (*GroupRolesResponseEnumerateEnvelope) SetMessageNil

func (o *GroupRolesResponseEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupRolesResponseEnumerateEnvelope) SetPagination

func (o *GroupRolesResponseEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*GroupRolesResponseEnumerateEnvelope) SetRequestId

func (o *GroupRolesResponseEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupRolesResponseEnumerateEnvelope) SetRequestIdNil

func (o *GroupRolesResponseEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupRolesResponseEnumerateEnvelope) ToMap

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

func (*GroupRolesResponseEnumerateEnvelope) UnsetMessage

func (o *GroupRolesResponseEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupRolesResponseEnumerateEnvelope) UnsetRequestId

func (o *GroupRolesResponseEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupScope

type GroupScope struct {
	DisplayName          string         `json:"displayName"`
	GroupScopeIdentifier string         `json:"groupScopeIdentifier"`
	Id                   NullableString `json:"id,omitempty"`
	CreationTime         *time.Time     `json:"creationTime,omitempty"`
}

GroupScope struct for GroupScope

func NewGroupScope

func NewGroupScope(displayName string, groupScopeIdentifier string) *GroupScope

NewGroupScope instantiates a new GroupScope 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 NewGroupScopeWithDefaults

func NewGroupScopeWithDefaults() *GroupScope

NewGroupScopeWithDefaults instantiates a new GroupScope 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 (*GroupScope) GetCreationTime

func (o *GroupScope) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*GroupScope) GetCreationTimeOk

func (o *GroupScope) GetCreationTimeOk() (*time.Time, bool)

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

func (*GroupScope) GetDisplayName

func (o *GroupScope) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*GroupScope) GetDisplayNameOk

func (o *GroupScope) GetDisplayNameOk() (*string, bool)

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

func (*GroupScope) GetGroupScopeIdentifier

func (o *GroupScope) GetGroupScopeIdentifier() string

GetGroupScopeIdentifier returns the GroupScopeIdentifier field value

func (*GroupScope) GetGroupScopeIdentifierOk

func (o *GroupScope) GetGroupScopeIdentifierOk() (*string, bool)

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

func (*GroupScope) GetId

func (o *GroupScope) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupScope) GetIdOk

func (o *GroupScope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupScope) HasCreationTime

func (o *GroupScope) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*GroupScope) HasId

func (o *GroupScope) HasId() bool

HasId returns a boolean if a field has been set.

func (GroupScope) MarshalJSON

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

func (*GroupScope) SetCreationTime

func (o *GroupScope) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*GroupScope) SetDisplayName

func (o *GroupScope) SetDisplayName(v string)

SetDisplayName sets field value

func (*GroupScope) SetGroupScopeIdentifier

func (o *GroupScope) SetGroupScopeIdentifier(v string)

SetGroupScopeIdentifier sets field value

func (*GroupScope) SetId

func (o *GroupScope) SetId(v string)

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

func (*GroupScope) SetIdNil

func (o *GroupScope) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (GroupScope) ToMap

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

func (*GroupScope) UnmarshalJSON

func (o *GroupScope) UnmarshalJSON(data []byte) (err error)

func (*GroupScope) UnsetId

func (o *GroupScope) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type GroupScopeAssignment

type GroupScopeAssignment struct {
	GroupId *string `json:"groupId,omitempty"`
	ScopeId *string `json:"scopeId,omitempty"`
	Builtin *bool   `json:"builtin,omitempty"`
}

GroupScopeAssignment struct for GroupScopeAssignment

func NewGroupScopeAssignment

func NewGroupScopeAssignment() *GroupScopeAssignment

NewGroupScopeAssignment instantiates a new GroupScopeAssignment 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 NewGroupScopeAssignmentWithDefaults

func NewGroupScopeAssignmentWithDefaults() *GroupScopeAssignment

NewGroupScopeAssignmentWithDefaults instantiates a new GroupScopeAssignment 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 (*GroupScopeAssignment) GetBuiltin

func (o *GroupScopeAssignment) GetBuiltin() bool

GetBuiltin returns the Builtin field value if set, zero value otherwise.

func (*GroupScopeAssignment) GetBuiltinOk

func (o *GroupScopeAssignment) GetBuiltinOk() (*bool, bool)

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

func (*GroupScopeAssignment) GetGroupId

func (o *GroupScopeAssignment) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*GroupScopeAssignment) GetGroupIdOk

func (o *GroupScopeAssignment) GetGroupIdOk() (*string, bool)

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

func (*GroupScopeAssignment) GetScopeId

func (o *GroupScopeAssignment) GetScopeId() string

GetScopeId returns the ScopeId field value if set, zero value otherwise.

func (*GroupScopeAssignment) GetScopeIdOk

func (o *GroupScopeAssignment) GetScopeIdOk() (*string, bool)

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

func (*GroupScopeAssignment) HasBuiltin

func (o *GroupScopeAssignment) HasBuiltin() bool

HasBuiltin returns a boolean if a field has been set.

func (*GroupScopeAssignment) HasGroupId

func (o *GroupScopeAssignment) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*GroupScopeAssignment) HasScopeId

func (o *GroupScopeAssignment) HasScopeId() bool

HasScopeId returns a boolean if a field has been set.

func (GroupScopeAssignment) MarshalJSON

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

func (*GroupScopeAssignment) SetBuiltin

func (o *GroupScopeAssignment) SetBuiltin(v bool)

SetBuiltin gets a reference to the given bool and assigns it to the Builtin field.

func (*GroupScopeAssignment) SetGroupId

func (o *GroupScopeAssignment) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*GroupScopeAssignment) SetScopeId

func (o *GroupScopeAssignment) SetScopeId(v string)

SetScopeId gets a reference to the given string and assigns it to the ScopeId field.

func (GroupScopeAssignment) ToMap

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

type GroupScopeAssignmentEnvelope

type GroupScopeAssignmentEnvelope struct {
	RequestId NullableString        `json:"request_id,omitempty"`
	Message   NullableString        `json:"message,omitempty"`
	Data      *GroupScopeAssignment `json:"data,omitempty"`
}

GroupScopeAssignmentEnvelope struct for GroupScopeAssignmentEnvelope

func NewGroupScopeAssignmentEnvelope

func NewGroupScopeAssignmentEnvelope() *GroupScopeAssignmentEnvelope

NewGroupScopeAssignmentEnvelope instantiates a new GroupScopeAssignmentEnvelope 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 NewGroupScopeAssignmentEnvelopeWithDefaults

func NewGroupScopeAssignmentEnvelopeWithDefaults() *GroupScopeAssignmentEnvelope

NewGroupScopeAssignmentEnvelopeWithDefaults instantiates a new GroupScopeAssignmentEnvelope 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 (*GroupScopeAssignmentEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*GroupScopeAssignmentEnvelope) GetDataOk

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

func (*GroupScopeAssignmentEnvelope) GetMessage

func (o *GroupScopeAssignmentEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupScopeAssignmentEnvelope) GetMessageOk

func (o *GroupScopeAssignmentEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupScopeAssignmentEnvelope) GetRequestId

func (o *GroupScopeAssignmentEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupScopeAssignmentEnvelope) GetRequestIdOk

func (o *GroupScopeAssignmentEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupScopeAssignmentEnvelope) HasData

func (o *GroupScopeAssignmentEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupScopeAssignmentEnvelope) HasMessage

func (o *GroupScopeAssignmentEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupScopeAssignmentEnvelope) HasRequestId

func (o *GroupScopeAssignmentEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupScopeAssignmentEnvelope) MarshalJSON

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

func (*GroupScopeAssignmentEnvelope) SetData

SetData gets a reference to the given GroupScopeAssignment and assigns it to the Data field.

func (*GroupScopeAssignmentEnvelope) SetMessage

func (o *GroupScopeAssignmentEnvelope) SetMessage(v string)

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

func (*GroupScopeAssignmentEnvelope) SetMessageNil

func (o *GroupScopeAssignmentEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupScopeAssignmentEnvelope) SetRequestId

func (o *GroupScopeAssignmentEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupScopeAssignmentEnvelope) SetRequestIdNil

func (o *GroupScopeAssignmentEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupScopeAssignmentEnvelope) ToMap

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

func (*GroupScopeAssignmentEnvelope) UnsetMessage

func (o *GroupScopeAssignmentEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupScopeAssignmentEnvelope) UnsetRequestId

func (o *GroupScopeAssignmentEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupScopeEnumerateEnvelope

type GroupScopeEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []GroupScope   `json:"data,omitempty"`
}

GroupScopeEnumerateEnvelope struct for GroupScopeEnumerateEnvelope

func NewGroupScopeEnumerateEnvelope

func NewGroupScopeEnumerateEnvelope() *GroupScopeEnumerateEnvelope

NewGroupScopeEnumerateEnvelope instantiates a new GroupScopeEnumerateEnvelope 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 NewGroupScopeEnumerateEnvelopeWithDefaults

func NewGroupScopeEnumerateEnvelopeWithDefaults() *GroupScopeEnumerateEnvelope

NewGroupScopeEnumerateEnvelopeWithDefaults instantiates a new GroupScopeEnumerateEnvelope 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 (*GroupScopeEnumerateEnvelope) GetData

func (o *GroupScopeEnumerateEnvelope) GetData() []GroupScope

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupScopeEnumerateEnvelope) GetDataOk

func (o *GroupScopeEnumerateEnvelope) GetDataOk() ([]GroupScope, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupScopeEnumerateEnvelope) GetDelta

func (o *GroupScopeEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*GroupScopeEnumerateEnvelope) GetDeltaOk

func (o *GroupScopeEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*GroupScopeEnumerateEnvelope) GetMessage

func (o *GroupScopeEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupScopeEnumerateEnvelope) GetMessageOk

func (o *GroupScopeEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupScopeEnumerateEnvelope) GetPagination

func (o *GroupScopeEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*GroupScopeEnumerateEnvelope) GetPaginationOk

func (o *GroupScopeEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*GroupScopeEnumerateEnvelope) GetRequestId

func (o *GroupScopeEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupScopeEnumerateEnvelope) GetRequestIdOk

func (o *GroupScopeEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupScopeEnumerateEnvelope) HasData

func (o *GroupScopeEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupScopeEnumerateEnvelope) HasDelta

func (o *GroupScopeEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*GroupScopeEnumerateEnvelope) HasMessage

func (o *GroupScopeEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupScopeEnumerateEnvelope) HasPagination

func (o *GroupScopeEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*GroupScopeEnumerateEnvelope) HasRequestId

func (o *GroupScopeEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupScopeEnumerateEnvelope) MarshalJSON

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

func (*GroupScopeEnumerateEnvelope) SetData

func (o *GroupScopeEnumerateEnvelope) SetData(v []GroupScope)

SetData gets a reference to the given []GroupScope and assigns it to the Data field.

func (*GroupScopeEnumerateEnvelope) SetDelta

func (o *GroupScopeEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*GroupScopeEnumerateEnvelope) SetMessage

func (o *GroupScopeEnumerateEnvelope) SetMessage(v string)

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

func (*GroupScopeEnumerateEnvelope) SetMessageNil

func (o *GroupScopeEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupScopeEnumerateEnvelope) SetPagination

func (o *GroupScopeEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*GroupScopeEnumerateEnvelope) SetRequestId

func (o *GroupScopeEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupScopeEnumerateEnvelope) SetRequestIdNil

func (o *GroupScopeEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupScopeEnumerateEnvelope) ToMap

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

func (*GroupScopeEnumerateEnvelope) UnsetMessage

func (o *GroupScopeEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupScopeEnumerateEnvelope) UnsetRequestId

func (o *GroupScopeEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupScopeEnvelope

type GroupScopeEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *GroupScope    `json:"data,omitempty"`
}

GroupScopeEnvelope struct for GroupScopeEnvelope

func NewGroupScopeEnvelope

func NewGroupScopeEnvelope() *GroupScopeEnvelope

NewGroupScopeEnvelope instantiates a new GroupScopeEnvelope 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 NewGroupScopeEnvelopeWithDefaults

func NewGroupScopeEnvelopeWithDefaults() *GroupScopeEnvelope

NewGroupScopeEnvelopeWithDefaults instantiates a new GroupScopeEnvelope 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 (*GroupScopeEnvelope) GetData

func (o *GroupScopeEnvelope) GetData() GroupScope

GetData returns the Data field value if set, zero value otherwise.

func (*GroupScopeEnvelope) GetDataOk

func (o *GroupScopeEnvelope) GetDataOk() (*GroupScope, bool)

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

func (*GroupScopeEnvelope) GetMessage

func (o *GroupScopeEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupScopeEnvelope) GetMessageOk

func (o *GroupScopeEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupScopeEnvelope) GetRequestId

func (o *GroupScopeEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupScopeEnvelope) GetRequestIdOk

func (o *GroupScopeEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupScopeEnvelope) HasData

func (o *GroupScopeEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*GroupScopeEnvelope) HasMessage

func (o *GroupScopeEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GroupScopeEnvelope) HasRequestId

func (o *GroupScopeEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupScopeEnvelope) MarshalJSON

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

func (*GroupScopeEnvelope) SetData

func (o *GroupScopeEnvelope) SetData(v GroupScope)

SetData gets a reference to the given GroupScope and assigns it to the Data field.

func (*GroupScopeEnvelope) SetMessage

func (o *GroupScopeEnvelope) SetMessage(v string)

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

func (*GroupScopeEnvelope) SetMessageNil

func (o *GroupScopeEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupScopeEnvelope) SetRequestId

func (o *GroupScopeEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupScopeEnvelope) SetRequestIdNil

func (o *GroupScopeEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupScopeEnvelope) ToMap

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

func (*GroupScopeEnvelope) UnsetMessage

func (o *GroupScopeEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupScopeEnvelope) UnsetRequestId

func (o *GroupScopeEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GroupSyncStatus

type GroupSyncStatus string

GroupSyncStatus the model 'GroupSyncStatus'

const (
	GROUPSYNCSTATUS_NOT_SYNCED     GroupSyncStatus = "NotSynced"
	GROUPSYNCSTATUS_SYNCHRONIZED   GroupSyncStatus = "Synchronized"
	GROUPSYNCSTATUS_OWNER_ERROR    GroupSyncStatus = "OwnerError"
	GROUPSYNCSTATUS_METADATA_ERROR GroupSyncStatus = "MetadataError"
	GROUPSYNCSTATUS_DYNAMIC_ERROR  GroupSyncStatus = "DynamicError"
)

List of GroupSyncStatus

func NewGroupSyncStatusFromValue

func NewGroupSyncStatusFromValue(v string) (*GroupSyncStatus, error)

NewGroupSyncStatusFromValue returns a pointer to a valid GroupSyncStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GroupSyncStatus) IsValid

func (v GroupSyncStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (GroupSyncStatus) Ptr

Ptr returns reference to GroupSyncStatus value

func (*GroupSyncStatus) UnmarshalJSON

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

type GroupSyncType

type GroupSyncType string

GroupSyncType the model 'GroupSyncType'

const (
	GROUPSYNCTYPE_SLAVE                   GroupSyncType = "Slave"
	GROUPSYNCTYPE_SLAVE_WITH_PLACEHOLDERS GroupSyncType = "SlaveWithPlaceholders"
	GROUPSYNCTYPE_MASTER                  GroupSyncType = "Master"
	GROUPSYNCTYPE_SYNC_ERROR              GroupSyncType = "SyncError"
	GROUPSYNCTYPE_NO_SYNC                 GroupSyncType = "NoSync"
)

List of GroupSyncType

func NewGroupSyncTypeFromValue

func NewGroupSyncTypeFromValue(v string) (*GroupSyncType, error)

NewGroupSyncTypeFromValue returns a pointer to a valid GroupSyncType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (GroupSyncType) IsValid

func (v GroupSyncType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (GroupSyncType) Ptr

func (v GroupSyncType) Ptr() *GroupSyncType

Ptr returns reference to GroupSyncType value

func (*GroupSyncType) UnmarshalJSON

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

type GroupsAllowedToPost

type GroupsAllowedToPost struct {
	GroupMailSettingsId NullableString `json:"groupMailSettingsId,omitempty"`
	GroupId             NullableString `json:"groupId,omitempty"`
}

GroupsAllowedToPost struct for GroupsAllowedToPost

func NewGroupsAllowedToPost

func NewGroupsAllowedToPost() *GroupsAllowedToPost

NewGroupsAllowedToPost instantiates a new GroupsAllowedToPost 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 NewGroupsAllowedToPostWithDefaults

func NewGroupsAllowedToPostWithDefaults() *GroupsAllowedToPost

NewGroupsAllowedToPostWithDefaults instantiates a new GroupsAllowedToPost 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 (*GroupsAllowedToPost) GetGroupId

func (o *GroupsAllowedToPost) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupsAllowedToPost) GetGroupIdOk

func (o *GroupsAllowedToPost) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupsAllowedToPost) GetGroupMailSettingsId

func (o *GroupsAllowedToPost) GetGroupMailSettingsId() string

GetGroupMailSettingsId returns the GroupMailSettingsId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupsAllowedToPost) GetGroupMailSettingsIdOk

func (o *GroupsAllowedToPost) GetGroupMailSettingsIdOk() (*string, bool)

GetGroupMailSettingsIdOk returns a tuple with the GroupMailSettingsId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupsAllowedToPost) HasGroupId

func (o *GroupsAllowedToPost) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*GroupsAllowedToPost) HasGroupMailSettingsId

func (o *GroupsAllowedToPost) HasGroupMailSettingsId() bool

HasGroupMailSettingsId returns a boolean if a field has been set.

func (GroupsAllowedToPost) MarshalJSON

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

func (*GroupsAllowedToPost) SetGroupId

func (o *GroupsAllowedToPost) SetGroupId(v string)

SetGroupId gets a reference to the given NullableString and assigns it to the GroupId field.

func (*GroupsAllowedToPost) SetGroupIdNil

func (o *GroupsAllowedToPost) SetGroupIdNil()

SetGroupIdNil sets the value for GroupId to be an explicit nil

func (*GroupsAllowedToPost) SetGroupMailSettingsId

func (o *GroupsAllowedToPost) SetGroupMailSettingsId(v string)

SetGroupMailSettingsId gets a reference to the given NullableString and assigns it to the GroupMailSettingsId field.

func (*GroupsAllowedToPost) SetGroupMailSettingsIdNil

func (o *GroupsAllowedToPost) SetGroupMailSettingsIdNil()

SetGroupMailSettingsIdNil sets the value for GroupMailSettingsId to be an explicit nil

func (GroupsAllowedToPost) ToMap

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

func (*GroupsAllowedToPost) UnsetGroupId

func (o *GroupsAllowedToPost) UnsetGroupId()

UnsetGroupId ensures that no value is present for GroupId, not even an explicit nil

func (*GroupsAllowedToPost) UnsetGroupMailSettingsId

func (o *GroupsAllowedToPost) UnsetGroupMailSettingsId()

UnsetGroupMailSettingsId ensures that no value is present for GroupMailSettingsId, not even an explicit nil

type GroupsAllowedToPostEnumerateEnvelope

type GroupsAllowedToPostEnumerateEnvelope struct {
	Pagination *Pagination           `json:"pagination,omitempty"`
	Delta      *Delta                `json:"delta,omitempty"`
	RequestId  NullableString        `json:"request_id,omitempty"`
	Message    NullableString        `json:"message,omitempty"`
	Data       []GroupsAllowedToPost `json:"data,omitempty"`
}

GroupsAllowedToPostEnumerateEnvelope struct for GroupsAllowedToPostEnumerateEnvelope

func NewGroupsAllowedToPostEnumerateEnvelope

func NewGroupsAllowedToPostEnumerateEnvelope() *GroupsAllowedToPostEnumerateEnvelope

NewGroupsAllowedToPostEnumerateEnvelope instantiates a new GroupsAllowedToPostEnumerateEnvelope 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 NewGroupsAllowedToPostEnumerateEnvelopeWithDefaults

func NewGroupsAllowedToPostEnumerateEnvelopeWithDefaults() *GroupsAllowedToPostEnumerateEnvelope

NewGroupsAllowedToPostEnumerateEnvelopeWithDefaults instantiates a new GroupsAllowedToPostEnumerateEnvelope 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 (*GroupsAllowedToPostEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupsAllowedToPostEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupsAllowedToPostEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*GroupsAllowedToPostEnumerateEnvelope) GetDeltaOk

func (o *GroupsAllowedToPostEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*GroupsAllowedToPostEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupsAllowedToPostEnumerateEnvelope) GetMessageOk

func (o *GroupsAllowedToPostEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupsAllowedToPostEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*GroupsAllowedToPostEnumerateEnvelope) GetPaginationOk

func (o *GroupsAllowedToPostEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*GroupsAllowedToPostEnumerateEnvelope) GetRequestId

func (o *GroupsAllowedToPostEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GroupsAllowedToPostEnumerateEnvelope) GetRequestIdOk

func (o *GroupsAllowedToPostEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GroupsAllowedToPostEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*GroupsAllowedToPostEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*GroupsAllowedToPostEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*GroupsAllowedToPostEnumerateEnvelope) HasPagination

func (o *GroupsAllowedToPostEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*GroupsAllowedToPostEnumerateEnvelope) HasRequestId

func (o *GroupsAllowedToPostEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (GroupsAllowedToPostEnumerateEnvelope) MarshalJSON

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

func (*GroupsAllowedToPostEnumerateEnvelope) SetData

SetData gets a reference to the given []GroupsAllowedToPost and assigns it to the Data field.

func (*GroupsAllowedToPostEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*GroupsAllowedToPostEnumerateEnvelope) SetMessage

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

func (*GroupsAllowedToPostEnumerateEnvelope) SetMessageNil

func (o *GroupsAllowedToPostEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*GroupsAllowedToPostEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*GroupsAllowedToPostEnumerateEnvelope) SetRequestId

func (o *GroupsAllowedToPostEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*GroupsAllowedToPostEnumerateEnvelope) SetRequestIdNil

func (o *GroupsAllowedToPostEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (GroupsAllowedToPostEnumerateEnvelope) ToMap

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

func (*GroupsAllowedToPostEnumerateEnvelope) UnsetMessage

func (o *GroupsAllowedToPostEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*GroupsAllowedToPostEnumerateEnvelope) UnsetRequestId

func (o *GroupsAllowedToPostEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type GuidGroupValueTuple

type GuidGroupValueTuple struct {
	Item1 *string `json:"item1,omitempty"`
	Item2 *Group  `json:"item2,omitempty"`
}

GuidGroupValueTuple struct for GuidGroupValueTuple

func NewGuidGroupValueTuple

func NewGuidGroupValueTuple() *GuidGroupValueTuple

NewGuidGroupValueTuple instantiates a new GuidGroupValueTuple 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 NewGuidGroupValueTupleWithDefaults

func NewGuidGroupValueTupleWithDefaults() *GuidGroupValueTuple

NewGuidGroupValueTupleWithDefaults instantiates a new GuidGroupValueTuple 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 (*GuidGroupValueTuple) GetItem1

func (o *GuidGroupValueTuple) GetItem1() string

GetItem1 returns the Item1 field value if set, zero value otherwise.

func (*GuidGroupValueTuple) GetItem1Ok

func (o *GuidGroupValueTuple) GetItem1Ok() (*string, bool)

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

func (*GuidGroupValueTuple) GetItem2

func (o *GuidGroupValueTuple) GetItem2() Group

GetItem2 returns the Item2 field value if set, zero value otherwise.

func (*GuidGroupValueTuple) GetItem2Ok

func (o *GuidGroupValueTuple) GetItem2Ok() (*Group, bool)

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

func (*GuidGroupValueTuple) HasItem1

func (o *GuidGroupValueTuple) HasItem1() bool

HasItem1 returns a boolean if a field has been set.

func (*GuidGroupValueTuple) HasItem2

func (o *GuidGroupValueTuple) HasItem2() bool

HasItem2 returns a boolean if a field has been set.

func (GuidGroupValueTuple) MarshalJSON

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

func (*GuidGroupValueTuple) SetItem1

func (o *GuidGroupValueTuple) SetItem1(v string)

SetItem1 gets a reference to the given string and assigns it to the Item1 field.

func (*GuidGroupValueTuple) SetItem2

func (o *GuidGroupValueTuple) SetItem2(v Group)

SetItem2 gets a reference to the given Group and assigns it to the Item2 field.

func (GuidGroupValueTuple) ToMap

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

type GuidIdentityValueTuple

type GuidIdentityValueTuple struct {
	Item1 *string   `json:"item1,omitempty"`
	Item2 *Identity `json:"item2,omitempty"`
}

GuidIdentityValueTuple struct for GuidIdentityValueTuple

func NewGuidIdentityValueTuple

func NewGuidIdentityValueTuple() *GuidIdentityValueTuple

NewGuidIdentityValueTuple instantiates a new GuidIdentityValueTuple 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 NewGuidIdentityValueTupleWithDefaults

func NewGuidIdentityValueTupleWithDefaults() *GuidIdentityValueTuple

NewGuidIdentityValueTupleWithDefaults instantiates a new GuidIdentityValueTuple 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 (*GuidIdentityValueTuple) GetItem1

func (o *GuidIdentityValueTuple) GetItem1() string

GetItem1 returns the Item1 field value if set, zero value otherwise.

func (*GuidIdentityValueTuple) GetItem1Ok

func (o *GuidIdentityValueTuple) GetItem1Ok() (*string, bool)

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

func (*GuidIdentityValueTuple) GetItem2

func (o *GuidIdentityValueTuple) GetItem2() Identity

GetItem2 returns the Item2 field value if set, zero value otherwise.

func (*GuidIdentityValueTuple) GetItem2Ok

func (o *GuidIdentityValueTuple) GetItem2Ok() (*Identity, bool)

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

func (*GuidIdentityValueTuple) HasItem1

func (o *GuidIdentityValueTuple) HasItem1() bool

HasItem1 returns a boolean if a field has been set.

func (*GuidIdentityValueTuple) HasItem2

func (o *GuidIdentityValueTuple) HasItem2() bool

HasItem2 returns a boolean if a field has been set.

func (GuidIdentityValueTuple) MarshalJSON

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

func (*GuidIdentityValueTuple) SetItem1

func (o *GuidIdentityValueTuple) SetItem1(v string)

SetItem1 gets a reference to the given string and assigns it to the Item1 field.

func (*GuidIdentityValueTuple) SetItem2

func (o *GuidIdentityValueTuple) SetItem2(v Identity)

SetItem2 gets a reference to the given Identity and assigns it to the Item2 field.

func (GuidIdentityValueTuple) ToMap

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

type GuidJObjectValueTuple

type GuidJObjectValueTuple struct {
	Item1 *string     `json:"item1,omitempty"`
	Item2 interface{} `json:"item2,omitempty"`
}

GuidJObjectValueTuple struct for GuidJObjectValueTuple

func NewGuidJObjectValueTuple

func NewGuidJObjectValueTuple() *GuidJObjectValueTuple

NewGuidJObjectValueTuple instantiates a new GuidJObjectValueTuple 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 NewGuidJObjectValueTupleWithDefaults

func NewGuidJObjectValueTupleWithDefaults() *GuidJObjectValueTuple

NewGuidJObjectValueTupleWithDefaults instantiates a new GuidJObjectValueTuple 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 (*GuidJObjectValueTuple) GetItem1

func (o *GuidJObjectValueTuple) GetItem1() string

GetItem1 returns the Item1 field value if set, zero value otherwise.

func (*GuidJObjectValueTuple) GetItem1Ok

func (o *GuidJObjectValueTuple) GetItem1Ok() (*string, bool)

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

func (*GuidJObjectValueTuple) GetItem2

func (o *GuidJObjectValueTuple) GetItem2() interface{}

GetItem2 returns the Item2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GuidJObjectValueTuple) GetItem2Ok

func (o *GuidJObjectValueTuple) GetItem2Ok() (*interface{}, bool)

GetItem2Ok returns a tuple with the Item2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GuidJObjectValueTuple) HasItem1

func (o *GuidJObjectValueTuple) HasItem1() bool

HasItem1 returns a boolean if a field has been set.

func (*GuidJObjectValueTuple) HasItem2

func (o *GuidJObjectValueTuple) HasItem2() bool

HasItem2 returns a boolean if a field has been set.

func (GuidJObjectValueTuple) MarshalJSON

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

func (*GuidJObjectValueTuple) SetItem1

func (o *GuidJObjectValueTuple) SetItem1(v string)

SetItem1 gets a reference to the given string and assigns it to the Item1 field.

func (*GuidJObjectValueTuple) SetItem2

func (o *GuidJObjectValueTuple) SetItem2(v interface{})

SetItem2 gets a reference to the given interface{} and assigns it to the Item2 field.

func (GuidJObjectValueTuple) ToMap

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

type GuidJsonPatchDocumentValueTuple

type GuidJsonPatchDocumentValueTuple struct {
	Item1 *string            `json:"item1,omitempty"`
	Item2 *JsonPatchDocument `json:"item2,omitempty"`
}

GuidJsonPatchDocumentValueTuple struct for GuidJsonPatchDocumentValueTuple

func NewGuidJsonPatchDocumentValueTuple

func NewGuidJsonPatchDocumentValueTuple() *GuidJsonPatchDocumentValueTuple

NewGuidJsonPatchDocumentValueTuple instantiates a new GuidJsonPatchDocumentValueTuple 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 NewGuidJsonPatchDocumentValueTupleWithDefaults

func NewGuidJsonPatchDocumentValueTupleWithDefaults() *GuidJsonPatchDocumentValueTuple

NewGuidJsonPatchDocumentValueTupleWithDefaults instantiates a new GuidJsonPatchDocumentValueTuple 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 (*GuidJsonPatchDocumentValueTuple) GetItem1

GetItem1 returns the Item1 field value if set, zero value otherwise.

func (*GuidJsonPatchDocumentValueTuple) GetItem1Ok

func (o *GuidJsonPatchDocumentValueTuple) GetItem1Ok() (*string, bool)

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

func (*GuidJsonPatchDocumentValueTuple) GetItem2

GetItem2 returns the Item2 field value if set, zero value otherwise.

func (*GuidJsonPatchDocumentValueTuple) GetItem2Ok

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

func (*GuidJsonPatchDocumentValueTuple) HasItem1

func (o *GuidJsonPatchDocumentValueTuple) HasItem1() bool

HasItem1 returns a boolean if a field has been set.

func (*GuidJsonPatchDocumentValueTuple) HasItem2

func (o *GuidJsonPatchDocumentValueTuple) HasItem2() bool

HasItem2 returns a boolean if a field has been set.

func (GuidJsonPatchDocumentValueTuple) MarshalJSON

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

func (*GuidJsonPatchDocumentValueTuple) SetItem1

func (o *GuidJsonPatchDocumentValueTuple) SetItem1(v string)

SetItem1 gets a reference to the given string and assigns it to the Item1 field.

func (*GuidJsonPatchDocumentValueTuple) SetItem2

SetItem2 gets a reference to the given JsonPatchDocument and assigns it to the Item2 field.

func (GuidJsonPatchDocumentValueTuple) ToMap

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

type IActionResultEnvelope

type IActionResultEnvelope struct {
	RequestId NullableString         `json:"request_id,omitempty"`
	Message   NullableString         `json:"message,omitempty"`
	Data      map[string]interface{} `json:"data,omitempty"`
}

IActionResultEnvelope struct for IActionResultEnvelope

func NewIActionResultEnvelope

func NewIActionResultEnvelope() *IActionResultEnvelope

NewIActionResultEnvelope instantiates a new IActionResultEnvelope 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 NewIActionResultEnvelopeWithDefaults

func NewIActionResultEnvelopeWithDefaults() *IActionResultEnvelope

NewIActionResultEnvelopeWithDefaults instantiates a new IActionResultEnvelope 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 (*IActionResultEnvelope) GetData

func (o *IActionResultEnvelope) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*IActionResultEnvelope) GetDataOk

func (o *IActionResultEnvelope) GetDataOk() (map[string]interface{}, bool)

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

func (*IActionResultEnvelope) GetMessage

func (o *IActionResultEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IActionResultEnvelope) GetMessageOk

func (o *IActionResultEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IActionResultEnvelope) GetRequestId

func (o *IActionResultEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IActionResultEnvelope) GetRequestIdOk

func (o *IActionResultEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IActionResultEnvelope) HasData

func (o *IActionResultEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*IActionResultEnvelope) HasMessage

func (o *IActionResultEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IActionResultEnvelope) HasRequestId

func (o *IActionResultEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (IActionResultEnvelope) MarshalJSON

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

func (*IActionResultEnvelope) SetData

func (o *IActionResultEnvelope) SetData(v map[string]interface{})

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

func (*IActionResultEnvelope) SetMessage

func (o *IActionResultEnvelope) SetMessage(v string)

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

func (*IActionResultEnvelope) SetMessageNil

func (o *IActionResultEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IActionResultEnvelope) SetRequestId

func (o *IActionResultEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IActionResultEnvelope) SetRequestIdNil

func (o *IActionResultEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IActionResultEnvelope) ToMap

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

func (*IActionResultEnvelope) UnsetMessage

func (o *IActionResultEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IActionResultEnvelope) UnsetRequestId

func (o *IActionResultEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type Identifier

type Identifier struct {
	IdentifierType NullableString `json:"identifierType,omitempty"`
	Value          NullableString `json:"value,omitempty"`
	IsTaken        *bool          `json:"isTaken,omitempty"`
}

Identifier struct for Identifier

func NewIdentifier

func NewIdentifier() *Identifier

NewIdentifier instantiates a new Identifier 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 NewIdentifierWithDefaults

func NewIdentifierWithDefaults() *Identifier

NewIdentifierWithDefaults instantiates a new Identifier 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 (*Identifier) GetIdentifierType

func (o *Identifier) GetIdentifierType() string

GetIdentifierType returns the IdentifierType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identifier) GetIdentifierTypeOk

func (o *Identifier) GetIdentifierTypeOk() (*string, bool)

GetIdentifierTypeOk returns a tuple with the IdentifierType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identifier) GetIsTaken

func (o *Identifier) GetIsTaken() bool

GetIsTaken returns the IsTaken field value if set, zero value otherwise.

func (*Identifier) GetIsTakenOk

func (o *Identifier) GetIsTakenOk() (*bool, bool)

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

func (*Identifier) GetValue

func (o *Identifier) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identifier) GetValueOk

func (o *Identifier) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identifier) HasIdentifierType

func (o *Identifier) HasIdentifierType() bool

HasIdentifierType returns a boolean if a field has been set.

func (*Identifier) HasIsTaken

func (o *Identifier) HasIsTaken() bool

HasIsTaken returns a boolean if a field has been set.

func (*Identifier) HasValue

func (o *Identifier) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Identifier) MarshalJSON

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

func (*Identifier) SetIdentifierType

func (o *Identifier) SetIdentifierType(v string)

SetIdentifierType gets a reference to the given NullableString and assigns it to the IdentifierType field.

func (*Identifier) SetIdentifierTypeNil

func (o *Identifier) SetIdentifierTypeNil()

SetIdentifierTypeNil sets the value for IdentifierType to be an explicit nil

func (*Identifier) SetIsTaken

func (o *Identifier) SetIsTaken(v bool)

SetIsTaken gets a reference to the given bool and assigns it to the IsTaken field.

func (*Identifier) SetValue

func (o *Identifier) SetValue(v string)

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

func (*Identifier) SetValueNil

func (o *Identifier) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (Identifier) ToMap

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

func (*Identifier) UnsetIdentifierType

func (o *Identifier) UnsetIdentifierType()

UnsetIdentifierType ensures that no value is present for IdentifierType, not even an explicit nil

func (*Identifier) UnsetValue

func (o *Identifier) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type IdentifierEnumerateEnvelope

type IdentifierEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Identifier   `json:"data,omitempty"`
}

IdentifierEnumerateEnvelope struct for IdentifierEnumerateEnvelope

func NewIdentifierEnumerateEnvelope

func NewIdentifierEnumerateEnvelope() *IdentifierEnumerateEnvelope

NewIdentifierEnumerateEnvelope instantiates a new IdentifierEnumerateEnvelope 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 NewIdentifierEnumerateEnvelopeWithDefaults

func NewIdentifierEnumerateEnvelopeWithDefaults() *IdentifierEnumerateEnvelope

NewIdentifierEnumerateEnvelopeWithDefaults instantiates a new IdentifierEnumerateEnvelope 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 (*IdentifierEnumerateEnvelope) GetData

func (o *IdentifierEnumerateEnvelope) GetData() []Identifier

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentifierEnumerateEnvelope) GetDataOk

func (o *IdentifierEnumerateEnvelope) GetDataOk() ([]Identifier, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentifierEnumerateEnvelope) GetDelta

func (o *IdentifierEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*IdentifierEnumerateEnvelope) GetDeltaOk

func (o *IdentifierEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*IdentifierEnumerateEnvelope) GetMessage

func (o *IdentifierEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentifierEnumerateEnvelope) GetMessageOk

func (o *IdentifierEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentifierEnumerateEnvelope) GetPagination

func (o *IdentifierEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*IdentifierEnumerateEnvelope) GetPaginationOk

func (o *IdentifierEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*IdentifierEnumerateEnvelope) GetRequestId

func (o *IdentifierEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentifierEnumerateEnvelope) GetRequestIdOk

func (o *IdentifierEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentifierEnumerateEnvelope) HasData

func (o *IdentifierEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*IdentifierEnumerateEnvelope) HasDelta

func (o *IdentifierEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*IdentifierEnumerateEnvelope) HasMessage

func (o *IdentifierEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IdentifierEnumerateEnvelope) HasPagination

func (o *IdentifierEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*IdentifierEnumerateEnvelope) HasRequestId

func (o *IdentifierEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (IdentifierEnumerateEnvelope) MarshalJSON

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

func (*IdentifierEnumerateEnvelope) SetData

func (o *IdentifierEnumerateEnvelope) SetData(v []Identifier)

SetData gets a reference to the given []Identifier and assigns it to the Data field.

func (*IdentifierEnumerateEnvelope) SetDelta

func (o *IdentifierEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*IdentifierEnumerateEnvelope) SetMessage

func (o *IdentifierEnumerateEnvelope) SetMessage(v string)

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

func (*IdentifierEnumerateEnvelope) SetMessageNil

func (o *IdentifierEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentifierEnumerateEnvelope) SetPagination

func (o *IdentifierEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*IdentifierEnumerateEnvelope) SetRequestId

func (o *IdentifierEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentifierEnumerateEnvelope) SetRequestIdNil

func (o *IdentifierEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentifierEnumerateEnvelope) ToMap

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

func (*IdentifierEnumerateEnvelope) UnsetMessage

func (o *IdentifierEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentifierEnumerateEnvelope) UnsetRequestId

func (o *IdentifierEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type IdentifierInputWrapper

type IdentifierInputWrapper struct {
	IdentifierName   NullableString `json:"identifierName,omitempty"`
	IdentifierValues []string       `json:"identifierValues,omitempty"`
}

IdentifierInputWrapper struct for IdentifierInputWrapper

func NewIdentifierInputWrapper

func NewIdentifierInputWrapper() *IdentifierInputWrapper

NewIdentifierInputWrapper instantiates a new IdentifierInputWrapper 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 NewIdentifierInputWrapperWithDefaults

func NewIdentifierInputWrapperWithDefaults() *IdentifierInputWrapper

NewIdentifierInputWrapperWithDefaults instantiates a new IdentifierInputWrapper 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 (*IdentifierInputWrapper) GetIdentifierName

func (o *IdentifierInputWrapper) GetIdentifierName() string

GetIdentifierName returns the IdentifierName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentifierInputWrapper) GetIdentifierNameOk

func (o *IdentifierInputWrapper) GetIdentifierNameOk() (*string, bool)

GetIdentifierNameOk returns a tuple with the IdentifierName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentifierInputWrapper) GetIdentifierValues

func (o *IdentifierInputWrapper) GetIdentifierValues() []string

GetIdentifierValues returns the IdentifierValues field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentifierInputWrapper) GetIdentifierValuesOk

func (o *IdentifierInputWrapper) GetIdentifierValuesOk() ([]string, bool)

GetIdentifierValuesOk returns a tuple with the IdentifierValues field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentifierInputWrapper) HasIdentifierName

func (o *IdentifierInputWrapper) HasIdentifierName() bool

HasIdentifierName returns a boolean if a field has been set.

func (*IdentifierInputWrapper) HasIdentifierValues

func (o *IdentifierInputWrapper) HasIdentifierValues() bool

HasIdentifierValues returns a boolean if a field has been set.

func (IdentifierInputWrapper) MarshalJSON

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

func (*IdentifierInputWrapper) SetIdentifierName

func (o *IdentifierInputWrapper) SetIdentifierName(v string)

SetIdentifierName gets a reference to the given NullableString and assigns it to the IdentifierName field.

func (*IdentifierInputWrapper) SetIdentifierNameNil

func (o *IdentifierInputWrapper) SetIdentifierNameNil()

SetIdentifierNameNil sets the value for IdentifierName to be an explicit nil

func (*IdentifierInputWrapper) SetIdentifierValues

func (o *IdentifierInputWrapper) SetIdentifierValues(v []string)

SetIdentifierValues gets a reference to the given []string and assigns it to the IdentifierValues field.

func (IdentifierInputWrapper) ToMap

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

func (*IdentifierInputWrapper) UnsetIdentifierName

func (o *IdentifierInputWrapper) UnsetIdentifierName()

UnsetIdentifierName ensures that no value is present for IdentifierName, not even an explicit nil

type IdentitiesAllowedToPost

type IdentitiesAllowedToPost struct {
	GroupMailSettingsId NullableString `json:"groupMailSettingsId,omitempty"`
	IdentityId          NullableString `json:"identityId,omitempty"`
}

IdentitiesAllowedToPost struct for IdentitiesAllowedToPost

func NewIdentitiesAllowedToPost

func NewIdentitiesAllowedToPost() *IdentitiesAllowedToPost

NewIdentitiesAllowedToPost instantiates a new IdentitiesAllowedToPost 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 NewIdentitiesAllowedToPostWithDefaults

func NewIdentitiesAllowedToPostWithDefaults() *IdentitiesAllowedToPost

NewIdentitiesAllowedToPostWithDefaults instantiates a new IdentitiesAllowedToPost 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 (*IdentitiesAllowedToPost) GetGroupMailSettingsId

func (o *IdentitiesAllowedToPost) GetGroupMailSettingsId() string

GetGroupMailSettingsId returns the GroupMailSettingsId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentitiesAllowedToPost) GetGroupMailSettingsIdOk

func (o *IdentitiesAllowedToPost) GetGroupMailSettingsIdOk() (*string, bool)

GetGroupMailSettingsIdOk returns a tuple with the GroupMailSettingsId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentitiesAllowedToPost) GetIdentityId

func (o *IdentitiesAllowedToPost) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentitiesAllowedToPost) GetIdentityIdOk

func (o *IdentitiesAllowedToPost) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentitiesAllowedToPost) HasGroupMailSettingsId

func (o *IdentitiesAllowedToPost) HasGroupMailSettingsId() bool

HasGroupMailSettingsId returns a boolean if a field has been set.

func (*IdentitiesAllowedToPost) HasIdentityId

func (o *IdentitiesAllowedToPost) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (IdentitiesAllowedToPost) MarshalJSON

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

func (*IdentitiesAllowedToPost) SetGroupMailSettingsId

func (o *IdentitiesAllowedToPost) SetGroupMailSettingsId(v string)

SetGroupMailSettingsId gets a reference to the given NullableString and assigns it to the GroupMailSettingsId field.

func (*IdentitiesAllowedToPost) SetGroupMailSettingsIdNil

func (o *IdentitiesAllowedToPost) SetGroupMailSettingsIdNil()

SetGroupMailSettingsIdNil sets the value for GroupMailSettingsId to be an explicit nil

func (*IdentitiesAllowedToPost) SetIdentityId

func (o *IdentitiesAllowedToPost) SetIdentityId(v string)

SetIdentityId gets a reference to the given NullableString and assigns it to the IdentityId field.

func (*IdentitiesAllowedToPost) SetIdentityIdNil

func (o *IdentitiesAllowedToPost) SetIdentityIdNil()

SetIdentityIdNil sets the value for IdentityId to be an explicit nil

func (IdentitiesAllowedToPost) ToMap

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

func (*IdentitiesAllowedToPost) UnsetGroupMailSettingsId

func (o *IdentitiesAllowedToPost) UnsetGroupMailSettingsId()

UnsetGroupMailSettingsId ensures that no value is present for GroupMailSettingsId, not even an explicit nil

func (*IdentitiesAllowedToPost) UnsetIdentityId

func (o *IdentitiesAllowedToPost) UnsetIdentityId()

UnsetIdentityId ensures that no value is present for IdentityId, not even an explicit nil

type IdentitiesAllowedToPostEnumerateEnvelope

type IdentitiesAllowedToPostEnumerateEnvelope struct {
	Pagination *Pagination               `json:"pagination,omitempty"`
	Delta      *Delta                    `json:"delta,omitempty"`
	RequestId  NullableString            `json:"request_id,omitempty"`
	Message    NullableString            `json:"message,omitempty"`
	Data       []IdentitiesAllowedToPost `json:"data,omitempty"`
}

IdentitiesAllowedToPostEnumerateEnvelope struct for IdentitiesAllowedToPostEnumerateEnvelope

func NewIdentitiesAllowedToPostEnumerateEnvelope

func NewIdentitiesAllowedToPostEnumerateEnvelope() *IdentitiesAllowedToPostEnumerateEnvelope

NewIdentitiesAllowedToPostEnumerateEnvelope instantiates a new IdentitiesAllowedToPostEnumerateEnvelope 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 NewIdentitiesAllowedToPostEnumerateEnvelopeWithDefaults

func NewIdentitiesAllowedToPostEnumerateEnvelopeWithDefaults() *IdentitiesAllowedToPostEnumerateEnvelope

NewIdentitiesAllowedToPostEnumerateEnvelopeWithDefaults instantiates a new IdentitiesAllowedToPostEnumerateEnvelope 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 (*IdentitiesAllowedToPostEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetDeltaOk

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

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetPaginationOk

func (o *IdentitiesAllowedToPostEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentitiesAllowedToPostEnumerateEnvelope) GetRequestIdOk

func (o *IdentitiesAllowedToPostEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentitiesAllowedToPostEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*IdentitiesAllowedToPostEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*IdentitiesAllowedToPostEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*IdentitiesAllowedToPostEnumerateEnvelope) HasPagination

HasPagination returns a boolean if a field has been set.

func (*IdentitiesAllowedToPostEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (IdentitiesAllowedToPostEnumerateEnvelope) MarshalJSON

func (*IdentitiesAllowedToPostEnumerateEnvelope) SetData

SetData gets a reference to the given []IdentitiesAllowedToPost and assigns it to the Data field.

func (*IdentitiesAllowedToPostEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*IdentitiesAllowedToPostEnumerateEnvelope) SetMessage

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

func (*IdentitiesAllowedToPostEnumerateEnvelope) SetMessageNil

func (o *IdentitiesAllowedToPostEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentitiesAllowedToPostEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*IdentitiesAllowedToPostEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentitiesAllowedToPostEnumerateEnvelope) SetRequestIdNil

func (o *IdentitiesAllowedToPostEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentitiesAllowedToPostEnumerateEnvelope) ToMap

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

func (*IdentitiesAllowedToPostEnumerateEnvelope) UnsetMessage

func (o *IdentitiesAllowedToPostEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentitiesAllowedToPostEnumerateEnvelope) UnsetRequestId

func (o *IdentitiesAllowedToPostEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type Identity

type Identity struct {
	Type                       IdentityType      `json:"type"`
	Upn                        NullableString    `json:"upn,omitempty"`
	DisplayName                string            `json:"displayName"`
	FirstName                  NullableString    `json:"firstName,omitempty"`
	LastName                   NullableString    `json:"lastName,omitempty"`
	BirthDate                  NullableTime      `json:"birthDate,omitempty"`
	PersonId                   NullableString    `json:"personId,omitempty"`
	CernPersonId               NullableString    `json:"cernPersonId,omitempty"`
	SupervisorId               NullableString    `json:"supervisorId,omitempty"`
	DirectResponsibleId        NullableString    `json:"directResponsibleId,omitempty"`
	Source                     NullableString    `json:"source,omitempty"`
	Unconfirmed                bool              `json:"unconfirmed"`
	UnconfirmedEmail           NullableString    `json:"unconfirmedEmail,omitempty"`
	PrimaryAccountId           NullableString    `json:"primaryAccountId,omitempty"`
	Uid                        NullableInt32     `json:"uid,omitempty"`
	Gid                        NullableInt32     `json:"gid,omitempty"`
	Building                   NullableString    `json:"building,omitempty"`
	Floor                      NullableString    `json:"floor,omitempty"`
	Room                       NullableString    `json:"room,omitempty"`
	ActiveUser                 *bool             `json:"activeUser,omitempty"`
	CernClass                  NullableString    `json:"cernClass,omitempty"`
	StartClass                 NullableTime      `json:"startClass,omitempty"`
	EndClass                   NullableTime      `json:"endClass,omitempty"`
	CernDepartment             NullableString    `json:"cernDepartment,omitempty"`
	CernGroup                  NullableString    `json:"cernGroup,omitempty"`
	CernSection                NullableString    `json:"cernSection,omitempty"`
	InstituteName              NullableString    `json:"instituteName,omitempty"`
	InstituteAbbreviation      NullableString    `json:"instituteAbbreviation,omitempty"`
	ComputingRulesAcceptedFlag *bool             `json:"computingRulesAcceptedFlag,omitempty"`
	ComputingRulesAccepted     NullableTime      `json:"computingRulesAccepted,omitempty"`
	ComputingRulesValidUntil   NullableTime      `json:"computingRulesValidUntil,omitempty"`
	PreferredCernLanguage      NullableString    `json:"preferredCernLanguage,omitempty"`
	Telephone1                 NullableString    `json:"telephone1,omitempty"`
	Telephone2                 NullableString    `json:"telephone2,omitempty"`
	PortablePhone              NullableString    `json:"portablePhone,omitempty"`
	EdhAuthPwdExpiry           NullableTime      `json:"edhAuthPwdExpiry,omitempty"`
	EduPersonUniqueID          NullableString    `json:"eduPersonUniqueID,omitempty"`
	Orcid                      NullableString    `json:"orcid,omitempty"`
	Description                NullableString    `json:"description,omitempty"`
	HrEmail                    NullableString    `json:"hrEmail,omitempty"`
	AtCern                     *bool             `json:"atCern,omitempty"`
	PostOfficeBox              NullableString    `json:"postOfficeBox,omitempty"`
	Supervisor                 *Identity         `json:"supervisor,omitempty"`
	ExternalEmail              NullableString    `json:"externalEmail,omitempty"`
	PrimaryAccountEmail        NullableString    `json:"primaryAccountEmail,omitempty"`
	ResourceCategory           *ResourceCategory `json:"resourceCategory,omitempty"`
	Reassignable               *bool             `json:"reassignable,omitempty"`
	AutoReassign               *bool             `json:"autoReassign,omitempty"`
	// Deprecated
	PendingAction    *bool          `json:"pendingAction,omitempty"`
	Disabled         *bool          `json:"disabled,omitempty"`
	Blocked          *bool          `json:"blocked,omitempty"`
	SecurityIssues   *bool          `json:"securityIssues,omitempty"`
	BlockingReason   NullableString `json:"blockingReason,omitempty"`
	BlockingTime     NullableTime   `json:"blockingTime,omitempty"`
	BlockingDeadline NullableTime   `json:"blockingDeadline,omitempty"`
	ArchiveDeadline  NullableTime   `json:"archiveDeadline,omitempty"`
	DeleteDeadline   NullableTime   `json:"deleteDeadline,omitempty"`
	// Deprecated
	ExpirationDeadline  NullableTime   `json:"expirationDeadline,omitempty"`
	OwnerId             NullableString `json:"ownerId,omitempty"`
	InternalState       *ResourceState `json:"internalState,omitempty"`
	State               *ResourceState `json:"state,omitempty"`
	LastStateChangeTime NullableTime   `json:"lastStateChangeTime,omitempty"`
	ValidityLimit       NullableTime   `json:"validityLimit,omitempty"`
	Id                  NullableString `json:"id,omitempty"`
	CreationTime        *time.Time     `json:"creationTime,omitempty"`
}

Identity struct for Identity

func NewIdentity

func NewIdentity(type_ IdentityType, displayName string, unconfirmed bool) *Identity

NewIdentity instantiates a new Identity 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 NewIdentityWithDefaults

func NewIdentityWithDefaults() *Identity

NewIdentityWithDefaults instantiates a new Identity 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 (*Identity) GetActiveUser

func (o *Identity) GetActiveUser() bool

GetActiveUser returns the ActiveUser field value if set, zero value otherwise.

func (*Identity) GetActiveUserOk

func (o *Identity) GetActiveUserOk() (*bool, bool)

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

func (*Identity) GetArchiveDeadline

func (o *Identity) GetArchiveDeadline() time.Time

GetArchiveDeadline returns the ArchiveDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetArchiveDeadlineOk

func (o *Identity) GetArchiveDeadlineOk() (*time.Time, bool)

GetArchiveDeadlineOk returns a tuple with the ArchiveDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetAtCern

func (o *Identity) GetAtCern() bool

GetAtCern returns the AtCern field value if set, zero value otherwise.

func (*Identity) GetAtCernOk

func (o *Identity) GetAtCernOk() (*bool, bool)

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

func (*Identity) GetAutoReassign

func (o *Identity) GetAutoReassign() bool

GetAutoReassign returns the AutoReassign field value if set, zero value otherwise.

func (*Identity) GetAutoReassignOk

func (o *Identity) GetAutoReassignOk() (*bool, bool)

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

func (*Identity) GetBirthDate

func (o *Identity) GetBirthDate() time.Time

GetBirthDate returns the BirthDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetBirthDateOk

func (o *Identity) GetBirthDateOk() (*time.Time, bool)

GetBirthDateOk returns a tuple with the BirthDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetBlocked

func (o *Identity) GetBlocked() bool

GetBlocked returns the Blocked field value if set, zero value otherwise.

func (*Identity) GetBlockedOk

func (o *Identity) GetBlockedOk() (*bool, bool)

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

func (*Identity) GetBlockingDeadline

func (o *Identity) GetBlockingDeadline() time.Time

GetBlockingDeadline returns the BlockingDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetBlockingDeadlineOk

func (o *Identity) GetBlockingDeadlineOk() (*time.Time, bool)

GetBlockingDeadlineOk returns a tuple with the BlockingDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetBlockingReason

func (o *Identity) GetBlockingReason() string

GetBlockingReason returns the BlockingReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetBlockingReasonOk

func (o *Identity) GetBlockingReasonOk() (*string, bool)

GetBlockingReasonOk returns a tuple with the BlockingReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetBlockingTime

func (o *Identity) GetBlockingTime() time.Time

GetBlockingTime returns the BlockingTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetBlockingTimeOk

func (o *Identity) GetBlockingTimeOk() (*time.Time, bool)

GetBlockingTimeOk returns a tuple with the BlockingTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetBuilding

func (o *Identity) GetBuilding() string

GetBuilding returns the Building field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetBuildingOk

func (o *Identity) GetBuildingOk() (*string, bool)

GetBuildingOk returns a tuple with the Building field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetCernClass

func (o *Identity) GetCernClass() string

GetCernClass returns the CernClass field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetCernClassOk

func (o *Identity) GetCernClassOk() (*string, bool)

GetCernClassOk returns a tuple with the CernClass field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetCernDepartment

func (o *Identity) GetCernDepartment() string

GetCernDepartment returns the CernDepartment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetCernDepartmentOk

func (o *Identity) GetCernDepartmentOk() (*string, bool)

GetCernDepartmentOk returns a tuple with the CernDepartment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetCernGroup

func (o *Identity) GetCernGroup() string

GetCernGroup returns the CernGroup field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetCernGroupOk

func (o *Identity) GetCernGroupOk() (*string, bool)

GetCernGroupOk returns a tuple with the CernGroup field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetCernPersonId

func (o *Identity) GetCernPersonId() string

GetCernPersonId returns the CernPersonId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetCernPersonIdOk

func (o *Identity) GetCernPersonIdOk() (*string, bool)

GetCernPersonIdOk returns a tuple with the CernPersonId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetCernSection

func (o *Identity) GetCernSection() string

GetCernSection returns the CernSection field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetCernSectionOk

func (o *Identity) GetCernSectionOk() (*string, bool)

GetCernSectionOk returns a tuple with the CernSection field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetComputingRulesAccepted

func (o *Identity) GetComputingRulesAccepted() time.Time

GetComputingRulesAccepted returns the ComputingRulesAccepted field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetComputingRulesAcceptedFlag

func (o *Identity) GetComputingRulesAcceptedFlag() bool

GetComputingRulesAcceptedFlag returns the ComputingRulesAcceptedFlag field value if set, zero value otherwise.

func (*Identity) GetComputingRulesAcceptedFlagOk

func (o *Identity) GetComputingRulesAcceptedFlagOk() (*bool, bool)

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

func (*Identity) GetComputingRulesAcceptedOk

func (o *Identity) GetComputingRulesAcceptedOk() (*time.Time, bool)

GetComputingRulesAcceptedOk returns a tuple with the ComputingRulesAccepted field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetComputingRulesValidUntil

func (o *Identity) GetComputingRulesValidUntil() time.Time

GetComputingRulesValidUntil returns the ComputingRulesValidUntil field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetComputingRulesValidUntilOk

func (o *Identity) GetComputingRulesValidUntilOk() (*time.Time, bool)

GetComputingRulesValidUntilOk returns a tuple with the ComputingRulesValidUntil field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetCreationTime

func (o *Identity) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Identity) GetCreationTimeOk

func (o *Identity) GetCreationTimeOk() (*time.Time, bool)

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

func (*Identity) GetDeleteDeadline

func (o *Identity) GetDeleteDeadline() time.Time

GetDeleteDeadline returns the DeleteDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetDeleteDeadlineOk

func (o *Identity) GetDeleteDeadlineOk() (*time.Time, bool)

GetDeleteDeadlineOk returns a tuple with the DeleteDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetDescription

func (o *Identity) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetDescriptionOk

func (o *Identity) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetDirectResponsibleId

func (o *Identity) GetDirectResponsibleId() string

GetDirectResponsibleId returns the DirectResponsibleId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetDirectResponsibleIdOk

func (o *Identity) GetDirectResponsibleIdOk() (*string, bool)

GetDirectResponsibleIdOk returns a tuple with the DirectResponsibleId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetDisabled

func (o *Identity) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*Identity) GetDisabledOk

func (o *Identity) GetDisabledOk() (*bool, bool)

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

func (*Identity) GetDisplayName

func (o *Identity) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*Identity) GetDisplayNameOk

func (o *Identity) GetDisplayNameOk() (*string, bool)

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

func (*Identity) GetEdhAuthPwdExpiry

func (o *Identity) GetEdhAuthPwdExpiry() time.Time

GetEdhAuthPwdExpiry returns the EdhAuthPwdExpiry field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetEdhAuthPwdExpiryOk

func (o *Identity) GetEdhAuthPwdExpiryOk() (*time.Time, bool)

GetEdhAuthPwdExpiryOk returns a tuple with the EdhAuthPwdExpiry field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetEduPersonUniqueID

func (o *Identity) GetEduPersonUniqueID() string

GetEduPersonUniqueID returns the EduPersonUniqueID field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetEduPersonUniqueIDOk

func (o *Identity) GetEduPersonUniqueIDOk() (*string, bool)

GetEduPersonUniqueIDOk returns a tuple with the EduPersonUniqueID field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetEndClass

func (o *Identity) GetEndClass() time.Time

GetEndClass returns the EndClass field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetEndClassOk

func (o *Identity) GetEndClassOk() (*time.Time, bool)

GetEndClassOk returns a tuple with the EndClass field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetExpirationDeadline

func (o *Identity) GetExpirationDeadline() time.Time

GetExpirationDeadline returns the ExpirationDeadline field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*Identity) GetExpirationDeadlineOk

func (o *Identity) GetExpirationDeadlineOk() (*time.Time, bool)

GetExpirationDeadlineOk returns a tuple with the ExpirationDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned Deprecated

func (*Identity) GetExternalEmail

func (o *Identity) GetExternalEmail() string

GetExternalEmail returns the ExternalEmail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetExternalEmailOk

func (o *Identity) GetExternalEmailOk() (*string, bool)

GetExternalEmailOk returns a tuple with the ExternalEmail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetFirstName

func (o *Identity) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetFirstNameOk

func (o *Identity) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetFloor

func (o *Identity) GetFloor() string

GetFloor returns the Floor field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetFloorOk

func (o *Identity) GetFloorOk() (*string, bool)

GetFloorOk returns a tuple with the Floor field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetGid

func (o *Identity) GetGid() int32

GetGid returns the Gid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetGidOk

func (o *Identity) GetGidOk() (*int32, bool)

GetGidOk returns a tuple with the Gid field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetHrEmail

func (o *Identity) GetHrEmail() string

GetHrEmail returns the HrEmail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetHrEmailOk

func (o *Identity) GetHrEmailOk() (*string, bool)

GetHrEmailOk returns a tuple with the HrEmail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetId

func (o *Identity) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetIdOk

func (o *Identity) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetInstituteAbbreviation

func (o *Identity) GetInstituteAbbreviation() string

GetInstituteAbbreviation returns the InstituteAbbreviation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetInstituteAbbreviationOk

func (o *Identity) GetInstituteAbbreviationOk() (*string, bool)

GetInstituteAbbreviationOk returns a tuple with the InstituteAbbreviation field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetInstituteName

func (o *Identity) GetInstituteName() string

GetInstituteName returns the InstituteName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetInstituteNameOk

func (o *Identity) GetInstituteNameOk() (*string, bool)

GetInstituteNameOk returns a tuple with the InstituteName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetInternalState

func (o *Identity) GetInternalState() ResourceState

GetInternalState returns the InternalState field value if set, zero value otherwise.

func (*Identity) GetInternalStateOk

func (o *Identity) GetInternalStateOk() (*ResourceState, bool)

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

func (*Identity) GetLastName

func (o *Identity) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetLastNameOk

func (o *Identity) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetLastStateChangeTime

func (o *Identity) GetLastStateChangeTime() time.Time

GetLastStateChangeTime returns the LastStateChangeTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetLastStateChangeTimeOk

func (o *Identity) GetLastStateChangeTimeOk() (*time.Time, bool)

GetLastStateChangeTimeOk returns a tuple with the LastStateChangeTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetOrcid

func (o *Identity) GetOrcid() string

GetOrcid returns the Orcid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetOrcidOk

func (o *Identity) GetOrcidOk() (*string, bool)

GetOrcidOk returns a tuple with the Orcid field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetOwnerId

func (o *Identity) GetOwnerId() string

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetOwnerIdOk

func (o *Identity) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetPendingAction

func (o *Identity) GetPendingAction() bool

GetPendingAction returns the PendingAction field value if set, zero value otherwise. Deprecated

func (*Identity) GetPendingActionOk

func (o *Identity) GetPendingActionOk() (*bool, bool)

GetPendingActionOk returns a tuple with the PendingAction field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Identity) GetPersonId

func (o *Identity) GetPersonId() string

GetPersonId returns the PersonId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetPersonIdOk

func (o *Identity) GetPersonIdOk() (*string, bool)

GetPersonIdOk returns a tuple with the PersonId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetPortablePhone

func (o *Identity) GetPortablePhone() string

GetPortablePhone returns the PortablePhone field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetPortablePhoneOk

func (o *Identity) GetPortablePhoneOk() (*string, bool)

GetPortablePhoneOk returns a tuple with the PortablePhone field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetPostOfficeBox

func (o *Identity) GetPostOfficeBox() string

GetPostOfficeBox returns the PostOfficeBox field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetPostOfficeBoxOk

func (o *Identity) GetPostOfficeBoxOk() (*string, bool)

GetPostOfficeBoxOk returns a tuple with the PostOfficeBox field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetPreferredCernLanguage

func (o *Identity) GetPreferredCernLanguage() string

GetPreferredCernLanguage returns the PreferredCernLanguage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetPreferredCernLanguageOk

func (o *Identity) GetPreferredCernLanguageOk() (*string, bool)

GetPreferredCernLanguageOk returns a tuple with the PreferredCernLanguage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetPrimaryAccountEmail

func (o *Identity) GetPrimaryAccountEmail() string

GetPrimaryAccountEmail returns the PrimaryAccountEmail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetPrimaryAccountEmailOk

func (o *Identity) GetPrimaryAccountEmailOk() (*string, bool)

GetPrimaryAccountEmailOk returns a tuple with the PrimaryAccountEmail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetPrimaryAccountId

func (o *Identity) GetPrimaryAccountId() string

GetPrimaryAccountId returns the PrimaryAccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetPrimaryAccountIdOk

func (o *Identity) GetPrimaryAccountIdOk() (*string, bool)

GetPrimaryAccountIdOk returns a tuple with the PrimaryAccountId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetReassignable

func (o *Identity) GetReassignable() bool

GetReassignable returns the Reassignable field value if set, zero value otherwise.

func (*Identity) GetReassignableOk

func (o *Identity) GetReassignableOk() (*bool, bool)

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

func (*Identity) GetResourceCategory

func (o *Identity) GetResourceCategory() ResourceCategory

GetResourceCategory returns the ResourceCategory field value if set, zero value otherwise.

func (*Identity) GetResourceCategoryOk

func (o *Identity) GetResourceCategoryOk() (*ResourceCategory, bool)

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

func (*Identity) GetRoom

func (o *Identity) GetRoom() string

GetRoom returns the Room field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetRoomOk

func (o *Identity) GetRoomOk() (*string, bool)

GetRoomOk returns a tuple with the Room field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetSecurityIssues

func (o *Identity) GetSecurityIssues() bool

GetSecurityIssues returns the SecurityIssues field value if set, zero value otherwise.

func (*Identity) GetSecurityIssuesOk

func (o *Identity) GetSecurityIssuesOk() (*bool, bool)

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

func (*Identity) GetSource

func (o *Identity) GetSource() string

GetSource returns the Source field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetSourceOk

func (o *Identity) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetStartClass

func (o *Identity) GetStartClass() time.Time

GetStartClass returns the StartClass field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetStartClassOk

func (o *Identity) GetStartClassOk() (*time.Time, bool)

GetStartClassOk returns a tuple with the StartClass field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetState

func (o *Identity) GetState() ResourceState

GetState returns the State field value if set, zero value otherwise.

func (*Identity) GetStateOk

func (o *Identity) GetStateOk() (*ResourceState, bool)

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

func (*Identity) GetSupervisor

func (o *Identity) GetSupervisor() Identity

GetSupervisor returns the Supervisor field value if set, zero value otherwise.

func (*Identity) GetSupervisorId

func (o *Identity) GetSupervisorId() string

GetSupervisorId returns the SupervisorId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetSupervisorIdOk

func (o *Identity) GetSupervisorIdOk() (*string, bool)

GetSupervisorIdOk returns a tuple with the SupervisorId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetSupervisorOk

func (o *Identity) GetSupervisorOk() (*Identity, bool)

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

func (*Identity) GetTelephone1

func (o *Identity) GetTelephone1() string

GetTelephone1 returns the Telephone1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetTelephone1Ok

func (o *Identity) GetTelephone1Ok() (*string, bool)

GetTelephone1Ok returns a tuple with the Telephone1 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetTelephone2

func (o *Identity) GetTelephone2() string

GetTelephone2 returns the Telephone2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetTelephone2Ok

func (o *Identity) GetTelephone2Ok() (*string, bool)

GetTelephone2Ok returns a tuple with the Telephone2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetType

func (o *Identity) GetType() IdentityType

GetType returns the Type field value

func (*Identity) GetTypeOk

func (o *Identity) GetTypeOk() (*IdentityType, bool)

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

func (*Identity) GetUid

func (o *Identity) GetUid() int32

GetUid returns the Uid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetUidOk

func (o *Identity) GetUidOk() (*int32, bool)

GetUidOk returns a tuple with the Uid field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetUnconfirmed

func (o *Identity) GetUnconfirmed() bool

GetUnconfirmed returns the Unconfirmed field value

func (*Identity) GetUnconfirmedEmail

func (o *Identity) GetUnconfirmedEmail() string

GetUnconfirmedEmail returns the UnconfirmedEmail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetUnconfirmedEmailOk

func (o *Identity) GetUnconfirmedEmailOk() (*string, bool)

GetUnconfirmedEmailOk returns a tuple with the UnconfirmedEmail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetUnconfirmedOk

func (o *Identity) GetUnconfirmedOk() (*bool, bool)

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

func (*Identity) GetUpn

func (o *Identity) GetUpn() string

GetUpn returns the Upn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetUpnOk

func (o *Identity) GetUpnOk() (*string, bool)

GetUpnOk returns a tuple with the Upn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetValidityLimit

func (o *Identity) GetValidityLimit() time.Time

GetValidityLimit returns the ValidityLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetValidityLimitOk

func (o *Identity) GetValidityLimitOk() (*time.Time, bool)

GetValidityLimitOk returns a tuple with the ValidityLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) HasActiveUser

func (o *Identity) HasActiveUser() bool

HasActiveUser returns a boolean if a field has been set.

func (*Identity) HasArchiveDeadline

func (o *Identity) HasArchiveDeadline() bool

HasArchiveDeadline returns a boolean if a field has been set.

func (*Identity) HasAtCern

func (o *Identity) HasAtCern() bool

HasAtCern returns a boolean if a field has been set.

func (*Identity) HasAutoReassign

func (o *Identity) HasAutoReassign() bool

HasAutoReassign returns a boolean if a field has been set.

func (*Identity) HasBirthDate

func (o *Identity) HasBirthDate() bool

HasBirthDate returns a boolean if a field has been set.

func (*Identity) HasBlocked

func (o *Identity) HasBlocked() bool

HasBlocked returns a boolean if a field has been set.

func (*Identity) HasBlockingDeadline

func (o *Identity) HasBlockingDeadline() bool

HasBlockingDeadline returns a boolean if a field has been set.

func (*Identity) HasBlockingReason

func (o *Identity) HasBlockingReason() bool

HasBlockingReason returns a boolean if a field has been set.

func (*Identity) HasBlockingTime

func (o *Identity) HasBlockingTime() bool

HasBlockingTime returns a boolean if a field has been set.

func (*Identity) HasBuilding

func (o *Identity) HasBuilding() bool

HasBuilding returns a boolean if a field has been set.

func (*Identity) HasCernClass

func (o *Identity) HasCernClass() bool

HasCernClass returns a boolean if a field has been set.

func (*Identity) HasCernDepartment

func (o *Identity) HasCernDepartment() bool

HasCernDepartment returns a boolean if a field has been set.

func (*Identity) HasCernGroup

func (o *Identity) HasCernGroup() bool

HasCernGroup returns a boolean if a field has been set.

func (*Identity) HasCernPersonId

func (o *Identity) HasCernPersonId() bool

HasCernPersonId returns a boolean if a field has been set.

func (*Identity) HasCernSection

func (o *Identity) HasCernSection() bool

HasCernSection returns a boolean if a field has been set.

func (*Identity) HasComputingRulesAccepted

func (o *Identity) HasComputingRulesAccepted() bool

HasComputingRulesAccepted returns a boolean if a field has been set.

func (*Identity) HasComputingRulesAcceptedFlag

func (o *Identity) HasComputingRulesAcceptedFlag() bool

HasComputingRulesAcceptedFlag returns a boolean if a field has been set.

func (*Identity) HasComputingRulesValidUntil

func (o *Identity) HasComputingRulesValidUntil() bool

HasComputingRulesValidUntil returns a boolean if a field has been set.

func (*Identity) HasCreationTime

func (o *Identity) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*Identity) HasDeleteDeadline

func (o *Identity) HasDeleteDeadline() bool

HasDeleteDeadline returns a boolean if a field has been set.

func (*Identity) HasDescription

func (o *Identity) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Identity) HasDirectResponsibleId

func (o *Identity) HasDirectResponsibleId() bool

HasDirectResponsibleId returns a boolean if a field has been set.

func (*Identity) HasDisabled

func (o *Identity) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*Identity) HasEdhAuthPwdExpiry

func (o *Identity) HasEdhAuthPwdExpiry() bool

HasEdhAuthPwdExpiry returns a boolean if a field has been set.

func (*Identity) HasEduPersonUniqueID

func (o *Identity) HasEduPersonUniqueID() bool

HasEduPersonUniqueID returns a boolean if a field has been set.

func (*Identity) HasEndClass

func (o *Identity) HasEndClass() bool

HasEndClass returns a boolean if a field has been set.

func (*Identity) HasExpirationDeadline

func (o *Identity) HasExpirationDeadline() bool

HasExpirationDeadline returns a boolean if a field has been set.

func (*Identity) HasExternalEmail

func (o *Identity) HasExternalEmail() bool

HasExternalEmail returns a boolean if a field has been set.

func (*Identity) HasFirstName

func (o *Identity) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*Identity) HasFloor

func (o *Identity) HasFloor() bool

HasFloor returns a boolean if a field has been set.

func (*Identity) HasGid

func (o *Identity) HasGid() bool

HasGid returns a boolean if a field has been set.

func (*Identity) HasHrEmail

func (o *Identity) HasHrEmail() bool

HasHrEmail returns a boolean if a field has been set.

func (*Identity) HasId

func (o *Identity) HasId() bool

HasId returns a boolean if a field has been set.

func (*Identity) HasInstituteAbbreviation

func (o *Identity) HasInstituteAbbreviation() bool

HasInstituteAbbreviation returns a boolean if a field has been set.

func (*Identity) HasInstituteName

func (o *Identity) HasInstituteName() bool

HasInstituteName returns a boolean if a field has been set.

func (*Identity) HasInternalState

func (o *Identity) HasInternalState() bool

HasInternalState returns a boolean if a field has been set.

func (*Identity) HasLastName

func (o *Identity) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*Identity) HasLastStateChangeTime

func (o *Identity) HasLastStateChangeTime() bool

HasLastStateChangeTime returns a boolean if a field has been set.

func (*Identity) HasOrcid

func (o *Identity) HasOrcid() bool

HasOrcid returns a boolean if a field has been set.

func (*Identity) HasOwnerId

func (o *Identity) HasOwnerId() bool

HasOwnerId returns a boolean if a field has been set.

func (*Identity) HasPendingAction

func (o *Identity) HasPendingAction() bool

HasPendingAction returns a boolean if a field has been set.

func (*Identity) HasPersonId

func (o *Identity) HasPersonId() bool

HasPersonId returns a boolean if a field has been set.

func (*Identity) HasPortablePhone

func (o *Identity) HasPortablePhone() bool

HasPortablePhone returns a boolean if a field has been set.

func (*Identity) HasPostOfficeBox

func (o *Identity) HasPostOfficeBox() bool

HasPostOfficeBox returns a boolean if a field has been set.

func (*Identity) HasPreferredCernLanguage

func (o *Identity) HasPreferredCernLanguage() bool

HasPreferredCernLanguage returns a boolean if a field has been set.

func (*Identity) HasPrimaryAccountEmail

func (o *Identity) HasPrimaryAccountEmail() bool

HasPrimaryAccountEmail returns a boolean if a field has been set.

func (*Identity) HasPrimaryAccountId

func (o *Identity) HasPrimaryAccountId() bool

HasPrimaryAccountId returns a boolean if a field has been set.

func (*Identity) HasReassignable

func (o *Identity) HasReassignable() bool

HasReassignable returns a boolean if a field has been set.

func (*Identity) HasResourceCategory

func (o *Identity) HasResourceCategory() bool

HasResourceCategory returns a boolean if a field has been set.

func (*Identity) HasRoom

func (o *Identity) HasRoom() bool

HasRoom returns a boolean if a field has been set.

func (*Identity) HasSecurityIssues

func (o *Identity) HasSecurityIssues() bool

HasSecurityIssues returns a boolean if a field has been set.

func (*Identity) HasSource

func (o *Identity) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*Identity) HasStartClass

func (o *Identity) HasStartClass() bool

HasStartClass returns a boolean if a field has been set.

func (*Identity) HasState

func (o *Identity) HasState() bool

HasState returns a boolean if a field has been set.

func (*Identity) HasSupervisor

func (o *Identity) HasSupervisor() bool

HasSupervisor returns a boolean if a field has been set.

func (*Identity) HasSupervisorId

func (o *Identity) HasSupervisorId() bool

HasSupervisorId returns a boolean if a field has been set.

func (*Identity) HasTelephone1

func (o *Identity) HasTelephone1() bool

HasTelephone1 returns a boolean if a field has been set.

func (*Identity) HasTelephone2

func (o *Identity) HasTelephone2() bool

HasTelephone2 returns a boolean if a field has been set.

func (*Identity) HasUid

func (o *Identity) HasUid() bool

HasUid returns a boolean if a field has been set.

func (*Identity) HasUnconfirmedEmail

func (o *Identity) HasUnconfirmedEmail() bool

HasUnconfirmedEmail returns a boolean if a field has been set.

func (*Identity) HasUpn

func (o *Identity) HasUpn() bool

HasUpn returns a boolean if a field has been set.

func (*Identity) HasValidityLimit

func (o *Identity) HasValidityLimit() bool

HasValidityLimit returns a boolean if a field has been set.

func (Identity) MarshalJSON

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

func (*Identity) SetActiveUser

func (o *Identity) SetActiveUser(v bool)

SetActiveUser gets a reference to the given bool and assigns it to the ActiveUser field.

func (*Identity) SetArchiveDeadline

func (o *Identity) SetArchiveDeadline(v time.Time)

SetArchiveDeadline gets a reference to the given NullableTime and assigns it to the ArchiveDeadline field.

func (*Identity) SetArchiveDeadlineNil

func (o *Identity) SetArchiveDeadlineNil()

SetArchiveDeadlineNil sets the value for ArchiveDeadline to be an explicit nil

func (*Identity) SetAtCern

func (o *Identity) SetAtCern(v bool)

SetAtCern gets a reference to the given bool and assigns it to the AtCern field.

func (*Identity) SetAutoReassign

func (o *Identity) SetAutoReassign(v bool)

SetAutoReassign gets a reference to the given bool and assigns it to the AutoReassign field.

func (*Identity) SetBirthDate

func (o *Identity) SetBirthDate(v time.Time)

SetBirthDate gets a reference to the given NullableTime and assigns it to the BirthDate field.

func (*Identity) SetBirthDateNil

func (o *Identity) SetBirthDateNil()

SetBirthDateNil sets the value for BirthDate to be an explicit nil

func (*Identity) SetBlocked

func (o *Identity) SetBlocked(v bool)

SetBlocked gets a reference to the given bool and assigns it to the Blocked field.

func (*Identity) SetBlockingDeadline

func (o *Identity) SetBlockingDeadline(v time.Time)

SetBlockingDeadline gets a reference to the given NullableTime and assigns it to the BlockingDeadline field.

func (*Identity) SetBlockingDeadlineNil

func (o *Identity) SetBlockingDeadlineNil()

SetBlockingDeadlineNil sets the value for BlockingDeadline to be an explicit nil

func (*Identity) SetBlockingReason

func (o *Identity) SetBlockingReason(v string)

SetBlockingReason gets a reference to the given NullableString and assigns it to the BlockingReason field.

func (*Identity) SetBlockingReasonNil

func (o *Identity) SetBlockingReasonNil()

SetBlockingReasonNil sets the value for BlockingReason to be an explicit nil

func (*Identity) SetBlockingTime

func (o *Identity) SetBlockingTime(v time.Time)

SetBlockingTime gets a reference to the given NullableTime and assigns it to the BlockingTime field.

func (*Identity) SetBlockingTimeNil

func (o *Identity) SetBlockingTimeNil()

SetBlockingTimeNil sets the value for BlockingTime to be an explicit nil

func (*Identity) SetBuilding

func (o *Identity) SetBuilding(v string)

SetBuilding gets a reference to the given NullableString and assigns it to the Building field.

func (*Identity) SetBuildingNil

func (o *Identity) SetBuildingNil()

SetBuildingNil sets the value for Building to be an explicit nil

func (*Identity) SetCernClass

func (o *Identity) SetCernClass(v string)

SetCernClass gets a reference to the given NullableString and assigns it to the CernClass field.

func (*Identity) SetCernClassNil

func (o *Identity) SetCernClassNil()

SetCernClassNil sets the value for CernClass to be an explicit nil

func (*Identity) SetCernDepartment

func (o *Identity) SetCernDepartment(v string)

SetCernDepartment gets a reference to the given NullableString and assigns it to the CernDepartment field.

func (*Identity) SetCernDepartmentNil

func (o *Identity) SetCernDepartmentNil()

SetCernDepartmentNil sets the value for CernDepartment to be an explicit nil

func (*Identity) SetCernGroup

func (o *Identity) SetCernGroup(v string)

SetCernGroup gets a reference to the given NullableString and assigns it to the CernGroup field.

func (*Identity) SetCernGroupNil

func (o *Identity) SetCernGroupNil()

SetCernGroupNil sets the value for CernGroup to be an explicit nil

func (*Identity) SetCernPersonId

func (o *Identity) SetCernPersonId(v string)

SetCernPersonId gets a reference to the given NullableString and assigns it to the CernPersonId field.

func (*Identity) SetCernPersonIdNil

func (o *Identity) SetCernPersonIdNil()

SetCernPersonIdNil sets the value for CernPersonId to be an explicit nil

func (*Identity) SetCernSection

func (o *Identity) SetCernSection(v string)

SetCernSection gets a reference to the given NullableString and assigns it to the CernSection field.

func (*Identity) SetCernSectionNil

func (o *Identity) SetCernSectionNil()

SetCernSectionNil sets the value for CernSection to be an explicit nil

func (*Identity) SetComputingRulesAccepted

func (o *Identity) SetComputingRulesAccepted(v time.Time)

SetComputingRulesAccepted gets a reference to the given NullableTime and assigns it to the ComputingRulesAccepted field.

func (*Identity) SetComputingRulesAcceptedFlag

func (o *Identity) SetComputingRulesAcceptedFlag(v bool)

SetComputingRulesAcceptedFlag gets a reference to the given bool and assigns it to the ComputingRulesAcceptedFlag field.

func (*Identity) SetComputingRulesAcceptedNil

func (o *Identity) SetComputingRulesAcceptedNil()

SetComputingRulesAcceptedNil sets the value for ComputingRulesAccepted to be an explicit nil

func (*Identity) SetComputingRulesValidUntil

func (o *Identity) SetComputingRulesValidUntil(v time.Time)

SetComputingRulesValidUntil gets a reference to the given NullableTime and assigns it to the ComputingRulesValidUntil field.

func (*Identity) SetComputingRulesValidUntilNil

func (o *Identity) SetComputingRulesValidUntilNil()

SetComputingRulesValidUntilNil sets the value for ComputingRulesValidUntil to be an explicit nil

func (*Identity) SetCreationTime

func (o *Identity) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*Identity) SetDeleteDeadline

func (o *Identity) SetDeleteDeadline(v time.Time)

SetDeleteDeadline gets a reference to the given NullableTime and assigns it to the DeleteDeadline field.

func (*Identity) SetDeleteDeadlineNil

func (o *Identity) SetDeleteDeadlineNil()

SetDeleteDeadlineNil sets the value for DeleteDeadline to be an explicit nil

func (*Identity) SetDescription

func (o *Identity) SetDescription(v string)

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

func (*Identity) SetDescriptionNil

func (o *Identity) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Identity) SetDirectResponsibleId

func (o *Identity) SetDirectResponsibleId(v string)

SetDirectResponsibleId gets a reference to the given NullableString and assigns it to the DirectResponsibleId field.

func (*Identity) SetDirectResponsibleIdNil

func (o *Identity) SetDirectResponsibleIdNil()

SetDirectResponsibleIdNil sets the value for DirectResponsibleId to be an explicit nil

func (*Identity) SetDisabled

func (o *Identity) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*Identity) SetDisplayName

func (o *Identity) SetDisplayName(v string)

SetDisplayName sets field value

func (*Identity) SetEdhAuthPwdExpiry

func (o *Identity) SetEdhAuthPwdExpiry(v time.Time)

SetEdhAuthPwdExpiry gets a reference to the given NullableTime and assigns it to the EdhAuthPwdExpiry field.

func (*Identity) SetEdhAuthPwdExpiryNil

func (o *Identity) SetEdhAuthPwdExpiryNil()

SetEdhAuthPwdExpiryNil sets the value for EdhAuthPwdExpiry to be an explicit nil

func (*Identity) SetEduPersonUniqueID

func (o *Identity) SetEduPersonUniqueID(v string)

SetEduPersonUniqueID gets a reference to the given NullableString and assigns it to the EduPersonUniqueID field.

func (*Identity) SetEduPersonUniqueIDNil

func (o *Identity) SetEduPersonUniqueIDNil()

SetEduPersonUniqueIDNil sets the value for EduPersonUniqueID to be an explicit nil

func (*Identity) SetEndClass

func (o *Identity) SetEndClass(v time.Time)

SetEndClass gets a reference to the given NullableTime and assigns it to the EndClass field.

func (*Identity) SetEndClassNil

func (o *Identity) SetEndClassNil()

SetEndClassNil sets the value for EndClass to be an explicit nil

func (*Identity) SetExpirationDeadline

func (o *Identity) SetExpirationDeadline(v time.Time)

SetExpirationDeadline gets a reference to the given NullableTime and assigns it to the ExpirationDeadline field. Deprecated

func (*Identity) SetExpirationDeadlineNil

func (o *Identity) SetExpirationDeadlineNil()

SetExpirationDeadlineNil sets the value for ExpirationDeadline to be an explicit nil

func (*Identity) SetExternalEmail

func (o *Identity) SetExternalEmail(v string)

SetExternalEmail gets a reference to the given NullableString and assigns it to the ExternalEmail field.

func (*Identity) SetExternalEmailNil

func (o *Identity) SetExternalEmailNil()

SetExternalEmailNil sets the value for ExternalEmail to be an explicit nil

func (*Identity) SetFirstName

func (o *Identity) SetFirstName(v string)

SetFirstName gets a reference to the given NullableString and assigns it to the FirstName field.

func (*Identity) SetFirstNameNil

func (o *Identity) SetFirstNameNil()

SetFirstNameNil sets the value for FirstName to be an explicit nil

func (*Identity) SetFloor

func (o *Identity) SetFloor(v string)

SetFloor gets a reference to the given NullableString and assigns it to the Floor field.

func (*Identity) SetFloorNil

func (o *Identity) SetFloorNil()

SetFloorNil sets the value for Floor to be an explicit nil

func (*Identity) SetGid

func (o *Identity) SetGid(v int32)

SetGid gets a reference to the given NullableInt32 and assigns it to the Gid field.

func (*Identity) SetGidNil

func (o *Identity) SetGidNil()

SetGidNil sets the value for Gid to be an explicit nil

func (*Identity) SetHrEmail

func (o *Identity) SetHrEmail(v string)

SetHrEmail gets a reference to the given NullableString and assigns it to the HrEmail field.

func (*Identity) SetHrEmailNil

func (o *Identity) SetHrEmailNil()

SetHrEmailNil sets the value for HrEmail to be an explicit nil

func (*Identity) SetId

func (o *Identity) SetId(v string)

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

func (*Identity) SetIdNil

func (o *Identity) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Identity) SetInstituteAbbreviation

func (o *Identity) SetInstituteAbbreviation(v string)

SetInstituteAbbreviation gets a reference to the given NullableString and assigns it to the InstituteAbbreviation field.

func (*Identity) SetInstituteAbbreviationNil

func (o *Identity) SetInstituteAbbreviationNil()

SetInstituteAbbreviationNil sets the value for InstituteAbbreviation to be an explicit nil

func (*Identity) SetInstituteName

func (o *Identity) SetInstituteName(v string)

SetInstituteName gets a reference to the given NullableString and assigns it to the InstituteName field.

func (*Identity) SetInstituteNameNil

func (o *Identity) SetInstituteNameNil()

SetInstituteNameNil sets the value for InstituteName to be an explicit nil

func (*Identity) SetInternalState

func (o *Identity) SetInternalState(v ResourceState)

SetInternalState gets a reference to the given ResourceState and assigns it to the InternalState field.

func (*Identity) SetLastName

func (o *Identity) SetLastName(v string)

SetLastName gets a reference to the given NullableString and assigns it to the LastName field.

func (*Identity) SetLastNameNil

func (o *Identity) SetLastNameNil()

SetLastNameNil sets the value for LastName to be an explicit nil

func (*Identity) SetLastStateChangeTime

func (o *Identity) SetLastStateChangeTime(v time.Time)

SetLastStateChangeTime gets a reference to the given NullableTime and assigns it to the LastStateChangeTime field.

func (*Identity) SetLastStateChangeTimeNil

func (o *Identity) SetLastStateChangeTimeNil()

SetLastStateChangeTimeNil sets the value for LastStateChangeTime to be an explicit nil

func (*Identity) SetOrcid

func (o *Identity) SetOrcid(v string)

SetOrcid gets a reference to the given NullableString and assigns it to the Orcid field.

func (*Identity) SetOrcidNil

func (o *Identity) SetOrcidNil()

SetOrcidNil sets the value for Orcid to be an explicit nil

func (*Identity) SetOwnerId

func (o *Identity) SetOwnerId(v string)

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*Identity) SetOwnerIdNil

func (o *Identity) SetOwnerIdNil()

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (*Identity) SetPendingAction

func (o *Identity) SetPendingAction(v bool)

SetPendingAction gets a reference to the given bool and assigns it to the PendingAction field. Deprecated

func (*Identity) SetPersonId

func (o *Identity) SetPersonId(v string)

SetPersonId gets a reference to the given NullableString and assigns it to the PersonId field.

func (*Identity) SetPersonIdNil

func (o *Identity) SetPersonIdNil()

SetPersonIdNil sets the value for PersonId to be an explicit nil

func (*Identity) SetPortablePhone

func (o *Identity) SetPortablePhone(v string)

SetPortablePhone gets a reference to the given NullableString and assigns it to the PortablePhone field.

func (*Identity) SetPortablePhoneNil

func (o *Identity) SetPortablePhoneNil()

SetPortablePhoneNil sets the value for PortablePhone to be an explicit nil

func (*Identity) SetPostOfficeBox

func (o *Identity) SetPostOfficeBox(v string)

SetPostOfficeBox gets a reference to the given NullableString and assigns it to the PostOfficeBox field.

func (*Identity) SetPostOfficeBoxNil

func (o *Identity) SetPostOfficeBoxNil()

SetPostOfficeBoxNil sets the value for PostOfficeBox to be an explicit nil

func (*Identity) SetPreferredCernLanguage

func (o *Identity) SetPreferredCernLanguage(v string)

SetPreferredCernLanguage gets a reference to the given NullableString and assigns it to the PreferredCernLanguage field.

func (*Identity) SetPreferredCernLanguageNil

func (o *Identity) SetPreferredCernLanguageNil()

SetPreferredCernLanguageNil sets the value for PreferredCernLanguage to be an explicit nil

func (*Identity) SetPrimaryAccountEmail

func (o *Identity) SetPrimaryAccountEmail(v string)

SetPrimaryAccountEmail gets a reference to the given NullableString and assigns it to the PrimaryAccountEmail field.

func (*Identity) SetPrimaryAccountEmailNil

func (o *Identity) SetPrimaryAccountEmailNil()

SetPrimaryAccountEmailNil sets the value for PrimaryAccountEmail to be an explicit nil

func (*Identity) SetPrimaryAccountId

func (o *Identity) SetPrimaryAccountId(v string)

SetPrimaryAccountId gets a reference to the given NullableString and assigns it to the PrimaryAccountId field.

func (*Identity) SetPrimaryAccountIdNil

func (o *Identity) SetPrimaryAccountIdNil()

SetPrimaryAccountIdNil sets the value for PrimaryAccountId to be an explicit nil

func (*Identity) SetReassignable

func (o *Identity) SetReassignable(v bool)

SetReassignable gets a reference to the given bool and assigns it to the Reassignable field.

func (*Identity) SetResourceCategory

func (o *Identity) SetResourceCategory(v ResourceCategory)

SetResourceCategory gets a reference to the given ResourceCategory and assigns it to the ResourceCategory field.

func (*Identity) SetRoom

func (o *Identity) SetRoom(v string)

SetRoom gets a reference to the given NullableString and assigns it to the Room field.

func (*Identity) SetRoomNil

func (o *Identity) SetRoomNil()

SetRoomNil sets the value for Room to be an explicit nil

func (*Identity) SetSecurityIssues

func (o *Identity) SetSecurityIssues(v bool)

SetSecurityIssues gets a reference to the given bool and assigns it to the SecurityIssues field.

func (*Identity) SetSource

func (o *Identity) SetSource(v string)

SetSource gets a reference to the given NullableString and assigns it to the Source field.

func (*Identity) SetSourceNil

func (o *Identity) SetSourceNil()

SetSourceNil sets the value for Source to be an explicit nil

func (*Identity) SetStartClass

func (o *Identity) SetStartClass(v time.Time)

SetStartClass gets a reference to the given NullableTime and assigns it to the StartClass field.

func (*Identity) SetStartClassNil

func (o *Identity) SetStartClassNil()

SetStartClassNil sets the value for StartClass to be an explicit nil

func (*Identity) SetState

func (o *Identity) SetState(v ResourceState)

SetState gets a reference to the given ResourceState and assigns it to the State field.

func (*Identity) SetSupervisor

func (o *Identity) SetSupervisor(v Identity)

SetSupervisor gets a reference to the given Identity and assigns it to the Supervisor field.

func (*Identity) SetSupervisorId

func (o *Identity) SetSupervisorId(v string)

SetSupervisorId gets a reference to the given NullableString and assigns it to the SupervisorId field.

func (*Identity) SetSupervisorIdNil

func (o *Identity) SetSupervisorIdNil()

SetSupervisorIdNil sets the value for SupervisorId to be an explicit nil

func (*Identity) SetTelephone1

func (o *Identity) SetTelephone1(v string)

SetTelephone1 gets a reference to the given NullableString and assigns it to the Telephone1 field.

func (*Identity) SetTelephone1Nil

func (o *Identity) SetTelephone1Nil()

SetTelephone1Nil sets the value for Telephone1 to be an explicit nil

func (*Identity) SetTelephone2

func (o *Identity) SetTelephone2(v string)

SetTelephone2 gets a reference to the given NullableString and assigns it to the Telephone2 field.

func (*Identity) SetTelephone2Nil

func (o *Identity) SetTelephone2Nil()

SetTelephone2Nil sets the value for Telephone2 to be an explicit nil

func (*Identity) SetType

func (o *Identity) SetType(v IdentityType)

SetType sets field value

func (*Identity) SetUid

func (o *Identity) SetUid(v int32)

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

func (*Identity) SetUidNil

func (o *Identity) SetUidNil()

SetUidNil sets the value for Uid to be an explicit nil

func (*Identity) SetUnconfirmed

func (o *Identity) SetUnconfirmed(v bool)

SetUnconfirmed sets field value

func (*Identity) SetUnconfirmedEmail

func (o *Identity) SetUnconfirmedEmail(v string)

SetUnconfirmedEmail gets a reference to the given NullableString and assigns it to the UnconfirmedEmail field.

func (*Identity) SetUnconfirmedEmailNil

func (o *Identity) SetUnconfirmedEmailNil()

SetUnconfirmedEmailNil sets the value for UnconfirmedEmail to be an explicit nil

func (*Identity) SetUpn

func (o *Identity) SetUpn(v string)

SetUpn gets a reference to the given NullableString and assigns it to the Upn field.

func (*Identity) SetUpnNil

func (o *Identity) SetUpnNil()

SetUpnNil sets the value for Upn to be an explicit nil

func (*Identity) SetValidityLimit

func (o *Identity) SetValidityLimit(v time.Time)

SetValidityLimit gets a reference to the given NullableTime and assigns it to the ValidityLimit field.

func (*Identity) SetValidityLimitNil

func (o *Identity) SetValidityLimitNil()

SetValidityLimitNil sets the value for ValidityLimit to be an explicit nil

func (Identity) ToMap

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

func (*Identity) UnmarshalJSON

func (o *Identity) UnmarshalJSON(data []byte) (err error)

func (*Identity) UnsetArchiveDeadline

func (o *Identity) UnsetArchiveDeadline()

UnsetArchiveDeadline ensures that no value is present for ArchiveDeadline, not even an explicit nil

func (*Identity) UnsetBirthDate

func (o *Identity) UnsetBirthDate()

UnsetBirthDate ensures that no value is present for BirthDate, not even an explicit nil

func (*Identity) UnsetBlockingDeadline

func (o *Identity) UnsetBlockingDeadline()

UnsetBlockingDeadline ensures that no value is present for BlockingDeadline, not even an explicit nil

func (*Identity) UnsetBlockingReason

func (o *Identity) UnsetBlockingReason()

UnsetBlockingReason ensures that no value is present for BlockingReason, not even an explicit nil

func (*Identity) UnsetBlockingTime

func (o *Identity) UnsetBlockingTime()

UnsetBlockingTime ensures that no value is present for BlockingTime, not even an explicit nil

func (*Identity) UnsetBuilding

func (o *Identity) UnsetBuilding()

UnsetBuilding ensures that no value is present for Building, not even an explicit nil

func (*Identity) UnsetCernClass

func (o *Identity) UnsetCernClass()

UnsetCernClass ensures that no value is present for CernClass, not even an explicit nil

func (*Identity) UnsetCernDepartment

func (o *Identity) UnsetCernDepartment()

UnsetCernDepartment ensures that no value is present for CernDepartment, not even an explicit nil

func (*Identity) UnsetCernGroup

func (o *Identity) UnsetCernGroup()

UnsetCernGroup ensures that no value is present for CernGroup, not even an explicit nil

func (*Identity) UnsetCernPersonId

func (o *Identity) UnsetCernPersonId()

UnsetCernPersonId ensures that no value is present for CernPersonId, not even an explicit nil

func (*Identity) UnsetCernSection

func (o *Identity) UnsetCernSection()

UnsetCernSection ensures that no value is present for CernSection, not even an explicit nil

func (*Identity) UnsetComputingRulesAccepted

func (o *Identity) UnsetComputingRulesAccepted()

UnsetComputingRulesAccepted ensures that no value is present for ComputingRulesAccepted, not even an explicit nil

func (*Identity) UnsetComputingRulesValidUntil

func (o *Identity) UnsetComputingRulesValidUntil()

UnsetComputingRulesValidUntil ensures that no value is present for ComputingRulesValidUntil, not even an explicit nil

func (*Identity) UnsetDeleteDeadline

func (o *Identity) UnsetDeleteDeadline()

UnsetDeleteDeadline ensures that no value is present for DeleteDeadline, not even an explicit nil

func (*Identity) UnsetDescription

func (o *Identity) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Identity) UnsetDirectResponsibleId

func (o *Identity) UnsetDirectResponsibleId()

UnsetDirectResponsibleId ensures that no value is present for DirectResponsibleId, not even an explicit nil

func (*Identity) UnsetEdhAuthPwdExpiry

func (o *Identity) UnsetEdhAuthPwdExpiry()

UnsetEdhAuthPwdExpiry ensures that no value is present for EdhAuthPwdExpiry, not even an explicit nil

func (*Identity) UnsetEduPersonUniqueID

func (o *Identity) UnsetEduPersonUniqueID()

UnsetEduPersonUniqueID ensures that no value is present for EduPersonUniqueID, not even an explicit nil

func (*Identity) UnsetEndClass

func (o *Identity) UnsetEndClass()

UnsetEndClass ensures that no value is present for EndClass, not even an explicit nil

func (*Identity) UnsetExpirationDeadline

func (o *Identity) UnsetExpirationDeadline()

UnsetExpirationDeadline ensures that no value is present for ExpirationDeadline, not even an explicit nil

func (*Identity) UnsetExternalEmail

func (o *Identity) UnsetExternalEmail()

UnsetExternalEmail ensures that no value is present for ExternalEmail, not even an explicit nil

func (*Identity) UnsetFirstName

func (o *Identity) UnsetFirstName()

UnsetFirstName ensures that no value is present for FirstName, not even an explicit nil

func (*Identity) UnsetFloor

func (o *Identity) UnsetFloor()

UnsetFloor ensures that no value is present for Floor, not even an explicit nil

func (*Identity) UnsetGid

func (o *Identity) UnsetGid()

UnsetGid ensures that no value is present for Gid, not even an explicit nil

func (*Identity) UnsetHrEmail

func (o *Identity) UnsetHrEmail()

UnsetHrEmail ensures that no value is present for HrEmail, not even an explicit nil

func (*Identity) UnsetId

func (o *Identity) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*Identity) UnsetInstituteAbbreviation

func (o *Identity) UnsetInstituteAbbreviation()

UnsetInstituteAbbreviation ensures that no value is present for InstituteAbbreviation, not even an explicit nil

func (*Identity) UnsetInstituteName

func (o *Identity) UnsetInstituteName()

UnsetInstituteName ensures that no value is present for InstituteName, not even an explicit nil

func (*Identity) UnsetLastName

func (o *Identity) UnsetLastName()

UnsetLastName ensures that no value is present for LastName, not even an explicit nil

func (*Identity) UnsetLastStateChangeTime

func (o *Identity) UnsetLastStateChangeTime()

UnsetLastStateChangeTime ensures that no value is present for LastStateChangeTime, not even an explicit nil

func (*Identity) UnsetOrcid

func (o *Identity) UnsetOrcid()

UnsetOrcid ensures that no value is present for Orcid, not even an explicit nil

func (*Identity) UnsetOwnerId

func (o *Identity) UnsetOwnerId()

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

func (*Identity) UnsetPersonId

func (o *Identity) UnsetPersonId()

UnsetPersonId ensures that no value is present for PersonId, not even an explicit nil

func (*Identity) UnsetPortablePhone

func (o *Identity) UnsetPortablePhone()

UnsetPortablePhone ensures that no value is present for PortablePhone, not even an explicit nil

func (*Identity) UnsetPostOfficeBox

func (o *Identity) UnsetPostOfficeBox()

UnsetPostOfficeBox ensures that no value is present for PostOfficeBox, not even an explicit nil

func (*Identity) UnsetPreferredCernLanguage

func (o *Identity) UnsetPreferredCernLanguage()

UnsetPreferredCernLanguage ensures that no value is present for PreferredCernLanguage, not even an explicit nil

func (*Identity) UnsetPrimaryAccountEmail

func (o *Identity) UnsetPrimaryAccountEmail()

UnsetPrimaryAccountEmail ensures that no value is present for PrimaryAccountEmail, not even an explicit nil

func (*Identity) UnsetPrimaryAccountId

func (o *Identity) UnsetPrimaryAccountId()

UnsetPrimaryAccountId ensures that no value is present for PrimaryAccountId, not even an explicit nil

func (*Identity) UnsetRoom

func (o *Identity) UnsetRoom()

UnsetRoom ensures that no value is present for Room, not even an explicit nil

func (*Identity) UnsetSource

func (o *Identity) UnsetSource()

UnsetSource ensures that no value is present for Source, not even an explicit nil

func (*Identity) UnsetStartClass

func (o *Identity) UnsetStartClass()

UnsetStartClass ensures that no value is present for StartClass, not even an explicit nil

func (*Identity) UnsetSupervisorId

func (o *Identity) UnsetSupervisorId()

UnsetSupervisorId ensures that no value is present for SupervisorId, not even an explicit nil

func (*Identity) UnsetTelephone1

func (o *Identity) UnsetTelephone1()

UnsetTelephone1 ensures that no value is present for Telephone1, not even an explicit nil

func (*Identity) UnsetTelephone2

func (o *Identity) UnsetTelephone2()

UnsetTelephone2 ensures that no value is present for Telephone2, not even an explicit nil

func (*Identity) UnsetUid

func (o *Identity) UnsetUid()

UnsetUid ensures that no value is present for Uid, not even an explicit nil

func (*Identity) UnsetUnconfirmedEmail

func (o *Identity) UnsetUnconfirmedEmail()

UnsetUnconfirmedEmail ensures that no value is present for UnconfirmedEmail, not even an explicit nil

func (*Identity) UnsetUpn

func (o *Identity) UnsetUpn()

UnsetUpn ensures that no value is present for Upn, not even an explicit nil

func (*Identity) UnsetValidityLimit

func (o *Identity) UnsetValidityLimit()

UnsetValidityLimit ensures that no value is present for ValidityLimit, not even an explicit nil

type IdentityAPIService

type IdentityAPIService service

IdentityAPIService IdentityAPI service

func (*IdentityAPIService) IdentityBulkDelete

func (a *IdentityAPIService) IdentityBulkDelete(ctx context.Context) IdentityBulkDeleteRequest

IdentityBulkDelete Deletes a batch of identities using their IDs Restricted to identity administrators.

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

func (*IdentityAPIService) IdentityBulkDeleteExecute

Execute executes the request

@return JObjectBulkOperationResultEnumerateEnvelope

func (*IdentityAPIService) IdentityBulkPatch

func (a *IdentityAPIService) IdentityBulkPatch(ctx context.Context) IdentityBulkPatchRequest

IdentityBulkPatch Updates a batch of Identities via patches. Restricted to identity administrators.

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

func (*IdentityAPIService) IdentityBulkPatchExecute

Execute executes the request

@return JObjectBulkOperationResultEnumerateEnvelope

func (*IdentityAPIService) IdentityBulkPost

func (a *IdentityAPIService) IdentityBulkPost(ctx context.Context) IdentityBulkPostRequest

IdentityBulkPost Creates a batch of Identity. Restricted to identity administrators.

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

func (*IdentityAPIService) IdentityBulkPostExecute

Execute executes the request

@return JObjectBulkOperationResultEnumerateEnvelope

func (*IdentityAPIService) IdentityBulkPut

func (a *IdentityAPIService) IdentityBulkPut(ctx context.Context) IdentityBulkPutRequest

IdentityBulkPut Updates a batch of (Guid, Identity) tuples. Restricted to identity administrators.

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

func (*IdentityAPIService) IdentityBulkPutExecute

Execute executes the request

@return JObjectBulkOperationResultEnumerateEnvelope

func (*IdentityAPIService) IdentityByEmailEmailGet

func (a *IdentityAPIService) IdentityByEmailEmailGet(ctx context.Context, email string) IdentityByEmailEmailGetRequest

IdentityByEmailEmailGet Get the specified identities using an email.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param email The email of the person you're searching for.
@return IdentityByEmailEmailGetRequest

func (*IdentityAPIService) IdentityByEmailEmailGetExecute

Execute executes the request

@return IdentityEnumerateEnvelope

func (*IdentityAPIService) IdentityCurrentAccountsAccountIDDelete

func (a *IdentityAPIService) IdentityCurrentAccountsAccountIDDelete(ctx context.Context, accountID string) IdentityCurrentAccountsAccountIDDeleteRequest

IdentityCurrentAccountsAccountIDDelete Delete account.

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

func (*IdentityAPIService) IdentityCurrentAccountsAccountIDDeleteExecute

func (a *IdentityAPIService) IdentityCurrentAccountsAccountIDDeleteExecute(r IdentityCurrentAccountsAccountIDDeleteRequest) (*AccountEnvelope, *http.Response, error)

Execute executes the request

@return AccountEnvelope

func (*IdentityAPIService) IdentityCurrentAccountsAccountIDGet

func (a *IdentityAPIService) IdentityCurrentAccountsAccountIDGet(ctx context.Context, accountID string) IdentityCurrentAccountsAccountIDGetRequest

IdentityCurrentAccountsAccountIDGet Get account for accountid.

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

func (*IdentityAPIService) IdentityCurrentAccountsAccountIDGetExecute

func (a *IdentityAPIService) IdentityCurrentAccountsAccountIDGetExecute(r IdentityCurrentAccountsAccountIDGetRequest) (*AccountEnvelope, *http.Response, error)

Execute executes the request

@return AccountEnvelope

func (*IdentityAPIService) IdentityCurrentAccountsAccountIDPut

func (a *IdentityAPIService) IdentityCurrentAccountsAccountIDPut(ctx context.Context, accountID string) IdentityCurrentAccountsAccountIDPutRequest

IdentityCurrentAccountsAccountIDPut Update account for current identity. Only DisplayName is updatable

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

func (*IdentityAPIService) IdentityCurrentAccountsAccountIDPutExecute

func (a *IdentityAPIService) IdentityCurrentAccountsAccountIDPutExecute(r IdentityCurrentAccountsAccountIDPutRequest) (*AccountEnvelope, *http.Response, error)

Execute executes the request

@return AccountEnvelope

func (*IdentityAPIService) IdentityCurrentAccountsGet

func (a *IdentityAPIService) IdentityCurrentAccountsGet(ctx context.Context) IdentityCurrentAccountsGetRequest

IdentityCurrentAccountsGet Get the accounts for current identity

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

func (*IdentityAPIService) IdentityCurrentAccountsGetExecute

Execute executes the request

@return AccountEnumerateEnvelope

func (*IdentityAPIService) IdentityCurrentAssociateOtherIdentityIdOrUpnPut

func (a *IdentityAPIService) IdentityCurrentAssociateOtherIdentityIdOrUpnPut(ctx context.Context, otherIdentityIdOrUpn string) IdentityCurrentAssociateOtherIdentityIdOrUpnPutRequest

IdentityCurrentAssociateOtherIdentityIdOrUpnPut Begins the process to associate the accounts from the identity identified by otherIdentityIdOrUpn to the current Cern.AuthorizationService.Model.Identity, by creating an approval procedure that needs to be accepted once the user logs in to the other identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param otherIdentityIdOrUpn The identity that you want to associate to this current identity.
@return IdentityCurrentAssociateOtherIdentityIdOrUpnPutRequest

func (*IdentityAPIService) IdentityCurrentAssociateOtherIdentityIdOrUpnPutExecute

func (a *IdentityAPIService) IdentityCurrentAssociateOtherIdentityIdOrUpnPutExecute(r IdentityCurrentAssociateOtherIdentityIdOrUpnPutRequest) ([]Request, *http.Response, error)

Execute executes the request

@return []Request

func (*IdentityAPIService) IdentityCurrentAssociateSocialTokenPut

func (a *IdentityAPIService) IdentityCurrentAssociateSocialTokenPut(ctx context.Context, token string) IdentityCurrentAssociateSocialTokenPutRequest

IdentityCurrentAssociateSocialTokenPut Associates a social identity's accounts by using the information received in the token. Afterwards, delete the old social Identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param token The token of the user of the other identity.
@return IdentityCurrentAssociateSocialTokenPutRequest

func (*IdentityAPIService) IdentityCurrentAssociateSocialTokenPutExecute

func (a *IdentityAPIService) IdentityCurrentAssociateSocialTokenPutExecute(r IdentityCurrentAssociateSocialTokenPutRequest) (*AccountEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return AccountEnumerateEnvelope

func (*IdentityAPIService) IdentityCurrentGet

func (a *IdentityAPIService) IdentityCurrentGet(ctx context.Context) IdentityCurrentGetRequest

IdentityCurrentGet Get current user identity.

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

func (*IdentityAPIService) IdentityCurrentGetExecute

func (a *IdentityAPIService) IdentityCurrentGetExecute(r IdentityCurrentGetRequest) (*IdentityEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityCurrentGroupsDelete

func (a *IdentityAPIService) IdentityCurrentGroupsDelete(ctx context.Context) IdentityCurrentGroupsDeleteRequest

IdentityCurrentGroupsDelete Unsubscribes the current user to a list of groups.

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

func (*IdentityAPIService) IdentityCurrentGroupsDeleteExecute

Execute executes the request

@return IdentityMembershipEnvelope

func (*IdentityAPIService) IdentityCurrentGroupsGet

func (a *IdentityAPIService) IdentityCurrentGroupsGet(ctx context.Context) IdentityCurrentGroupsGetRequest

IdentityCurrentGroupsGet Get the current user's groups.

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

func (*IdentityAPIService) IdentityCurrentGroupsGetExecute

Execute executes the request

@return GroupEnumerateEnvelope

func (*IdentityAPIService) IdentityCurrentGroupsPost

func (a *IdentityAPIService) IdentityCurrentGroupsPost(ctx context.Context) IdentityCurrentGroupsPostRequest

IdentityCurrentGroupsPost Subscribes the current user to a list of groups.

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

func (*IdentityAPIService) IdentityCurrentGroupsPostExecute

Execute executes the request

@return IdentityMembershipEnvelope

func (*IdentityAPIService) IdentityCurrentGroupsRecursiveGet

func (a *IdentityAPIService) IdentityCurrentGroupsRecursiveGet(ctx context.Context) IdentityCurrentGroupsRecursiveGetRequest

IdentityCurrentGroupsRecursiveGet Get the current user's groups recursively.

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

func (*IdentityAPIService) IdentityCurrentGroupsRecursiveGetExecute

func (a *IdentityAPIService) IdentityCurrentGroupsRecursiveGetExecute(r IdentityCurrentGroupsRecursiveGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

func (*IdentityAPIService) IdentityCurrentPatch

func (a *IdentityAPIService) IdentityCurrentPatch(ctx context.Context) IdentityCurrentPatchRequest

IdentityCurrentPatch Patches the current user identity.

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

func (*IdentityAPIService) IdentityCurrentPatchExecute

func (a *IdentityAPIService) IdentityCurrentPatchExecute(r IdentityCurrentPatchRequest) (*IdentityEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityCurrentPut

func (a *IdentityAPIService) IdentityCurrentPut(ctx context.Context) IdentityCurrentPutRequest

IdentityCurrentPut Update current user identity.

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

func (*IdentityAPIService) IdentityCurrentPutExecute

func (a *IdentityAPIService) IdentityCurrentPutExecute(r IdentityCurrentPutRequest) (*IdentityEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityCurrentSubscriptionsGet

func (a *IdentityAPIService) IdentityCurrentSubscriptionsGet(ctx context.Context) IdentityCurrentSubscriptionsGetRequest

IdentityCurrentSubscriptionsGet Gets the list of Cern.AuthorizationService.Model.ApiObjects.UserSubscriptionByLifecycleSettings for the current identity

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

func (*IdentityAPIService) IdentityCurrentSubscriptionsGetExecute

Execute executes the request

@return UserSubscriptionByLifecycleSettingsEnumerateEnvelope

func (*IdentityAPIService) IdentityGet

IdentityGet Get all the identities.

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

func (*IdentityAPIService) IdentityGetExecute

Execute executes the request

@return IdentityEnumerateEnvelope

func (*IdentityAPIService) IdentityIdAccountsGet

func (a *IdentityAPIService) IdentityIdAccountsGet(ctx context.Context, id string) IdentityIdAccountsGetRequest

IdentityIdAccountsGet Gets the accounts associated to the identity with given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdAccountsGetRequest

func (*IdentityAPIService) IdentityIdAccountsGetExecute

Execute executes the request

@return AccountEnumerateEnvelope

func (*IdentityAPIService) IdentityIdAccountsPost

func (a *IdentityAPIService) IdentityIdAccountsPost(ctx context.Context, id string) IdentityIdAccountsPostRequest

IdentityIdAccountsPost Creates a new Account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdAccountsPostRequest

func (*IdentityAPIService) IdentityIdAccountsPostExecute

func (a *IdentityAPIService) IdentityIdAccountsPostExecute(r IdentityIdAccountsPostRequest) (*AccountEnvelope, *http.Response, error)

Execute executes the request

@return AccountEnvelope

func (*IdentityAPIService) IdentityIdActivateOrBlockPost

func (a *IdentityAPIService) IdentityIdActivateOrBlockPost(ctx context.Context, id string) IdentityIdActivateOrBlockPostRequest

IdentityIdActivateOrBlockPost Activates or blocks the identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdActivateOrBlockPostRequest

func (*IdentityAPIService) IdentityIdActivateOrBlockPostExecute

Execute executes the request

@return ActivateOrBlockIdentityResponseEnvelope

func (*IdentityAPIService) IdentityIdActivatePut

func (a *IdentityAPIService) IdentityIdActivatePut(ctx context.Context, id string) IdentityIdActivatePutRequest

IdentityIdActivatePut Activates the resource, i.e. it changes the state from Cern.AuthorizationService.Model.DataTypes.ResourceState.Created to Cern.AuthorizationService.Model.DataTypes.ResourceState.Active.

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

func (*IdentityAPIService) IdentityIdActivatePutExecute

func (a *IdentityAPIService) IdentityIdActivatePutExecute(r IdentityIdActivatePutRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) IdentityIdAssociateOtherIdentityIdOrUpnPut

func (a *IdentityAPIService) IdentityIdAssociateOtherIdentityIdOrUpnPut(ctx context.Context, id string, otherIdentityIdOrUpn string) IdentityIdAssociateOtherIdentityIdOrUpnPutRequest

IdentityIdAssociateOtherIdentityIdOrUpnPut Begins the process to associate the accounts from the identity identified by otherIdentityIdOrUpn to the one identified by id . Cern.AuthorizationService.Model.Identity, by creating an approval procedure that needs to be accepted once the user logs in to the other identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity that you want to take the accounts from.
@param otherIdentityIdOrUpn The identity that you want to associate the accounts to.
@return IdentityIdAssociateOtherIdentityIdOrUpnPutRequest

func (*IdentityAPIService) IdentityIdAssociateOtherIdentityIdOrUpnPutExecute

func (a *IdentityAPIService) IdentityIdAssociateOtherIdentityIdOrUpnPutExecute(r IdentityIdAssociateOtherIdentityIdOrUpnPutRequest) ([]Request, *http.Response, error)

Execute executes the request

@return []Request

func (*IdentityAPIService) IdentityIdDelete

func (a *IdentityAPIService) IdentityIdDelete(ctx context.Context, id string) IdentityIdDeleteRequest

IdentityIdDelete Deletes an Identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Identity ID or UPN.
@return IdentityIdDeleteRequest

func (*IdentityAPIService) IdentityIdDeleteExecute

func (a *IdentityAPIService) IdentityIdDeleteExecute(r IdentityIdDeleteRequest) (*IdentityEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityIdExtendDeadlinesPut

func (a *IdentityAPIService) IdentityIdExtendDeadlinesPut(ctx context.Context, id string) IdentityIdExtendDeadlinesPutRequest

IdentityIdExtendDeadlinesPut Extends the blocking, archive and expiration deadlines of a resource.

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

func (*IdentityAPIService) IdentityIdExtendDeadlinesPutExecute

func (a *IdentityAPIService) IdentityIdExtendDeadlinesPutExecute(r IdentityIdExtendDeadlinesPutRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) IdentityIdExternalEmailPost

func (a *IdentityAPIService) IdentityIdExternalEmailPost(ctx context.Context, id string) IdentityIdExternalEmailPostRequest

IdentityIdExternalEmailPost Creates a Request to update the external email. It has to be approved with an approval token, sent by email.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdExternalEmailPostRequest

func (*IdentityAPIService) IdentityIdExternalEmailPostExecute

func (a *IdentityAPIService) IdentityIdExternalEmailPostExecute(r IdentityIdExternalEmailPostRequest) (*RequestEnvelope, *http.Response, error)

Execute executes the request

@return RequestEnvelope

func (*IdentityAPIService) IdentityIdGet

func (a *IdentityAPIService) IdentityIdGet(ctx context.Context, id string) IdentityIdGetRequest

IdentityIdGet Get the specified identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Identity ID or UPN.
@return IdentityIdGetRequest

func (*IdentityAPIService) IdentityIdGetExecute

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityIdGroupsGet

func (a *IdentityAPIService) IdentityIdGroupsGet(ctx context.Context, id string) IdentityIdGroupsGetRequest

IdentityIdGroupsGet Gets the groups that the identity is a member of, directly or indirectly.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdGroupsGetRequest

func (*IdentityAPIService) IdentityIdGroupsGetExecute

Execute executes the request

@return GroupEnumerateEnvelope

func (*IdentityAPIService) IdentityIdGroupsRecursiveGet

func (a *IdentityAPIService) IdentityIdGroupsRecursiveGet(ctx context.Context, id string) IdentityIdGroupsRecursiveGetRequest

IdentityIdGroupsRecursiveGet Gets the groups that the identity is a member of recursively, directly or indirectly.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdGroupsRecursiveGetRequest

func (*IdentityAPIService) IdentityIdGroupsRecursiveGetExecute

func (a *IdentityAPIService) IdentityIdGroupsRecursiveGetExecute(r IdentityIdGroupsRecursiveGetRequest) (*GroupEnumerateEnvelope, *http.Response, error)

Execute executes the request

@return GroupEnumerateEnvelope

func (*IdentityAPIService) IdentityIdIsMemberRecursiveGroupIdGet

func (a *IdentityAPIService) IdentityIdIsMemberRecursiveGroupIdGet(ctx context.Context, id string, groupId string) IdentityIdIsMemberRecursiveGroupIdGetRequest

IdentityIdIsMemberRecursiveGroupIdGet Checks if an identity is member of a group (recursively), by its given identifier.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@param groupId The group ID or Unique Identifier.
@return IdentityIdIsMemberRecursiveGroupIdGetRequest

func (*IdentityAPIService) IdentityIdIsMemberRecursiveGroupIdGetExecute

Execute executes the request

@return IdentityMembershipCheckEnvelope

func (*IdentityAPIService) IdentityIdMergeKeepIdOrUpnPost

func (a *IdentityAPIService) IdentityIdMergeKeepIdOrUpnPost(ctx context.Context, id string, keepIdOrUpn string) IdentityIdMergeKeepIdOrUpnPostRequest

IdentityIdMergeKeepIdOrUpnPost Merges the old identity with the new one: - Associates all non-CERN accounts associated to the old identity to the new one. - Moves all static group memberships from the old identity to the new one. - Moves all owned resources from the old identity to the new one: groups, applications, non-primary identities, extensible resources. - Deletes the old identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The old identity ID or UPN.
@param keepIdOrUpn The new identity ID or UPN.
@return IdentityIdMergeKeepIdOrUpnPostRequest

func (*IdentityAPIService) IdentityIdMergeKeepIdOrUpnPostExecute

func (a *IdentityAPIService) IdentityIdMergeKeepIdOrUpnPostExecute(r IdentityIdMergeKeepIdOrUpnPostRequest) (*IdentityEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityIdPatch

func (a *IdentityAPIService) IdentityIdPatch(ctx context.Context, id string) IdentityIdPatchRequest

IdentityIdPatch Patches given identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdPatchRequest

func (*IdentityAPIService) IdentityIdPatchExecute

func (a *IdentityAPIService) IdentityIdPatchExecute(r IdentityIdPatchRequest) (*IdentityEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityIdPersonalDataGet

func (a *IdentityAPIService) IdentityIdPersonalDataGet(ctx context.Context, id string) IdentityIdPersonalDataGetRequest

IdentityIdPersonalDataGet Get all personal data for identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdPersonalDataGetRequest

func (*IdentityAPIService) IdentityIdPersonalDataGetExecute

func (a *IdentityAPIService) IdentityIdPersonalDataGetExecute(r IdentityIdPersonalDataGetRequest) (*Identity, *http.Response, error)

Execute executes the request

@return Identity

func (*IdentityAPIService) IdentityIdPut

func (a *IdentityAPIService) IdentityIdPut(ctx context.Context, id string) IdentityIdPutRequest

IdentityIdPut Update given identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdPutRequest

func (*IdentityAPIService) IdentityIdPutExecute

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityIdRecoverPut

func (a *IdentityAPIService) IdentityIdRecoverPut(ctx context.Context, id string) IdentityIdRecoverPutRequest

IdentityIdRecoverPut Recovers the resource, i.e. it changes the state from Cern.AuthorizationService.Model.DataTypes.ResourceState.Archived to Cern.AuthorizationService.Model.DataTypes.ResourceState.Active.

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

func (*IdentityAPIService) IdentityIdRecoverPutExecute

func (a *IdentityAPIService) IdentityIdRecoverPutExecute(r IdentityIdRecoverPutRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) IdentityIdSubscriptionsGet

func (a *IdentityAPIService) IdentityIdSubscriptionsGet(ctx context.Context, id string) IdentityIdSubscriptionsGetRequest

IdentityIdSubscriptionsGet Gets the list of Cern.AuthorizationService.Model.ApiObjects.UserSubscriptionByLifecycleSettings for the Cern.AuthorizationService.Model.Identity with given id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identity ID or UPN.
@return IdentityIdSubscriptionsGetRequest

func (*IdentityAPIService) IdentityIdSubscriptionsGetExecute

Execute executes the request

@return UserSubscriptionByLifecycleSettingsEnumerateEnvelope

func (*IdentityAPIService) IdentityIdTransferNewOwnerIdPut

func (a *IdentityAPIService) IdentityIdTransferNewOwnerIdPut(ctx context.Context, id string, newOwnerId string) IdentityIdTransferNewOwnerIdPutRequest

IdentityIdTransferNewOwnerIdPut Assigns the target resource to a new owner, who must be a valid owner (eligible) for the resource. Depending on the caller's privileges, the operation might need to be approved by the new owner.

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

func (*IdentityAPIService) IdentityIdTransferNewOwnerIdPutExecute

func (a *IdentityAPIService) IdentityIdTransferNewOwnerIdPutExecute(r IdentityIdTransferNewOwnerIdPutRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) IdentityIdentifierAvailabilityPost

func (a *IdentityAPIService) IdentityIdentifierAvailabilityPost(ctx context.Context) IdentityIdentifierAvailabilityPostRequest

IdentityIdentifierAvailabilityPost Checks which string identifiers from a list of identifiers are available

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

func (*IdentityAPIService) IdentityIdentifierAvailabilityPostExecute

Execute executes the request

@return IdentifierEnumerateEnvelope

func (*IdentityAPIService) IdentityLogoutPost

func (a *IdentityAPIService) IdentityLogoutPost(ctx context.Context) IdentityLogoutPostRequest

IdentityLogoutPost Logout the user from all their sessions

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

func (*IdentityAPIService) IdentityLogoutPostExecute

func (a *IdentityAPIService) IdentityLogoutPostExecute(r IdentityLogoutPostRequest) (*OkResultEnvelope, *http.Response, error)

Execute executes the request

@return OkResultEnvelope

func (*IdentityAPIService) IdentityMyGet

IdentityMyGet Get current user identity. OBSOLETE: This method will be removed or modified in a future version of the API. Use `GET /current` instead.

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

Deprecated

func (*IdentityAPIService) IdentityMyGetExecute

Execute executes the request

@return IdentityEnvelope

Deprecated

func (*IdentityAPIService) IdentityMyGroupsGet

func (a *IdentityAPIService) IdentityMyGroupsGet(ctx context.Context) IdentityMyGroupsGetRequest

IdentityMyGroupsGet Get the current user's groups. OBSOLETE: This method will be removed or modified in a future version of the API. Use `GET /current/groups` instead.

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

Deprecated

func (*IdentityAPIService) IdentityMyGroupsGetExecute

Execute executes the request

@return GroupEnumerateEnvelope

Deprecated

func (*IdentityAPIService) IdentityPost

IdentityPost Creates a new Identity.

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

func (*IdentityAPIService) IdentityPostExecute

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentityPropertyDescriptionsGet

func (a *IdentityAPIService) IdentityPropertyDescriptionsGet(ctx context.Context) IdentityPropertyDescriptionsGetRequest

IdentityPropertyDescriptionsGet Gets all the identity properties descriptions.

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

func (*IdentityAPIService) IdentityPropertyDescriptionsGetExecute

func (a *IdentityAPIService) IdentityPropertyDescriptionsGetExecute(r IdentityPropertyDescriptionsGetRequest) (*map[string]JsonSchemaProperty, *http.Response, error)

Execute executes the request

@return map[string]JsonSchemaProperty

func (*IdentityAPIService) IdentitySdRenameIdOrUpnPut

func (a *IdentityAPIService) IdentitySdRenameIdOrUpnPut(ctx context.Context, idOrUpn string) IdentitySdRenameIdOrUpnPutRequest

IdentitySdRenameIdOrUpnPut Rename the identity with the specified ID.

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

func (*IdentityAPIService) IdentitySdRenameIdOrUpnPutExecute

func (a *IdentityAPIService) IdentitySdRenameIdOrUpnPutExecute(r IdentitySdRenameIdOrUpnPutRequest) (*IdentityEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnvelope

func (*IdentityAPIService) IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPut

func (a *IdentityAPIService) IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPut(ctx context.Context, toIdentityIdOrUpn string, fromIdentityIdOrUpn string) IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPutRequest

IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPut Allows Service Desk to associate accounts from fromIdentityIdOrUpn to the toIdentityIdOrUpn. If the target identity already has a CERN account then it gets assigned to the targetIdentity, and the upn of the target identity gets changed.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param toIdentityIdOrUpn The identity that you want to associate the accounts to.
@param fromIdentityIdOrUpn The identity that you want to take the accounts from.
@return IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPutRequest

func (*IdentityAPIService) IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPutExecute

func (a *IdentityAPIService) IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPutExecute(r IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPutRequest) (*IdentityEnvelope, *http.Response, error)

Execute executes the request

@return IdentityEnvelope

type IdentityBulkDeleteRequest

type IdentityBulkDeleteRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityBulkDeleteRequest) Execute

func (IdentityBulkDeleteRequest) RequestBody

func (r IdentityBulkDeleteRequest) RequestBody(requestBody []string) IdentityBulkDeleteRequest

The deleted groups.

type IdentityBulkPatchRequest

type IdentityBulkPatchRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityBulkPatchRequest) Execute

func (IdentityBulkPatchRequest) GuidJsonPatchDocumentValueTuple

func (r IdentityBulkPatchRequest) GuidJsonPatchDocumentValueTuple(guidJsonPatchDocumentValueTuple []GuidJsonPatchDocumentValueTuple) IdentityBulkPatchRequest

The new Identity.

type IdentityBulkPostRequest

type IdentityBulkPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityBulkPostRequest) Execute

func (IdentityBulkPostRequest) RequestBody

func (r IdentityBulkPostRequest) RequestBody(requestBody []interface{}) IdentityBulkPostRequest

The new Identity.

type IdentityBulkPutRequest

type IdentityBulkPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityBulkPutRequest) Execute

func (IdentityBulkPutRequest) GuidIdentityValueTuple

func (r IdentityBulkPutRequest) GuidIdentityValueTuple(guidIdentityValueTuple []GuidIdentityValueTuple) IdentityBulkPutRequest

The updated identities.

type IdentityByEmailEmailGetRequest

type IdentityByEmailEmailGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityByEmailEmailGetRequest) Execute

func (IdentityByEmailEmailGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all

func (IdentityByEmailEmailGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (IdentityByEmailEmailGetRequest) IncludeArchivedAndDeleted

func (r IdentityByEmailEmailGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityByEmailEmailGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityByEmailEmailGetRequest) Limit

Maximum number of objects to return.

func (IdentityByEmailEmailGetRequest) Offset

Index of the first object to return.

func (IdentityByEmailEmailGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityByEmailEmailGetRequest) Token

Pagination token.

type IdentityCurrentAccountsAccountIDDeleteRequest

type IdentityCurrentAccountsAccountIDDeleteRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentAccountsAccountIDDeleteRequest) Execute

type IdentityCurrentAccountsAccountIDGetRequest

type IdentityCurrentAccountsAccountIDGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentAccountsAccountIDGetRequest) Execute

type IdentityCurrentAccountsAccountIDPutRequest

type IdentityCurrentAccountsAccountIDPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentAccountsAccountIDPutRequest) Account

The value.

func (IdentityCurrentAccountsAccountIDPutRequest) Execute

type IdentityCurrentAccountsGetRequest

type IdentityCurrentAccountsGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentAccountsGetRequest) Execute

func (IdentityCurrentAccountsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all

func (IdentityCurrentAccountsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (IdentityCurrentAccountsGetRequest) IncludeArchivedAndDeleted

func (r IdentityCurrentAccountsGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityCurrentAccountsGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityCurrentAccountsGetRequest) Limit

Maximum number of objects to return.

func (IdentityCurrentAccountsGetRequest) Offset

Index of the first object to return.

func (IdentityCurrentAccountsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityCurrentAccountsGetRequest) Token

Pagination token.

type IdentityCurrentAssociateOtherIdentityIdOrUpnPutRequest

type IdentityCurrentAssociateOtherIdentityIdOrUpnPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentAssociateOtherIdentityIdOrUpnPutRequest) Execute

type IdentityCurrentAssociateSocialTokenPutRequest

type IdentityCurrentAssociateSocialTokenPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentAssociateSocialTokenPutRequest) Execute

type IdentityCurrentGetRequest

type IdentityCurrentGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentGetRequest) Execute

func (IdentityCurrentGetRequest) Field

type IdentityCurrentGroupsDeleteRequest

type IdentityCurrentGroupsDeleteRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentGroupsDeleteRequest) Execute

func (IdentityCurrentGroupsDeleteRequest) RequestBody

type IdentityCurrentGroupsGetRequest

type IdentityCurrentGroupsGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentGroupsGetRequest) Execute

func (IdentityCurrentGroupsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all

func (IdentityCurrentGroupsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (IdentityCurrentGroupsGetRequest) IncludeArchivedAndDeleted

func (r IdentityCurrentGroupsGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityCurrentGroupsGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityCurrentGroupsGetRequest) Limit

Maximum number of objects to return.

func (IdentityCurrentGroupsGetRequest) Offset

Index of the first object to return.

func (IdentityCurrentGroupsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityCurrentGroupsGetRequest) Token

Pagination token.

type IdentityCurrentGroupsPostRequest

type IdentityCurrentGroupsPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentGroupsPostRequest) Execute

func (IdentityCurrentGroupsPostRequest) GroupMemberItem

type IdentityCurrentGroupsRecursiveGetRequest

type IdentityCurrentGroupsRecursiveGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentGroupsRecursiveGetRequest) Execute

func (IdentityCurrentGroupsRecursiveGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all

func (IdentityCurrentGroupsRecursiveGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (IdentityCurrentGroupsRecursiveGetRequest) IncludeArchivedAndDeleted

func (r IdentityCurrentGroupsRecursiveGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityCurrentGroupsRecursiveGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityCurrentGroupsRecursiveGetRequest) Limit

Maximum number of objects to return.

func (IdentityCurrentGroupsRecursiveGetRequest) Offset

Index of the first object to return.

func (IdentityCurrentGroupsRecursiveGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityCurrentGroupsRecursiveGetRequest) Token

Pagination token.

type IdentityCurrentPatchRequest

type IdentityCurrentPatchRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentPatchRequest) Execute

func (IdentityCurrentPatchRequest) Operation

The patch.

type IdentityCurrentPutRequest

type IdentityCurrentPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentPutRequest) Body

func (r IdentityCurrentPutRequest) Body(body interface{}) IdentityCurrentPutRequest

The value.

func (IdentityCurrentPutRequest) Execute

type IdentityCurrentSubscriptionsGetRequest

type IdentityCurrentSubscriptionsGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityCurrentSubscriptionsGetRequest) Execute

type IdentityEnumerateEnvelope

type IdentityEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Identity     `json:"data,omitempty"`
}

IdentityEnumerateEnvelope struct for IdentityEnumerateEnvelope

func NewIdentityEnumerateEnvelope

func NewIdentityEnumerateEnvelope() *IdentityEnumerateEnvelope

NewIdentityEnumerateEnvelope instantiates a new IdentityEnumerateEnvelope 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 NewIdentityEnumerateEnvelopeWithDefaults

func NewIdentityEnumerateEnvelopeWithDefaults() *IdentityEnumerateEnvelope

NewIdentityEnumerateEnvelopeWithDefaults instantiates a new IdentityEnumerateEnvelope 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 (*IdentityEnumerateEnvelope) GetData

func (o *IdentityEnumerateEnvelope) GetData() []Identity

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityEnumerateEnvelope) GetDataOk

func (o *IdentityEnumerateEnvelope) GetDataOk() ([]Identity, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityEnumerateEnvelope) GetDelta

func (o *IdentityEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*IdentityEnumerateEnvelope) GetDeltaOk

func (o *IdentityEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*IdentityEnumerateEnvelope) GetMessage

func (o *IdentityEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityEnumerateEnvelope) GetMessageOk

func (o *IdentityEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityEnumerateEnvelope) GetPagination

func (o *IdentityEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*IdentityEnumerateEnvelope) GetPaginationOk

func (o *IdentityEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*IdentityEnumerateEnvelope) GetRequestId

func (o *IdentityEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityEnumerateEnvelope) GetRequestIdOk

func (o *IdentityEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityEnumerateEnvelope) HasData

func (o *IdentityEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*IdentityEnumerateEnvelope) HasDelta

func (o *IdentityEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*IdentityEnumerateEnvelope) HasMessage

func (o *IdentityEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IdentityEnumerateEnvelope) HasPagination

func (o *IdentityEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*IdentityEnumerateEnvelope) HasRequestId

func (o *IdentityEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (IdentityEnumerateEnvelope) MarshalJSON

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

func (*IdentityEnumerateEnvelope) SetData

func (o *IdentityEnumerateEnvelope) SetData(v []Identity)

SetData gets a reference to the given []Identity and assigns it to the Data field.

func (*IdentityEnumerateEnvelope) SetDelta

func (o *IdentityEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*IdentityEnumerateEnvelope) SetMessage

func (o *IdentityEnumerateEnvelope) SetMessage(v string)

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

func (*IdentityEnumerateEnvelope) SetMessageNil

func (o *IdentityEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentityEnumerateEnvelope) SetPagination

func (o *IdentityEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*IdentityEnumerateEnvelope) SetRequestId

func (o *IdentityEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentityEnumerateEnvelope) SetRequestIdNil

func (o *IdentityEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentityEnumerateEnvelope) ToMap

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

func (*IdentityEnumerateEnvelope) UnsetMessage

func (o *IdentityEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentityEnumerateEnvelope) UnsetRequestId

func (o *IdentityEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type IdentityEnvelope

type IdentityEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *Identity      `json:"data,omitempty"`
}

IdentityEnvelope struct for IdentityEnvelope

func NewIdentityEnvelope

func NewIdentityEnvelope() *IdentityEnvelope

NewIdentityEnvelope instantiates a new IdentityEnvelope 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 NewIdentityEnvelopeWithDefaults

func NewIdentityEnvelopeWithDefaults() *IdentityEnvelope

NewIdentityEnvelopeWithDefaults instantiates a new IdentityEnvelope 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 (*IdentityEnvelope) GetData

func (o *IdentityEnvelope) GetData() Identity

GetData returns the Data field value if set, zero value otherwise.

func (*IdentityEnvelope) GetDataOk

func (o *IdentityEnvelope) GetDataOk() (*Identity, bool)

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

func (*IdentityEnvelope) GetMessage

func (o *IdentityEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityEnvelope) GetMessageOk

func (o *IdentityEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityEnvelope) GetRequestId

func (o *IdentityEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityEnvelope) GetRequestIdOk

func (o *IdentityEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityEnvelope) HasData

func (o *IdentityEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*IdentityEnvelope) HasMessage

func (o *IdentityEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IdentityEnvelope) HasRequestId

func (o *IdentityEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (IdentityEnvelope) MarshalJSON

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

func (*IdentityEnvelope) SetData

func (o *IdentityEnvelope) SetData(v Identity)

SetData gets a reference to the given Identity and assigns it to the Data field.

func (*IdentityEnvelope) SetMessage

func (o *IdentityEnvelope) SetMessage(v string)

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

func (*IdentityEnvelope) SetMessageNil

func (o *IdentityEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentityEnvelope) SetRequestId

func (o *IdentityEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentityEnvelope) SetRequestIdNil

func (o *IdentityEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentityEnvelope) ToMap

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

func (*IdentityEnvelope) UnsetMessage

func (o *IdentityEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentityEnvelope) UnsetRequestId

func (o *IdentityEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type IdentityGetRequest

type IdentityGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityGetRequest) Execute

func (IdentityGetRequest) Field

func (r IdentityGetRequest) Field(field []string) IdentityGetRequest

The fields to return. Multiple values can be specified. If none is specified, all properties are returned.

func (IdentityGetRequest) Filter

func (r IdentityGetRequest) Filter(filter []string) IdentityGetRequest

The filter (property:value). Multiple values can be specified.

func (IdentityGetRequest) IncludeArchivedAndDeleted

func (r IdentityGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityGetRequest) Limit

Maximum number of objects to return.

func (IdentityGetRequest) Offset

func (r IdentityGetRequest) Offset(offset int32) IdentityGetRequest

Index of the first object to return.

func (IdentityGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityGetRequest) Token

Pagination token.

type IdentityIdAccountsGetRequest

type IdentityIdAccountsGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdAccountsGetRequest) Execute

func (IdentityIdAccountsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all

func (IdentityIdAccountsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (IdentityIdAccountsGetRequest) IncludeArchivedAndDeleted

func (r IdentityIdAccountsGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityIdAccountsGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityIdAccountsGetRequest) Limit

Maximum number of objects to return.

func (IdentityIdAccountsGetRequest) Offset

Index of the first object to return.

func (IdentityIdAccountsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityIdAccountsGetRequest) Token

Pagination token.

type IdentityIdAccountsPostRequest

type IdentityIdAccountsPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdAccountsPostRequest) Account

The new Account.

func (IdentityIdAccountsPostRequest) Execute

type IdentityIdActivateOrBlockPostRequest

type IdentityIdActivateOrBlockPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdActivateOrBlockPostRequest) ActivateOrBlockRequest

The request.

func (IdentityIdActivateOrBlockPostRequest) Execute

type IdentityIdActivatePutRequest

type IdentityIdActivatePutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdActivatePutRequest) Execute

type IdentityIdAssociateOtherIdentityIdOrUpnPutRequest

type IdentityIdAssociateOtherIdentityIdOrUpnPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdAssociateOtherIdentityIdOrUpnPutRequest) Execute

type IdentityIdDeleteRequest

type IdentityIdDeleteRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdDeleteRequest) Execute

type IdentityIdExtendDeadlinesPutRequest

type IdentityIdExtendDeadlinesPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdExtendDeadlinesPutRequest) Execute

func (IdentityIdExtendDeadlinesPutRequest) NewArchiveDeadline

func (r IdentityIdExtendDeadlinesPutRequest) NewArchiveDeadline(newArchiveDeadline time.Time) IdentityIdExtendDeadlinesPutRequest

func (IdentityIdExtendDeadlinesPutRequest) NewBlockingDeadline

func (r IdentityIdExtendDeadlinesPutRequest) NewBlockingDeadline(newBlockingDeadline time.Time) IdentityIdExtendDeadlinesPutRequest

func (IdentityIdExtendDeadlinesPutRequest) NewDeleteDeadline

type IdentityIdExternalEmailPostRequest

type IdentityIdExternalEmailPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdExternalEmailPostRequest) Email

The new email.

func (IdentityIdExternalEmailPostRequest) Execute

type IdentityIdGetRequest

type IdentityIdGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdGetRequest) Execute

func (IdentityIdGetRequest) Field

The fields to be selected.

type IdentityIdGroupsGetRequest

type IdentityIdGroupsGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdGroupsGetRequest) Execute

func (IdentityIdGroupsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all

func (IdentityIdGroupsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (IdentityIdGroupsGetRequest) IncludeArchivedAndDeleted

func (r IdentityIdGroupsGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityIdGroupsGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityIdGroupsGetRequest) Limit

Maximum number of objects to return.

func (IdentityIdGroupsGetRequest) Offset

Index of the first object to return.

func (IdentityIdGroupsGetRequest) Recursive

Obsolete. Please use /groups/recursive instead

func (IdentityIdGroupsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityIdGroupsGetRequest) Token

Pagination token.

type IdentityIdGroupsRecursiveGetRequest

type IdentityIdGroupsRecursiveGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdGroupsRecursiveGetRequest) Execute

func (IdentityIdGroupsRecursiveGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all

func (IdentityIdGroupsRecursiveGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (IdentityIdGroupsRecursiveGetRequest) IncludeArchivedAndDeleted

func (r IdentityIdGroupsRecursiveGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityIdGroupsRecursiveGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityIdGroupsRecursiveGetRequest) Limit

Maximum number of objects to return.

func (IdentityIdGroupsRecursiveGetRequest) Offset

Index of the first object to return.

func (IdentityIdGroupsRecursiveGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityIdGroupsRecursiveGetRequest) Token

Pagination token.

type IdentityIdIsMemberRecursiveGroupIdGetRequest

type IdentityIdIsMemberRecursiveGroupIdGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdIsMemberRecursiveGroupIdGetRequest) Execute

type IdentityIdMergeKeepIdOrUpnPostRequest

type IdentityIdMergeKeepIdOrUpnPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdMergeKeepIdOrUpnPostRequest) Execute

type IdentityIdPatchRequest

type IdentityIdPatchRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdPatchRequest) Execute

func (IdentityIdPatchRequest) Operation

func (r IdentityIdPatchRequest) Operation(operation []Operation) IdentityIdPatchRequest

The patch.

type IdentityIdPersonalDataGetRequest

type IdentityIdPersonalDataGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdPersonalDataGetRequest) Execute

type IdentityIdPutRequest

type IdentityIdPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdPutRequest) Body

func (r IdentityIdPutRequest) Body(body interface{}) IdentityIdPutRequest

The value.

func (IdentityIdPutRequest) Execute

type IdentityIdRecoverPutRequest

type IdentityIdRecoverPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdRecoverPutRequest) Execute

type IdentityIdSubscriptionsGetRequest

type IdentityIdSubscriptionsGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdSubscriptionsGetRequest) Execute

type IdentityIdTransferNewOwnerIdPutRequest

type IdentityIdTransferNewOwnerIdPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdTransferNewOwnerIdPutRequest) Execute

type IdentityIdentifierAvailabilityPostRequest

type IdentityIdentifierAvailabilityPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityIdentifierAvailabilityPostRequest) Execute

func (IdentityIdentifierAvailabilityPostRequest) IdentifierInputWrapper

type IdentityInfo

type IdentityInfo struct {
	Id          NullableString `json:"id,omitempty"`
	Type        *IdentityType  `json:"type,omitempty"`
	Upn         NullableString `json:"upn,omitempty"`
	DisplayName NullableString `json:"displayName,omitempty"`
	PersonId    NullableString `json:"personId,omitempty"`
	Source      NullableString `json:"source,omitempty"`
}

IdentityInfo struct for IdentityInfo

func NewIdentityInfo

func NewIdentityInfo() *IdentityInfo

NewIdentityInfo instantiates a new IdentityInfo 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 NewIdentityInfoWithDefaults

func NewIdentityInfoWithDefaults() *IdentityInfo

NewIdentityInfoWithDefaults instantiates a new IdentityInfo 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 (*IdentityInfo) GetDisplayName

func (o *IdentityInfo) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityInfo) GetDisplayNameOk

func (o *IdentityInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityInfo) GetId

func (o *IdentityInfo) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityInfo) GetIdOk

func (o *IdentityInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityInfo) GetPersonId

func (o *IdentityInfo) GetPersonId() string

GetPersonId returns the PersonId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityInfo) GetPersonIdOk

func (o *IdentityInfo) GetPersonIdOk() (*string, bool)

GetPersonIdOk returns a tuple with the PersonId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityInfo) GetSource

func (o *IdentityInfo) GetSource() string

GetSource returns the Source field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityInfo) GetSourceOk

func (o *IdentityInfo) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityInfo) GetType

func (o *IdentityInfo) GetType() IdentityType

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

func (*IdentityInfo) GetTypeOk

func (o *IdentityInfo) GetTypeOk() (*IdentityType, 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 (*IdentityInfo) GetUpn

func (o *IdentityInfo) GetUpn() string

GetUpn returns the Upn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityInfo) GetUpnOk

func (o *IdentityInfo) GetUpnOk() (*string, bool)

GetUpnOk returns a tuple with the Upn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityInfo) HasDisplayName

func (o *IdentityInfo) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*IdentityInfo) HasId

func (o *IdentityInfo) HasId() bool

HasId returns a boolean if a field has been set.

func (*IdentityInfo) HasPersonId

func (o *IdentityInfo) HasPersonId() bool

HasPersonId returns a boolean if a field has been set.

func (*IdentityInfo) HasSource

func (o *IdentityInfo) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*IdentityInfo) HasType

func (o *IdentityInfo) HasType() bool

HasType returns a boolean if a field has been set.

func (*IdentityInfo) HasUpn

func (o *IdentityInfo) HasUpn() bool

HasUpn returns a boolean if a field has been set.

func (IdentityInfo) MarshalJSON

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

func (*IdentityInfo) SetDisplayName

func (o *IdentityInfo) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*IdentityInfo) SetDisplayNameNil

func (o *IdentityInfo) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*IdentityInfo) SetId

func (o *IdentityInfo) SetId(v string)

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

func (*IdentityInfo) SetIdNil

func (o *IdentityInfo) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*IdentityInfo) SetPersonId

func (o *IdentityInfo) SetPersonId(v string)

SetPersonId gets a reference to the given NullableString and assigns it to the PersonId field.

func (*IdentityInfo) SetPersonIdNil

func (o *IdentityInfo) SetPersonIdNil()

SetPersonIdNil sets the value for PersonId to be an explicit nil

func (*IdentityInfo) SetSource

func (o *IdentityInfo) SetSource(v string)

SetSource gets a reference to the given NullableString and assigns it to the Source field.

func (*IdentityInfo) SetSourceNil

func (o *IdentityInfo) SetSourceNil()

SetSourceNil sets the value for Source to be an explicit nil

func (*IdentityInfo) SetType

func (o *IdentityInfo) SetType(v IdentityType)

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

func (*IdentityInfo) SetUpn

func (o *IdentityInfo) SetUpn(v string)

SetUpn gets a reference to the given NullableString and assigns it to the Upn field.

func (*IdentityInfo) SetUpnNil

func (o *IdentityInfo) SetUpnNil()

SetUpnNil sets the value for Upn to be an explicit nil

func (IdentityInfo) ToMap

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

func (*IdentityInfo) UnsetDisplayName

func (o *IdentityInfo) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*IdentityInfo) UnsetId

func (o *IdentityInfo) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*IdentityInfo) UnsetPersonId

func (o *IdentityInfo) UnsetPersonId()

UnsetPersonId ensures that no value is present for PersonId, not even an explicit nil

func (*IdentityInfo) UnsetSource

func (o *IdentityInfo) UnsetSource()

UnsetSource ensures that no value is present for Source, not even an explicit nil

func (*IdentityInfo) UnsetUpn

func (o *IdentityInfo) UnsetUpn()

UnsetUpn ensures that no value is present for Upn, not even an explicit nil

type IdentityLogoutPostRequest

type IdentityLogoutPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityLogoutPostRequest) Execute

type IdentityMembership

type IdentityMembership struct {
	GroupId    *string        `json:"groupId,omitempty"`
	IdentityId *string        `json:"identityId,omitempty"`
	Comment    NullableString `json:"comment,omitempty"`
	Builtin    *bool          `json:"builtin,omitempty"`
}

IdentityMembership struct for IdentityMembership

func NewIdentityMembership

func NewIdentityMembership() *IdentityMembership

NewIdentityMembership instantiates a new IdentityMembership 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 NewIdentityMembershipWithDefaults

func NewIdentityMembershipWithDefaults() *IdentityMembership

NewIdentityMembershipWithDefaults instantiates a new IdentityMembership 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 (*IdentityMembership) GetBuiltin

func (o *IdentityMembership) GetBuiltin() bool

GetBuiltin returns the Builtin field value if set, zero value otherwise.

func (*IdentityMembership) GetBuiltinOk

func (o *IdentityMembership) GetBuiltinOk() (*bool, bool)

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

func (*IdentityMembership) GetComment

func (o *IdentityMembership) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembership) GetCommentOk

func (o *IdentityMembership) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembership) GetGroupId

func (o *IdentityMembership) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*IdentityMembership) GetGroupIdOk

func (o *IdentityMembership) GetGroupIdOk() (*string, bool)

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

func (*IdentityMembership) GetIdentityId

func (o *IdentityMembership) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise.

func (*IdentityMembership) GetIdentityIdOk

func (o *IdentityMembership) GetIdentityIdOk() (*string, bool)

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

func (*IdentityMembership) HasBuiltin

func (o *IdentityMembership) HasBuiltin() bool

HasBuiltin returns a boolean if a field has been set.

func (*IdentityMembership) HasComment

func (o *IdentityMembership) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*IdentityMembership) HasGroupId

func (o *IdentityMembership) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*IdentityMembership) HasIdentityId

func (o *IdentityMembership) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (IdentityMembership) MarshalJSON

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

func (*IdentityMembership) SetBuiltin

func (o *IdentityMembership) SetBuiltin(v bool)

SetBuiltin gets a reference to the given bool and assigns it to the Builtin field.

func (*IdentityMembership) SetComment

func (o *IdentityMembership) SetComment(v string)

SetComment gets a reference to the given NullableString and assigns it to the Comment field.

func (*IdentityMembership) SetCommentNil

func (o *IdentityMembership) SetCommentNil()

SetCommentNil sets the value for Comment to be an explicit nil

func (*IdentityMembership) SetGroupId

func (o *IdentityMembership) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*IdentityMembership) SetIdentityId

func (o *IdentityMembership) SetIdentityId(v string)

SetIdentityId gets a reference to the given string and assigns it to the IdentityId field.

func (IdentityMembership) ToMap

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

func (*IdentityMembership) UnsetComment

func (o *IdentityMembership) UnsetComment()

UnsetComment ensures that no value is present for Comment, not even an explicit nil

type IdentityMembershipCheck

type IdentityMembershipCheck struct {
	IsMember        *bool          `json:"isMember,omitempty"`
	GroupIdentifier NullableString `json:"groupIdentifier,omitempty"`
	Upn             NullableString `json:"upn,omitempty"`
}

IdentityMembershipCheck struct for IdentityMembershipCheck

func NewIdentityMembershipCheck

func NewIdentityMembershipCheck() *IdentityMembershipCheck

NewIdentityMembershipCheck instantiates a new IdentityMembershipCheck 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 NewIdentityMembershipCheckWithDefaults

func NewIdentityMembershipCheckWithDefaults() *IdentityMembershipCheck

NewIdentityMembershipCheckWithDefaults instantiates a new IdentityMembershipCheck 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 (*IdentityMembershipCheck) GetGroupIdentifier

func (o *IdentityMembershipCheck) GetGroupIdentifier() string

GetGroupIdentifier returns the GroupIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipCheck) GetGroupIdentifierOk

func (o *IdentityMembershipCheck) GetGroupIdentifierOk() (*string, bool)

GetGroupIdentifierOk returns a tuple with the GroupIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipCheck) GetIsMember

func (o *IdentityMembershipCheck) GetIsMember() bool

GetIsMember returns the IsMember field value if set, zero value otherwise.

func (*IdentityMembershipCheck) GetIsMemberOk

func (o *IdentityMembershipCheck) GetIsMemberOk() (*bool, bool)

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

func (*IdentityMembershipCheck) GetUpn

func (o *IdentityMembershipCheck) GetUpn() string

GetUpn returns the Upn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipCheck) GetUpnOk

func (o *IdentityMembershipCheck) GetUpnOk() (*string, bool)

GetUpnOk returns a tuple with the Upn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipCheck) HasGroupIdentifier

func (o *IdentityMembershipCheck) HasGroupIdentifier() bool

HasGroupIdentifier returns a boolean if a field has been set.

func (*IdentityMembershipCheck) HasIsMember

func (o *IdentityMembershipCheck) HasIsMember() bool

HasIsMember returns a boolean if a field has been set.

func (*IdentityMembershipCheck) HasUpn

func (o *IdentityMembershipCheck) HasUpn() bool

HasUpn returns a boolean if a field has been set.

func (IdentityMembershipCheck) MarshalJSON

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

func (*IdentityMembershipCheck) SetGroupIdentifier

func (o *IdentityMembershipCheck) SetGroupIdentifier(v string)

SetGroupIdentifier gets a reference to the given NullableString and assigns it to the GroupIdentifier field.

func (*IdentityMembershipCheck) SetGroupIdentifierNil

func (o *IdentityMembershipCheck) SetGroupIdentifierNil()

SetGroupIdentifierNil sets the value for GroupIdentifier to be an explicit nil

func (*IdentityMembershipCheck) SetIsMember

func (o *IdentityMembershipCheck) SetIsMember(v bool)

SetIsMember gets a reference to the given bool and assigns it to the IsMember field.

func (*IdentityMembershipCheck) SetUpn

func (o *IdentityMembershipCheck) SetUpn(v string)

SetUpn gets a reference to the given NullableString and assigns it to the Upn field.

func (*IdentityMembershipCheck) SetUpnNil

func (o *IdentityMembershipCheck) SetUpnNil()

SetUpnNil sets the value for Upn to be an explicit nil

func (IdentityMembershipCheck) ToMap

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

func (*IdentityMembershipCheck) UnsetGroupIdentifier

func (o *IdentityMembershipCheck) UnsetGroupIdentifier()

UnsetGroupIdentifier ensures that no value is present for GroupIdentifier, not even an explicit nil

func (*IdentityMembershipCheck) UnsetUpn

func (o *IdentityMembershipCheck) UnsetUpn()

UnsetUpn ensures that no value is present for Upn, not even an explicit nil

type IdentityMembershipCheckEnvelope

type IdentityMembershipCheckEnvelope struct {
	RequestId NullableString           `json:"request_id,omitempty"`
	Message   NullableString           `json:"message,omitempty"`
	Data      *IdentityMembershipCheck `json:"data,omitempty"`
}

IdentityMembershipCheckEnvelope struct for IdentityMembershipCheckEnvelope

func NewIdentityMembershipCheckEnvelope

func NewIdentityMembershipCheckEnvelope() *IdentityMembershipCheckEnvelope

NewIdentityMembershipCheckEnvelope instantiates a new IdentityMembershipCheckEnvelope 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 NewIdentityMembershipCheckEnvelopeWithDefaults

func NewIdentityMembershipCheckEnvelopeWithDefaults() *IdentityMembershipCheckEnvelope

NewIdentityMembershipCheckEnvelopeWithDefaults instantiates a new IdentityMembershipCheckEnvelope 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 (*IdentityMembershipCheckEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*IdentityMembershipCheckEnvelope) GetDataOk

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

func (*IdentityMembershipCheckEnvelope) GetMessage

func (o *IdentityMembershipCheckEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipCheckEnvelope) GetMessageOk

func (o *IdentityMembershipCheckEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipCheckEnvelope) GetRequestId

func (o *IdentityMembershipCheckEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipCheckEnvelope) GetRequestIdOk

func (o *IdentityMembershipCheckEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipCheckEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*IdentityMembershipCheckEnvelope) HasMessage

func (o *IdentityMembershipCheckEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IdentityMembershipCheckEnvelope) HasRequestId

func (o *IdentityMembershipCheckEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (IdentityMembershipCheckEnvelope) MarshalJSON

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

func (*IdentityMembershipCheckEnvelope) SetData

SetData gets a reference to the given IdentityMembershipCheck and assigns it to the Data field.

func (*IdentityMembershipCheckEnvelope) SetMessage

func (o *IdentityMembershipCheckEnvelope) SetMessage(v string)

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

func (*IdentityMembershipCheckEnvelope) SetMessageNil

func (o *IdentityMembershipCheckEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentityMembershipCheckEnvelope) SetRequestId

func (o *IdentityMembershipCheckEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentityMembershipCheckEnvelope) SetRequestIdNil

func (o *IdentityMembershipCheckEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentityMembershipCheckEnvelope) ToMap

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

func (*IdentityMembershipCheckEnvelope) UnsetMessage

func (o *IdentityMembershipCheckEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentityMembershipCheckEnvelope) UnsetRequestId

func (o *IdentityMembershipCheckEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type IdentityMembershipEnumerateEnvelope

type IdentityMembershipEnumerateEnvelope struct {
	Pagination *Pagination          `json:"pagination,omitempty"`
	Delta      *Delta               `json:"delta,omitempty"`
	RequestId  NullableString       `json:"request_id,omitempty"`
	Message    NullableString       `json:"message,omitempty"`
	Data       []IdentityMembership `json:"data,omitempty"`
}

IdentityMembershipEnumerateEnvelope struct for IdentityMembershipEnumerateEnvelope

func NewIdentityMembershipEnumerateEnvelope

func NewIdentityMembershipEnumerateEnvelope() *IdentityMembershipEnumerateEnvelope

NewIdentityMembershipEnumerateEnvelope instantiates a new IdentityMembershipEnumerateEnvelope 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 NewIdentityMembershipEnumerateEnvelopeWithDefaults

func NewIdentityMembershipEnumerateEnvelopeWithDefaults() *IdentityMembershipEnumerateEnvelope

NewIdentityMembershipEnumerateEnvelopeWithDefaults instantiates a new IdentityMembershipEnumerateEnvelope 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 (*IdentityMembershipEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*IdentityMembershipEnumerateEnvelope) GetDeltaOk

func (o *IdentityMembershipEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*IdentityMembershipEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipEnumerateEnvelope) GetMessageOk

func (o *IdentityMembershipEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*IdentityMembershipEnumerateEnvelope) GetPaginationOk

func (o *IdentityMembershipEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*IdentityMembershipEnumerateEnvelope) GetRequestId

func (o *IdentityMembershipEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipEnumerateEnvelope) GetRequestIdOk

func (o *IdentityMembershipEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*IdentityMembershipEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*IdentityMembershipEnumerateEnvelope) HasMessage

func (o *IdentityMembershipEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IdentityMembershipEnumerateEnvelope) HasPagination

func (o *IdentityMembershipEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*IdentityMembershipEnumerateEnvelope) HasRequestId

func (o *IdentityMembershipEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (IdentityMembershipEnumerateEnvelope) MarshalJSON

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

func (*IdentityMembershipEnumerateEnvelope) SetData

SetData gets a reference to the given []IdentityMembership and assigns it to the Data field.

func (*IdentityMembershipEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*IdentityMembershipEnumerateEnvelope) SetMessage

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

func (*IdentityMembershipEnumerateEnvelope) SetMessageNil

func (o *IdentityMembershipEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentityMembershipEnumerateEnvelope) SetPagination

func (o *IdentityMembershipEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*IdentityMembershipEnumerateEnvelope) SetRequestId

func (o *IdentityMembershipEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentityMembershipEnumerateEnvelope) SetRequestIdNil

func (o *IdentityMembershipEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentityMembershipEnumerateEnvelope) ToMap

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

func (*IdentityMembershipEnumerateEnvelope) UnsetMessage

func (o *IdentityMembershipEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentityMembershipEnumerateEnvelope) UnsetRequestId

func (o *IdentityMembershipEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type IdentityMembershipEnvelope

type IdentityMembershipEnvelope struct {
	RequestId NullableString      `json:"request_id,omitempty"`
	Message   NullableString      `json:"message,omitempty"`
	Data      *IdentityMembership `json:"data,omitempty"`
}

IdentityMembershipEnvelope struct for IdentityMembershipEnvelope

func NewIdentityMembershipEnvelope

func NewIdentityMembershipEnvelope() *IdentityMembershipEnvelope

NewIdentityMembershipEnvelope instantiates a new IdentityMembershipEnvelope 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 NewIdentityMembershipEnvelopeWithDefaults

func NewIdentityMembershipEnvelopeWithDefaults() *IdentityMembershipEnvelope

NewIdentityMembershipEnvelopeWithDefaults instantiates a new IdentityMembershipEnvelope 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 (*IdentityMembershipEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*IdentityMembershipEnvelope) GetDataOk

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

func (*IdentityMembershipEnvelope) GetMessage

func (o *IdentityMembershipEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipEnvelope) GetMessageOk

func (o *IdentityMembershipEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipEnvelope) GetRequestId

func (o *IdentityMembershipEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipEnvelope) GetRequestIdOk

func (o *IdentityMembershipEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipEnvelope) HasData

func (o *IdentityMembershipEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*IdentityMembershipEnvelope) HasMessage

func (o *IdentityMembershipEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IdentityMembershipEnvelope) HasRequestId

func (o *IdentityMembershipEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (IdentityMembershipEnvelope) MarshalJSON

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

func (*IdentityMembershipEnvelope) SetData

SetData gets a reference to the given IdentityMembership and assigns it to the Data field.

func (*IdentityMembershipEnvelope) SetMessage

func (o *IdentityMembershipEnvelope) SetMessage(v string)

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

func (*IdentityMembershipEnvelope) SetMessageNil

func (o *IdentityMembershipEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentityMembershipEnvelope) SetRequestId

func (o *IdentityMembershipEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentityMembershipEnvelope) SetRequestIdNil

func (o *IdentityMembershipEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentityMembershipEnvelope) ToMap

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

func (*IdentityMembershipEnvelope) UnsetMessage

func (o *IdentityMembershipEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentityMembershipEnvelope) UnsetRequestId

func (o *IdentityMembershipEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type IdentityMembershipInfo

type IdentityMembershipInfo struct {
	MemberIdentity *IdentityInfo  `json:"memberIdentity,omitempty"`
	Comment        NullableString `json:"comment,omitempty"`
}

IdentityMembershipInfo struct for IdentityMembershipInfo

func NewIdentityMembershipInfo

func NewIdentityMembershipInfo() *IdentityMembershipInfo

NewIdentityMembershipInfo instantiates a new IdentityMembershipInfo 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 NewIdentityMembershipInfoWithDefaults

func NewIdentityMembershipInfoWithDefaults() *IdentityMembershipInfo

NewIdentityMembershipInfoWithDefaults instantiates a new IdentityMembershipInfo 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 (*IdentityMembershipInfo) GetComment

func (o *IdentityMembershipInfo) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipInfo) GetCommentOk

func (o *IdentityMembershipInfo) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipInfo) GetMemberIdentity

func (o *IdentityMembershipInfo) GetMemberIdentity() IdentityInfo

GetMemberIdentity returns the MemberIdentity field value if set, zero value otherwise.

func (*IdentityMembershipInfo) GetMemberIdentityOk

func (o *IdentityMembershipInfo) GetMemberIdentityOk() (*IdentityInfo, bool)

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

func (*IdentityMembershipInfo) HasComment

func (o *IdentityMembershipInfo) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*IdentityMembershipInfo) HasMemberIdentity

func (o *IdentityMembershipInfo) HasMemberIdentity() bool

HasMemberIdentity returns a boolean if a field has been set.

func (IdentityMembershipInfo) MarshalJSON

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

func (*IdentityMembershipInfo) SetComment

func (o *IdentityMembershipInfo) SetComment(v string)

SetComment gets a reference to the given NullableString and assigns it to the Comment field.

func (*IdentityMembershipInfo) SetCommentNil

func (o *IdentityMembershipInfo) SetCommentNil()

SetCommentNil sets the value for Comment to be an explicit nil

func (*IdentityMembershipInfo) SetMemberIdentity

func (o *IdentityMembershipInfo) SetMemberIdentity(v IdentityInfo)

SetMemberIdentity gets a reference to the given IdentityInfo and assigns it to the MemberIdentity field.

func (IdentityMembershipInfo) ToMap

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

func (*IdentityMembershipInfo) UnsetComment

func (o *IdentityMembershipInfo) UnsetComment()

UnsetComment ensures that no value is present for Comment, not even an explicit nil

type IdentityMembershipInfoEnumerateEnvelope

type IdentityMembershipInfoEnumerateEnvelope struct {
	Pagination *Pagination              `json:"pagination,omitempty"`
	Delta      *Delta                   `json:"delta,omitempty"`
	RequestId  NullableString           `json:"request_id,omitempty"`
	Message    NullableString           `json:"message,omitempty"`
	Data       []IdentityMembershipInfo `json:"data,omitempty"`
}

IdentityMembershipInfoEnumerateEnvelope struct for IdentityMembershipInfoEnumerateEnvelope

func NewIdentityMembershipInfoEnumerateEnvelope

func NewIdentityMembershipInfoEnumerateEnvelope() *IdentityMembershipInfoEnumerateEnvelope

NewIdentityMembershipInfoEnumerateEnvelope instantiates a new IdentityMembershipInfoEnumerateEnvelope 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 NewIdentityMembershipInfoEnumerateEnvelopeWithDefaults

func NewIdentityMembershipInfoEnumerateEnvelopeWithDefaults() *IdentityMembershipInfoEnumerateEnvelope

NewIdentityMembershipInfoEnumerateEnvelopeWithDefaults instantiates a new IdentityMembershipInfoEnumerateEnvelope 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 (*IdentityMembershipInfoEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipInfoEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipInfoEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*IdentityMembershipInfoEnumerateEnvelope) GetDeltaOk

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

func (*IdentityMembershipInfoEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipInfoEnumerateEnvelope) GetMessageOk

func (o *IdentityMembershipInfoEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipInfoEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*IdentityMembershipInfoEnumerateEnvelope) GetPaginationOk

func (o *IdentityMembershipInfoEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*IdentityMembershipInfoEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipInfoEnumerateEnvelope) GetRequestIdOk

func (o *IdentityMembershipInfoEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipInfoEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*IdentityMembershipInfoEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*IdentityMembershipInfoEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*IdentityMembershipInfoEnumerateEnvelope) HasPagination

func (o *IdentityMembershipInfoEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*IdentityMembershipInfoEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (IdentityMembershipInfoEnumerateEnvelope) MarshalJSON

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

func (*IdentityMembershipInfoEnumerateEnvelope) SetData

SetData gets a reference to the given []IdentityMembershipInfo and assigns it to the Data field.

func (*IdentityMembershipInfoEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*IdentityMembershipInfoEnumerateEnvelope) SetMessage

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

func (*IdentityMembershipInfoEnumerateEnvelope) SetMessageNil

func (o *IdentityMembershipInfoEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentityMembershipInfoEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*IdentityMembershipInfoEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentityMembershipInfoEnumerateEnvelope) SetRequestIdNil

func (o *IdentityMembershipInfoEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentityMembershipInfoEnumerateEnvelope) ToMap

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

func (*IdentityMembershipInfoEnumerateEnvelope) UnsetMessage

func (o *IdentityMembershipInfoEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentityMembershipInfoEnumerateEnvelope) UnsetRequestId

func (o *IdentityMembershipInfoEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type IdentityMembershipRequest

type IdentityMembershipRequest struct {
	GroupId    NullableString `json:"groupId,omitempty"`
	IdentityId NullableString `json:"identityId,omitempty"`
	Comment    NullableString `json:"comment,omitempty"`
	Email      NullableString `json:"email,omitempty"`
}

IdentityMembershipRequest struct for IdentityMembershipRequest

func NewIdentityMembershipRequest

func NewIdentityMembershipRequest() *IdentityMembershipRequest

NewIdentityMembershipRequest instantiates a new IdentityMembershipRequest 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 NewIdentityMembershipRequestWithDefaults

func NewIdentityMembershipRequestWithDefaults() *IdentityMembershipRequest

NewIdentityMembershipRequestWithDefaults instantiates a new IdentityMembershipRequest 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 (*IdentityMembershipRequest) GetComment

func (o *IdentityMembershipRequest) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipRequest) GetCommentOk

func (o *IdentityMembershipRequest) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipRequest) GetEmail

func (o *IdentityMembershipRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipRequest) GetEmailOk

func (o *IdentityMembershipRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipRequest) GetGroupId

func (o *IdentityMembershipRequest) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipRequest) GetGroupIdOk

func (o *IdentityMembershipRequest) GetGroupIdOk() (*string, bool)

GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipRequest) GetIdentityId

func (o *IdentityMembershipRequest) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipRequest) GetIdentityIdOk

func (o *IdentityMembershipRequest) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipRequest) HasComment

func (o *IdentityMembershipRequest) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*IdentityMembershipRequest) HasEmail

func (o *IdentityMembershipRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*IdentityMembershipRequest) HasGroupId

func (o *IdentityMembershipRequest) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*IdentityMembershipRequest) HasIdentityId

func (o *IdentityMembershipRequest) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (IdentityMembershipRequest) MarshalJSON

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

func (*IdentityMembershipRequest) SetComment

func (o *IdentityMembershipRequest) SetComment(v string)

SetComment gets a reference to the given NullableString and assigns it to the Comment field.

func (*IdentityMembershipRequest) SetCommentNil

func (o *IdentityMembershipRequest) SetCommentNil()

SetCommentNil sets the value for Comment to be an explicit nil

func (*IdentityMembershipRequest) SetEmail

func (o *IdentityMembershipRequest) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*IdentityMembershipRequest) SetEmailNil

func (o *IdentityMembershipRequest) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*IdentityMembershipRequest) SetGroupId

func (o *IdentityMembershipRequest) SetGroupId(v string)

SetGroupId gets a reference to the given NullableString and assigns it to the GroupId field.

func (*IdentityMembershipRequest) SetGroupIdNil

func (o *IdentityMembershipRequest) SetGroupIdNil()

SetGroupIdNil sets the value for GroupId to be an explicit nil

func (*IdentityMembershipRequest) SetIdentityId

func (o *IdentityMembershipRequest) SetIdentityId(v string)

SetIdentityId gets a reference to the given NullableString and assigns it to the IdentityId field.

func (*IdentityMembershipRequest) SetIdentityIdNil

func (o *IdentityMembershipRequest) SetIdentityIdNil()

SetIdentityIdNil sets the value for IdentityId to be an explicit nil

func (IdentityMembershipRequest) ToMap

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

func (*IdentityMembershipRequest) UnsetComment

func (o *IdentityMembershipRequest) UnsetComment()

UnsetComment ensures that no value is present for Comment, not even an explicit nil

func (*IdentityMembershipRequest) UnsetEmail

func (o *IdentityMembershipRequest) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*IdentityMembershipRequest) UnsetGroupId

func (o *IdentityMembershipRequest) UnsetGroupId()

UnsetGroupId ensures that no value is present for GroupId, not even an explicit nil

func (*IdentityMembershipRequest) UnsetIdentityId

func (o *IdentityMembershipRequest) UnsetIdentityId()

UnsetIdentityId ensures that no value is present for IdentityId, not even an explicit nil

type IdentityMembershipWithDetails

type IdentityMembershipWithDetails struct {
	GroupIdentifier NullableString `json:"groupIdentifier,omitempty"`
	GroupId         *string        `json:"groupId,omitempty"`
	IdentityId      *string        `json:"identityId,omitempty"`
}

IdentityMembershipWithDetails struct for IdentityMembershipWithDetails

func NewIdentityMembershipWithDetails

func NewIdentityMembershipWithDetails() *IdentityMembershipWithDetails

NewIdentityMembershipWithDetails instantiates a new IdentityMembershipWithDetails 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 NewIdentityMembershipWithDetailsWithDefaults

func NewIdentityMembershipWithDetailsWithDefaults() *IdentityMembershipWithDetails

NewIdentityMembershipWithDetailsWithDefaults instantiates a new IdentityMembershipWithDetails 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 (*IdentityMembershipWithDetails) GetGroupId

func (o *IdentityMembershipWithDetails) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*IdentityMembershipWithDetails) GetGroupIdOk

func (o *IdentityMembershipWithDetails) GetGroupIdOk() (*string, bool)

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

func (*IdentityMembershipWithDetails) GetGroupIdentifier

func (o *IdentityMembershipWithDetails) GetGroupIdentifier() string

GetGroupIdentifier returns the GroupIdentifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipWithDetails) GetGroupIdentifierOk

func (o *IdentityMembershipWithDetails) GetGroupIdentifierOk() (*string, bool)

GetGroupIdentifierOk returns a tuple with the GroupIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipWithDetails) GetIdentityId

func (o *IdentityMembershipWithDetails) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise.

func (*IdentityMembershipWithDetails) GetIdentityIdOk

func (o *IdentityMembershipWithDetails) GetIdentityIdOk() (*string, bool)

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

func (*IdentityMembershipWithDetails) HasGroupId

func (o *IdentityMembershipWithDetails) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*IdentityMembershipWithDetails) HasGroupIdentifier

func (o *IdentityMembershipWithDetails) HasGroupIdentifier() bool

HasGroupIdentifier returns a boolean if a field has been set.

func (*IdentityMembershipWithDetails) HasIdentityId

func (o *IdentityMembershipWithDetails) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (IdentityMembershipWithDetails) MarshalJSON

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

func (*IdentityMembershipWithDetails) SetGroupId

func (o *IdentityMembershipWithDetails) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*IdentityMembershipWithDetails) SetGroupIdentifier

func (o *IdentityMembershipWithDetails) SetGroupIdentifier(v string)

SetGroupIdentifier gets a reference to the given NullableString and assigns it to the GroupIdentifier field.

func (*IdentityMembershipWithDetails) SetGroupIdentifierNil

func (o *IdentityMembershipWithDetails) SetGroupIdentifierNil()

SetGroupIdentifierNil sets the value for GroupIdentifier to be an explicit nil

func (*IdentityMembershipWithDetails) SetIdentityId

func (o *IdentityMembershipWithDetails) SetIdentityId(v string)

SetIdentityId gets a reference to the given string and assigns it to the IdentityId field.

func (IdentityMembershipWithDetails) ToMap

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

func (*IdentityMembershipWithDetails) UnsetGroupIdentifier

func (o *IdentityMembershipWithDetails) UnsetGroupIdentifier()

UnsetGroupIdentifier ensures that no value is present for GroupIdentifier, not even an explicit nil

type IdentityMembershipWithDetailsEnumerateEnvelope

type IdentityMembershipWithDetailsEnumerateEnvelope struct {
	Pagination *Pagination                     `json:"pagination,omitempty"`
	Delta      *Delta                          `json:"delta,omitempty"`
	RequestId  NullableString                  `json:"request_id,omitempty"`
	Message    NullableString                  `json:"message,omitempty"`
	Data       []IdentityMembershipWithDetails `json:"data,omitempty"`
}

IdentityMembershipWithDetailsEnumerateEnvelope struct for IdentityMembershipWithDetailsEnumerateEnvelope

func NewIdentityMembershipWithDetailsEnumerateEnvelope

func NewIdentityMembershipWithDetailsEnumerateEnvelope() *IdentityMembershipWithDetailsEnumerateEnvelope

NewIdentityMembershipWithDetailsEnumerateEnvelope instantiates a new IdentityMembershipWithDetailsEnumerateEnvelope 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 NewIdentityMembershipWithDetailsEnumerateEnvelopeWithDefaults

func NewIdentityMembershipWithDetailsEnumerateEnvelopeWithDefaults() *IdentityMembershipWithDetailsEnumerateEnvelope

NewIdentityMembershipWithDetailsEnumerateEnvelopeWithDefaults instantiates a new IdentityMembershipWithDetailsEnumerateEnvelope 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 (*IdentityMembershipWithDetailsEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetDeltaOk

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

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetPaginationOk

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

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityMembershipWithDetailsEnumerateEnvelope) GetRequestIdOk

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityMembershipWithDetailsEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) HasPagination

HasPagination returns a boolean if a field has been set.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (IdentityMembershipWithDetailsEnumerateEnvelope) MarshalJSON

func (*IdentityMembershipWithDetailsEnumerateEnvelope) SetData

SetData gets a reference to the given []IdentityMembershipWithDetails and assigns it to the Data field.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) SetMessage

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

func (*IdentityMembershipWithDetailsEnumerateEnvelope) SetMessageNil

SetMessageNil sets the value for Message to be an explicit nil

func (*IdentityMembershipWithDetailsEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*IdentityMembershipWithDetailsEnumerateEnvelope) SetRequestIdNil

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (IdentityMembershipWithDetailsEnumerateEnvelope) ToMap

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

func (*IdentityMembershipWithDetailsEnumerateEnvelope) UnsetMessage

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*IdentityMembershipWithDetailsEnumerateEnvelope) UnsetRequestId

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type IdentityMyGetRequest

type IdentityMyGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityMyGetRequest) Execute

func (IdentityMyGetRequest) Field

type IdentityMyGroupsGetRequest

type IdentityMyGroupsGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityMyGroupsGetRequest) Execute

func (IdentityMyGroupsGetRequest) Field

The fields to return. Multiple values can be specified. If none is specified, all

func (IdentityMyGroupsGetRequest) Filter

The filter (property:value). Multiple values can be specified.

func (IdentityMyGroupsGetRequest) IncludeArchivedAndDeleted

func (r IdentityMyGroupsGetRequest) IncludeArchivedAndDeleted(includeArchivedAndDeleted bool) IdentityMyGroupsGetRequest

If true, resources with status `Archived` or `Deleted` will be included in the returned objects. The defauls is false.

func (IdentityMyGroupsGetRequest) Limit

Maximum number of objects to return.

func (IdentityMyGroupsGetRequest) Offset

Index of the first object to return.

func (IdentityMyGroupsGetRequest) Sort

The sort criteria (property[:asc|desc]). Multiple values can be specified.

func (IdentityMyGroupsGetRequest) Token

Pagination token.

type IdentityPostRequest

type IdentityPostRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityPostRequest) Body

func (r IdentityPostRequest) Body(body interface{}) IdentityPostRequest

The new Identity.

func (IdentityPostRequest) Execute

type IdentityPropertyDescriptionsGetRequest

type IdentityPropertyDescriptionsGetRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentityPropertyDescriptionsGetRequest) Execute

type IdentitySdRenameIdOrUpnPutRequest

type IdentitySdRenameIdOrUpnPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentitySdRenameIdOrUpnPutRequest) Execute

func (IdentitySdRenameIdOrUpnPutRequest) NewName

The new unique identifier of the account and identity.

type IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPutRequest

type IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPutRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (IdentitySdToIdentityIdOrUpnAssociateFromIdentityIdOrUpnPutRequest) Execute

type IdentityType

type IdentityType string

IdentityType the model 'IdentityType'

const (
	IDENTITYTYPE_UNDEFINED   IdentityType = "Undefined"
	IDENTITYTYPE_PERSON      IdentityType = "Person"
	IDENTITYTYPE_APPLICATION IdentityType = "Application"
	IDENTITYTYPE_SERVICE     IdentityType = "Service"
	IDENTITYTYPE_SECONDARY   IdentityType = "Secondary"
)

List of IdentityType

func NewIdentityTypeFromValue

func NewIdentityTypeFromValue(v string) (*IdentityType, error)

NewIdentityTypeFromValue returns a pointer to a valid IdentityType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (IdentityType) IsValid

func (v IdentityType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (IdentityType) Ptr

func (v IdentityType) Ptr() *IdentityType

Ptr returns reference to IdentityType value

func (*IdentityType) UnmarshalJSON

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

type JObjectBulkOperationResult

type JObjectBulkOperationResult struct {
	Success   *bool          `json:"success,omitempty"`
	Data      interface{}    `json:"data,omitempty"`
	Exception *ExceptionInfo `json:"exception,omitempty"`
	RequestId NullableString `json:"requestId,omitempty"`
	Message   NullableString `json:"message,omitempty"`
}

JObjectBulkOperationResult struct for JObjectBulkOperationResult

func NewJObjectBulkOperationResult

func NewJObjectBulkOperationResult() *JObjectBulkOperationResult

NewJObjectBulkOperationResult instantiates a new JObjectBulkOperationResult 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 NewJObjectBulkOperationResultWithDefaults

func NewJObjectBulkOperationResultWithDefaults() *JObjectBulkOperationResult

NewJObjectBulkOperationResultWithDefaults instantiates a new JObjectBulkOperationResult 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 (*JObjectBulkOperationResult) GetData

func (o *JObjectBulkOperationResult) GetData() interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JObjectBulkOperationResult) GetDataOk

func (o *JObjectBulkOperationResult) GetDataOk() (*interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JObjectBulkOperationResult) GetException

func (o *JObjectBulkOperationResult) GetException() ExceptionInfo

GetException returns the Exception field value if set, zero value otherwise.

func (*JObjectBulkOperationResult) GetExceptionOk

func (o *JObjectBulkOperationResult) GetExceptionOk() (*ExceptionInfo, bool)

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

func (*JObjectBulkOperationResult) GetMessage

func (o *JObjectBulkOperationResult) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JObjectBulkOperationResult) GetMessageOk

func (o *JObjectBulkOperationResult) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JObjectBulkOperationResult) GetRequestId

func (o *JObjectBulkOperationResult) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JObjectBulkOperationResult) GetRequestIdOk

func (o *JObjectBulkOperationResult) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JObjectBulkOperationResult) GetSuccess

func (o *JObjectBulkOperationResult) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*JObjectBulkOperationResult) GetSuccessOk

func (o *JObjectBulkOperationResult) GetSuccessOk() (*bool, bool)

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

func (*JObjectBulkOperationResult) HasData

func (o *JObjectBulkOperationResult) HasData() bool

HasData returns a boolean if a field has been set.

func (*JObjectBulkOperationResult) HasException

func (o *JObjectBulkOperationResult) HasException() bool

HasException returns a boolean if a field has been set.

func (*JObjectBulkOperationResult) HasMessage

func (o *JObjectBulkOperationResult) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*JObjectBulkOperationResult) HasRequestId

func (o *JObjectBulkOperationResult) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (*JObjectBulkOperationResult) HasSuccess

func (o *JObjectBulkOperationResult) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (JObjectBulkOperationResult) MarshalJSON

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

func (*JObjectBulkOperationResult) SetData

func (o *JObjectBulkOperationResult) SetData(v interface{})

SetData gets a reference to the given interface{} and assigns it to the Data field.

func (*JObjectBulkOperationResult) SetException

func (o *JObjectBulkOperationResult) SetException(v ExceptionInfo)

SetException gets a reference to the given ExceptionInfo and assigns it to the Exception field.

func (*JObjectBulkOperationResult) SetMessage

func (o *JObjectBulkOperationResult) SetMessage(v string)

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

func (*JObjectBulkOperationResult) SetMessageNil

func (o *JObjectBulkOperationResult) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*JObjectBulkOperationResult) SetRequestId

func (o *JObjectBulkOperationResult) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*JObjectBulkOperationResult) SetRequestIdNil

func (o *JObjectBulkOperationResult) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (*JObjectBulkOperationResult) SetSuccess

func (o *JObjectBulkOperationResult) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (JObjectBulkOperationResult) ToMap

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

func (*JObjectBulkOperationResult) UnsetMessage

func (o *JObjectBulkOperationResult) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*JObjectBulkOperationResult) UnsetRequestId

func (o *JObjectBulkOperationResult) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type JObjectBulkOperationResultEnumerateEnvelope

type JObjectBulkOperationResultEnumerateEnvelope struct {
	Pagination *Pagination                  `json:"pagination,omitempty"`
	Delta      *Delta                       `json:"delta,omitempty"`
	RequestId  NullableString               `json:"request_id,omitempty"`
	Message    NullableString               `json:"message,omitempty"`
	Data       []JObjectBulkOperationResult `json:"data,omitempty"`
}

JObjectBulkOperationResultEnumerateEnvelope struct for JObjectBulkOperationResultEnumerateEnvelope

func NewJObjectBulkOperationResultEnumerateEnvelope

func NewJObjectBulkOperationResultEnumerateEnvelope() *JObjectBulkOperationResultEnumerateEnvelope

NewJObjectBulkOperationResultEnumerateEnvelope instantiates a new JObjectBulkOperationResultEnumerateEnvelope 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 NewJObjectBulkOperationResultEnumerateEnvelopeWithDefaults

func NewJObjectBulkOperationResultEnumerateEnvelopeWithDefaults() *JObjectBulkOperationResultEnumerateEnvelope

NewJObjectBulkOperationResultEnumerateEnvelopeWithDefaults instantiates a new JObjectBulkOperationResultEnumerateEnvelope 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 (*JObjectBulkOperationResultEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JObjectBulkOperationResultEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JObjectBulkOperationResultEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*JObjectBulkOperationResultEnumerateEnvelope) GetDeltaOk

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

func (*JObjectBulkOperationResultEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JObjectBulkOperationResultEnumerateEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JObjectBulkOperationResultEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*JObjectBulkOperationResultEnumerateEnvelope) GetPaginationOk

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

func (*JObjectBulkOperationResultEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JObjectBulkOperationResultEnumerateEnvelope) GetRequestIdOk

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JObjectBulkOperationResultEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*JObjectBulkOperationResultEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*JObjectBulkOperationResultEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*JObjectBulkOperationResultEnumerateEnvelope) HasPagination

HasPagination returns a boolean if a field has been set.

func (*JObjectBulkOperationResultEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (JObjectBulkOperationResultEnumerateEnvelope) MarshalJSON

func (*JObjectBulkOperationResultEnumerateEnvelope) SetData

SetData gets a reference to the given []JObjectBulkOperationResult and assigns it to the Data field.

func (*JObjectBulkOperationResultEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*JObjectBulkOperationResultEnumerateEnvelope) SetMessage

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

func (*JObjectBulkOperationResultEnumerateEnvelope) SetMessageNil

SetMessageNil sets the value for Message to be an explicit nil

func (*JObjectBulkOperationResultEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*JObjectBulkOperationResultEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*JObjectBulkOperationResultEnumerateEnvelope) SetRequestIdNil

func (o *JObjectBulkOperationResultEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (JObjectBulkOperationResultEnumerateEnvelope) ToMap

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

func (*JObjectBulkOperationResultEnumerateEnvelope) UnsetMessage

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*JObjectBulkOperationResultEnumerateEnvelope) UnsetRequestId

func (o *JObjectBulkOperationResultEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type JsonPatchDocument

type JsonPatchDocument struct {
	Operations []Operation `json:"operations,omitempty"`
}

JsonPatchDocument struct for JsonPatchDocument

func NewJsonPatchDocument

func NewJsonPatchDocument() *JsonPatchDocument

NewJsonPatchDocument instantiates a new JsonPatchDocument 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 NewJsonPatchDocumentWithDefaults

func NewJsonPatchDocumentWithDefaults() *JsonPatchDocument

NewJsonPatchDocumentWithDefaults instantiates a new JsonPatchDocument 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 (*JsonPatchDocument) GetOperations

func (o *JsonPatchDocument) GetOperations() []Operation

GetOperations returns the Operations field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonPatchDocument) GetOperationsOk

func (o *JsonPatchDocument) GetOperationsOk() ([]Operation, bool)

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonPatchDocument) HasOperations

func (o *JsonPatchDocument) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (JsonPatchDocument) MarshalJSON

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

func (*JsonPatchDocument) SetOperations

func (o *JsonPatchDocument) SetOperations(v []Operation)

SetOperations gets a reference to the given []Operation and assigns it to the Operations field.

func (JsonPatchDocument) ToMap

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

type JsonSchema

type JsonSchema struct {
	Schema                    NullableString                 `json:"$schema,omitempty"`
	Id                        NullableString                 `json:"id,omitempty"`
	Title                     NullableString                 `json:"title,omitempty"`
	Type                      interface{}                    `json:"type,omitempty"`
	Discriminator             interface{}                    `json:"discriminator,omitempty"`
	Description               NullableString                 `json:"description,omitempty"`
	Format                    NullableString                 `json:"format,omitempty"`
	Default                   interface{}                    `json:"default,omitempty"`
	MultipleOf                NullableFloat64                `json:"multipleOf,omitempty"`
	Maximum                   NullableFloat64                `json:"maximum,omitempty"`
	Minimum                   NullableFloat64                `json:"minimum,omitempty"`
	MaxLength                 NullableInt32                  `json:"maxLength,omitempty"`
	MinLength                 NullableInt32                  `json:"minLength,omitempty"`
	Pattern                   NullableString                 `json:"pattern,omitempty"`
	MaxItems                  *int32                         `json:"maxItems,omitempty"`
	MinItems                  *int32                         `json:"minItems,omitempty"`
	UniqueItems               *bool                          `json:"uniqueItems,omitempty"`
	MaxProperties             *int32                         `json:"maxProperties,omitempty"`
	MinProperties             *int32                         `json:"minProperties,omitempty"`
	XDeprecated               *bool                          `json:"x-deprecated,omitempty"`
	XDeprecatedMessage        NullableString                 `json:"x-deprecatedMessage,omitempty"`
	XAbstract                 *bool                          `json:"x-abstract,omitempty"`
	XNullable                 NullableBool                   `json:"x-nullable,omitempty"`
	XExample                  interface{}                    `json:"x-example,omitempty"`
	XEnumFlags                *bool                          `json:"x-enumFlags,omitempty"`
	XDictionaryKey            *JsonSchema                    `json:"x-dictionaryKey,omitempty"`
	Xml                       *JsonXmlObject                 `json:"xml,omitempty"`
	Not                       *JsonSchema                    `json:"not,omitempty"`
	ExclusiveMaximum          interface{}                    `json:"exclusiveMaximum,omitempty"`
	ExclusiveMinimum          interface{}                    `json:"exclusiveMinimum,omitempty"`
	AdditionalItems           interface{}                    `json:"additionalItems,omitempty"`
	AdditionalPropertiesField interface{}                    `json:"additionalProperties,omitempty"`
	Items                     interface{}                    `json:"items,omitempty"`
	Required                  []string                       `json:"required,omitempty"`
	Properties                *map[string]JsonSchemaProperty `json:"properties,omitempty"`
	PatternProperties         *map[string]JsonSchemaProperty `json:"patternProperties,omitempty"`
	Definitions               *map[string]JsonSchema         `json:"definitions,omitempty"`
	XEnumNames                []string                       `json:"x-enumNames,omitempty"`
	Enum                      []interface{}                  `json:"enum,omitempty"`
	AllOf                     []JsonSchema                   `json:"allOf,omitempty"`
	AnyOf                     []JsonSchema                   `json:"anyOf,omitempty"`
	OneOf                     []JsonSchema                   `json:"oneOf,omitempty"`
	Ref                       *string                        `json:"$ref,omitempty"`
	AdditionalProperties      map[string]interface{}
}

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) GetAdditionalItems

func (o *JsonSchema) GetAdditionalItems() interface{}

GetAdditionalItems returns the AdditionalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetAdditionalItemsOk

func (o *JsonSchema) GetAdditionalItemsOk() (*interface{}, bool)

GetAdditionalItemsOk returns a tuple with the AdditionalItems field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetAdditionalPropertiesField

func (o *JsonSchema) GetAdditionalPropertiesField() interface{}

GetAdditionalPropertiesField returns the AdditionalPropertiesField field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetAdditionalPropertiesFieldOk

func (o *JsonSchema) GetAdditionalPropertiesFieldOk() (*interface{}, bool)

GetAdditionalPropertiesFieldOk returns a tuple with the AdditionalPropertiesField field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetAllOf

func (o *JsonSchema) GetAllOf() []JsonSchema

GetAllOf returns the AllOf field value if set, zero value otherwise.

func (*JsonSchema) GetAllOfOk

func (o *JsonSchema) GetAllOfOk() ([]JsonSchema, bool)

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

func (*JsonSchema) GetAnyOf

func (o *JsonSchema) GetAnyOf() []JsonSchema

GetAnyOf returns the AnyOf field value if set, zero value otherwise.

func (*JsonSchema) GetAnyOfOk

func (o *JsonSchema) GetAnyOfOk() ([]JsonSchema, bool)

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

func (*JsonSchema) GetDefault

func (o *JsonSchema) GetDefault() interface{}

GetDefault returns the Default field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetDefaultOk

func (o *JsonSchema) GetDefaultOk() (*interface{}, bool)

GetDefaultOk returns a tuple with the Default field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetDefinitions

func (o *JsonSchema) GetDefinitions() map[string]JsonSchema

GetDefinitions returns the Definitions field value if set, zero value otherwise.

func (*JsonSchema) GetDefinitionsOk

func (o *JsonSchema) GetDefinitionsOk() (*map[string]JsonSchema, bool)

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

func (*JsonSchema) GetDescription

func (o *JsonSchema) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetDescriptionOk

func (o *JsonSchema) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetDiscriminator

func (o *JsonSchema) GetDiscriminator() interface{}

GetDiscriminator returns the Discriminator field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetDiscriminatorOk

func (o *JsonSchema) GetDiscriminatorOk() (*interface{}, bool)

GetDiscriminatorOk returns a tuple with the Discriminator field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetEnum

func (o *JsonSchema) GetEnum() []interface{}

GetEnum returns the Enum field value if set, zero value otherwise.

func (*JsonSchema) GetEnumOk

func (o *JsonSchema) GetEnumOk() ([]interface{}, bool)

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

func (*JsonSchema) GetExclusiveMaximum

func (o *JsonSchema) GetExclusiveMaximum() interface{}

GetExclusiveMaximum returns the ExclusiveMaximum field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetExclusiveMaximumOk

func (o *JsonSchema) GetExclusiveMaximumOk() (*interface{}, bool)

GetExclusiveMaximumOk returns a tuple with the ExclusiveMaximum field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetExclusiveMinimum

func (o *JsonSchema) GetExclusiveMinimum() interface{}

GetExclusiveMinimum returns the ExclusiveMinimum field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetExclusiveMinimumOk

func (o *JsonSchema) GetExclusiveMinimumOk() (*interface{}, bool)

GetExclusiveMinimumOk returns a tuple with the ExclusiveMinimum field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetFormat

func (o *JsonSchema) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetFormatOk

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

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetId

func (o *JsonSchema) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetIdOk

func (o *JsonSchema) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetItems

func (o *JsonSchema) GetItems() interface{}

GetItems returns the Items field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetItemsOk

func (o *JsonSchema) GetItemsOk() (*interface{}, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetMaxItems

func (o *JsonSchema) GetMaxItems() int32

GetMaxItems returns the MaxItems field value if set, zero value otherwise.

func (*JsonSchema) GetMaxItemsOk

func (o *JsonSchema) GetMaxItemsOk() (*int32, bool)

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

func (*JsonSchema) GetMaxLength

func (o *JsonSchema) GetMaxLength() int32

GetMaxLength returns the MaxLength field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetMaxLengthOk

func (o *JsonSchema) GetMaxLengthOk() (*int32, bool)

GetMaxLengthOk returns a tuple with the MaxLength field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetMaxProperties

func (o *JsonSchema) GetMaxProperties() int32

GetMaxProperties returns the MaxProperties field value if set, zero value otherwise.

func (*JsonSchema) GetMaxPropertiesOk

func (o *JsonSchema) GetMaxPropertiesOk() (*int32, bool)

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

func (*JsonSchema) GetMaximum

func (o *JsonSchema) GetMaximum() float64

GetMaximum returns the Maximum field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetMaximumOk

func (o *JsonSchema) GetMaximumOk() (*float64, bool)

GetMaximumOk returns a tuple with the Maximum field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetMinItems

func (o *JsonSchema) GetMinItems() int32

GetMinItems returns the MinItems field value if set, zero value otherwise.

func (*JsonSchema) GetMinItemsOk

func (o *JsonSchema) GetMinItemsOk() (*int32, bool)

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

func (*JsonSchema) GetMinLength

func (o *JsonSchema) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetMinLengthOk

func (o *JsonSchema) GetMinLengthOk() (*int32, bool)

GetMinLengthOk returns a tuple with the MinLength field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetMinProperties

func (o *JsonSchema) GetMinProperties() int32

GetMinProperties returns the MinProperties field value if set, zero value otherwise.

func (*JsonSchema) GetMinPropertiesOk

func (o *JsonSchema) GetMinPropertiesOk() (*int32, bool)

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

func (*JsonSchema) GetMinimum

func (o *JsonSchema) GetMinimum() float64

GetMinimum returns the Minimum field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetMinimumOk

func (o *JsonSchema) GetMinimumOk() (*float64, bool)

GetMinimumOk returns a tuple with the Minimum field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetMultipleOf

func (o *JsonSchema) GetMultipleOf() float64

GetMultipleOf returns the MultipleOf field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetMultipleOfOk

func (o *JsonSchema) GetMultipleOfOk() (*float64, bool)

GetMultipleOfOk returns a tuple with the MultipleOf field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetNot

func (o *JsonSchema) GetNot() JsonSchema

GetNot returns the Not field value if set, zero value otherwise.

func (*JsonSchema) GetNotOk

func (o *JsonSchema) GetNotOk() (*JsonSchema, bool)

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

func (*JsonSchema) GetOneOf

func (o *JsonSchema) GetOneOf() []JsonSchema

GetOneOf returns the OneOf field value if set, zero value otherwise.

func (*JsonSchema) GetOneOfOk

func (o *JsonSchema) GetOneOfOk() ([]JsonSchema, bool)

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

func (*JsonSchema) GetPattern

func (o *JsonSchema) GetPattern() string

GetPattern returns the Pattern field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetPatternOk

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

GetPatternOk returns a tuple with the Pattern field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetPatternProperties

func (o *JsonSchema) GetPatternProperties() map[string]JsonSchemaProperty

GetPatternProperties returns the PatternProperties field value if set, zero value otherwise.

func (*JsonSchema) GetPatternPropertiesOk

func (o *JsonSchema) GetPatternPropertiesOk() (*map[string]JsonSchemaProperty, bool)

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

func (*JsonSchema) GetProperties

func (o *JsonSchema) GetProperties() map[string]JsonSchemaProperty

GetProperties returns the Properties field value if set, zero value otherwise.

func (*JsonSchema) GetPropertiesOk

func (o *JsonSchema) GetPropertiesOk() (*map[string]JsonSchemaProperty, bool)

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

func (*JsonSchema) GetRef

func (o *JsonSchema) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*JsonSchema) GetRefOk

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

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

func (*JsonSchema) GetRequired

func (o *JsonSchema) GetRequired() []string

GetRequired returns the Required field value if set, zero value otherwise.

func (*JsonSchema) GetRequiredOk

func (o *JsonSchema) GetRequiredOk() ([]string, bool)

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

func (*JsonSchema) GetSchema

func (o *JsonSchema) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetSchemaOk

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

GetSchemaOk returns a tuple with the Schema field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetTitle

func (o *JsonSchema) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetTitleOk

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

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetType

func (o *JsonSchema) GetType() interface{}

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetTypeOk

func (o *JsonSchema) GetTypeOk() (*interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetUniqueItems

func (o *JsonSchema) GetUniqueItems() bool

GetUniqueItems returns the UniqueItems field value if set, zero value otherwise.

func (*JsonSchema) GetUniqueItemsOk

func (o *JsonSchema) GetUniqueItemsOk() (*bool, bool)

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

func (*JsonSchema) GetXAbstract

func (o *JsonSchema) GetXAbstract() bool

GetXAbstract returns the XAbstract field value if set, zero value otherwise.

func (*JsonSchema) GetXAbstractOk

func (o *JsonSchema) GetXAbstractOk() (*bool, bool)

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

func (*JsonSchema) GetXDeprecated

func (o *JsonSchema) GetXDeprecated() bool

GetXDeprecated returns the XDeprecated field value if set, zero value otherwise.

func (*JsonSchema) GetXDeprecatedMessage

func (o *JsonSchema) GetXDeprecatedMessage() string

GetXDeprecatedMessage returns the XDeprecatedMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetXDeprecatedMessageOk

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

GetXDeprecatedMessageOk returns a tuple with the XDeprecatedMessage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetXDeprecatedOk

func (o *JsonSchema) GetXDeprecatedOk() (*bool, bool)

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

func (*JsonSchema) GetXDictionaryKey

func (o *JsonSchema) GetXDictionaryKey() JsonSchema

GetXDictionaryKey returns the XDictionaryKey field value if set, zero value otherwise.

func (*JsonSchema) GetXDictionaryKeyOk

func (o *JsonSchema) GetXDictionaryKeyOk() (*JsonSchema, bool)

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

func (*JsonSchema) GetXEnumFlags

func (o *JsonSchema) GetXEnumFlags() bool

GetXEnumFlags returns the XEnumFlags field value if set, zero value otherwise.

func (*JsonSchema) GetXEnumFlagsOk

func (o *JsonSchema) GetXEnumFlagsOk() (*bool, bool)

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

func (*JsonSchema) GetXEnumNames

func (o *JsonSchema) GetXEnumNames() []string

GetXEnumNames returns the XEnumNames field value if set, zero value otherwise.

func (*JsonSchema) GetXEnumNamesOk

func (o *JsonSchema) GetXEnumNamesOk() ([]string, bool)

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

func (*JsonSchema) GetXExample

func (o *JsonSchema) GetXExample() interface{}

GetXExample returns the XExample field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetXExampleOk

func (o *JsonSchema) GetXExampleOk() (*interface{}, bool)

GetXExampleOk returns a tuple with the XExample field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetXNullable

func (o *JsonSchema) GetXNullable() bool

GetXNullable returns the XNullable field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchema) GetXNullableOk

func (o *JsonSchema) GetXNullableOk() (*bool, bool)

GetXNullableOk returns a tuple with the XNullable field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchema) GetXml

func (o *JsonSchema) GetXml() JsonXmlObject

GetXml returns the Xml field value if set, zero value otherwise.

func (*JsonSchema) GetXmlOk

func (o *JsonSchema) GetXmlOk() (*JsonXmlObject, bool)

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

func (*JsonSchema) HasAdditionalItems

func (o *JsonSchema) HasAdditionalItems() bool

HasAdditionalItems returns a boolean if a field has been set.

func (*JsonSchema) HasAdditionalPropertiesField

func (o *JsonSchema) HasAdditionalPropertiesField() bool

HasAdditionalPropertiesField returns a boolean if a field has been set.

func (*JsonSchema) HasAllOf

func (o *JsonSchema) HasAllOf() bool

HasAllOf returns a boolean if a field has been set.

func (*JsonSchema) HasAnyOf

func (o *JsonSchema) HasAnyOf() bool

HasAnyOf returns a boolean if a field has been set.

func (*JsonSchema) HasDefault

func (o *JsonSchema) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*JsonSchema) HasDefinitions

func (o *JsonSchema) HasDefinitions() bool

HasDefinitions returns a boolean if a field has been set.

func (*JsonSchema) HasDescription

func (o *JsonSchema) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*JsonSchema) HasDiscriminator

func (o *JsonSchema) HasDiscriminator() bool

HasDiscriminator returns a boolean if a field has been set.

func (*JsonSchema) HasEnum

func (o *JsonSchema) HasEnum() bool

HasEnum returns a boolean if a field has been set.

func (*JsonSchema) HasExclusiveMaximum

func (o *JsonSchema) HasExclusiveMaximum() bool

HasExclusiveMaximum returns a boolean if a field has been set.

func (*JsonSchema) HasExclusiveMinimum

func (o *JsonSchema) HasExclusiveMinimum() bool

HasExclusiveMinimum returns a boolean if a field has been set.

func (*JsonSchema) HasFormat

func (o *JsonSchema) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*JsonSchema) HasId

func (o *JsonSchema) HasId() bool

HasId returns a boolean if a field has been set.

func (*JsonSchema) HasItems

func (o *JsonSchema) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*JsonSchema) HasMaxItems

func (o *JsonSchema) HasMaxItems() bool

HasMaxItems returns a boolean if a field has been set.

func (*JsonSchema) HasMaxLength

func (o *JsonSchema) HasMaxLength() bool

HasMaxLength returns a boolean if a field has been set.

func (*JsonSchema) HasMaxProperties

func (o *JsonSchema) HasMaxProperties() bool

HasMaxProperties returns a boolean if a field has been set.

func (*JsonSchema) HasMaximum

func (o *JsonSchema) HasMaximum() bool

HasMaximum returns a boolean if a field has been set.

func (*JsonSchema) HasMinItems

func (o *JsonSchema) HasMinItems() bool

HasMinItems returns a boolean if a field has been set.

func (*JsonSchema) HasMinLength

func (o *JsonSchema) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (*JsonSchema) HasMinProperties

func (o *JsonSchema) HasMinProperties() bool

HasMinProperties returns a boolean if a field has been set.

func (*JsonSchema) HasMinimum

func (o *JsonSchema) HasMinimum() bool

HasMinimum returns a boolean if a field has been set.

func (*JsonSchema) HasMultipleOf

func (o *JsonSchema) HasMultipleOf() bool

HasMultipleOf returns a boolean if a field has been set.

func (*JsonSchema) HasNot

func (o *JsonSchema) HasNot() bool

HasNot returns a boolean if a field has been set.

func (*JsonSchema) HasOneOf

func (o *JsonSchema) HasOneOf() bool

HasOneOf returns a boolean if a field has been set.

func (*JsonSchema) HasPattern

func (o *JsonSchema) HasPattern() bool

HasPattern returns a boolean if a field has been set.

func (*JsonSchema) HasPatternProperties

func (o *JsonSchema) HasPatternProperties() bool

HasPatternProperties returns a boolean if a field has been set.

func (*JsonSchema) HasProperties

func (o *JsonSchema) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*JsonSchema) HasRef

func (o *JsonSchema) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*JsonSchema) HasRequired

func (o *JsonSchema) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*JsonSchema) HasSchema

func (o *JsonSchema) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*JsonSchema) HasTitle

func (o *JsonSchema) HasTitle() bool

HasTitle 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) HasUniqueItems

func (o *JsonSchema) HasUniqueItems() bool

HasUniqueItems returns a boolean if a field has been set.

func (*JsonSchema) HasXAbstract

func (o *JsonSchema) HasXAbstract() bool

HasXAbstract returns a boolean if a field has been set.

func (*JsonSchema) HasXDeprecated

func (o *JsonSchema) HasXDeprecated() bool

HasXDeprecated returns a boolean if a field has been set.

func (*JsonSchema) HasXDeprecatedMessage

func (o *JsonSchema) HasXDeprecatedMessage() bool

HasXDeprecatedMessage returns a boolean if a field has been set.

func (*JsonSchema) HasXDictionaryKey

func (o *JsonSchema) HasXDictionaryKey() bool

HasXDictionaryKey returns a boolean if a field has been set.

func (*JsonSchema) HasXEnumFlags

func (o *JsonSchema) HasXEnumFlags() bool

HasXEnumFlags returns a boolean if a field has been set.

func (*JsonSchema) HasXEnumNames

func (o *JsonSchema) HasXEnumNames() bool

HasXEnumNames returns a boolean if a field has been set.

func (*JsonSchema) HasXExample

func (o *JsonSchema) HasXExample() bool

HasXExample returns a boolean if a field has been set.

func (*JsonSchema) HasXNullable

func (o *JsonSchema) HasXNullable() bool

HasXNullable returns a boolean if a field has been set.

func (*JsonSchema) HasXml

func (o *JsonSchema) HasXml() bool

HasXml returns a boolean if a field has been set.

func (JsonSchema) MarshalJSON

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

func (*JsonSchema) SetAdditionalItems

func (o *JsonSchema) SetAdditionalItems(v interface{})

SetAdditionalItems gets a reference to the given interface{} and assigns it to the AdditionalItems field.

func (*JsonSchema) SetAdditionalPropertiesField

func (o *JsonSchema) SetAdditionalPropertiesField(v interface{})

SetAdditionalPropertiesField gets a reference to the given interface{} and assigns it to the AdditionalPropertiesField field.

func (*JsonSchema) SetAllOf

func (o *JsonSchema) SetAllOf(v []JsonSchema)

SetAllOf gets a reference to the given []JsonSchema and assigns it to the AllOf field.

func (*JsonSchema) SetAnyOf

func (o *JsonSchema) SetAnyOf(v []JsonSchema)

SetAnyOf gets a reference to the given []JsonSchema and assigns it to the AnyOf field.

func (*JsonSchema) SetDefault

func (o *JsonSchema) SetDefault(v interface{})

SetDefault gets a reference to the given interface{} and assigns it to the Default field.

func (*JsonSchema) SetDefinitions

func (o *JsonSchema) SetDefinitions(v map[string]JsonSchema)

SetDefinitions gets a reference to the given map[string]JsonSchema and assigns it to the Definitions field.

func (*JsonSchema) SetDescription

func (o *JsonSchema) SetDescription(v string)

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

func (*JsonSchema) SetDescriptionNil

func (o *JsonSchema) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*JsonSchema) SetDiscriminator

func (o *JsonSchema) SetDiscriminator(v interface{})

SetDiscriminator gets a reference to the given interface{} and assigns it to the Discriminator field.

func (*JsonSchema) SetEnum

func (o *JsonSchema) SetEnum(v []interface{})

SetEnum gets a reference to the given []interface{} and assigns it to the Enum field.

func (*JsonSchema) SetExclusiveMaximum

func (o *JsonSchema) SetExclusiveMaximum(v interface{})

SetExclusiveMaximum gets a reference to the given interface{} and assigns it to the ExclusiveMaximum field.

func (*JsonSchema) SetExclusiveMinimum

func (o *JsonSchema) SetExclusiveMinimum(v interface{})

SetExclusiveMinimum gets a reference to the given interface{} and assigns it to the ExclusiveMinimum field.

func (*JsonSchema) SetFormat

func (o *JsonSchema) SetFormat(v string)

SetFormat gets a reference to the given NullableString and assigns it to the Format field.

func (*JsonSchema) SetFormatNil

func (o *JsonSchema) SetFormatNil()

SetFormatNil sets the value for Format to be an explicit nil

func (*JsonSchema) SetId

func (o *JsonSchema) SetId(v string)

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

func (*JsonSchema) SetIdNil

func (o *JsonSchema) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*JsonSchema) SetItems

func (o *JsonSchema) SetItems(v interface{})

SetItems gets a reference to the given interface{} and assigns it to the Items field.

func (*JsonSchema) SetMaxItems

func (o *JsonSchema) SetMaxItems(v int32)

SetMaxItems gets a reference to the given int32 and assigns it to the MaxItems field.

func (*JsonSchema) SetMaxLength

func (o *JsonSchema) SetMaxLength(v int32)

SetMaxLength gets a reference to the given NullableInt32 and assigns it to the MaxLength field.

func (*JsonSchema) SetMaxLengthNil

func (o *JsonSchema) SetMaxLengthNil()

SetMaxLengthNil sets the value for MaxLength to be an explicit nil

func (*JsonSchema) SetMaxProperties

func (o *JsonSchema) SetMaxProperties(v int32)

SetMaxProperties gets a reference to the given int32 and assigns it to the MaxProperties field.

func (*JsonSchema) SetMaximum

func (o *JsonSchema) SetMaximum(v float64)

SetMaximum gets a reference to the given NullableFloat64 and assigns it to the Maximum field.

func (*JsonSchema) SetMaximumNil

func (o *JsonSchema) SetMaximumNil()

SetMaximumNil sets the value for Maximum to be an explicit nil

func (*JsonSchema) SetMinItems

func (o *JsonSchema) SetMinItems(v int32)

SetMinItems gets a reference to the given int32 and assigns it to the MinItems field.

func (*JsonSchema) SetMinLength

func (o *JsonSchema) SetMinLength(v int32)

SetMinLength gets a reference to the given NullableInt32 and assigns it to the MinLength field.

func (*JsonSchema) SetMinLengthNil

func (o *JsonSchema) SetMinLengthNil()

SetMinLengthNil sets the value for MinLength to be an explicit nil

func (*JsonSchema) SetMinProperties

func (o *JsonSchema) SetMinProperties(v int32)

SetMinProperties gets a reference to the given int32 and assigns it to the MinProperties field.

func (*JsonSchema) SetMinimum

func (o *JsonSchema) SetMinimum(v float64)

SetMinimum gets a reference to the given NullableFloat64 and assigns it to the Minimum field.

func (*JsonSchema) SetMinimumNil

func (o *JsonSchema) SetMinimumNil()

SetMinimumNil sets the value for Minimum to be an explicit nil

func (*JsonSchema) SetMultipleOf

func (o *JsonSchema) SetMultipleOf(v float64)

SetMultipleOf gets a reference to the given NullableFloat64 and assigns it to the MultipleOf field.

func (*JsonSchema) SetMultipleOfNil

func (o *JsonSchema) SetMultipleOfNil()

SetMultipleOfNil sets the value for MultipleOf to be an explicit nil

func (*JsonSchema) SetNot

func (o *JsonSchema) SetNot(v JsonSchema)

SetNot gets a reference to the given JsonSchema and assigns it to the Not field.

func (*JsonSchema) SetOneOf

func (o *JsonSchema) SetOneOf(v []JsonSchema)

SetOneOf gets a reference to the given []JsonSchema and assigns it to the OneOf field.

func (*JsonSchema) SetPattern

func (o *JsonSchema) SetPattern(v string)

SetPattern gets a reference to the given NullableString and assigns it to the Pattern field.

func (*JsonSchema) SetPatternNil

func (o *JsonSchema) SetPatternNil()

SetPatternNil sets the value for Pattern to be an explicit nil

func (*JsonSchema) SetPatternProperties

func (o *JsonSchema) SetPatternProperties(v map[string]JsonSchemaProperty)

SetPatternProperties gets a reference to the given map[string]JsonSchemaProperty and assigns it to the PatternProperties field.

func (*JsonSchema) SetProperties

func (o *JsonSchema) SetProperties(v map[string]JsonSchemaProperty)

SetProperties gets a reference to the given map[string]JsonSchemaProperty and assigns it to the Properties field.

func (*JsonSchema) SetRef

func (o *JsonSchema) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*JsonSchema) SetRequired

func (o *JsonSchema) SetRequired(v []string)

SetRequired gets a reference to the given []string and assigns it to the Required field.

func (*JsonSchema) SetSchema

func (o *JsonSchema) SetSchema(v string)

SetSchema gets a reference to the given NullableString and assigns it to the Schema field.

func (*JsonSchema) SetSchemaNil

func (o *JsonSchema) SetSchemaNil()

SetSchemaNil sets the value for Schema to be an explicit nil

func (*JsonSchema) SetTitle

func (o *JsonSchema) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*JsonSchema) SetTitleNil

func (o *JsonSchema) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*JsonSchema) SetType

func (o *JsonSchema) SetType(v interface{})

SetType gets a reference to the given interface{} and assigns it to the Type field.

func (*JsonSchema) SetUniqueItems

func (o *JsonSchema) SetUniqueItems(v bool)

SetUniqueItems gets a reference to the given bool and assigns it to the UniqueItems field.

func (*JsonSchema) SetXAbstract

func (o *JsonSchema) SetXAbstract(v bool)

SetXAbstract gets a reference to the given bool and assigns it to the XAbstract field.

func (*JsonSchema) SetXDeprecated

func (o *JsonSchema) SetXDeprecated(v bool)

SetXDeprecated gets a reference to the given bool and assigns it to the XDeprecated field.

func (*JsonSchema) SetXDeprecatedMessage

func (o *JsonSchema) SetXDeprecatedMessage(v string)

SetXDeprecatedMessage gets a reference to the given NullableString and assigns it to the XDeprecatedMessage field.

func (*JsonSchema) SetXDeprecatedMessageNil

func (o *JsonSchema) SetXDeprecatedMessageNil()

SetXDeprecatedMessageNil sets the value for XDeprecatedMessage to be an explicit nil

func (*JsonSchema) SetXDictionaryKey

func (o *JsonSchema) SetXDictionaryKey(v JsonSchema)

SetXDictionaryKey gets a reference to the given JsonSchema and assigns it to the XDictionaryKey field.

func (*JsonSchema) SetXEnumFlags

func (o *JsonSchema) SetXEnumFlags(v bool)

SetXEnumFlags gets a reference to the given bool and assigns it to the XEnumFlags field.

func (*JsonSchema) SetXEnumNames

func (o *JsonSchema) SetXEnumNames(v []string)

SetXEnumNames gets a reference to the given []string and assigns it to the XEnumNames field.

func (*JsonSchema) SetXExample

func (o *JsonSchema) SetXExample(v interface{})

SetXExample gets a reference to the given interface{} and assigns it to the XExample field.

func (*JsonSchema) SetXNullable

func (o *JsonSchema) SetXNullable(v bool)

SetXNullable gets a reference to the given NullableBool and assigns it to the XNullable field.

func (*JsonSchema) SetXNullableNil

func (o *JsonSchema) SetXNullableNil()

SetXNullableNil sets the value for XNullable to be an explicit nil

func (*JsonSchema) SetXml

func (o *JsonSchema) SetXml(v JsonXmlObject)

SetXml gets a reference to the given JsonXmlObject and assigns it to the Xml field.

func (JsonSchema) ToMap

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

func (*JsonSchema) UnmarshalJSON

func (o *JsonSchema) UnmarshalJSON(data []byte) (err error)

func (*JsonSchema) UnsetDescription

func (o *JsonSchema) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*JsonSchema) UnsetFormat

func (o *JsonSchema) UnsetFormat()

UnsetFormat ensures that no value is present for Format, not even an explicit nil

func (*JsonSchema) UnsetId

func (o *JsonSchema) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*JsonSchema) UnsetMaxLength

func (o *JsonSchema) UnsetMaxLength()

UnsetMaxLength ensures that no value is present for MaxLength, not even an explicit nil

func (*JsonSchema) UnsetMaximum

func (o *JsonSchema) UnsetMaximum()

UnsetMaximum ensures that no value is present for Maximum, not even an explicit nil

func (*JsonSchema) UnsetMinLength

func (o *JsonSchema) UnsetMinLength()

UnsetMinLength ensures that no value is present for MinLength, not even an explicit nil

func (*JsonSchema) UnsetMinimum

func (o *JsonSchema) UnsetMinimum()

UnsetMinimum ensures that no value is present for Minimum, not even an explicit nil

func (*JsonSchema) UnsetMultipleOf

func (o *JsonSchema) UnsetMultipleOf()

UnsetMultipleOf ensures that no value is present for MultipleOf, not even an explicit nil

func (*JsonSchema) UnsetPattern

func (o *JsonSchema) UnsetPattern()

UnsetPattern ensures that no value is present for Pattern, not even an explicit nil

func (*JsonSchema) UnsetSchema

func (o *JsonSchema) UnsetSchema()

UnsetSchema ensures that no value is present for Schema, not even an explicit nil

func (*JsonSchema) UnsetTitle

func (o *JsonSchema) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*JsonSchema) UnsetXDeprecatedMessage

func (o *JsonSchema) UnsetXDeprecatedMessage()

UnsetXDeprecatedMessage ensures that no value is present for XDeprecatedMessage, not even an explicit nil

func (*JsonSchema) UnsetXNullable

func (o *JsonSchema) UnsetXNullable()

UnsetXNullable ensures that no value is present for XNullable, not even an explicit nil

type JsonSchemaProperty

type JsonSchemaProperty struct {
	Schema                    NullableString                 `json:"$schema,omitempty"`
	Id                        NullableString                 `json:"id,omitempty"`
	Title                     NullableString                 `json:"title,omitempty"`
	Type                      interface{}                    `json:"type,omitempty"`
	Discriminator             interface{}                    `json:"discriminator,omitempty"`
	XReadOnly                 *bool                          `json:"x-readOnly,omitempty"`
	XWriteOnly                *bool                          `json:"x-writeOnly,omitempty"`
	Description               NullableString                 `json:"description,omitempty"`
	Format                    NullableString                 `json:"format,omitempty"`
	Default                   interface{}                    `json:"default,omitempty"`
	MultipleOf                NullableFloat64                `json:"multipleOf,omitempty"`
	Maximum                   NullableFloat64                `json:"maximum,omitempty"`
	Minimum                   NullableFloat64                `json:"minimum,omitempty"`
	MaxLength                 NullableInt32                  `json:"maxLength,omitempty"`
	MinLength                 NullableInt32                  `json:"minLength,omitempty"`
	Pattern                   NullableString                 `json:"pattern,omitempty"`
	MaxItems                  *int32                         `json:"maxItems,omitempty"`
	MinItems                  *int32                         `json:"minItems,omitempty"`
	UniqueItems               *bool                          `json:"uniqueItems,omitempty"`
	MaxProperties             *int32                         `json:"maxProperties,omitempty"`
	MinProperties             *int32                         `json:"minProperties,omitempty"`
	XDeprecated               *bool                          `json:"x-deprecated,omitempty"`
	XDeprecatedMessage        NullableString                 `json:"x-deprecatedMessage,omitempty"`
	XAbstract                 *bool                          `json:"x-abstract,omitempty"`
	XNullable                 NullableBool                   `json:"x-nullable,omitempty"`
	XExample                  interface{}                    `json:"x-example,omitempty"`
	XEnumFlags                *bool                          `json:"x-enumFlags,omitempty"`
	XDictionaryKey            *JsonSchema                    `json:"x-dictionaryKey,omitempty"`
	Xml                       *JsonXmlObject                 `json:"xml,omitempty"`
	Not                       *JsonSchema                    `json:"not,omitempty"`
	ExclusiveMaximum          interface{}                    `json:"exclusiveMaximum,omitempty"`
	ExclusiveMinimum          interface{}                    `json:"exclusiveMinimum,omitempty"`
	AdditionalItems           interface{}                    `json:"additionalItems,omitempty"`
	AdditionalPropertiesField interface{}                    `json:"additionalProperties,omitempty"`
	Items                     interface{}                    `json:"items,omitempty"`
	Required                  []string                       `json:"required,omitempty"`
	Properties                *map[string]JsonSchemaProperty `json:"properties,omitempty"`
	PatternProperties         *map[string]JsonSchemaProperty `json:"patternProperties,omitempty"`
	Definitions               *map[string]JsonSchema         `json:"definitions,omitempty"`
	XEnumNames                []string                       `json:"x-enumNames,omitempty"`
	Enum                      []interface{}                  `json:"enum,omitempty"`
	AllOf                     []JsonSchema                   `json:"allOf,omitempty"`
	AnyOf                     []JsonSchema                   `json:"anyOf,omitempty"`
	OneOf                     []JsonSchema                   `json:"oneOf,omitempty"`
	Ref                       *string                        `json:"$ref,omitempty"`
	AdditionalProperties      map[string]interface{}
}

JsonSchemaProperty struct for JsonSchemaProperty

func NewJsonSchemaProperty

func NewJsonSchemaProperty() *JsonSchemaProperty

NewJsonSchemaProperty instantiates a new JsonSchemaProperty 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 NewJsonSchemaPropertyWithDefaults

func NewJsonSchemaPropertyWithDefaults() *JsonSchemaProperty

NewJsonSchemaPropertyWithDefaults instantiates a new JsonSchemaProperty 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 (*JsonSchemaProperty) GetAdditionalItems

func (o *JsonSchemaProperty) GetAdditionalItems() interface{}

GetAdditionalItems returns the AdditionalItems field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetAdditionalItemsOk

func (o *JsonSchemaProperty) GetAdditionalItemsOk() (*interface{}, bool)

GetAdditionalItemsOk returns a tuple with the AdditionalItems field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetAdditionalPropertiesField

func (o *JsonSchemaProperty) GetAdditionalPropertiesField() interface{}

GetAdditionalPropertiesField returns the AdditionalPropertiesField field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetAdditionalPropertiesFieldOk

func (o *JsonSchemaProperty) GetAdditionalPropertiesFieldOk() (*interface{}, bool)

GetAdditionalPropertiesFieldOk returns a tuple with the AdditionalPropertiesField field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetAllOf

func (o *JsonSchemaProperty) GetAllOf() []JsonSchema

GetAllOf returns the AllOf field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetAllOfOk

func (o *JsonSchemaProperty) GetAllOfOk() ([]JsonSchema, bool)

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

func (*JsonSchemaProperty) GetAnyOf

func (o *JsonSchemaProperty) GetAnyOf() []JsonSchema

GetAnyOf returns the AnyOf field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetAnyOfOk

func (o *JsonSchemaProperty) GetAnyOfOk() ([]JsonSchema, bool)

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

func (*JsonSchemaProperty) GetDefault

func (o *JsonSchemaProperty) GetDefault() interface{}

GetDefault returns the Default field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetDefaultOk

func (o *JsonSchemaProperty) GetDefaultOk() (*interface{}, bool)

GetDefaultOk returns a tuple with the Default field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetDefinitions

func (o *JsonSchemaProperty) GetDefinitions() map[string]JsonSchema

GetDefinitions returns the Definitions field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetDefinitionsOk

func (o *JsonSchemaProperty) GetDefinitionsOk() (*map[string]JsonSchema, bool)

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

func (*JsonSchemaProperty) GetDescription

func (o *JsonSchemaProperty) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetDescriptionOk

func (o *JsonSchemaProperty) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetDiscriminator

func (o *JsonSchemaProperty) GetDiscriminator() interface{}

GetDiscriminator returns the Discriminator field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetDiscriminatorOk

func (o *JsonSchemaProperty) GetDiscriminatorOk() (*interface{}, bool)

GetDiscriminatorOk returns a tuple with the Discriminator field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetEnum

func (o *JsonSchemaProperty) GetEnum() []interface{}

GetEnum returns the Enum field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetEnumOk

func (o *JsonSchemaProperty) GetEnumOk() ([]interface{}, bool)

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

func (*JsonSchemaProperty) GetExclusiveMaximum

func (o *JsonSchemaProperty) GetExclusiveMaximum() interface{}

GetExclusiveMaximum returns the ExclusiveMaximum field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetExclusiveMaximumOk

func (o *JsonSchemaProperty) GetExclusiveMaximumOk() (*interface{}, bool)

GetExclusiveMaximumOk returns a tuple with the ExclusiveMaximum field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetExclusiveMinimum

func (o *JsonSchemaProperty) GetExclusiveMinimum() interface{}

GetExclusiveMinimum returns the ExclusiveMinimum field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetExclusiveMinimumOk

func (o *JsonSchemaProperty) GetExclusiveMinimumOk() (*interface{}, bool)

GetExclusiveMinimumOk returns a tuple with the ExclusiveMinimum field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetFormat

func (o *JsonSchemaProperty) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetFormatOk

func (o *JsonSchemaProperty) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetId

func (o *JsonSchemaProperty) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetIdOk

func (o *JsonSchemaProperty) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetItems

func (o *JsonSchemaProperty) GetItems() interface{}

GetItems returns the Items field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetItemsOk

func (o *JsonSchemaProperty) GetItemsOk() (*interface{}, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetMaxItems

func (o *JsonSchemaProperty) GetMaxItems() int32

GetMaxItems returns the MaxItems field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetMaxItemsOk

func (o *JsonSchemaProperty) GetMaxItemsOk() (*int32, bool)

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

func (*JsonSchemaProperty) GetMaxLength

func (o *JsonSchemaProperty) GetMaxLength() int32

GetMaxLength returns the MaxLength field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetMaxLengthOk

func (o *JsonSchemaProperty) GetMaxLengthOk() (*int32, bool)

GetMaxLengthOk returns a tuple with the MaxLength field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetMaxProperties

func (o *JsonSchemaProperty) GetMaxProperties() int32

GetMaxProperties returns the MaxProperties field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetMaxPropertiesOk

func (o *JsonSchemaProperty) GetMaxPropertiesOk() (*int32, bool)

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

func (*JsonSchemaProperty) GetMaximum

func (o *JsonSchemaProperty) GetMaximum() float64

GetMaximum returns the Maximum field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetMaximumOk

func (o *JsonSchemaProperty) GetMaximumOk() (*float64, bool)

GetMaximumOk returns a tuple with the Maximum field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetMinItems

func (o *JsonSchemaProperty) GetMinItems() int32

GetMinItems returns the MinItems field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetMinItemsOk

func (o *JsonSchemaProperty) GetMinItemsOk() (*int32, bool)

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

func (*JsonSchemaProperty) GetMinLength

func (o *JsonSchemaProperty) GetMinLength() int32

GetMinLength returns the MinLength field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetMinLengthOk

func (o *JsonSchemaProperty) GetMinLengthOk() (*int32, bool)

GetMinLengthOk returns a tuple with the MinLength field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetMinProperties

func (o *JsonSchemaProperty) GetMinProperties() int32

GetMinProperties returns the MinProperties field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetMinPropertiesOk

func (o *JsonSchemaProperty) GetMinPropertiesOk() (*int32, bool)

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

func (*JsonSchemaProperty) GetMinimum

func (o *JsonSchemaProperty) GetMinimum() float64

GetMinimum returns the Minimum field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetMinimumOk

func (o *JsonSchemaProperty) GetMinimumOk() (*float64, bool)

GetMinimumOk returns a tuple with the Minimum field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetMultipleOf

func (o *JsonSchemaProperty) GetMultipleOf() float64

GetMultipleOf returns the MultipleOf field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetMultipleOfOk

func (o *JsonSchemaProperty) GetMultipleOfOk() (*float64, bool)

GetMultipleOfOk returns a tuple with the MultipleOf field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetNot

func (o *JsonSchemaProperty) GetNot() JsonSchema

GetNot returns the Not field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetNotOk

func (o *JsonSchemaProperty) GetNotOk() (*JsonSchema, bool)

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

func (*JsonSchemaProperty) GetOneOf

func (o *JsonSchemaProperty) GetOneOf() []JsonSchema

GetOneOf returns the OneOf field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetOneOfOk

func (o *JsonSchemaProperty) GetOneOfOk() ([]JsonSchema, bool)

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

func (*JsonSchemaProperty) GetPattern

func (o *JsonSchemaProperty) GetPattern() string

GetPattern returns the Pattern field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetPatternOk

func (o *JsonSchemaProperty) GetPatternOk() (*string, bool)

GetPatternOk returns a tuple with the Pattern field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetPatternProperties

func (o *JsonSchemaProperty) GetPatternProperties() map[string]JsonSchemaProperty

GetPatternProperties returns the PatternProperties field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetPatternPropertiesOk

func (o *JsonSchemaProperty) GetPatternPropertiesOk() (*map[string]JsonSchemaProperty, bool)

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

func (*JsonSchemaProperty) GetProperties

func (o *JsonSchemaProperty) GetProperties() map[string]JsonSchemaProperty

GetProperties returns the Properties field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetPropertiesOk

func (o *JsonSchemaProperty) GetPropertiesOk() (*map[string]JsonSchemaProperty, bool)

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

func (*JsonSchemaProperty) GetRef

func (o *JsonSchemaProperty) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetRefOk

func (o *JsonSchemaProperty) GetRefOk() (*string, bool)

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

func (*JsonSchemaProperty) GetRequired

func (o *JsonSchemaProperty) GetRequired() []string

GetRequired returns the Required field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetRequiredOk

func (o *JsonSchemaProperty) GetRequiredOk() ([]string, bool)

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

func (*JsonSchemaProperty) GetSchema

func (o *JsonSchemaProperty) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetSchemaOk

func (o *JsonSchemaProperty) GetSchemaOk() (*string, bool)

GetSchemaOk returns a tuple with the Schema field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetTitle

func (o *JsonSchemaProperty) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetTitleOk

func (o *JsonSchemaProperty) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetType

func (o *JsonSchemaProperty) GetType() interface{}

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetTypeOk

func (o *JsonSchemaProperty) GetTypeOk() (*interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetUniqueItems

func (o *JsonSchemaProperty) GetUniqueItems() bool

GetUniqueItems returns the UniqueItems field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetUniqueItemsOk

func (o *JsonSchemaProperty) GetUniqueItemsOk() (*bool, bool)

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

func (*JsonSchemaProperty) GetXAbstract

func (o *JsonSchemaProperty) GetXAbstract() bool

GetXAbstract returns the XAbstract field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetXAbstractOk

func (o *JsonSchemaProperty) GetXAbstractOk() (*bool, bool)

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

func (*JsonSchemaProperty) GetXDeprecated

func (o *JsonSchemaProperty) GetXDeprecated() bool

GetXDeprecated returns the XDeprecated field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetXDeprecatedMessage

func (o *JsonSchemaProperty) GetXDeprecatedMessage() string

GetXDeprecatedMessage returns the XDeprecatedMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetXDeprecatedMessageOk

func (o *JsonSchemaProperty) GetXDeprecatedMessageOk() (*string, bool)

GetXDeprecatedMessageOk returns a tuple with the XDeprecatedMessage field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetXDeprecatedOk

func (o *JsonSchemaProperty) GetXDeprecatedOk() (*bool, bool)

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

func (*JsonSchemaProperty) GetXDictionaryKey

func (o *JsonSchemaProperty) GetXDictionaryKey() JsonSchema

GetXDictionaryKey returns the XDictionaryKey field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetXDictionaryKeyOk

func (o *JsonSchemaProperty) GetXDictionaryKeyOk() (*JsonSchema, bool)

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

func (*JsonSchemaProperty) GetXEnumFlags

func (o *JsonSchemaProperty) GetXEnumFlags() bool

GetXEnumFlags returns the XEnumFlags field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetXEnumFlagsOk

func (o *JsonSchemaProperty) GetXEnumFlagsOk() (*bool, bool)

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

func (*JsonSchemaProperty) GetXEnumNames

func (o *JsonSchemaProperty) GetXEnumNames() []string

GetXEnumNames returns the XEnumNames field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetXEnumNamesOk

func (o *JsonSchemaProperty) GetXEnumNamesOk() ([]string, bool)

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

func (*JsonSchemaProperty) GetXExample

func (o *JsonSchemaProperty) GetXExample() interface{}

GetXExample returns the XExample field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetXExampleOk

func (o *JsonSchemaProperty) GetXExampleOk() (*interface{}, bool)

GetXExampleOk returns a tuple with the XExample field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetXNullable

func (o *JsonSchemaProperty) GetXNullable() bool

GetXNullable returns the XNullable field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonSchemaProperty) GetXNullableOk

func (o *JsonSchemaProperty) GetXNullableOk() (*bool, bool)

GetXNullableOk returns a tuple with the XNullable field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonSchemaProperty) GetXReadOnly

func (o *JsonSchemaProperty) GetXReadOnly() bool

GetXReadOnly returns the XReadOnly field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetXReadOnlyOk

func (o *JsonSchemaProperty) GetXReadOnlyOk() (*bool, bool)

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

func (*JsonSchemaProperty) GetXWriteOnly

func (o *JsonSchemaProperty) GetXWriteOnly() bool

GetXWriteOnly returns the XWriteOnly field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetXWriteOnlyOk

func (o *JsonSchemaProperty) GetXWriteOnlyOk() (*bool, bool)

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

func (*JsonSchemaProperty) GetXml

func (o *JsonSchemaProperty) GetXml() JsonXmlObject

GetXml returns the Xml field value if set, zero value otherwise.

func (*JsonSchemaProperty) GetXmlOk

func (o *JsonSchemaProperty) GetXmlOk() (*JsonXmlObject, bool)

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

func (*JsonSchemaProperty) HasAdditionalItems

func (o *JsonSchemaProperty) HasAdditionalItems() bool

HasAdditionalItems returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasAdditionalPropertiesField

func (o *JsonSchemaProperty) HasAdditionalPropertiesField() bool

HasAdditionalPropertiesField returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasAllOf

func (o *JsonSchemaProperty) HasAllOf() bool

HasAllOf returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasAnyOf

func (o *JsonSchemaProperty) HasAnyOf() bool

HasAnyOf returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasDefault

func (o *JsonSchemaProperty) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasDefinitions

func (o *JsonSchemaProperty) HasDefinitions() bool

HasDefinitions returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasDescription

func (o *JsonSchemaProperty) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasDiscriminator

func (o *JsonSchemaProperty) HasDiscriminator() bool

HasDiscriminator returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasEnum

func (o *JsonSchemaProperty) HasEnum() bool

HasEnum returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasExclusiveMaximum

func (o *JsonSchemaProperty) HasExclusiveMaximum() bool

HasExclusiveMaximum returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasExclusiveMinimum

func (o *JsonSchemaProperty) HasExclusiveMinimum() bool

HasExclusiveMinimum returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasFormat

func (o *JsonSchemaProperty) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasId

func (o *JsonSchemaProperty) HasId() bool

HasId returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasItems

func (o *JsonSchemaProperty) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMaxItems

func (o *JsonSchemaProperty) HasMaxItems() bool

HasMaxItems returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMaxLength

func (o *JsonSchemaProperty) HasMaxLength() bool

HasMaxLength returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMaxProperties

func (o *JsonSchemaProperty) HasMaxProperties() bool

HasMaxProperties returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMaximum

func (o *JsonSchemaProperty) HasMaximum() bool

HasMaximum returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMinItems

func (o *JsonSchemaProperty) HasMinItems() bool

HasMinItems returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMinLength

func (o *JsonSchemaProperty) HasMinLength() bool

HasMinLength returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMinProperties

func (o *JsonSchemaProperty) HasMinProperties() bool

HasMinProperties returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMinimum

func (o *JsonSchemaProperty) HasMinimum() bool

HasMinimum returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasMultipleOf

func (o *JsonSchemaProperty) HasMultipleOf() bool

HasMultipleOf returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasNot

func (o *JsonSchemaProperty) HasNot() bool

HasNot returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasOneOf

func (o *JsonSchemaProperty) HasOneOf() bool

HasOneOf returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasPattern

func (o *JsonSchemaProperty) HasPattern() bool

HasPattern returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasPatternProperties

func (o *JsonSchemaProperty) HasPatternProperties() bool

HasPatternProperties returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasProperties

func (o *JsonSchemaProperty) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasRef

func (o *JsonSchemaProperty) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasRequired

func (o *JsonSchemaProperty) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasSchema

func (o *JsonSchemaProperty) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasTitle

func (o *JsonSchemaProperty) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasType

func (o *JsonSchemaProperty) HasType() bool

HasType returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasUniqueItems

func (o *JsonSchemaProperty) HasUniqueItems() bool

HasUniqueItems returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXAbstract

func (o *JsonSchemaProperty) HasXAbstract() bool

HasXAbstract returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXDeprecated

func (o *JsonSchemaProperty) HasXDeprecated() bool

HasXDeprecated returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXDeprecatedMessage

func (o *JsonSchemaProperty) HasXDeprecatedMessage() bool

HasXDeprecatedMessage returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXDictionaryKey

func (o *JsonSchemaProperty) HasXDictionaryKey() bool

HasXDictionaryKey returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXEnumFlags

func (o *JsonSchemaProperty) HasXEnumFlags() bool

HasXEnumFlags returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXEnumNames

func (o *JsonSchemaProperty) HasXEnumNames() bool

HasXEnumNames returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXExample

func (o *JsonSchemaProperty) HasXExample() bool

HasXExample returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXNullable

func (o *JsonSchemaProperty) HasXNullable() bool

HasXNullable returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXReadOnly

func (o *JsonSchemaProperty) HasXReadOnly() bool

HasXReadOnly returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXWriteOnly

func (o *JsonSchemaProperty) HasXWriteOnly() bool

HasXWriteOnly returns a boolean if a field has been set.

func (*JsonSchemaProperty) HasXml

func (o *JsonSchemaProperty) HasXml() bool

HasXml returns a boolean if a field has been set.

func (JsonSchemaProperty) MarshalJSON

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

func (*JsonSchemaProperty) SetAdditionalItems

func (o *JsonSchemaProperty) SetAdditionalItems(v interface{})

SetAdditionalItems gets a reference to the given interface{} and assigns it to the AdditionalItems field.

func (*JsonSchemaProperty) SetAdditionalPropertiesField

func (o *JsonSchemaProperty) SetAdditionalPropertiesField(v interface{})

SetAdditionalPropertiesField gets a reference to the given interface{} and assigns it to the AdditionalPropertiesField field.

func (*JsonSchemaProperty) SetAllOf

func (o *JsonSchemaProperty) SetAllOf(v []JsonSchema)

SetAllOf gets a reference to the given []JsonSchema and assigns it to the AllOf field.

func (*JsonSchemaProperty) SetAnyOf

func (o *JsonSchemaProperty) SetAnyOf(v []JsonSchema)

SetAnyOf gets a reference to the given []JsonSchema and assigns it to the AnyOf field.

func (*JsonSchemaProperty) SetDefault

func (o *JsonSchemaProperty) SetDefault(v interface{})

SetDefault gets a reference to the given interface{} and assigns it to the Default field.

func (*JsonSchemaProperty) SetDefinitions

func (o *JsonSchemaProperty) SetDefinitions(v map[string]JsonSchema)

SetDefinitions gets a reference to the given map[string]JsonSchema and assigns it to the Definitions field.

func (*JsonSchemaProperty) SetDescription

func (o *JsonSchemaProperty) SetDescription(v string)

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

func (*JsonSchemaProperty) SetDescriptionNil

func (o *JsonSchemaProperty) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*JsonSchemaProperty) SetDiscriminator

func (o *JsonSchemaProperty) SetDiscriminator(v interface{})

SetDiscriminator gets a reference to the given interface{} and assigns it to the Discriminator field.

func (*JsonSchemaProperty) SetEnum

func (o *JsonSchemaProperty) SetEnum(v []interface{})

SetEnum gets a reference to the given []interface{} and assigns it to the Enum field.

func (*JsonSchemaProperty) SetExclusiveMaximum

func (o *JsonSchemaProperty) SetExclusiveMaximum(v interface{})

SetExclusiveMaximum gets a reference to the given interface{} and assigns it to the ExclusiveMaximum field.

func (*JsonSchemaProperty) SetExclusiveMinimum

func (o *JsonSchemaProperty) SetExclusiveMinimum(v interface{})

SetExclusiveMinimum gets a reference to the given interface{} and assigns it to the ExclusiveMinimum field.

func (*JsonSchemaProperty) SetFormat

func (o *JsonSchemaProperty) SetFormat(v string)

SetFormat gets a reference to the given NullableString and assigns it to the Format field.

func (*JsonSchemaProperty) SetFormatNil

func (o *JsonSchemaProperty) SetFormatNil()

SetFormatNil sets the value for Format to be an explicit nil

func (*JsonSchemaProperty) SetId

func (o *JsonSchemaProperty) SetId(v string)

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

func (*JsonSchemaProperty) SetIdNil

func (o *JsonSchemaProperty) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*JsonSchemaProperty) SetItems

func (o *JsonSchemaProperty) SetItems(v interface{})

SetItems gets a reference to the given interface{} and assigns it to the Items field.

func (*JsonSchemaProperty) SetMaxItems

func (o *JsonSchemaProperty) SetMaxItems(v int32)

SetMaxItems gets a reference to the given int32 and assigns it to the MaxItems field.

func (*JsonSchemaProperty) SetMaxLength

func (o *JsonSchemaProperty) SetMaxLength(v int32)

SetMaxLength gets a reference to the given NullableInt32 and assigns it to the MaxLength field.

func (*JsonSchemaProperty) SetMaxLengthNil

func (o *JsonSchemaProperty) SetMaxLengthNil()

SetMaxLengthNil sets the value for MaxLength to be an explicit nil

func (*JsonSchemaProperty) SetMaxProperties

func (o *JsonSchemaProperty) SetMaxProperties(v int32)

SetMaxProperties gets a reference to the given int32 and assigns it to the MaxProperties field.

func (*JsonSchemaProperty) SetMaximum

func (o *JsonSchemaProperty) SetMaximum(v float64)

SetMaximum gets a reference to the given NullableFloat64 and assigns it to the Maximum field.

func (*JsonSchemaProperty) SetMaximumNil

func (o *JsonSchemaProperty) SetMaximumNil()

SetMaximumNil sets the value for Maximum to be an explicit nil

func (*JsonSchemaProperty) SetMinItems

func (o *JsonSchemaProperty) SetMinItems(v int32)

SetMinItems gets a reference to the given int32 and assigns it to the MinItems field.

func (*JsonSchemaProperty) SetMinLength

func (o *JsonSchemaProperty) SetMinLength(v int32)

SetMinLength gets a reference to the given NullableInt32 and assigns it to the MinLength field.

func (*JsonSchemaProperty) SetMinLengthNil

func (o *JsonSchemaProperty) SetMinLengthNil()

SetMinLengthNil sets the value for MinLength to be an explicit nil

func (*JsonSchemaProperty) SetMinProperties

func (o *JsonSchemaProperty) SetMinProperties(v int32)

SetMinProperties gets a reference to the given int32 and assigns it to the MinProperties field.

func (*JsonSchemaProperty) SetMinimum

func (o *JsonSchemaProperty) SetMinimum(v float64)

SetMinimum gets a reference to the given NullableFloat64 and assigns it to the Minimum field.

func (*JsonSchemaProperty) SetMinimumNil

func (o *JsonSchemaProperty) SetMinimumNil()

SetMinimumNil sets the value for Minimum to be an explicit nil

func (*JsonSchemaProperty) SetMultipleOf

func (o *JsonSchemaProperty) SetMultipleOf(v float64)

SetMultipleOf gets a reference to the given NullableFloat64 and assigns it to the MultipleOf field.

func (*JsonSchemaProperty) SetMultipleOfNil

func (o *JsonSchemaProperty) SetMultipleOfNil()

SetMultipleOfNil sets the value for MultipleOf to be an explicit nil

func (*JsonSchemaProperty) SetNot

func (o *JsonSchemaProperty) SetNot(v JsonSchema)

SetNot gets a reference to the given JsonSchema and assigns it to the Not field.

func (*JsonSchemaProperty) SetOneOf

func (o *JsonSchemaProperty) SetOneOf(v []JsonSchema)

SetOneOf gets a reference to the given []JsonSchema and assigns it to the OneOf field.

func (*JsonSchemaProperty) SetPattern

func (o *JsonSchemaProperty) SetPattern(v string)

SetPattern gets a reference to the given NullableString and assigns it to the Pattern field.

func (*JsonSchemaProperty) SetPatternNil

func (o *JsonSchemaProperty) SetPatternNil()

SetPatternNil sets the value for Pattern to be an explicit nil

func (*JsonSchemaProperty) SetPatternProperties

func (o *JsonSchemaProperty) SetPatternProperties(v map[string]JsonSchemaProperty)

SetPatternProperties gets a reference to the given map[string]JsonSchemaProperty and assigns it to the PatternProperties field.

func (*JsonSchemaProperty) SetProperties

func (o *JsonSchemaProperty) SetProperties(v map[string]JsonSchemaProperty)

SetProperties gets a reference to the given map[string]JsonSchemaProperty and assigns it to the Properties field.

func (*JsonSchemaProperty) SetRef

func (o *JsonSchemaProperty) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*JsonSchemaProperty) SetRequired

func (o *JsonSchemaProperty) SetRequired(v []string)

SetRequired gets a reference to the given []string and assigns it to the Required field.

func (*JsonSchemaProperty) SetSchema

func (o *JsonSchemaProperty) SetSchema(v string)

SetSchema gets a reference to the given NullableString and assigns it to the Schema field.

func (*JsonSchemaProperty) SetSchemaNil

func (o *JsonSchemaProperty) SetSchemaNil()

SetSchemaNil sets the value for Schema to be an explicit nil

func (*JsonSchemaProperty) SetTitle

func (o *JsonSchemaProperty) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*JsonSchemaProperty) SetTitleNil

func (o *JsonSchemaProperty) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*JsonSchemaProperty) SetType

func (o *JsonSchemaProperty) SetType(v interface{})

SetType gets a reference to the given interface{} and assigns it to the Type field.

func (*JsonSchemaProperty) SetUniqueItems

func (o *JsonSchemaProperty) SetUniqueItems(v bool)

SetUniqueItems gets a reference to the given bool and assigns it to the UniqueItems field.

func (*JsonSchemaProperty) SetXAbstract

func (o *JsonSchemaProperty) SetXAbstract(v bool)

SetXAbstract gets a reference to the given bool and assigns it to the XAbstract field.

func (*JsonSchemaProperty) SetXDeprecated

func (o *JsonSchemaProperty) SetXDeprecated(v bool)

SetXDeprecated gets a reference to the given bool and assigns it to the XDeprecated field.

func (*JsonSchemaProperty) SetXDeprecatedMessage

func (o *JsonSchemaProperty) SetXDeprecatedMessage(v string)

SetXDeprecatedMessage gets a reference to the given NullableString and assigns it to the XDeprecatedMessage field.

func (*JsonSchemaProperty) SetXDeprecatedMessageNil

func (o *JsonSchemaProperty) SetXDeprecatedMessageNil()

SetXDeprecatedMessageNil sets the value for XDeprecatedMessage to be an explicit nil

func (*JsonSchemaProperty) SetXDictionaryKey

func (o *JsonSchemaProperty) SetXDictionaryKey(v JsonSchema)

SetXDictionaryKey gets a reference to the given JsonSchema and assigns it to the XDictionaryKey field.

func (*JsonSchemaProperty) SetXEnumFlags

func (o *JsonSchemaProperty) SetXEnumFlags(v bool)

SetXEnumFlags gets a reference to the given bool and assigns it to the XEnumFlags field.

func (*JsonSchemaProperty) SetXEnumNames

func (o *JsonSchemaProperty) SetXEnumNames(v []string)

SetXEnumNames gets a reference to the given []string and assigns it to the XEnumNames field.

func (*JsonSchemaProperty) SetXExample

func (o *JsonSchemaProperty) SetXExample(v interface{})

SetXExample gets a reference to the given interface{} and assigns it to the XExample field.

func (*JsonSchemaProperty) SetXNullable

func (o *JsonSchemaProperty) SetXNullable(v bool)

SetXNullable gets a reference to the given NullableBool and assigns it to the XNullable field.

func (*JsonSchemaProperty) SetXNullableNil

func (o *JsonSchemaProperty) SetXNullableNil()

SetXNullableNil sets the value for XNullable to be an explicit nil

func (*JsonSchemaProperty) SetXReadOnly

func (o *JsonSchemaProperty) SetXReadOnly(v bool)

SetXReadOnly gets a reference to the given bool and assigns it to the XReadOnly field.

func (*JsonSchemaProperty) SetXWriteOnly

func (o *JsonSchemaProperty) SetXWriteOnly(v bool)

SetXWriteOnly gets a reference to the given bool and assigns it to the XWriteOnly field.

func (*JsonSchemaProperty) SetXml

func (o *JsonSchemaProperty) SetXml(v JsonXmlObject)

SetXml gets a reference to the given JsonXmlObject and assigns it to the Xml field.

func (JsonSchemaProperty) ToMap

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

func (*JsonSchemaProperty) UnmarshalJSON

func (o *JsonSchemaProperty) UnmarshalJSON(data []byte) (err error)

func (*JsonSchemaProperty) UnsetDescription

func (o *JsonSchemaProperty) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*JsonSchemaProperty) UnsetFormat

func (o *JsonSchemaProperty) UnsetFormat()

UnsetFormat ensures that no value is present for Format, not even an explicit nil

func (*JsonSchemaProperty) UnsetId

func (o *JsonSchemaProperty) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*JsonSchemaProperty) UnsetMaxLength

func (o *JsonSchemaProperty) UnsetMaxLength()

UnsetMaxLength ensures that no value is present for MaxLength, not even an explicit nil

func (*JsonSchemaProperty) UnsetMaximum

func (o *JsonSchemaProperty) UnsetMaximum()

UnsetMaximum ensures that no value is present for Maximum, not even an explicit nil

func (*JsonSchemaProperty) UnsetMinLength

func (o *JsonSchemaProperty) UnsetMinLength()

UnsetMinLength ensures that no value is present for MinLength, not even an explicit nil

func (*JsonSchemaProperty) UnsetMinimum

func (o *JsonSchemaProperty) UnsetMinimum()

UnsetMinimum ensures that no value is present for Minimum, not even an explicit nil

func (*JsonSchemaProperty) UnsetMultipleOf

func (o *JsonSchemaProperty) UnsetMultipleOf()

UnsetMultipleOf ensures that no value is present for MultipleOf, not even an explicit nil

func (*JsonSchemaProperty) UnsetPattern

func (o *JsonSchemaProperty) UnsetPattern()

UnsetPattern ensures that no value is present for Pattern, not even an explicit nil

func (*JsonSchemaProperty) UnsetSchema

func (o *JsonSchemaProperty) UnsetSchema()

UnsetSchema ensures that no value is present for Schema, not even an explicit nil

func (*JsonSchemaProperty) UnsetTitle

func (o *JsonSchemaProperty) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*JsonSchemaProperty) UnsetXDeprecatedMessage

func (o *JsonSchemaProperty) UnsetXDeprecatedMessage()

UnsetXDeprecatedMessage ensures that no value is present for XDeprecatedMessage, not even an explicit nil

func (*JsonSchemaProperty) UnsetXNullable

func (o *JsonSchemaProperty) UnsetXNullable()

UnsetXNullable ensures that no value is present for XNullable, not even an explicit nil

type JsonXmlObject

type JsonXmlObject struct {
	Name      NullableString `json:"name,omitempty"`
	Wrapped   *bool          `json:"wrapped,omitempty"`
	Namespace NullableString `json:"namespace,omitempty"`
	Prefix    NullableString `json:"prefix,omitempty"`
	Attribute *bool          `json:"attribute,omitempty"`
}

JsonXmlObject struct for JsonXmlObject

func NewJsonXmlObject

func NewJsonXmlObject() *JsonXmlObject

NewJsonXmlObject instantiates a new JsonXmlObject 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 NewJsonXmlObjectWithDefaults

func NewJsonXmlObjectWithDefaults() *JsonXmlObject

NewJsonXmlObjectWithDefaults instantiates a new JsonXmlObject 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 (*JsonXmlObject) GetAttribute

func (o *JsonXmlObject) GetAttribute() bool

GetAttribute returns the Attribute field value if set, zero value otherwise.

func (*JsonXmlObject) GetAttributeOk

func (o *JsonXmlObject) GetAttributeOk() (*bool, bool)

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

func (*JsonXmlObject) GetName

func (o *JsonXmlObject) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonXmlObject) GetNameOk

func (o *JsonXmlObject) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonXmlObject) GetNamespace

func (o *JsonXmlObject) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonXmlObject) GetNamespaceOk

func (o *JsonXmlObject) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonXmlObject) GetPrefix

func (o *JsonXmlObject) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonXmlObject) GetPrefixOk

func (o *JsonXmlObject) GetPrefixOk() (*string, bool)

GetPrefixOk returns a tuple with the Prefix field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonXmlObject) GetWrapped

func (o *JsonXmlObject) GetWrapped() bool

GetWrapped returns the Wrapped field value if set, zero value otherwise.

func (*JsonXmlObject) GetWrappedOk

func (o *JsonXmlObject) GetWrappedOk() (*bool, bool)

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

func (*JsonXmlObject) HasAttribute

func (o *JsonXmlObject) HasAttribute() bool

HasAttribute returns a boolean if a field has been set.

func (*JsonXmlObject) HasName

func (o *JsonXmlObject) HasName() bool

HasName returns a boolean if a field has been set.

func (*JsonXmlObject) HasNamespace

func (o *JsonXmlObject) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*JsonXmlObject) HasPrefix

func (o *JsonXmlObject) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*JsonXmlObject) HasWrapped

func (o *JsonXmlObject) HasWrapped() bool

HasWrapped returns a boolean if a field has been set.

func (JsonXmlObject) MarshalJSON

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

func (*JsonXmlObject) SetAttribute

func (o *JsonXmlObject) SetAttribute(v bool)

SetAttribute gets a reference to the given bool and assigns it to the Attribute field.

func (*JsonXmlObject) SetName

func (o *JsonXmlObject) SetName(v string)

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

func (*JsonXmlObject) SetNameNil

func (o *JsonXmlObject) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*JsonXmlObject) SetNamespace

func (o *JsonXmlObject) SetNamespace(v string)

SetNamespace gets a reference to the given NullableString and assigns it to the Namespace field.

func (*JsonXmlObject) SetNamespaceNil

func (o *JsonXmlObject) SetNamespaceNil()

SetNamespaceNil sets the value for Namespace to be an explicit nil

func (*JsonXmlObject) SetPrefix

func (o *JsonXmlObject) SetPrefix(v string)

SetPrefix gets a reference to the given NullableString and assigns it to the Prefix field.

func (*JsonXmlObject) SetPrefixNil

func (o *JsonXmlObject) SetPrefixNil()

SetPrefixNil sets the value for Prefix to be an explicit nil

func (*JsonXmlObject) SetWrapped

func (o *JsonXmlObject) SetWrapped(v bool)

SetWrapped gets a reference to the given bool and assigns it to the Wrapped field.

func (JsonXmlObject) ToMap

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

func (*JsonXmlObject) UnsetName

func (o *JsonXmlObject) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*JsonXmlObject) UnsetNamespace

func (o *JsonXmlObject) UnsetNamespace()

UnsetNamespace ensures that no value is present for Namespace, not even an explicit nil

func (*JsonXmlObject) UnsetPrefix

func (o *JsonXmlObject) UnsetPrefix()

UnsetPrefix ensures that no value is present for Prefix, not even an explicit nil

type LevelOfAssurance

type LevelOfAssurance struct {
	Value        int32          `json:"value"`
	DisplayName  string         `json:"displayName"`
	Description  string         `json:"description"`
	Id           NullableString `json:"id,omitempty"`
	CreationTime *time.Time     `json:"creationTime,omitempty"`
}

LevelOfAssurance struct for LevelOfAssurance

func NewLevelOfAssurance

func NewLevelOfAssurance(value int32, displayName string, description string) *LevelOfAssurance

NewLevelOfAssurance instantiates a new LevelOfAssurance 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 NewLevelOfAssuranceWithDefaults

func NewLevelOfAssuranceWithDefaults() *LevelOfAssurance

NewLevelOfAssuranceWithDefaults instantiates a new LevelOfAssurance 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 (*LevelOfAssurance) GetCreationTime

func (o *LevelOfAssurance) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*LevelOfAssurance) GetCreationTimeOk

func (o *LevelOfAssurance) GetCreationTimeOk() (*time.Time, bool)

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

func (*LevelOfAssurance) GetDescription

func (o *LevelOfAssurance) GetDescription() string

GetDescription returns the Description field value

func (*LevelOfAssurance) GetDescriptionOk

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

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

func (*LevelOfAssurance) GetDisplayName

func (o *LevelOfAssurance) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*LevelOfAssurance) GetDisplayNameOk

func (o *LevelOfAssurance) GetDisplayNameOk() (*string, bool)

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

func (*LevelOfAssurance) GetId

func (o *LevelOfAssurance) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LevelOfAssurance) GetIdOk

func (o *LevelOfAssurance) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LevelOfAssurance) GetValue

func (o *LevelOfAssurance) GetValue() int32

GetValue returns the Value field value

func (*LevelOfAssurance) GetValueOk

func (o *LevelOfAssurance) GetValueOk() (*int32, bool)

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

func (*LevelOfAssurance) HasCreationTime

func (o *LevelOfAssurance) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*LevelOfAssurance) HasId

func (o *LevelOfAssurance) HasId() bool

HasId returns a boolean if a field has been set.

func (LevelOfAssurance) MarshalJSON

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

func (*LevelOfAssurance) SetCreationTime

func (o *LevelOfAssurance) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*LevelOfAssurance) SetDescription

func (o *LevelOfAssurance) SetDescription(v string)

SetDescription sets field value

func (*LevelOfAssurance) SetDisplayName

func (o *LevelOfAssurance) SetDisplayName(v string)

SetDisplayName sets field value

func (*LevelOfAssurance) SetId

func (o *LevelOfAssurance) SetId(v string)

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

func (*LevelOfAssurance) SetIdNil

func (o *LevelOfAssurance) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*LevelOfAssurance) SetValue

func (o *LevelOfAssurance) SetValue(v int32)

SetValue sets field value

func (LevelOfAssurance) ToMap

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

func (*LevelOfAssurance) UnmarshalJSON

func (o *LevelOfAssurance) UnmarshalJSON(data []byte) (err error)

func (*LevelOfAssurance) UnsetId

func (o *LevelOfAssurance) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type LevelOfAssuranceAPIService

type LevelOfAssuranceAPIService service

LevelOfAssuranceAPIService LevelOfAssuranceAPI service

func (*LevelOfAssuranceAPIService) LevelOfAssuranceGet

LevelOfAssuranceGet Get all available LOAs.

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

func (*LevelOfAssuranceAPIService) LevelOfAssuranceGetExecute

Execute executes the request

@return LevelOfAssuranceEnumerateEnvelope

type LevelOfAssuranceEnumerateEnvelope

type LevelOfAssuranceEnumerateEnvelope struct {
	Pagination *Pagination        `json:"pagination,omitempty"`
	Delta      *Delta             `json:"delta,omitempty"`
	RequestId  NullableString     `json:"request_id,omitempty"`
	Message    NullableString     `json:"message,omitempty"`
	Data       []LevelOfAssurance `json:"data,omitempty"`
}

LevelOfAssuranceEnumerateEnvelope struct for LevelOfAssuranceEnumerateEnvelope

func NewLevelOfAssuranceEnumerateEnvelope

func NewLevelOfAssuranceEnumerateEnvelope() *LevelOfAssuranceEnumerateEnvelope

NewLevelOfAssuranceEnumerateEnvelope instantiates a new LevelOfAssuranceEnumerateEnvelope 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 NewLevelOfAssuranceEnumerateEnvelopeWithDefaults

func NewLevelOfAssuranceEnumerateEnvelopeWithDefaults() *LevelOfAssuranceEnumerateEnvelope

NewLevelOfAssuranceEnumerateEnvelopeWithDefaults instantiates a new LevelOfAssuranceEnumerateEnvelope 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 (*LevelOfAssuranceEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LevelOfAssuranceEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LevelOfAssuranceEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*LevelOfAssuranceEnumerateEnvelope) GetDeltaOk

func (o *LevelOfAssuranceEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*LevelOfAssuranceEnumerateEnvelope) GetMessage

func (o *LevelOfAssuranceEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LevelOfAssuranceEnumerateEnvelope) GetMessageOk

func (o *LevelOfAssuranceEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LevelOfAssuranceEnumerateEnvelope) GetPagination

func (o *LevelOfAssuranceEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*LevelOfAssuranceEnumerateEnvelope) GetPaginationOk

func (o *LevelOfAssuranceEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*LevelOfAssuranceEnumerateEnvelope) GetRequestId

func (o *LevelOfAssuranceEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LevelOfAssuranceEnumerateEnvelope) GetRequestIdOk

func (o *LevelOfAssuranceEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LevelOfAssuranceEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*LevelOfAssuranceEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*LevelOfAssuranceEnumerateEnvelope) HasMessage

func (o *LevelOfAssuranceEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*LevelOfAssuranceEnumerateEnvelope) HasPagination

func (o *LevelOfAssuranceEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*LevelOfAssuranceEnumerateEnvelope) HasRequestId

func (o *LevelOfAssuranceEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (LevelOfAssuranceEnumerateEnvelope) MarshalJSON

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

func (*LevelOfAssuranceEnumerateEnvelope) SetData

SetData gets a reference to the given []LevelOfAssurance and assigns it to the Data field.

func (*LevelOfAssuranceEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*LevelOfAssuranceEnumerateEnvelope) SetMessage

func (o *LevelOfAssuranceEnumerateEnvelope) SetMessage(v string)

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

func (*LevelOfAssuranceEnumerateEnvelope) SetMessageNil

func (o *LevelOfAssuranceEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*LevelOfAssuranceEnumerateEnvelope) SetPagination

func (o *LevelOfAssuranceEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*LevelOfAssuranceEnumerateEnvelope) SetRequestId

func (o *LevelOfAssuranceEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*LevelOfAssuranceEnumerateEnvelope) SetRequestIdNil

func (o *LevelOfAssuranceEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (LevelOfAssuranceEnumerateEnvelope) ToMap

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

func (*LevelOfAssuranceEnumerateEnvelope) UnsetMessage

func (o *LevelOfAssuranceEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*LevelOfAssuranceEnumerateEnvelope) UnsetRequestId

func (o *LevelOfAssuranceEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type LevelOfAssuranceGetRequest

type LevelOfAssuranceGetRequest struct {
	ApiService *LevelOfAssuranceAPIService
	// contains filtered or unexported fields
}

func (LevelOfAssuranceGetRequest) Execute

func (LevelOfAssuranceGetRequest) Field

func (LevelOfAssuranceGetRequest) Filter

func (LevelOfAssuranceGetRequest) Limit

func (LevelOfAssuranceGetRequest) Offset

func (LevelOfAssuranceGetRequest) Sort

func (LevelOfAssuranceGetRequest) Token

type LifecycleSettings

type LifecycleSettings struct {
	Name                    NullableString `json:"name,omitempty"`
	ApplicationId           *string        `json:"applicationId,omitempty"`
	EligibleRoleId          NullableString `json:"eligibleRoleId,omitempty"`
	SubscribedRoleId        NullableString `json:"subscribedRoleId,omitempty"`
	SelfSubscriptionGroupId NullableString `json:"selfSubscriptionGroupId,omitempty"`
	DeniedRoleId            NullableString `json:"deniedRoleId,omitempty"`
	AdminRoleId             NullableString `json:"adminRoleId,omitempty"`
	Id                      NullableString `json:"id,omitempty"`
	CreationTime            *time.Time     `json:"creationTime,omitempty"`
}

LifecycleSettings struct for LifecycleSettings

func NewLifecycleSettings

func NewLifecycleSettings() *LifecycleSettings

NewLifecycleSettings instantiates a new LifecycleSettings 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 NewLifecycleSettingsWithDefaults

func NewLifecycleSettingsWithDefaults() *LifecycleSettings

NewLifecycleSettingsWithDefaults instantiates a new LifecycleSettings 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 (*LifecycleSettings) GetAdminRoleId

func (o *LifecycleSettings) GetAdminRoleId() string

GetAdminRoleId returns the AdminRoleId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettings) GetAdminRoleIdOk

func (o *LifecycleSettings) GetAdminRoleIdOk() (*string, bool)

GetAdminRoleIdOk returns a tuple with the AdminRoleId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettings) GetApplicationId

func (o *LifecycleSettings) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise.

func (*LifecycleSettings) GetApplicationIdOk

func (o *LifecycleSettings) GetApplicationIdOk() (*string, bool)

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

func (*LifecycleSettings) GetCreationTime

func (o *LifecycleSettings) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*LifecycleSettings) GetCreationTimeOk

func (o *LifecycleSettings) GetCreationTimeOk() (*time.Time, bool)

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

func (*LifecycleSettings) GetDeniedRoleId

func (o *LifecycleSettings) GetDeniedRoleId() string

GetDeniedRoleId returns the DeniedRoleId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettings) GetDeniedRoleIdOk

func (o *LifecycleSettings) GetDeniedRoleIdOk() (*string, bool)

GetDeniedRoleIdOk returns a tuple with the DeniedRoleId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettings) GetEligibleRoleId

func (o *LifecycleSettings) GetEligibleRoleId() string

GetEligibleRoleId returns the EligibleRoleId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettings) GetEligibleRoleIdOk

func (o *LifecycleSettings) GetEligibleRoleIdOk() (*string, bool)

GetEligibleRoleIdOk returns a tuple with the EligibleRoleId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettings) GetId

func (o *LifecycleSettings) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettings) GetIdOk

func (o *LifecycleSettings) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettings) GetName

func (o *LifecycleSettings) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettings) GetNameOk

func (o *LifecycleSettings) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettings) GetSelfSubscriptionGroupId

func (o *LifecycleSettings) GetSelfSubscriptionGroupId() string

GetSelfSubscriptionGroupId returns the SelfSubscriptionGroupId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettings) GetSelfSubscriptionGroupIdOk

func (o *LifecycleSettings) GetSelfSubscriptionGroupIdOk() (*string, bool)

GetSelfSubscriptionGroupIdOk returns a tuple with the SelfSubscriptionGroupId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettings) GetSubscribedRoleId

func (o *LifecycleSettings) GetSubscribedRoleId() string

GetSubscribedRoleId returns the SubscribedRoleId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettings) GetSubscribedRoleIdOk

func (o *LifecycleSettings) GetSubscribedRoleIdOk() (*string, bool)

GetSubscribedRoleIdOk returns a tuple with the SubscribedRoleId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettings) HasAdminRoleId

func (o *LifecycleSettings) HasAdminRoleId() bool

HasAdminRoleId returns a boolean if a field has been set.

func (*LifecycleSettings) HasApplicationId

func (o *LifecycleSettings) HasApplicationId() bool

HasApplicationId returns a boolean if a field has been set.

func (*LifecycleSettings) HasCreationTime

func (o *LifecycleSettings) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*LifecycleSettings) HasDeniedRoleId

func (o *LifecycleSettings) HasDeniedRoleId() bool

HasDeniedRoleId returns a boolean if a field has been set.

func (*LifecycleSettings) HasEligibleRoleId

func (o *LifecycleSettings) HasEligibleRoleId() bool

HasEligibleRoleId returns a boolean if a field has been set.

func (*LifecycleSettings) HasId

func (o *LifecycleSettings) HasId() bool

HasId returns a boolean if a field has been set.

func (*LifecycleSettings) HasName

func (o *LifecycleSettings) HasName() bool

HasName returns a boolean if a field has been set.

func (*LifecycleSettings) HasSelfSubscriptionGroupId

func (o *LifecycleSettings) HasSelfSubscriptionGroupId() bool

HasSelfSubscriptionGroupId returns a boolean if a field has been set.

func (*LifecycleSettings) HasSubscribedRoleId

func (o *LifecycleSettings) HasSubscribedRoleId() bool

HasSubscribedRoleId returns a boolean if a field has been set.

func (LifecycleSettings) MarshalJSON

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

func (*LifecycleSettings) SetAdminRoleId

func (o *LifecycleSettings) SetAdminRoleId(v string)

SetAdminRoleId gets a reference to the given NullableString and assigns it to the AdminRoleId field.

func (*LifecycleSettings) SetAdminRoleIdNil

func (o *LifecycleSettings) SetAdminRoleIdNil()

SetAdminRoleIdNil sets the value for AdminRoleId to be an explicit nil

func (*LifecycleSettings) SetApplicationId

func (o *LifecycleSettings) SetApplicationId(v string)

SetApplicationId gets a reference to the given string and assigns it to the ApplicationId field.

func (*LifecycleSettings) SetCreationTime

func (o *LifecycleSettings) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*LifecycleSettings) SetDeniedRoleId

func (o *LifecycleSettings) SetDeniedRoleId(v string)

SetDeniedRoleId gets a reference to the given NullableString and assigns it to the DeniedRoleId field.

func (*LifecycleSettings) SetDeniedRoleIdNil

func (o *LifecycleSettings) SetDeniedRoleIdNil()

SetDeniedRoleIdNil sets the value for DeniedRoleId to be an explicit nil

func (*LifecycleSettings) SetEligibleRoleId

func (o *LifecycleSettings) SetEligibleRoleId(v string)

SetEligibleRoleId gets a reference to the given NullableString and assigns it to the EligibleRoleId field.

func (*LifecycleSettings) SetEligibleRoleIdNil

func (o *LifecycleSettings) SetEligibleRoleIdNil()

SetEligibleRoleIdNil sets the value for EligibleRoleId to be an explicit nil

func (*LifecycleSettings) SetId

func (o *LifecycleSettings) SetId(v string)

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

func (*LifecycleSettings) SetIdNil

func (o *LifecycleSettings) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*LifecycleSettings) SetName

func (o *LifecycleSettings) SetName(v string)

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

func (*LifecycleSettings) SetNameNil

func (o *LifecycleSettings) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*LifecycleSettings) SetSelfSubscriptionGroupId

func (o *LifecycleSettings) SetSelfSubscriptionGroupId(v string)

SetSelfSubscriptionGroupId gets a reference to the given NullableString and assigns it to the SelfSubscriptionGroupId field.

func (*LifecycleSettings) SetSelfSubscriptionGroupIdNil

func (o *LifecycleSettings) SetSelfSubscriptionGroupIdNil()

SetSelfSubscriptionGroupIdNil sets the value for SelfSubscriptionGroupId to be an explicit nil

func (*LifecycleSettings) SetSubscribedRoleId

func (o *LifecycleSettings) SetSubscribedRoleId(v string)

SetSubscribedRoleId gets a reference to the given NullableString and assigns it to the SubscribedRoleId field.

func (*LifecycleSettings) SetSubscribedRoleIdNil

func (o *LifecycleSettings) SetSubscribedRoleIdNil()

SetSubscribedRoleIdNil sets the value for SubscribedRoleId to be an explicit nil

func (LifecycleSettings) ToMap

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

func (*LifecycleSettings) UnsetAdminRoleId

func (o *LifecycleSettings) UnsetAdminRoleId()

UnsetAdminRoleId ensures that no value is present for AdminRoleId, not even an explicit nil

func (*LifecycleSettings) UnsetDeniedRoleId

func (o *LifecycleSettings) UnsetDeniedRoleId()

UnsetDeniedRoleId ensures that no value is present for DeniedRoleId, not even an explicit nil

func (*LifecycleSettings) UnsetEligibleRoleId

func (o *LifecycleSettings) UnsetEligibleRoleId()

UnsetEligibleRoleId ensures that no value is present for EligibleRoleId, not even an explicit nil

func (*LifecycleSettings) UnsetId

func (o *LifecycleSettings) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*LifecycleSettings) UnsetName

func (o *LifecycleSettings) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*LifecycleSettings) UnsetSelfSubscriptionGroupId

func (o *LifecycleSettings) UnsetSelfSubscriptionGroupId()

UnsetSelfSubscriptionGroupId ensures that no value is present for SelfSubscriptionGroupId, not even an explicit nil

func (*LifecycleSettings) UnsetSubscribedRoleId

func (o *LifecycleSettings) UnsetSubscribedRoleId()

UnsetSubscribedRoleId ensures that no value is present for SubscribedRoleId, not even an explicit nil

type LifecycleSettingsEnumerateEnvelope

type LifecycleSettingsEnumerateEnvelope struct {
	Pagination *Pagination         `json:"pagination,omitempty"`
	Delta      *Delta              `json:"delta,omitempty"`
	RequestId  NullableString      `json:"request_id,omitempty"`
	Message    NullableString      `json:"message,omitempty"`
	Data       []LifecycleSettings `json:"data,omitempty"`
}

LifecycleSettingsEnumerateEnvelope struct for LifecycleSettingsEnumerateEnvelope

func NewLifecycleSettingsEnumerateEnvelope

func NewLifecycleSettingsEnumerateEnvelope() *LifecycleSettingsEnumerateEnvelope

NewLifecycleSettingsEnumerateEnvelope instantiates a new LifecycleSettingsEnumerateEnvelope 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 NewLifecycleSettingsEnumerateEnvelopeWithDefaults

func NewLifecycleSettingsEnumerateEnvelopeWithDefaults() *LifecycleSettingsEnumerateEnvelope

NewLifecycleSettingsEnumerateEnvelopeWithDefaults instantiates a new LifecycleSettingsEnumerateEnvelope 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 (*LifecycleSettingsEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettingsEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettingsEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*LifecycleSettingsEnumerateEnvelope) GetDeltaOk

func (o *LifecycleSettingsEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*LifecycleSettingsEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettingsEnumerateEnvelope) GetMessageOk

func (o *LifecycleSettingsEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettingsEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*LifecycleSettingsEnumerateEnvelope) GetPaginationOk

func (o *LifecycleSettingsEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*LifecycleSettingsEnumerateEnvelope) GetRequestId

func (o *LifecycleSettingsEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettingsEnumerateEnvelope) GetRequestIdOk

func (o *LifecycleSettingsEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettingsEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*LifecycleSettingsEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*LifecycleSettingsEnumerateEnvelope) HasMessage

func (o *LifecycleSettingsEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*LifecycleSettingsEnumerateEnvelope) HasPagination

func (o *LifecycleSettingsEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*LifecycleSettingsEnumerateEnvelope) HasRequestId

func (o *LifecycleSettingsEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (LifecycleSettingsEnumerateEnvelope) MarshalJSON

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

func (*LifecycleSettingsEnumerateEnvelope) SetData

SetData gets a reference to the given []LifecycleSettings and assigns it to the Data field.

func (*LifecycleSettingsEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*LifecycleSettingsEnumerateEnvelope) SetMessage

func (o *LifecycleSettingsEnumerateEnvelope) SetMessage(v string)

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

func (*LifecycleSettingsEnumerateEnvelope) SetMessageNil

func (o *LifecycleSettingsEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*LifecycleSettingsEnumerateEnvelope) SetPagination

func (o *LifecycleSettingsEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*LifecycleSettingsEnumerateEnvelope) SetRequestId

func (o *LifecycleSettingsEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*LifecycleSettingsEnumerateEnvelope) SetRequestIdNil

func (o *LifecycleSettingsEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (LifecycleSettingsEnumerateEnvelope) ToMap

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

func (*LifecycleSettingsEnumerateEnvelope) UnsetMessage

func (o *LifecycleSettingsEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*LifecycleSettingsEnumerateEnvelope) UnsetRequestId

func (o *LifecycleSettingsEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type LifecycleSettingsInfo

type LifecycleSettingsInfo struct {
	Name                  NullableString        `json:"name,omitempty"`
	EligibleRole          *RoleInfo             `json:"eligibleRole,omitempty"`
	SubscribedRole        *RoleInfo             `json:"subscribedRole,omitempty"`
	SelfSubscriptionGroup *GroupInfo            `json:"selfSubscriptionGroup,omitempty"`
	DeniedRole            *RoleInfo             `json:"deniedRole,omitempty"`
	AdminRole             *RoleInfo             `json:"adminRole,omitempty"`
	HasResources          *bool                 `json:"hasResources,omitempty"`
	ManagedResourceTypes  []ManagedResourceType `json:"managedResourceTypes,omitempty"`
}

LifecycleSettingsInfo struct for LifecycleSettingsInfo

func NewLifecycleSettingsInfo

func NewLifecycleSettingsInfo() *LifecycleSettingsInfo

NewLifecycleSettingsInfo instantiates a new LifecycleSettingsInfo 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 NewLifecycleSettingsInfoWithDefaults

func NewLifecycleSettingsInfoWithDefaults() *LifecycleSettingsInfo

NewLifecycleSettingsInfoWithDefaults instantiates a new LifecycleSettingsInfo 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 (*LifecycleSettingsInfo) GetAdminRole

func (o *LifecycleSettingsInfo) GetAdminRole() RoleInfo

GetAdminRole returns the AdminRole field value if set, zero value otherwise.

func (*LifecycleSettingsInfo) GetAdminRoleOk

func (o *LifecycleSettingsInfo) GetAdminRoleOk() (*RoleInfo, bool)

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

func (*LifecycleSettingsInfo) GetDeniedRole

func (o *LifecycleSettingsInfo) GetDeniedRole() RoleInfo

GetDeniedRole returns the DeniedRole field value if set, zero value otherwise.

func (*LifecycleSettingsInfo) GetDeniedRoleOk

func (o *LifecycleSettingsInfo) GetDeniedRoleOk() (*RoleInfo, bool)

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

func (*LifecycleSettingsInfo) GetEligibleRole

func (o *LifecycleSettingsInfo) GetEligibleRole() RoleInfo

GetEligibleRole returns the EligibleRole field value if set, zero value otherwise.

func (*LifecycleSettingsInfo) GetEligibleRoleOk

func (o *LifecycleSettingsInfo) GetEligibleRoleOk() (*RoleInfo, bool)

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

func (*LifecycleSettingsInfo) GetHasResources

func (o *LifecycleSettingsInfo) GetHasResources() bool

GetHasResources returns the HasResources field value if set, zero value otherwise.

func (*LifecycleSettingsInfo) GetHasResourcesOk

func (o *LifecycleSettingsInfo) GetHasResourcesOk() (*bool, bool)

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

func (*LifecycleSettingsInfo) GetManagedResourceTypes

func (o *LifecycleSettingsInfo) GetManagedResourceTypes() []ManagedResourceType

GetManagedResourceTypes returns the ManagedResourceTypes field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettingsInfo) GetManagedResourceTypesOk

func (o *LifecycleSettingsInfo) GetManagedResourceTypesOk() ([]ManagedResourceType, bool)

GetManagedResourceTypesOk returns a tuple with the ManagedResourceTypes field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettingsInfo) GetName

func (o *LifecycleSettingsInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LifecycleSettingsInfo) GetNameOk

func (o *LifecycleSettingsInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LifecycleSettingsInfo) GetSelfSubscriptionGroup

func (o *LifecycleSettingsInfo) GetSelfSubscriptionGroup() GroupInfo

GetSelfSubscriptionGroup returns the SelfSubscriptionGroup field value if set, zero value otherwise.

func (*LifecycleSettingsInfo) GetSelfSubscriptionGroupOk

func (o *LifecycleSettingsInfo) GetSelfSubscriptionGroupOk() (*GroupInfo, bool)

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

func (*LifecycleSettingsInfo) GetSubscribedRole

func (o *LifecycleSettingsInfo) GetSubscribedRole() RoleInfo

GetSubscribedRole returns the SubscribedRole field value if set, zero value otherwise.

func (*LifecycleSettingsInfo) GetSubscribedRoleOk

func (o *LifecycleSettingsInfo) GetSubscribedRoleOk() (*RoleInfo, bool)

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

func (*LifecycleSettingsInfo) HasAdminRole

func (o *LifecycleSettingsInfo) HasAdminRole() bool

HasAdminRole returns a boolean if a field has been set.

func (*LifecycleSettingsInfo) HasDeniedRole

func (o *LifecycleSettingsInfo) HasDeniedRole() bool

HasDeniedRole returns a boolean if a field has been set.

func (*LifecycleSettingsInfo) HasEligibleRole

func (o *LifecycleSettingsInfo) HasEligibleRole() bool

HasEligibleRole returns a boolean if a field has been set.

func (*LifecycleSettingsInfo) HasHasResources

func (o *LifecycleSettingsInfo) HasHasResources() bool

HasHasResources returns a boolean if a field has been set.

func (*LifecycleSettingsInfo) HasManagedResourceTypes

func (o *LifecycleSettingsInfo) HasManagedResourceTypes() bool

HasManagedResourceTypes returns a boolean if a field has been set.

func (*LifecycleSettingsInfo) HasName

func (o *LifecycleSettingsInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*LifecycleSettingsInfo) HasSelfSubscriptionGroup

func (o *LifecycleSettingsInfo) HasSelfSubscriptionGroup() bool

HasSelfSubscriptionGroup returns a boolean if a field has been set.

func (*LifecycleSettingsInfo) HasSubscribedRole

func (o *LifecycleSettingsInfo) HasSubscribedRole() bool

HasSubscribedRole returns a boolean if a field has been set.

func (LifecycleSettingsInfo) MarshalJSON

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

func (*LifecycleSettingsInfo) SetAdminRole

func (o *LifecycleSettingsInfo) SetAdminRole(v RoleInfo)

SetAdminRole gets a reference to the given RoleInfo and assigns it to the AdminRole field.

func (*LifecycleSettingsInfo) SetDeniedRole

func (o *LifecycleSettingsInfo) SetDeniedRole(v RoleInfo)

SetDeniedRole gets a reference to the given RoleInfo and assigns it to the DeniedRole field.

func (*LifecycleSettingsInfo) SetEligibleRole

func (o *LifecycleSettingsInfo) SetEligibleRole(v RoleInfo)

SetEligibleRole gets a reference to the given RoleInfo and assigns it to the EligibleRole field.

func (*LifecycleSettingsInfo) SetHasResources

func (o *LifecycleSettingsInfo) SetHasResources(v bool)

SetHasResources gets a reference to the given bool and assigns it to the HasResources field.

func (*LifecycleSettingsInfo) SetManagedResourceTypes

func (o *LifecycleSettingsInfo) SetManagedResourceTypes(v []ManagedResourceType)

SetManagedResourceTypes gets a reference to the given []ManagedResourceType and assigns it to the ManagedResourceTypes field.

func (*LifecycleSettingsInfo) SetName

func (o *LifecycleSettingsInfo) SetName(v string)

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

func (*LifecycleSettingsInfo) SetNameNil

func (o *LifecycleSettingsInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*LifecycleSettingsInfo) SetSelfSubscriptionGroup

func (o *LifecycleSettingsInfo) SetSelfSubscriptionGroup(v GroupInfo)

SetSelfSubscriptionGroup gets a reference to the given GroupInfo and assigns it to the SelfSubscriptionGroup field.

func (*LifecycleSettingsInfo) SetSubscribedRole

func (o *LifecycleSettingsInfo) SetSubscribedRole(v RoleInfo)

SetSubscribedRole gets a reference to the given RoleInfo and assigns it to the SubscribedRole field.

func (LifecycleSettingsInfo) ToMap

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

func (*LifecycleSettingsInfo) UnsetName

func (o *LifecycleSettingsInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type MailProperties

type MailProperties struct {
	Id                  NullableString `json:"id,omitempty"`
	MailType            NullableString `json:"mailType,omitempty"`
	IdentityId          NullableString `json:"identityId,omitempty"`
	PrimaryMailAlias    NullableString `json:"primaryMailAlias,omitempty"`
	MailAliases         []string       `json:"mailAliases,omitempty"`
	ForwardingAddress   NullableString `json:"forwardingAddress,omitempty"`
	ForwardOnly         *bool          `json:"forwardOnly,omitempty"`
	ExternalEmail       NullableString `json:"externalEmail,omitempty"`
	IdentityUpn         NullableString `json:"identityUpn,omitempty"`
	IdentityDisplayName NullableString `json:"identityDisplayName,omitempty"`
}

MailProperties struct for MailProperties

func NewMailProperties

func NewMailProperties() *MailProperties

NewMailProperties instantiates a new MailProperties 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 NewMailPropertiesWithDefaults

func NewMailPropertiesWithDefaults() *MailProperties

NewMailPropertiesWithDefaults instantiates a new MailProperties 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 (*MailProperties) GetExternalEmail

func (o *MailProperties) GetExternalEmail() string

GetExternalEmail returns the ExternalEmail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetExternalEmailOk

func (o *MailProperties) GetExternalEmailOk() (*string, bool)

GetExternalEmailOk returns a tuple with the ExternalEmail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) GetForwardOnly

func (o *MailProperties) GetForwardOnly() bool

GetForwardOnly returns the ForwardOnly field value if set, zero value otherwise.

func (*MailProperties) GetForwardOnlyOk

func (o *MailProperties) GetForwardOnlyOk() (*bool, bool)

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

func (*MailProperties) GetForwardingAddress

func (o *MailProperties) GetForwardingAddress() string

GetForwardingAddress returns the ForwardingAddress field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetForwardingAddressOk

func (o *MailProperties) GetForwardingAddressOk() (*string, bool)

GetForwardingAddressOk returns a tuple with the ForwardingAddress field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) GetId

func (o *MailProperties) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetIdOk

func (o *MailProperties) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) GetIdentityDisplayName

func (o *MailProperties) GetIdentityDisplayName() string

GetIdentityDisplayName returns the IdentityDisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetIdentityDisplayNameOk

func (o *MailProperties) GetIdentityDisplayNameOk() (*string, bool)

GetIdentityDisplayNameOk returns a tuple with the IdentityDisplayName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) GetIdentityId

func (o *MailProperties) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetIdentityIdOk

func (o *MailProperties) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) GetIdentityUpn

func (o *MailProperties) GetIdentityUpn() string

GetIdentityUpn returns the IdentityUpn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetIdentityUpnOk

func (o *MailProperties) GetIdentityUpnOk() (*string, bool)

GetIdentityUpnOk returns a tuple with the IdentityUpn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) GetMailAliases

func (o *MailProperties) GetMailAliases() []string

GetMailAliases returns the MailAliases field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetMailAliasesOk

func (o *MailProperties) GetMailAliasesOk() ([]string, bool)

GetMailAliasesOk returns a tuple with the MailAliases field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) GetMailType

func (o *MailProperties) GetMailType() string

GetMailType returns the MailType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetMailTypeOk

func (o *MailProperties) GetMailTypeOk() (*string, bool)

GetMailTypeOk returns a tuple with the MailType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) GetPrimaryMailAlias

func (o *MailProperties) GetPrimaryMailAlias() string

GetPrimaryMailAlias returns the PrimaryMailAlias field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailProperties) GetPrimaryMailAliasOk

func (o *MailProperties) GetPrimaryMailAliasOk() (*string, bool)

GetPrimaryMailAliasOk returns a tuple with the PrimaryMailAlias field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailProperties) HasExternalEmail

func (o *MailProperties) HasExternalEmail() bool

HasExternalEmail returns a boolean if a field has been set.

func (*MailProperties) HasForwardOnly

func (o *MailProperties) HasForwardOnly() bool

HasForwardOnly returns a boolean if a field has been set.

func (*MailProperties) HasForwardingAddress

func (o *MailProperties) HasForwardingAddress() bool

HasForwardingAddress returns a boolean if a field has been set.

func (*MailProperties) HasId

func (o *MailProperties) HasId() bool

HasId returns a boolean if a field has been set.

func (*MailProperties) HasIdentityDisplayName

func (o *MailProperties) HasIdentityDisplayName() bool

HasIdentityDisplayName returns a boolean if a field has been set.

func (*MailProperties) HasIdentityId

func (o *MailProperties) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (*MailProperties) HasIdentityUpn

func (o *MailProperties) HasIdentityUpn() bool

HasIdentityUpn returns a boolean if a field has been set.

func (*MailProperties) HasMailAliases

func (o *MailProperties) HasMailAliases() bool

HasMailAliases returns a boolean if a field has been set.

func (*MailProperties) HasMailType

func (o *MailProperties) HasMailType() bool

HasMailType returns a boolean if a field has been set.

func (*MailProperties) HasPrimaryMailAlias

func (o *MailProperties) HasPrimaryMailAlias() bool

HasPrimaryMailAlias returns a boolean if a field has been set.

func (MailProperties) MarshalJSON

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

func (*MailProperties) SetExternalEmail

func (o *MailProperties) SetExternalEmail(v string)

SetExternalEmail gets a reference to the given NullableString and assigns it to the ExternalEmail field.

func (*MailProperties) SetExternalEmailNil

func (o *MailProperties) SetExternalEmailNil()

SetExternalEmailNil sets the value for ExternalEmail to be an explicit nil

func (*MailProperties) SetForwardOnly

func (o *MailProperties) SetForwardOnly(v bool)

SetForwardOnly gets a reference to the given bool and assigns it to the ForwardOnly field.

func (*MailProperties) SetForwardingAddress

func (o *MailProperties) SetForwardingAddress(v string)

SetForwardingAddress gets a reference to the given NullableString and assigns it to the ForwardingAddress field.

func (*MailProperties) SetForwardingAddressNil

func (o *MailProperties) SetForwardingAddressNil()

SetForwardingAddressNil sets the value for ForwardingAddress to be an explicit nil

func (*MailProperties) SetId

func (o *MailProperties) SetId(v string)

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

func (*MailProperties) SetIdNil

func (o *MailProperties) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*MailProperties) SetIdentityDisplayName

func (o *MailProperties) SetIdentityDisplayName(v string)

SetIdentityDisplayName gets a reference to the given NullableString and assigns it to the IdentityDisplayName field.

func (*MailProperties) SetIdentityDisplayNameNil

func (o *MailProperties) SetIdentityDisplayNameNil()

SetIdentityDisplayNameNil sets the value for IdentityDisplayName to be an explicit nil

func (*MailProperties) SetIdentityId

func (o *MailProperties) SetIdentityId(v string)

SetIdentityId gets a reference to the given NullableString and assigns it to the IdentityId field.

func (*MailProperties) SetIdentityIdNil

func (o *MailProperties) SetIdentityIdNil()

SetIdentityIdNil sets the value for IdentityId to be an explicit nil

func (*MailProperties) SetIdentityUpn

func (o *MailProperties) SetIdentityUpn(v string)

SetIdentityUpn gets a reference to the given NullableString and assigns it to the IdentityUpn field.

func (*MailProperties) SetIdentityUpnNil

func (o *MailProperties) SetIdentityUpnNil()

SetIdentityUpnNil sets the value for IdentityUpn to be an explicit nil

func (*MailProperties) SetMailAliases

func (o *MailProperties) SetMailAliases(v []string)

SetMailAliases gets a reference to the given []string and assigns it to the MailAliases field.

func (*MailProperties) SetMailType

func (o *MailProperties) SetMailType(v string)

SetMailType gets a reference to the given NullableString and assigns it to the MailType field.

func (*MailProperties) SetMailTypeNil

func (o *MailProperties) SetMailTypeNil()

SetMailTypeNil sets the value for MailType to be an explicit nil

func (*MailProperties) SetPrimaryMailAlias

func (o *MailProperties) SetPrimaryMailAlias(v string)

SetPrimaryMailAlias gets a reference to the given NullableString and assigns it to the PrimaryMailAlias field.

func (*MailProperties) SetPrimaryMailAliasNil

func (o *MailProperties) SetPrimaryMailAliasNil()

SetPrimaryMailAliasNil sets the value for PrimaryMailAlias to be an explicit nil

func (MailProperties) ToMap

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

func (*MailProperties) UnsetExternalEmail

func (o *MailProperties) UnsetExternalEmail()

UnsetExternalEmail ensures that no value is present for ExternalEmail, not even an explicit nil

func (*MailProperties) UnsetForwardingAddress

func (o *MailProperties) UnsetForwardingAddress()

UnsetForwardingAddress ensures that no value is present for ForwardingAddress, not even an explicit nil

func (*MailProperties) UnsetId

func (o *MailProperties) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*MailProperties) UnsetIdentityDisplayName

func (o *MailProperties) UnsetIdentityDisplayName()

UnsetIdentityDisplayName ensures that no value is present for IdentityDisplayName, not even an explicit nil

func (*MailProperties) UnsetIdentityId

func (o *MailProperties) UnsetIdentityId()

UnsetIdentityId ensures that no value is present for IdentityId, not even an explicit nil

func (*MailProperties) UnsetIdentityUpn

func (o *MailProperties) UnsetIdentityUpn()

UnsetIdentityUpn ensures that no value is present for IdentityUpn, not even an explicit nil

func (*MailProperties) UnsetMailType

func (o *MailProperties) UnsetMailType()

UnsetMailType ensures that no value is present for MailType, not even an explicit nil

func (*MailProperties) UnsetPrimaryMailAlias

func (o *MailProperties) UnsetPrimaryMailAlias()

UnsetPrimaryMailAlias ensures that no value is present for PrimaryMailAlias, not even an explicit nil

type MailPropertiesEnumerateEnvelope

type MailPropertiesEnumerateEnvelope struct {
	Pagination *Pagination      `json:"pagination,omitempty"`
	Delta      *Delta           `json:"delta,omitempty"`
	RequestId  NullableString   `json:"request_id,omitempty"`
	Message    NullableString   `json:"message,omitempty"`
	Data       []MailProperties `json:"data,omitempty"`
}

MailPropertiesEnumerateEnvelope struct for MailPropertiesEnumerateEnvelope

func NewMailPropertiesEnumerateEnvelope

func NewMailPropertiesEnumerateEnvelope() *MailPropertiesEnumerateEnvelope

NewMailPropertiesEnumerateEnvelope instantiates a new MailPropertiesEnumerateEnvelope 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 NewMailPropertiesEnumerateEnvelopeWithDefaults

func NewMailPropertiesEnumerateEnvelopeWithDefaults() *MailPropertiesEnumerateEnvelope

NewMailPropertiesEnumerateEnvelopeWithDefaults instantiates a new MailPropertiesEnumerateEnvelope 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 (*MailPropertiesEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailPropertiesEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailPropertiesEnumerateEnvelope) GetDelta

func (o *MailPropertiesEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*MailPropertiesEnumerateEnvelope) GetDeltaOk

func (o *MailPropertiesEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*MailPropertiesEnumerateEnvelope) GetMessage

func (o *MailPropertiesEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailPropertiesEnumerateEnvelope) GetMessageOk

func (o *MailPropertiesEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailPropertiesEnumerateEnvelope) GetPagination

func (o *MailPropertiesEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*MailPropertiesEnumerateEnvelope) GetPaginationOk

func (o *MailPropertiesEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*MailPropertiesEnumerateEnvelope) GetRequestId

func (o *MailPropertiesEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailPropertiesEnumerateEnvelope) GetRequestIdOk

func (o *MailPropertiesEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailPropertiesEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*MailPropertiesEnumerateEnvelope) HasDelta

func (o *MailPropertiesEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*MailPropertiesEnumerateEnvelope) HasMessage

func (o *MailPropertiesEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MailPropertiesEnumerateEnvelope) HasPagination

func (o *MailPropertiesEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*MailPropertiesEnumerateEnvelope) HasRequestId

func (o *MailPropertiesEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (MailPropertiesEnumerateEnvelope) MarshalJSON

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

func (*MailPropertiesEnumerateEnvelope) SetData

SetData gets a reference to the given []MailProperties and assigns it to the Data field.

func (*MailPropertiesEnumerateEnvelope) SetDelta

func (o *MailPropertiesEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*MailPropertiesEnumerateEnvelope) SetMessage

func (o *MailPropertiesEnumerateEnvelope) SetMessage(v string)

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

func (*MailPropertiesEnumerateEnvelope) SetMessageNil

func (o *MailPropertiesEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*MailPropertiesEnumerateEnvelope) SetPagination

func (o *MailPropertiesEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*MailPropertiesEnumerateEnvelope) SetRequestId

func (o *MailPropertiesEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*MailPropertiesEnumerateEnvelope) SetRequestIdNil

func (o *MailPropertiesEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (MailPropertiesEnumerateEnvelope) ToMap

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

func (*MailPropertiesEnumerateEnvelope) UnsetMessage

func (o *MailPropertiesEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*MailPropertiesEnumerateEnvelope) UnsetRequestId

func (o *MailPropertiesEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type MailPropertiesEnvelope

type MailPropertiesEnvelope struct {
	RequestId NullableString  `json:"request_id,omitempty"`
	Message   NullableString  `json:"message,omitempty"`
	Data      *MailProperties `json:"data,omitempty"`
}

MailPropertiesEnvelope struct for MailPropertiesEnvelope

func NewMailPropertiesEnvelope

func NewMailPropertiesEnvelope() *MailPropertiesEnvelope

NewMailPropertiesEnvelope instantiates a new MailPropertiesEnvelope 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 NewMailPropertiesEnvelopeWithDefaults

func NewMailPropertiesEnvelopeWithDefaults() *MailPropertiesEnvelope

NewMailPropertiesEnvelopeWithDefaults instantiates a new MailPropertiesEnvelope 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 (*MailPropertiesEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*MailPropertiesEnvelope) GetDataOk

func (o *MailPropertiesEnvelope) GetDataOk() (*MailProperties, bool)

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

func (*MailPropertiesEnvelope) GetMessage

func (o *MailPropertiesEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailPropertiesEnvelope) GetMessageOk

func (o *MailPropertiesEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailPropertiesEnvelope) GetRequestId

func (o *MailPropertiesEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MailPropertiesEnvelope) GetRequestIdOk

func (o *MailPropertiesEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MailPropertiesEnvelope) HasData

func (o *MailPropertiesEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*MailPropertiesEnvelope) HasMessage

func (o *MailPropertiesEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MailPropertiesEnvelope) HasRequestId

func (o *MailPropertiesEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (MailPropertiesEnvelope) MarshalJSON

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

func (*MailPropertiesEnvelope) SetData

func (o *MailPropertiesEnvelope) SetData(v MailProperties)

SetData gets a reference to the given MailProperties and assigns it to the Data field.

func (*MailPropertiesEnvelope) SetMessage

func (o *MailPropertiesEnvelope) SetMessage(v string)

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

func (*MailPropertiesEnvelope) SetMessageNil

func (o *MailPropertiesEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*MailPropertiesEnvelope) SetRequestId

func (o *MailPropertiesEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*MailPropertiesEnvelope) SetRequestIdNil

func (o *MailPropertiesEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (MailPropertiesEnvelope) ToMap

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

func (*MailPropertiesEnvelope) UnsetMessage

func (o *MailPropertiesEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*MailPropertiesEnvelope) UnsetRequestId

func (o *MailPropertiesEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ManagedResource

type ManagedResource struct {
	JsonSchemaId        *string           `json:"jsonSchemaId,omitempty"`
	AdministratorsId    NullableString    `json:"administratorsId,omitempty"`
	ResourceIdentifier  string            `json:"resourceIdentifier"`
	DisplayName         string            `json:"displayName"`
	Description         NullableString    `json:"description,omitempty"`
	ManagedResourceType string            `json:"managedResourceType"`
	Owner               *Identity         `json:"owner,omitempty"`
	Administrators      *Group            `json:"administrators,omitempty"`
	ResourceCategory    *ResourceCategory `json:"resourceCategory,omitempty"`
	Reassignable        *bool             `json:"reassignable,omitempty"`
	AutoReassign        *bool             `json:"autoReassign,omitempty"`
	// Deprecated
	PendingAction    *bool          `json:"pendingAction,omitempty"`
	Disabled         *bool          `json:"disabled,omitempty"`
	Blocked          *bool          `json:"blocked,omitempty"`
	SecurityIssues   *bool          `json:"securityIssues,omitempty"`
	BlockingReason   NullableString `json:"blockingReason,omitempty"`
	BlockingTime     NullableTime   `json:"blockingTime,omitempty"`
	BlockingDeadline NullableTime   `json:"blockingDeadline,omitempty"`
	ArchiveDeadline  NullableTime   `json:"archiveDeadline,omitempty"`
	DeleteDeadline   NullableTime   `json:"deleteDeadline,omitempty"`
	// Deprecated
	ExpirationDeadline  NullableTime   `json:"expirationDeadline,omitempty"`
	OwnerId             NullableString `json:"ownerId,omitempty"`
	InternalState       *ResourceState `json:"internalState,omitempty"`
	State               *ResourceState `json:"state,omitempty"`
	LastStateChangeTime NullableTime   `json:"lastStateChangeTime,omitempty"`
	ValidityLimit       NullableTime   `json:"validityLimit,omitempty"`
	Id                  NullableString `json:"id,omitempty"`
	CreationTime        *time.Time     `json:"creationTime,omitempty"`
}

ManagedResource struct for ManagedResource

func NewManagedResource

func NewManagedResource(resourceIdentifier string, displayName string, managedResourceType string) *ManagedResource

NewManagedResource instantiates a new ManagedResource 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 NewManagedResourceWithDefaults

func NewManagedResourceWithDefaults() *ManagedResource

NewManagedResourceWithDefaults instantiates a new ManagedResource 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 (*ManagedResource) GetAdministrators

func (o *ManagedResource) GetAdministrators() Group

GetAdministrators returns the Administrators field value if set, zero value otherwise.

func (*ManagedResource) GetAdministratorsId

func (o *ManagedResource) GetAdministratorsId() string

GetAdministratorsId returns the AdministratorsId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetAdministratorsIdOk

func (o *ManagedResource) GetAdministratorsIdOk() (*string, bool)

GetAdministratorsIdOk returns a tuple with the AdministratorsId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetAdministratorsOk

func (o *ManagedResource) GetAdministratorsOk() (*Group, bool)

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

func (*ManagedResource) GetArchiveDeadline

func (o *ManagedResource) GetArchiveDeadline() time.Time

GetArchiveDeadline returns the ArchiveDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetArchiveDeadlineOk

func (o *ManagedResource) GetArchiveDeadlineOk() (*time.Time, bool)

GetArchiveDeadlineOk returns a tuple with the ArchiveDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetAutoReassign

func (o *ManagedResource) GetAutoReassign() bool

GetAutoReassign returns the AutoReassign field value if set, zero value otherwise.

func (*ManagedResource) GetAutoReassignOk

func (o *ManagedResource) GetAutoReassignOk() (*bool, bool)

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

func (*ManagedResource) GetBlocked

func (o *ManagedResource) GetBlocked() bool

GetBlocked returns the Blocked field value if set, zero value otherwise.

func (*ManagedResource) GetBlockedOk

func (o *ManagedResource) GetBlockedOk() (*bool, bool)

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

func (*ManagedResource) GetBlockingDeadline

func (o *ManagedResource) GetBlockingDeadline() time.Time

GetBlockingDeadline returns the BlockingDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetBlockingDeadlineOk

func (o *ManagedResource) GetBlockingDeadlineOk() (*time.Time, bool)

GetBlockingDeadlineOk returns a tuple with the BlockingDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetBlockingReason

func (o *ManagedResource) GetBlockingReason() string

GetBlockingReason returns the BlockingReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetBlockingReasonOk

func (o *ManagedResource) GetBlockingReasonOk() (*string, bool)

GetBlockingReasonOk returns a tuple with the BlockingReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetBlockingTime

func (o *ManagedResource) GetBlockingTime() time.Time

GetBlockingTime returns the BlockingTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetBlockingTimeOk

func (o *ManagedResource) GetBlockingTimeOk() (*time.Time, bool)

GetBlockingTimeOk returns a tuple with the BlockingTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetCreationTime

func (o *ManagedResource) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*ManagedResource) GetCreationTimeOk

func (o *ManagedResource) GetCreationTimeOk() (*time.Time, bool)

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

func (*ManagedResource) GetDeleteDeadline

func (o *ManagedResource) GetDeleteDeadline() time.Time

GetDeleteDeadline returns the DeleteDeadline field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetDeleteDeadlineOk

func (o *ManagedResource) GetDeleteDeadlineOk() (*time.Time, bool)

GetDeleteDeadlineOk returns a tuple with the DeleteDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetDescription

func (o *ManagedResource) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetDescriptionOk

func (o *ManagedResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetDisabled

func (o *ManagedResource) GetDisabled() bool

GetDisabled returns the Disabled field value if set, zero value otherwise.

func (*ManagedResource) GetDisabledOk

func (o *ManagedResource) GetDisabledOk() (*bool, bool)

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

func (*ManagedResource) GetDisplayName

func (o *ManagedResource) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*ManagedResource) GetDisplayNameOk

func (o *ManagedResource) GetDisplayNameOk() (*string, bool)

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

func (*ManagedResource) GetExpirationDeadline

func (o *ManagedResource) GetExpirationDeadline() time.Time

GetExpirationDeadline returns the ExpirationDeadline field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*ManagedResource) GetExpirationDeadlineOk

func (o *ManagedResource) GetExpirationDeadlineOk() (*time.Time, bool)

GetExpirationDeadlineOk returns a tuple with the ExpirationDeadline field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned Deprecated

func (*ManagedResource) GetId

func (o *ManagedResource) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetIdOk

func (o *ManagedResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetInternalState

func (o *ManagedResource) GetInternalState() ResourceState

GetInternalState returns the InternalState field value if set, zero value otherwise.

func (*ManagedResource) GetInternalStateOk

func (o *ManagedResource) GetInternalStateOk() (*ResourceState, bool)

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

func (*ManagedResource) GetJsonSchemaId

func (o *ManagedResource) GetJsonSchemaId() string

GetJsonSchemaId returns the JsonSchemaId field value if set, zero value otherwise.

func (*ManagedResource) GetJsonSchemaIdOk

func (o *ManagedResource) GetJsonSchemaIdOk() (*string, bool)

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

func (*ManagedResource) GetLastStateChangeTime

func (o *ManagedResource) GetLastStateChangeTime() time.Time

GetLastStateChangeTime returns the LastStateChangeTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetLastStateChangeTimeOk

func (o *ManagedResource) GetLastStateChangeTimeOk() (*time.Time, bool)

GetLastStateChangeTimeOk returns a tuple with the LastStateChangeTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetManagedResourceType

func (o *ManagedResource) GetManagedResourceType() string

GetManagedResourceType returns the ManagedResourceType field value

func (*ManagedResource) GetManagedResourceTypeOk

func (o *ManagedResource) GetManagedResourceTypeOk() (*string, bool)

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

func (*ManagedResource) GetOwner

func (o *ManagedResource) GetOwner() Identity

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

func (*ManagedResource) GetOwnerId

func (o *ManagedResource) GetOwnerId() string

GetOwnerId returns the OwnerId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetOwnerIdOk

func (o *ManagedResource) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) GetOwnerOk

func (o *ManagedResource) GetOwnerOk() (*Identity, bool)

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 (*ManagedResource) GetPendingAction

func (o *ManagedResource) GetPendingAction() bool

GetPendingAction returns the PendingAction field value if set, zero value otherwise. Deprecated

func (*ManagedResource) GetPendingActionOk

func (o *ManagedResource) GetPendingActionOk() (*bool, bool)

GetPendingActionOk returns a tuple with the PendingAction field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*ManagedResource) GetReassignable

func (o *ManagedResource) GetReassignable() bool

GetReassignable returns the Reassignable field value if set, zero value otherwise.

func (*ManagedResource) GetReassignableOk

func (o *ManagedResource) GetReassignableOk() (*bool, bool)

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

func (*ManagedResource) GetResourceCategory

func (o *ManagedResource) GetResourceCategory() ResourceCategory

GetResourceCategory returns the ResourceCategory field value if set, zero value otherwise.

func (*ManagedResource) GetResourceCategoryOk

func (o *ManagedResource) GetResourceCategoryOk() (*ResourceCategory, bool)

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

func (*ManagedResource) GetResourceIdentifier

func (o *ManagedResource) GetResourceIdentifier() string

GetResourceIdentifier returns the ResourceIdentifier field value

func (*ManagedResource) GetResourceIdentifierOk

func (o *ManagedResource) GetResourceIdentifierOk() (*string, bool)

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

func (*ManagedResource) GetSecurityIssues

func (o *ManagedResource) GetSecurityIssues() bool

GetSecurityIssues returns the SecurityIssues field value if set, zero value otherwise.

func (*ManagedResource) GetSecurityIssuesOk

func (o *ManagedResource) GetSecurityIssuesOk() (*bool, bool)

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

func (*ManagedResource) GetState

func (o *ManagedResource) GetState() ResourceState

GetState returns the State field value if set, zero value otherwise.

func (*ManagedResource) GetStateOk

func (o *ManagedResource) GetStateOk() (*ResourceState, bool)

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

func (*ManagedResource) GetValidityLimit

func (o *ManagedResource) GetValidityLimit() time.Time

GetValidityLimit returns the ValidityLimit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResource) GetValidityLimitOk

func (o *ManagedResource) GetValidityLimitOk() (*time.Time, bool)

GetValidityLimitOk returns a tuple with the ValidityLimit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResource) HasAdministrators

func (o *ManagedResource) HasAdministrators() bool

HasAdministrators returns a boolean if a field has been set.

func (*ManagedResource) HasAdministratorsId

func (o *ManagedResource) HasAdministratorsId() bool

HasAdministratorsId returns a boolean if a field has been set.

func (*ManagedResource) HasArchiveDeadline

func (o *ManagedResource) HasArchiveDeadline() bool

HasArchiveDeadline returns a boolean if a field has been set.

func (*ManagedResource) HasAutoReassign

func (o *ManagedResource) HasAutoReassign() bool

HasAutoReassign returns a boolean if a field has been set.

func (*ManagedResource) HasBlocked

func (o *ManagedResource) HasBlocked() bool

HasBlocked returns a boolean if a field has been set.

func (*ManagedResource) HasBlockingDeadline

func (o *ManagedResource) HasBlockingDeadline() bool

HasBlockingDeadline returns a boolean if a field has been set.

func (*ManagedResource) HasBlockingReason

func (o *ManagedResource) HasBlockingReason() bool

HasBlockingReason returns a boolean if a field has been set.

func (*ManagedResource) HasBlockingTime

func (o *ManagedResource) HasBlockingTime() bool

HasBlockingTime returns a boolean if a field has been set.

func (*ManagedResource) HasCreationTime

func (o *ManagedResource) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*ManagedResource) HasDeleteDeadline

func (o *ManagedResource) HasDeleteDeadline() bool

HasDeleteDeadline returns a boolean if a field has been set.

func (*ManagedResource) HasDescription

func (o *ManagedResource) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ManagedResource) HasDisabled

func (o *ManagedResource) HasDisabled() bool

HasDisabled returns a boolean if a field has been set.

func (*ManagedResource) HasExpirationDeadline

func (o *ManagedResource) HasExpirationDeadline() bool

HasExpirationDeadline returns a boolean if a field has been set.

func (*ManagedResource) HasId

func (o *ManagedResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*ManagedResource) HasInternalState

func (o *ManagedResource) HasInternalState() bool

HasInternalState returns a boolean if a field has been set.

func (*ManagedResource) HasJsonSchemaId

func (o *ManagedResource) HasJsonSchemaId() bool

HasJsonSchemaId returns a boolean if a field has been set.

func (*ManagedResource) HasLastStateChangeTime

func (o *ManagedResource) HasLastStateChangeTime() bool

HasLastStateChangeTime returns a boolean if a field has been set.

func (*ManagedResource) HasOwner

func (o *ManagedResource) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ManagedResource) HasOwnerId

func (o *ManagedResource) HasOwnerId() bool

HasOwnerId returns a boolean if a field has been set.

func (*ManagedResource) HasPendingAction

func (o *ManagedResource) HasPendingAction() bool

HasPendingAction returns a boolean if a field has been set.

func (*ManagedResource) HasReassignable

func (o *ManagedResource) HasReassignable() bool

HasReassignable returns a boolean if a field has been set.

func (*ManagedResource) HasResourceCategory

func (o *ManagedResource) HasResourceCategory() bool

HasResourceCategory returns a boolean if a field has been set.

func (*ManagedResource) HasSecurityIssues

func (o *ManagedResource) HasSecurityIssues() bool

HasSecurityIssues returns a boolean if a field has been set.

func (*ManagedResource) HasState

func (o *ManagedResource) HasState() bool

HasState returns a boolean if a field has been set.

func (*ManagedResource) HasValidityLimit

func (o *ManagedResource) HasValidityLimit() bool

HasValidityLimit returns a boolean if a field has been set.

func (ManagedResource) MarshalJSON

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

func (*ManagedResource) SetAdministrators

func (o *ManagedResource) SetAdministrators(v Group)

SetAdministrators gets a reference to the given Group and assigns it to the Administrators field.

func (*ManagedResource) SetAdministratorsId

func (o *ManagedResource) SetAdministratorsId(v string)

SetAdministratorsId gets a reference to the given NullableString and assigns it to the AdministratorsId field.

func (*ManagedResource) SetAdministratorsIdNil

func (o *ManagedResource) SetAdministratorsIdNil()

SetAdministratorsIdNil sets the value for AdministratorsId to be an explicit nil

func (*ManagedResource) SetArchiveDeadline

func (o *ManagedResource) SetArchiveDeadline(v time.Time)

SetArchiveDeadline gets a reference to the given NullableTime and assigns it to the ArchiveDeadline field.

func (*ManagedResource) SetArchiveDeadlineNil

func (o *ManagedResource) SetArchiveDeadlineNil()

SetArchiveDeadlineNil sets the value for ArchiveDeadline to be an explicit nil

func (*ManagedResource) SetAutoReassign

func (o *ManagedResource) SetAutoReassign(v bool)

SetAutoReassign gets a reference to the given bool and assigns it to the AutoReassign field.

func (*ManagedResource) SetBlocked

func (o *ManagedResource) SetBlocked(v bool)

SetBlocked gets a reference to the given bool and assigns it to the Blocked field.

func (*ManagedResource) SetBlockingDeadline

func (o *ManagedResource) SetBlockingDeadline(v time.Time)

SetBlockingDeadline gets a reference to the given NullableTime and assigns it to the BlockingDeadline field.

func (*ManagedResource) SetBlockingDeadlineNil

func (o *ManagedResource) SetBlockingDeadlineNil()

SetBlockingDeadlineNil sets the value for BlockingDeadline to be an explicit nil

func (*ManagedResource) SetBlockingReason

func (o *ManagedResource) SetBlockingReason(v string)

SetBlockingReason gets a reference to the given NullableString and assigns it to the BlockingReason field.

func (*ManagedResource) SetBlockingReasonNil

func (o *ManagedResource) SetBlockingReasonNil()

SetBlockingReasonNil sets the value for BlockingReason to be an explicit nil

func (*ManagedResource) SetBlockingTime

func (o *ManagedResource) SetBlockingTime(v time.Time)

SetBlockingTime gets a reference to the given NullableTime and assigns it to the BlockingTime field.

func (*ManagedResource) SetBlockingTimeNil

func (o *ManagedResource) SetBlockingTimeNil()

SetBlockingTimeNil sets the value for BlockingTime to be an explicit nil

func (*ManagedResource) SetCreationTime

func (o *ManagedResource) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*ManagedResource) SetDeleteDeadline

func (o *ManagedResource) SetDeleteDeadline(v time.Time)

SetDeleteDeadline gets a reference to the given NullableTime and assigns it to the DeleteDeadline field.

func (*ManagedResource) SetDeleteDeadlineNil

func (o *ManagedResource) SetDeleteDeadlineNil()

SetDeleteDeadlineNil sets the value for DeleteDeadline to be an explicit nil

func (*ManagedResource) SetDescription

func (o *ManagedResource) SetDescription(v string)

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

func (*ManagedResource) SetDescriptionNil

func (o *ManagedResource) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*ManagedResource) SetDisabled

func (o *ManagedResource) SetDisabled(v bool)

SetDisabled gets a reference to the given bool and assigns it to the Disabled field.

func (*ManagedResource) SetDisplayName

func (o *ManagedResource) SetDisplayName(v string)

SetDisplayName sets field value

func (*ManagedResource) SetExpirationDeadline

func (o *ManagedResource) SetExpirationDeadline(v time.Time)

SetExpirationDeadline gets a reference to the given NullableTime and assigns it to the ExpirationDeadline field. Deprecated

func (*ManagedResource) SetExpirationDeadlineNil

func (o *ManagedResource) SetExpirationDeadlineNil()

SetExpirationDeadlineNil sets the value for ExpirationDeadline to be an explicit nil

func (*ManagedResource) SetId

func (o *ManagedResource) SetId(v string)

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

func (*ManagedResource) SetIdNil

func (o *ManagedResource) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*ManagedResource) SetInternalState

func (o *ManagedResource) SetInternalState(v ResourceState)

SetInternalState gets a reference to the given ResourceState and assigns it to the InternalState field.

func (*ManagedResource) SetJsonSchemaId

func (o *ManagedResource) SetJsonSchemaId(v string)

SetJsonSchemaId gets a reference to the given string and assigns it to the JsonSchemaId field.

func (*ManagedResource) SetLastStateChangeTime

func (o *ManagedResource) SetLastStateChangeTime(v time.Time)

SetLastStateChangeTime gets a reference to the given NullableTime and assigns it to the LastStateChangeTime field.

func (*ManagedResource) SetLastStateChangeTimeNil

func (o *ManagedResource) SetLastStateChangeTimeNil()

SetLastStateChangeTimeNil sets the value for LastStateChangeTime to be an explicit nil

func (*ManagedResource) SetManagedResourceType

func (o *ManagedResource) SetManagedResourceType(v string)

SetManagedResourceType sets field value

func (*ManagedResource) SetOwner

func (o *ManagedResource) SetOwner(v Identity)

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

func (*ManagedResource) SetOwnerId

func (o *ManagedResource) SetOwnerId(v string)

SetOwnerId gets a reference to the given NullableString and assigns it to the OwnerId field.

func (*ManagedResource) SetOwnerIdNil

func (o *ManagedResource) SetOwnerIdNil()

SetOwnerIdNil sets the value for OwnerId to be an explicit nil

func (*ManagedResource) SetPendingAction

func (o *ManagedResource) SetPendingAction(v bool)

SetPendingAction gets a reference to the given bool and assigns it to the PendingAction field. Deprecated

func (*ManagedResource) SetReassignable

func (o *ManagedResource) SetReassignable(v bool)

SetReassignable gets a reference to the given bool and assigns it to the Reassignable field.

func (*ManagedResource) SetResourceCategory

func (o *ManagedResource) SetResourceCategory(v ResourceCategory)

SetResourceCategory gets a reference to the given ResourceCategory and assigns it to the ResourceCategory field.

func (*ManagedResource) SetResourceIdentifier

func (o *ManagedResource) SetResourceIdentifier(v string)

SetResourceIdentifier sets field value

func (*ManagedResource) SetSecurityIssues

func (o *ManagedResource) SetSecurityIssues(v bool)

SetSecurityIssues gets a reference to the given bool and assigns it to the SecurityIssues field.

func (*ManagedResource) SetState

func (o *ManagedResource) SetState(v ResourceState)

SetState gets a reference to the given ResourceState and assigns it to the State field.

func (*ManagedResource) SetValidityLimit

func (o *ManagedResource) SetValidityLimit(v time.Time)

SetValidityLimit gets a reference to the given NullableTime and assigns it to the ValidityLimit field.

func (*ManagedResource) SetValidityLimitNil

func (o *ManagedResource) SetValidityLimitNil()

SetValidityLimitNil sets the value for ValidityLimit to be an explicit nil

func (ManagedResource) ToMap

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

func (*ManagedResource) UnmarshalJSON

func (o *ManagedResource) UnmarshalJSON(data []byte) (err error)

func (*ManagedResource) UnsetAdministratorsId

func (o *ManagedResource) UnsetAdministratorsId()

UnsetAdministratorsId ensures that no value is present for AdministratorsId, not even an explicit nil

func (*ManagedResource) UnsetArchiveDeadline

func (o *ManagedResource) UnsetArchiveDeadline()

UnsetArchiveDeadline ensures that no value is present for ArchiveDeadline, not even an explicit nil

func (*ManagedResource) UnsetBlockingDeadline

func (o *ManagedResource) UnsetBlockingDeadline()

UnsetBlockingDeadline ensures that no value is present for BlockingDeadline, not even an explicit nil

func (*ManagedResource) UnsetBlockingReason

func (o *ManagedResource) UnsetBlockingReason()

UnsetBlockingReason ensures that no value is present for BlockingReason, not even an explicit nil

func (*ManagedResource) UnsetBlockingTime

func (o *ManagedResource) UnsetBlockingTime()

UnsetBlockingTime ensures that no value is present for BlockingTime, not even an explicit nil

func (*ManagedResource) UnsetDeleteDeadline

func (o *ManagedResource) UnsetDeleteDeadline()

UnsetDeleteDeadline ensures that no value is present for DeleteDeadline, not even an explicit nil

func (*ManagedResource) UnsetDescription

func (o *ManagedResource) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*ManagedResource) UnsetExpirationDeadline

func (o *ManagedResource) UnsetExpirationDeadline()

UnsetExpirationDeadline ensures that no value is present for ExpirationDeadline, not even an explicit nil

func (*ManagedResource) UnsetId

func (o *ManagedResource) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*ManagedResource) UnsetLastStateChangeTime

func (o *ManagedResource) UnsetLastStateChangeTime()

UnsetLastStateChangeTime ensures that no value is present for LastStateChangeTime, not even an explicit nil

func (*ManagedResource) UnsetOwnerId

func (o *ManagedResource) UnsetOwnerId()

UnsetOwnerId ensures that no value is present for OwnerId, not even an explicit nil

func (*ManagedResource) UnsetValidityLimit

func (o *ManagedResource) UnsetValidityLimit()

UnsetValidityLimit ensures that no value is present for ValidityLimit, not even an explicit nil

type ManagedResourceEnumerateEnvelope

type ManagedResourceEnumerateEnvelope struct {
	Pagination *Pagination       `json:"pagination,omitempty"`
	Delta      *Delta            `json:"delta,omitempty"`
	RequestId  NullableString    `json:"request_id,omitempty"`
	Message    NullableString    `json:"message,omitempty"`
	Data       []ManagedResource `json:"data,omitempty"`
}

ManagedResourceEnumerateEnvelope struct for ManagedResourceEnumerateEnvelope

func NewManagedResourceEnumerateEnvelope

func NewManagedResourceEnumerateEnvelope() *ManagedResourceEnumerateEnvelope

NewManagedResourceEnumerateEnvelope instantiates a new ManagedResourceEnumerateEnvelope 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 NewManagedResourceEnumerateEnvelopeWithDefaults

func NewManagedResourceEnumerateEnvelopeWithDefaults() *ManagedResourceEnumerateEnvelope

NewManagedResourceEnumerateEnvelopeWithDefaults instantiates a new ManagedResourceEnumerateEnvelope 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 (*ManagedResourceEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*ManagedResourceEnumerateEnvelope) GetDeltaOk

func (o *ManagedResourceEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

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

func (*ManagedResourceEnumerateEnvelope) GetMessage

func (o *ManagedResourceEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceEnumerateEnvelope) GetMessageOk

func (o *ManagedResourceEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceEnumerateEnvelope) GetPagination

func (o *ManagedResourceEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ManagedResourceEnumerateEnvelope) GetPaginationOk

func (o *ManagedResourceEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

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

func (*ManagedResourceEnumerateEnvelope) GetRequestId

func (o *ManagedResourceEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceEnumerateEnvelope) GetRequestIdOk

func (o *ManagedResourceEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*ManagedResourceEnumerateEnvelope) HasDelta

func (o *ManagedResourceEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*ManagedResourceEnumerateEnvelope) HasMessage

func (o *ManagedResourceEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ManagedResourceEnumerateEnvelope) HasPagination

func (o *ManagedResourceEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*ManagedResourceEnumerateEnvelope) HasRequestId

func (o *ManagedResourceEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (ManagedResourceEnumerateEnvelope) MarshalJSON

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

func (*ManagedResourceEnumerateEnvelope) SetData

SetData gets a reference to the given []ManagedResource and assigns it to the Data field.

func (*ManagedResourceEnumerateEnvelope) SetDelta

func (o *ManagedResourceEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*ManagedResourceEnumerateEnvelope) SetMessage

func (o *ManagedResourceEnumerateEnvelope) SetMessage(v string)

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

func (*ManagedResourceEnumerateEnvelope) SetMessageNil

func (o *ManagedResourceEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ManagedResourceEnumerateEnvelope) SetPagination

func (o *ManagedResourceEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*ManagedResourceEnumerateEnvelope) SetRequestId

func (o *ManagedResourceEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ManagedResourceEnumerateEnvelope) SetRequestIdNil

func (o *ManagedResourceEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ManagedResourceEnumerateEnvelope) ToMap

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

func (*ManagedResourceEnumerateEnvelope) UnsetMessage

func (o *ManagedResourceEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ManagedResourceEnumerateEnvelope) UnsetRequestId

func (o *ManagedResourceEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ManagedResourceEnvelope

type ManagedResourceEnvelope struct {
	RequestId NullableString   `json:"request_id,omitempty"`
	Message   NullableString   `json:"message,omitempty"`
	Data      *ManagedResource `json:"data,omitempty"`
}

ManagedResourceEnvelope struct for ManagedResourceEnvelope

func NewManagedResourceEnvelope

func NewManagedResourceEnvelope() *ManagedResourceEnvelope

NewManagedResourceEnvelope instantiates a new ManagedResourceEnvelope 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 NewManagedResourceEnvelopeWithDefaults

func NewManagedResourceEnvelopeWithDefaults() *ManagedResourceEnvelope

NewManagedResourceEnvelopeWithDefaults instantiates a new ManagedResourceEnvelope 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 (*ManagedResourceEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ManagedResourceEnvelope) GetDataOk

func (o *ManagedResourceEnvelope) GetDataOk() (*ManagedResource, bool)

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

func (*ManagedResourceEnvelope) GetMessage

func (o *ManagedResourceEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceEnvelope) GetMessageOk

func (o *ManagedResourceEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceEnvelope) GetRequestId

func (o *ManagedResourceEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceEnvelope) GetRequestIdOk

func (o *ManagedResourceEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceEnvelope) HasData

func (o *ManagedResourceEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*ManagedResourceEnvelope) HasMessage

func (o *ManagedResourceEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ManagedResourceEnvelope) HasRequestId

func (o *ManagedResourceEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (ManagedResourceEnvelope) MarshalJSON

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

func (*ManagedResourceEnvelope) SetData

SetData gets a reference to the given ManagedResource and assigns it to the Data field.

func (*ManagedResourceEnvelope) SetMessage

func (o *ManagedResourceEnvelope) SetMessage(v string)

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

func (*ManagedResourceEnvelope) SetMessageNil

func (o *ManagedResourceEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ManagedResourceEnvelope) SetRequestId

func (o *ManagedResourceEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ManagedResourceEnvelope) SetRequestIdNil

func (o *ManagedResourceEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ManagedResourceEnvelope) ToMap

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

func (*ManagedResourceEnvelope) UnsetMessage

func (o *ManagedResourceEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ManagedResourceEnvelope) UnsetRequestId

func (o *ManagedResourceEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type ManagedResourceType

type ManagedResourceType struct {
	ResourceTypeName    string         `json:"resourceTypeName"`
	BlockGracePeriod    NullableInt32  `json:"blockGracePeriod,omitempty"`
	ArchiveGracePeriod  NullableInt32  `json:"archiveGracePeriod,omitempty"`
	DeleteGracePeriod   NullableInt32  `json:"deleteGracePeriod,omitempty"`
	LifecycleSettingsId *string        `json:"lifecycleSettingsId,omitempty"`
	InitialState        *ResourceState `json:"initialState,omitempty"`
	Id                  NullableString `json:"id,omitempty"`
	CreationTime        *time.Time     `json:"creationTime,omitempty"`
}

ManagedResourceType struct for ManagedResourceType

func NewManagedResourceType

func NewManagedResourceType(resourceTypeName string) *ManagedResourceType

NewManagedResourceType instantiates a new ManagedResourceType 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 NewManagedResourceTypeWithDefaults

func NewManagedResourceTypeWithDefaults() *ManagedResourceType

NewManagedResourceTypeWithDefaults instantiates a new ManagedResourceType 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 (*ManagedResourceType) GetArchiveGracePeriod

func (o *ManagedResourceType) GetArchiveGracePeriod() int32

GetArchiveGracePeriod returns the ArchiveGracePeriod field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceType) GetArchiveGracePeriodOk

func (o *ManagedResourceType) GetArchiveGracePeriodOk() (*int32, bool)

GetArchiveGracePeriodOk returns a tuple with the ArchiveGracePeriod field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceType) GetBlockGracePeriod

func (o *ManagedResourceType) GetBlockGracePeriod() int32

GetBlockGracePeriod returns the BlockGracePeriod field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceType) GetBlockGracePeriodOk

func (o *ManagedResourceType) GetBlockGracePeriodOk() (*int32, bool)

GetBlockGracePeriodOk returns a tuple with the BlockGracePeriod field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceType) GetCreationTime

func (o *ManagedResourceType) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*ManagedResourceType) GetCreationTimeOk

func (o *ManagedResourceType) GetCreationTimeOk() (*time.Time, bool)

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

func (*ManagedResourceType) GetDeleteGracePeriod

func (o *ManagedResourceType) GetDeleteGracePeriod() int32

GetDeleteGracePeriod returns the DeleteGracePeriod field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceType) GetDeleteGracePeriodOk

func (o *ManagedResourceType) GetDeleteGracePeriodOk() (*int32, bool)

GetDeleteGracePeriodOk returns a tuple with the DeleteGracePeriod field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceType) GetId

func (o *ManagedResourceType) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ManagedResourceType) GetIdOk

func (o *ManagedResourceType) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ManagedResourceType) GetInitialState

func (o *ManagedResourceType) GetInitialState() ResourceState

GetInitialState returns the InitialState field value if set, zero value otherwise.

func (*ManagedResourceType) GetInitialStateOk

func (o *ManagedResourceType) GetInitialStateOk() (*ResourceState, bool)

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

func (*ManagedResourceType) GetLifecycleSettingsId

func (o *ManagedResourceType) GetLifecycleSettingsId() string

GetLifecycleSettingsId returns the LifecycleSettingsId field value if set, zero value otherwise.

func (*ManagedResourceType) GetLifecycleSettingsIdOk

func (o *ManagedResourceType) GetLifecycleSettingsIdOk() (*string, bool)

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

func (*ManagedResourceType) GetResourceTypeName

func (o *ManagedResourceType) GetResourceTypeName() string

GetResourceTypeName returns the ResourceTypeName field value

func (*ManagedResourceType) GetResourceTypeNameOk

func (o *ManagedResourceType) GetResourceTypeNameOk() (*string, bool)

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

func (*ManagedResourceType) HasArchiveGracePeriod

func (o *ManagedResourceType) HasArchiveGracePeriod() bool

HasArchiveGracePeriod returns a boolean if a field has been set.

func (*ManagedResourceType) HasBlockGracePeriod

func (o *ManagedResourceType) HasBlockGracePeriod() bool

HasBlockGracePeriod returns a boolean if a field has been set.

func (*ManagedResourceType) HasCreationTime

func (o *ManagedResourceType) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*ManagedResourceType) HasDeleteGracePeriod

func (o *ManagedResourceType) HasDeleteGracePeriod() bool

HasDeleteGracePeriod returns a boolean if a field has been set.

func (*ManagedResourceType) HasId

func (o *ManagedResourceType) HasId() bool

HasId returns a boolean if a field has been set.

func (*ManagedResourceType) HasInitialState

func (o *ManagedResourceType) HasInitialState() bool

HasInitialState returns a boolean if a field has been set.

func (*ManagedResourceType) HasLifecycleSettingsId

func (o *ManagedResourceType) HasLifecycleSettingsId() bool

HasLifecycleSettingsId returns a boolean if a field has been set.

func (ManagedResourceType) MarshalJSON

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

func (*ManagedResourceType) SetArchiveGracePeriod

func (o *ManagedResourceType) SetArchiveGracePeriod(v int32)

SetArchiveGracePeriod gets a reference to the given NullableInt32 and assigns it to the ArchiveGracePeriod field.

func (*ManagedResourceType) SetArchiveGracePeriodNil

func (o *ManagedResourceType) SetArchiveGracePeriodNil()

SetArchiveGracePeriodNil sets the value for ArchiveGracePeriod to be an explicit nil

func (*ManagedResourceType) SetBlockGracePeriod

func (o *ManagedResourceType) SetBlockGracePeriod(v int32)

SetBlockGracePeriod gets a reference to the given NullableInt32 and assigns it to the BlockGracePeriod field.

func (*ManagedResourceType) SetBlockGracePeriodNil

func (o *ManagedResourceType) SetBlockGracePeriodNil()

SetBlockGracePeriodNil sets the value for BlockGracePeriod to be an explicit nil

func (*ManagedResourceType) SetCreationTime

func (o *ManagedResourceType) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*ManagedResourceType) SetDeleteGracePeriod

func (o *ManagedResourceType) SetDeleteGracePeriod(v int32)

SetDeleteGracePeriod gets a reference to the given NullableInt32 and assigns it to the DeleteGracePeriod field.

func (*ManagedResourceType) SetDeleteGracePeriodNil

func (o *ManagedResourceType) SetDeleteGracePeriodNil()

SetDeleteGracePeriodNil sets the value for DeleteGracePeriod to be an explicit nil

func (*ManagedResourceType) SetId

func (o *ManagedResourceType) SetId(v string)

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

func (*ManagedResourceType) SetIdNil

func (o *ManagedResourceType) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*ManagedResourceType) SetInitialState

func (o *ManagedResourceType) SetInitialState(v ResourceState)

SetInitialState gets a reference to the given ResourceState and assigns it to the InitialState field.

func (*ManagedResourceType) SetLifecycleSettingsId

func (o *ManagedResourceType) SetLifecycleSettingsId(v string)

SetLifecycleSettingsId gets a reference to the given string and assigns it to the LifecycleSettingsId field.

func (*ManagedResourceType) SetResourceTypeName

func (o *ManagedResourceType) SetResourceTypeName(v string)

SetResourceTypeName sets field value

func (ManagedResourceType) ToMap

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

func (*ManagedResourceType) UnmarshalJSON

func (o *ManagedResourceType) UnmarshalJSON(data []byte) (err error)

func (*ManagedResourceType) UnsetArchiveGracePeriod

func (o *ManagedResourceType) UnsetArchiveGracePeriod()

UnsetArchiveGracePeriod ensures that no value is present for ArchiveGracePeriod, not even an explicit nil

func (*ManagedResourceType) UnsetBlockGracePeriod

func (o *ManagedResourceType) UnsetBlockGracePeriod()

UnsetBlockGracePeriod ensures that no value is present for BlockGracePeriod, not even an explicit nil

func (*ManagedResourceType) UnsetDeleteGracePeriod

func (o *ManagedResourceType) UnsetDeleteGracePeriod()

UnsetDeleteGracePeriod ensures that no value is present for DeleteGracePeriod, not even an explicit nil

func (*ManagedResourceType) UnsetId

func (o *ManagedResourceType) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

type MappedNullable

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

type MfaMethodSettings

type MfaMethodSettings struct {
	Enabled                *bool          `json:"enabled,omitempty"`
	InitializationRequired *bool          `json:"initialization_required,omitempty"`
	CredentialId           NullableString `json:"credential_id,omitempty"`
	Preferred              *bool          `json:"preferred,omitempty"`
	Text                   NullableString `json:"text,omitempty"`
}

MfaMethodSettings struct for MfaMethodSettings

func NewMfaMethodSettings

func NewMfaMethodSettings() *MfaMethodSettings

NewMfaMethodSettings instantiates a new MfaMethodSettings 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 NewMfaMethodSettingsWithDefaults

func NewMfaMethodSettingsWithDefaults() *MfaMethodSettings

NewMfaMethodSettingsWithDefaults instantiates a new MfaMethodSettings 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 (*MfaMethodSettings) GetCredentialId

func (o *MfaMethodSettings) GetCredentialId() string

GetCredentialId returns the CredentialId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MfaMethodSettings) GetCredentialIdOk

func (o *MfaMethodSettings) GetCredentialIdOk() (*string, bool)

GetCredentialIdOk returns a tuple with the CredentialId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MfaMethodSettings) GetEnabled

func (o *MfaMethodSettings) GetEnabled() bool

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

func (*MfaMethodSettings) GetEnabledOk

func (o *MfaMethodSettings) GetEnabledOk() (*bool, bool)

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 (*MfaMethodSettings) GetInitializationRequired

func (o *MfaMethodSettings) GetInitializationRequired() bool

GetInitializationRequired returns the InitializationRequired field value if set, zero value otherwise.

func (*MfaMethodSettings) GetInitializationRequiredOk

func (o *MfaMethodSettings) GetInitializationRequiredOk() (*bool, bool)

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

func (*MfaMethodSettings) GetPreferred

func (o *MfaMethodSettings) GetPreferred() bool

GetPreferred returns the Preferred field value if set, zero value otherwise.

func (*MfaMethodSettings) GetPreferredOk

func (o *MfaMethodSettings) GetPreferredOk() (*bool, bool)

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

func (*MfaMethodSettings) GetText

func (o *MfaMethodSettings) GetText() string

GetText returns the Text field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MfaMethodSettings) GetTextOk

func (o *MfaMethodSettings) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MfaMethodSettings) HasCredentialId

func (o *MfaMethodSettings) HasCredentialId() bool

HasCredentialId returns a boolean if a field has been set.

func (*MfaMethodSettings) HasEnabled

func (o *MfaMethodSettings) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*MfaMethodSettings) HasInitializationRequired

func (o *MfaMethodSettings) HasInitializationRequired() bool

HasInitializationRequired returns a boolean if a field has been set.

func (*MfaMethodSettings) HasPreferred

func (o *MfaMethodSettings) HasPreferred() bool

HasPreferred returns a boolean if a field has been set.

func (*MfaMethodSettings) HasText

func (o *MfaMethodSettings) HasText() bool

HasText returns a boolean if a field has been set.

func (MfaMethodSettings) MarshalJSON

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

func (*MfaMethodSettings) SetCredentialId

func (o *MfaMethodSettings) SetCredentialId(v string)

SetCredentialId gets a reference to the given NullableString and assigns it to the CredentialId field.

func (*MfaMethodSettings) SetCredentialIdNil

func (o *MfaMethodSettings) SetCredentialIdNil()

SetCredentialIdNil sets the value for CredentialId to be an explicit nil

func (*MfaMethodSettings) SetEnabled

func (o *MfaMethodSettings) SetEnabled(v bool)

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

func (*MfaMethodSettings) SetInitializationRequired

func (o *MfaMethodSettings) SetInitializationRequired(v bool)

SetInitializationRequired gets a reference to the given bool and assigns it to the InitializationRequired field.

func (*MfaMethodSettings) SetPreferred

func (o *MfaMethodSettings) SetPreferred(v bool)

SetPreferred gets a reference to the given bool and assigns it to the Preferred field.

func (*MfaMethodSettings) SetText

func (o *MfaMethodSettings) SetText(v string)

SetText gets a reference to the given NullableString and assigns it to the Text field.

func (*MfaMethodSettings) SetTextNil

func (o *MfaMethodSettings) SetTextNil()

SetTextNil sets the value for Text to be an explicit nil

func (MfaMethodSettings) ToMap

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

func (*MfaMethodSettings) UnsetCredentialId

func (o *MfaMethodSettings) UnsetCredentialId()

UnsetCredentialId ensures that no value is present for CredentialId, not even an explicit nil

func (*MfaMethodSettings) UnsetText

func (o *MfaMethodSettings) UnsetText()

UnsetText ensures that no value is present for Text, not even an explicit nil

type MfaSettings

type MfaSettings struct {
	Otp      *MfaMethodSettings `json:"otp,omitempty"`
	Webauthn *MfaMethodSettings `json:"webauthn,omitempty"`
}

MfaSettings struct for MfaSettings

func NewMfaSettings

func NewMfaSettings() *MfaSettings

NewMfaSettings instantiates a new MfaSettings 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 NewMfaSettingsWithDefaults

func NewMfaSettingsWithDefaults() *MfaSettings

NewMfaSettingsWithDefaults instantiates a new MfaSettings 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 (*MfaSettings) GetOtp

func (o *MfaSettings) GetOtp() MfaMethodSettings

GetOtp returns the Otp field value if set, zero value otherwise.

func (*MfaSettings) GetOtpOk

func (o *MfaSettings) GetOtpOk() (*MfaMethodSettings, bool)

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

func (*MfaSettings) GetWebauthn

func (o *MfaSettings) GetWebauthn() MfaMethodSettings

GetWebauthn returns the Webauthn field value if set, zero value otherwise.

func (*MfaSettings) GetWebauthnOk

func (o *MfaSettings) GetWebauthnOk() (*MfaMethodSettings, bool)

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

func (*MfaSettings) HasOtp

func (o *MfaSettings) HasOtp() bool

HasOtp returns a boolean if a field has been set.

func (*MfaSettings) HasWebauthn

func (o *MfaSettings) HasWebauthn() bool

HasWebauthn returns a boolean if a field has been set.

func (MfaSettings) MarshalJSON

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

func (*MfaSettings) SetOtp

func (o *MfaSettings) SetOtp(v MfaMethodSettings)

SetOtp gets a reference to the given MfaMethodSettings and assigns it to the Otp field.

func (*MfaSettings) SetWebauthn

func (o *MfaSettings) SetWebauthn(v MfaMethodSettings)

SetWebauthn gets a reference to the given MfaMethodSettings and assigns it to the Webauthn field.

func (MfaSettings) ToMap

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

type NullableAccount

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

func NewNullableAccount

func NewNullableAccount(val *Account) *NullableAccount

func (NullableAccount) Get

func (v NullableAccount) Get() *Account

func (NullableAccount) IsSet

func (v NullableAccount) IsSet() bool

func (NullableAccount) MarshalJSON

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

func (*NullableAccount) Set

func (v *NullableAccount) Set(val *Account)

func (*NullableAccount) UnmarshalJSON

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

func (*NullableAccount) Unset

func (v *NullableAccount) Unset()

type NullableAccountEnumerateEnvelope

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

func NewNullableAccountEnumerateEnvelope

func NewNullableAccountEnumerateEnvelope(val *AccountEnumerateEnvelope) *NullableAccountEnumerateEnvelope

func (NullableAccountEnumerateEnvelope) Get

func (NullableAccountEnumerateEnvelope) IsSet

func (NullableAccountEnumerateEnvelope) MarshalJSON

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

func (*NullableAccountEnumerateEnvelope) Set

func (*NullableAccountEnumerateEnvelope) UnmarshalJSON

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

func (*NullableAccountEnumerateEnvelope) Unset

type NullableAccountEnvelope

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

func NewNullableAccountEnvelope

func NewNullableAccountEnvelope(val *AccountEnvelope) *NullableAccountEnvelope

func (NullableAccountEnvelope) Get

func (NullableAccountEnvelope) IsSet

func (v NullableAccountEnvelope) IsSet() bool

func (NullableAccountEnvelope) MarshalJSON

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

func (*NullableAccountEnvelope) Set

func (*NullableAccountEnvelope) UnmarshalJSON

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

func (*NullableAccountEnvelope) Unset

func (v *NullableAccountEnvelope) Unset()

type NullableAccountProvider

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

func NewNullableAccountProvider

func NewNullableAccountProvider(val *AccountProvider) *NullableAccountProvider

func (NullableAccountProvider) Get

func (NullableAccountProvider) IsSet

func (v NullableAccountProvider) IsSet() bool

func (NullableAccountProvider) MarshalJSON

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

func (*NullableAccountProvider) Set

func (*NullableAccountProvider) UnmarshalJSON

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

func (*NullableAccountProvider) Unset

func (v *NullableAccountProvider) Unset()

type NullableAccountProviderEnumerateEnvelope

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

func NewNullableAccountProviderEnumerateEnvelope

func NewNullableAccountProviderEnumerateEnvelope(val *AccountProviderEnumerateEnvelope) *NullableAccountProviderEnumerateEnvelope

func (NullableAccountProviderEnumerateEnvelope) Get

func (NullableAccountProviderEnumerateEnvelope) IsSet

func (NullableAccountProviderEnumerateEnvelope) MarshalJSON

func (*NullableAccountProviderEnumerateEnvelope) Set

func (*NullableAccountProviderEnumerateEnvelope) UnmarshalJSON

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

func (*NullableAccountProviderEnumerateEnvelope) Unset

type NullableAccountScope

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

func NewNullableAccountScope

func NewNullableAccountScope(val *AccountScope) *NullableAccountScope

func (NullableAccountScope) Get

func (NullableAccountScope) IsSet

func (v NullableAccountScope) IsSet() bool

func (NullableAccountScope) MarshalJSON

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

func (*NullableAccountScope) Set

func (v *NullableAccountScope) Set(val *AccountScope)

func (*NullableAccountScope) UnmarshalJSON

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

func (*NullableAccountScope) Unset

func (v *NullableAccountScope) Unset()

type NullableAccountScopeAssignment

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

func NewNullableAccountScopeAssignment

func NewNullableAccountScopeAssignment(val *AccountScopeAssignment) *NullableAccountScopeAssignment

func (NullableAccountScopeAssignment) Get

func (NullableAccountScopeAssignment) IsSet

func (NullableAccountScopeAssignment) MarshalJSON

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

func (*NullableAccountScopeAssignment) Set

func (*NullableAccountScopeAssignment) UnmarshalJSON

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

func (*NullableAccountScopeAssignment) Unset

func (v *NullableAccountScopeAssignment) Unset()

type NullableAccountScopeAssignmentEnumerateEnvelope

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

func NewNullableAccountScopeAssignmentEnumerateEnvelope

func NewNullableAccountScopeAssignmentEnumerateEnvelope(val *AccountScopeAssignmentEnumerateEnvelope) *NullableAccountScopeAssignmentEnumerateEnvelope

func (NullableAccountScopeAssignmentEnumerateEnvelope) Get

func (NullableAccountScopeAssignmentEnumerateEnvelope) IsSet

func (NullableAccountScopeAssignmentEnumerateEnvelope) MarshalJSON

func (*NullableAccountScopeAssignmentEnumerateEnvelope) Set

func (*NullableAccountScopeAssignmentEnumerateEnvelope) UnmarshalJSON

func (*NullableAccountScopeAssignmentEnumerateEnvelope) Unset

type NullableAccountScopeAssignmentEnvelope

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

func NewNullableAccountScopeAssignmentEnvelope

func NewNullableAccountScopeAssignmentEnvelope(val *AccountScopeAssignmentEnvelope) *NullableAccountScopeAssignmentEnvelope

func (NullableAccountScopeAssignmentEnvelope) Get

func (NullableAccountScopeAssignmentEnvelope) IsSet

func (NullableAccountScopeAssignmentEnvelope) MarshalJSON

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

func (*NullableAccountScopeAssignmentEnvelope) Set

func (*NullableAccountScopeAssignmentEnvelope) UnmarshalJSON

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

func (*NullableAccountScopeAssignmentEnvelope) Unset

type NullableAccountScopeEnumerateEnvelope

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

func NewNullableAccountScopeEnumerateEnvelope

func NewNullableAccountScopeEnumerateEnvelope(val *AccountScopeEnumerateEnvelope) *NullableAccountScopeEnumerateEnvelope

func (NullableAccountScopeEnumerateEnvelope) Get

func (NullableAccountScopeEnumerateEnvelope) IsSet

func (NullableAccountScopeEnumerateEnvelope) MarshalJSON

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

func (*NullableAccountScopeEnumerateEnvelope) Set

func (*NullableAccountScopeEnumerateEnvelope) UnmarshalJSON

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

func (*NullableAccountScopeEnumerateEnvelope) Unset

type NullableAccountScopeEnvelope

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

func NewNullableAccountScopeEnvelope

func NewNullableAccountScopeEnvelope(val *AccountScopeEnvelope) *NullableAccountScopeEnvelope

func (NullableAccountScopeEnvelope) Get

func (NullableAccountScopeEnvelope) IsSet

func (NullableAccountScopeEnvelope) MarshalJSON

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

func (*NullableAccountScopeEnvelope) Set

func (*NullableAccountScopeEnvelope) UnmarshalJSON

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

func (*NullableAccountScopeEnvelope) Unset

func (v *NullableAccountScopeEnvelope) Unset()

type NullableActivateOrBlockAccountResponse

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

func NewNullableActivateOrBlockAccountResponse

func NewNullableActivateOrBlockAccountResponse(val *ActivateOrBlockAccountResponse) *NullableActivateOrBlockAccountResponse

func (NullableActivateOrBlockAccountResponse) Get

func (NullableActivateOrBlockAccountResponse) IsSet

func (NullableActivateOrBlockAccountResponse) MarshalJSON

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

func (*NullableActivateOrBlockAccountResponse) Set

func (*NullableActivateOrBlockAccountResponse) UnmarshalJSON

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

func (*NullableActivateOrBlockAccountResponse) Unset

type NullableActivateOrBlockAccountResponseEnvelope

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

func NewNullableActivateOrBlockAccountResponseEnvelope

func NewNullableActivateOrBlockAccountResponseEnvelope(val *ActivateOrBlockAccountResponseEnvelope) *NullableActivateOrBlockAccountResponseEnvelope

func (NullableActivateOrBlockAccountResponseEnvelope) Get

func (NullableActivateOrBlockAccountResponseEnvelope) IsSet

func (NullableActivateOrBlockAccountResponseEnvelope) MarshalJSON

func (*NullableActivateOrBlockAccountResponseEnvelope) Set

func (*NullableActivateOrBlockAccountResponseEnvelope) UnmarshalJSON

func (*NullableActivateOrBlockAccountResponseEnvelope) Unset

type NullableActivateOrBlockIdentityResponse

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

func NewNullableActivateOrBlockIdentityResponse

func NewNullableActivateOrBlockIdentityResponse(val *ActivateOrBlockIdentityResponse) *NullableActivateOrBlockIdentityResponse

func (NullableActivateOrBlockIdentityResponse) Get

func (NullableActivateOrBlockIdentityResponse) IsSet

func (NullableActivateOrBlockIdentityResponse) MarshalJSON

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

func (*NullableActivateOrBlockIdentityResponse) Set

func (*NullableActivateOrBlockIdentityResponse) UnmarshalJSON

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

func (*NullableActivateOrBlockIdentityResponse) Unset

type NullableActivateOrBlockIdentityResponseEnvelope

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

func NewNullableActivateOrBlockIdentityResponseEnvelope

func NewNullableActivateOrBlockIdentityResponseEnvelope(val *ActivateOrBlockIdentityResponseEnvelope) *NullableActivateOrBlockIdentityResponseEnvelope

func (NullableActivateOrBlockIdentityResponseEnvelope) Get

func (NullableActivateOrBlockIdentityResponseEnvelope) IsSet

func (NullableActivateOrBlockIdentityResponseEnvelope) MarshalJSON

func (*NullableActivateOrBlockIdentityResponseEnvelope) Set

func (*NullableActivateOrBlockIdentityResponseEnvelope) UnmarshalJSON

func (*NullableActivateOrBlockIdentityResponseEnvelope) Unset

type NullableActivateOrBlockRequest

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

func NewNullableActivateOrBlockRequest

func NewNullableActivateOrBlockRequest(val *ActivateOrBlockRequest) *NullableActivateOrBlockRequest

func (NullableActivateOrBlockRequest) Get

func (NullableActivateOrBlockRequest) IsSet

func (NullableActivateOrBlockRequest) MarshalJSON

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

func (*NullableActivateOrBlockRequest) Set

func (*NullableActivateOrBlockRequest) UnmarshalJSON

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

func (*NullableActivateOrBlockRequest) Unset

func (v *NullableActivateOrBlockRequest) Unset()

type NullableAdministratorsAccess

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

func NewNullableAdministratorsAccess

func NewNullableAdministratorsAccess(val *AdministratorsAccess) *NullableAdministratorsAccess

func (NullableAdministratorsAccess) Get

func (NullableAdministratorsAccess) IsSet

func (NullableAdministratorsAccess) MarshalJSON

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

func (*NullableAdministratorsAccess) Set

func (*NullableAdministratorsAccess) UnmarshalJSON

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

func (*NullableAdministratorsAccess) Unset

func (v *NullableAdministratorsAccess) Unset()

type NullableApplication

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

func NewNullableApplication

func NewNullableApplication(val *Application) *NullableApplication

func (NullableApplication) Get

func (NullableApplication) IsSet

func (v NullableApplication) IsSet() bool

func (NullableApplication) MarshalJSON

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

func (*NullableApplication) Set

func (v *NullableApplication) Set(val *Application)

func (*NullableApplication) UnmarshalJSON

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

func (*NullableApplication) Unset

func (v *NullableApplication) Unset()

type NullableApplicationBlockingRequest

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

func NewNullableApplicationBlockingRequest

func NewNullableApplicationBlockingRequest(val *ApplicationBlockingRequest) *NullableApplicationBlockingRequest

func (NullableApplicationBlockingRequest) Get

func (NullableApplicationBlockingRequest) IsSet

func (NullableApplicationBlockingRequest) MarshalJSON

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

func (*NullableApplicationBlockingRequest) Set

func (*NullableApplicationBlockingRequest) UnmarshalJSON

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

func (*NullableApplicationBlockingRequest) Unset

type NullableApplicationEnumerateEnvelope

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

func NewNullableApplicationEnumerateEnvelope

func NewNullableApplicationEnumerateEnvelope(val *ApplicationEnumerateEnvelope) *NullableApplicationEnumerateEnvelope

func (NullableApplicationEnumerateEnvelope) Get

func (NullableApplicationEnumerateEnvelope) IsSet

func (NullableApplicationEnumerateEnvelope) MarshalJSON

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

func (*NullableApplicationEnumerateEnvelope) Set

func (*NullableApplicationEnumerateEnvelope) UnmarshalJSON

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

func (*NullableApplicationEnumerateEnvelope) Unset

type NullableApplicationEnvelope

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

func NewNullableApplicationEnvelope

func NewNullableApplicationEnvelope(val *ApplicationEnvelope) *NullableApplicationEnvelope

func (NullableApplicationEnvelope) Get

func (NullableApplicationEnvelope) IsSet

func (NullableApplicationEnvelope) MarshalJSON

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

func (*NullableApplicationEnvelope) Set

func (*NullableApplicationEnvelope) UnmarshalJSON

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

func (*NullableApplicationEnvelope) Unset

func (v *NullableApplicationEnvelope) Unset()

type NullableApplicationInfo

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

func NewNullableApplicationInfo

func NewNullableApplicationInfo(val *ApplicationInfo) *NullableApplicationInfo

func (NullableApplicationInfo) Get

func (NullableApplicationInfo) IsSet

func (v NullableApplicationInfo) IsSet() bool

func (NullableApplicationInfo) MarshalJSON

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

func (*NullableApplicationInfo) Set

func (*NullableApplicationInfo) UnmarshalJSON

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

func (*NullableApplicationInfo) Unset

func (v *NullableApplicationInfo) Unset()

type NullableApplicationRegistration

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

func NewNullableApplicationRegistration

func NewNullableApplicationRegistration(val *ApplicationRegistration) *NullableApplicationRegistration

func (NullableApplicationRegistration) Get

func (NullableApplicationRegistration) IsSet

func (NullableApplicationRegistration) MarshalJSON

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

func (*NullableApplicationRegistration) Set

func (*NullableApplicationRegistration) UnmarshalJSON

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

func (*NullableApplicationRegistration) Unset

type NullableApplicationRegistrationEnumerateEnvelope

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

func NewNullableApplicationRegistrationEnumerateEnvelope

func NewNullableApplicationRegistrationEnumerateEnvelope(val *ApplicationRegistrationEnumerateEnvelope) *NullableApplicationRegistrationEnumerateEnvelope

func (NullableApplicationRegistrationEnumerateEnvelope) Get

func (NullableApplicationRegistrationEnumerateEnvelope) IsSet

func (NullableApplicationRegistrationEnumerateEnvelope) MarshalJSON

func (*NullableApplicationRegistrationEnumerateEnvelope) Set

func (*NullableApplicationRegistrationEnumerateEnvelope) UnmarshalJSON

func (*NullableApplicationRegistrationEnumerateEnvelope) Unset

type NullableApplicationRegistrationEnvelope

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

func NewNullableApplicationRegistrationEnvelope

func NewNullableApplicationRegistrationEnvelope(val *ApplicationRegistrationEnvelope) *NullableApplicationRegistrationEnvelope

func (NullableApplicationRegistrationEnvelope) Get

func (NullableApplicationRegistrationEnvelope) IsSet

func (NullableApplicationRegistrationEnvelope) MarshalJSON

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

func (*NullableApplicationRegistrationEnvelope) Set

func (*NullableApplicationRegistrationEnvelope) UnmarshalJSON

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

func (*NullableApplicationRegistrationEnvelope) Unset

type NullableApplicationSubscriptionInformation

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

func NewNullableApplicationSubscriptionInformation

func NewNullableApplicationSubscriptionInformation(val *ApplicationSubscriptionInformation) *NullableApplicationSubscriptionInformation

func (NullableApplicationSubscriptionInformation) Get

func (NullableApplicationSubscriptionInformation) IsSet

func (NullableApplicationSubscriptionInformation) MarshalJSON

func (*NullableApplicationSubscriptionInformation) Set

func (*NullableApplicationSubscriptionInformation) UnmarshalJSON

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

func (*NullableApplicationSubscriptionInformation) Unset

type NullableApplicationSubscriptionInformationEnumerateEnvelope

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

func NewNullableApplicationSubscriptionInformationEnumerateEnvelope

func NewNullableApplicationSubscriptionInformationEnumerateEnvelope(val *ApplicationSubscriptionInformationEnumerateEnvelope) *NullableApplicationSubscriptionInformationEnumerateEnvelope

func (NullableApplicationSubscriptionInformationEnumerateEnvelope) Get

func (NullableApplicationSubscriptionInformationEnumerateEnvelope) IsSet

func (NullableApplicationSubscriptionInformationEnumerateEnvelope) MarshalJSON

func (*NullableApplicationSubscriptionInformationEnumerateEnvelope) Set

func (*NullableApplicationSubscriptionInformationEnumerateEnvelope) UnmarshalJSON

func (*NullableApplicationSubscriptionInformationEnumerateEnvelope) Unset

type NullableAssignment

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

func NewNullableAssignment

func NewNullableAssignment(val *Assignment) *NullableAssignment

func (NullableAssignment) Get

func (v NullableAssignment) Get() *Assignment

func (NullableAssignment) IsSet

func (v NullableAssignment) IsSet() bool

func (NullableAssignment) MarshalJSON

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

func (*NullableAssignment) Set

func (v *NullableAssignment) Set(val *Assignment)

func (*NullableAssignment) UnmarshalJSON

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

func (*NullableAssignment) Unset

func (v *NullableAssignment) Unset()

type NullableAssignmentEnumerateEnvelope

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

func NewNullableAssignmentEnumerateEnvelope

func NewNullableAssignmentEnumerateEnvelope(val *AssignmentEnumerateEnvelope) *NullableAssignmentEnumerateEnvelope

func (NullableAssignmentEnumerateEnvelope) Get

func (NullableAssignmentEnumerateEnvelope) IsSet

func (NullableAssignmentEnumerateEnvelope) MarshalJSON

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

func (*NullableAssignmentEnumerateEnvelope) Set

func (*NullableAssignmentEnumerateEnvelope) UnmarshalJSON

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

func (*NullableAssignmentEnumerateEnvelope) Unset

type NullableAssignmentEnvelope

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

func NewNullableAssignmentEnvelope

func NewNullableAssignmentEnvelope(val *AssignmentEnvelope) *NullableAssignmentEnvelope

func (NullableAssignmentEnvelope) Get

func (NullableAssignmentEnvelope) IsSet

func (v NullableAssignmentEnvelope) IsSet() bool

func (NullableAssignmentEnvelope) MarshalJSON

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

func (*NullableAssignmentEnvelope) Set

func (*NullableAssignmentEnvelope) UnmarshalJSON

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

func (*NullableAssignmentEnvelope) Unset

func (v *NullableAssignmentEnvelope) Unset()

type NullableAuditOperationDetails

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

func NewNullableAuditOperationDetails

func NewNullableAuditOperationDetails(val *AuditOperationDetails) *NullableAuditOperationDetails

func (NullableAuditOperationDetails) Get

func (NullableAuditOperationDetails) IsSet

func (NullableAuditOperationDetails) MarshalJSON

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

func (*NullableAuditOperationDetails) Set

func (*NullableAuditOperationDetails) UnmarshalJSON

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

func (*NullableAuditOperationDetails) Unset

func (v *NullableAuditOperationDetails) Unset()

type NullableAuditOperationDetailsEnvelope

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

func NewNullableAuditOperationDetailsEnvelope

func NewNullableAuditOperationDetailsEnvelope(val *AuditOperationDetailsEnvelope) *NullableAuditOperationDetailsEnvelope

func (NullableAuditOperationDetailsEnvelope) Get

func (NullableAuditOperationDetailsEnvelope) IsSet

func (NullableAuditOperationDetailsEnvelope) MarshalJSON

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

func (*NullableAuditOperationDetailsEnvelope) Set

func (*NullableAuditOperationDetailsEnvelope) UnmarshalJSON

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

func (*NullableAuditOperationDetailsEnvelope) Unset

type NullableAuthenticationProviderDescription

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

func NewNullableAuthenticationProviderDescription

func NewNullableAuthenticationProviderDescription(val *AuthenticationProviderDescription) *NullableAuthenticationProviderDescription

func (NullableAuthenticationProviderDescription) Get

func (NullableAuthenticationProviderDescription) IsSet

func (NullableAuthenticationProviderDescription) MarshalJSON

func (*NullableAuthenticationProviderDescription) Set

func (*NullableAuthenticationProviderDescription) UnmarshalJSON

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

func (*NullableAuthenticationProviderDescription) Unset

type NullableAuthenticationProviderDescriptionEnumerateEnvelope

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

func NewNullableAuthenticationProviderDescriptionEnumerateEnvelope

func NewNullableAuthenticationProviderDescriptionEnumerateEnvelope(val *AuthenticationProviderDescriptionEnumerateEnvelope) *NullableAuthenticationProviderDescriptionEnumerateEnvelope

func (NullableAuthenticationProviderDescriptionEnumerateEnvelope) Get

func (NullableAuthenticationProviderDescriptionEnumerateEnvelope) IsSet

func (NullableAuthenticationProviderDescriptionEnumerateEnvelope) MarshalJSON

func (*NullableAuthenticationProviderDescriptionEnumerateEnvelope) Set

func (*NullableAuthenticationProviderDescriptionEnumerateEnvelope) UnmarshalJSON

func (*NullableAuthenticationProviderDescriptionEnumerateEnvelope) Unset

type NullableAuthenticationProviderRegistration

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

func NewNullableAuthenticationProviderRegistration

func NewNullableAuthenticationProviderRegistration(val *AuthenticationProviderRegistration) *NullableAuthenticationProviderRegistration

func (NullableAuthenticationProviderRegistration) Get

func (NullableAuthenticationProviderRegistration) IsSet

func (NullableAuthenticationProviderRegistration) MarshalJSON

func (*NullableAuthenticationProviderRegistration) Set

func (*NullableAuthenticationProviderRegistration) UnmarshalJSON

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

func (*NullableAuthenticationProviderRegistration) Unset

type NullableAuthenticationProviderRegistrationEnumerateEnvelope

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

func NewNullableAuthenticationProviderRegistrationEnumerateEnvelope

func NewNullableAuthenticationProviderRegistrationEnumerateEnvelope(val *AuthenticationProviderRegistrationEnumerateEnvelope) *NullableAuthenticationProviderRegistrationEnumerateEnvelope

func (NullableAuthenticationProviderRegistrationEnumerateEnvelope) Get

func (NullableAuthenticationProviderRegistrationEnumerateEnvelope) IsSet

func (NullableAuthenticationProviderRegistrationEnumerateEnvelope) MarshalJSON

func (*NullableAuthenticationProviderRegistrationEnumerateEnvelope) Set

func (*NullableAuthenticationProviderRegistrationEnumerateEnvelope) UnmarshalJSON

func (*NullableAuthenticationProviderRegistrationEnumerateEnvelope) Unset

type NullableAuthenticationProviderRegistrationEnvelope

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

func NewNullableAuthenticationProviderRegistrationEnvelope

func NewNullableAuthenticationProviderRegistrationEnvelope(val *AuthenticationProviderRegistrationEnvelope) *NullableAuthenticationProviderRegistrationEnvelope

func (NullableAuthenticationProviderRegistrationEnvelope) Get

func (NullableAuthenticationProviderRegistrationEnvelope) IsSet

func (NullableAuthenticationProviderRegistrationEnvelope) MarshalJSON

func (*NullableAuthenticationProviderRegistrationEnvelope) Set

func (*NullableAuthenticationProviderRegistrationEnvelope) UnmarshalJSON

func (*NullableAuthenticationProviderRegistrationEnvelope) Unset

type NullableAuthorizationStatus

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

func NewNullableAuthorizationStatus

func NewNullableAuthorizationStatus(val *AuthorizationStatus) *NullableAuthorizationStatus

func (NullableAuthorizationStatus) Get

func (NullableAuthorizationStatus) IsSet

func (NullableAuthorizationStatus) MarshalJSON

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

func (*NullableAuthorizationStatus) Set

func (*NullableAuthorizationStatus) UnmarshalJSON

func (v *NullableAuthorizationStatus) UnmarshalJSON(src []byte) error

func (*NullableAuthorizationStatus) Unset

func (v *NullableAuthorizationStatus) 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 NullableCaptchaAnswer

type NullableCaptchaAnswer struct {
	// contains filtered or unexported fields
}

func NewNullableCaptchaAnswer

func NewNullableCaptchaAnswer(val *CaptchaAnswer) *NullableCaptchaAnswer

func (NullableCaptchaAnswer) Get

func (NullableCaptchaAnswer) IsSet

func (v NullableCaptchaAnswer) IsSet() bool

func (NullableCaptchaAnswer) MarshalJSON

func (v NullableCaptchaAnswer) MarshalJSON() ([]byte, error)

func (*NullableCaptchaAnswer) Set

func (v *NullableCaptchaAnswer) Set(val *CaptchaAnswer)

func (*NullableCaptchaAnswer) UnmarshalJSON

func (v *NullableCaptchaAnswer) UnmarshalJSON(src []byte) error

func (*NullableCaptchaAnswer) Unset

func (v *NullableCaptchaAnswer) Unset()

type NullableCaptchaResponse

type NullableCaptchaResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCaptchaResponse

func NewNullableCaptchaResponse(val *CaptchaResponse) *NullableCaptchaResponse

func (NullableCaptchaResponse) Get

func (NullableCaptchaResponse) IsSet

func (v NullableCaptchaResponse) IsSet() bool

func (NullableCaptchaResponse) MarshalJSON

func (v NullableCaptchaResponse) MarshalJSON() ([]byte, error)

func (*NullableCaptchaResponse) Set

func (*NullableCaptchaResponse) UnmarshalJSON

func (v *NullableCaptchaResponse) UnmarshalJSON(src []byte) error

func (*NullableCaptchaResponse) Unset

func (v *NullableCaptchaResponse) Unset()

type NullableCaptchaResponseEnvelope

type NullableCaptchaResponseEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableCaptchaResponseEnvelope

func NewNullableCaptchaResponseEnvelope(val *CaptchaResponseEnvelope) *NullableCaptchaResponseEnvelope

func (NullableCaptchaResponseEnvelope) Get

func (NullableCaptchaResponseEnvelope) IsSet

func (NullableCaptchaResponseEnvelope) MarshalJSON

func (v NullableCaptchaResponseEnvelope) MarshalJSON() ([]byte, error)

func (*NullableCaptchaResponseEnvelope) Set

func (*NullableCaptchaResponseEnvelope) UnmarshalJSON

func (v *NullableCaptchaResponseEnvelope) UnmarshalJSON(src []byte) error

func (*NullableCaptchaResponseEnvelope) Unset

type NullableCompleteSelfServiceResetRequest

type NullableCompleteSelfServiceResetRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCompleteSelfServiceResetRequest

func NewNullableCompleteSelfServiceResetRequest(val *CompleteSelfServiceResetRequest) *NullableCompleteSelfServiceResetRequest

func (NullableCompleteSelfServiceResetRequest) Get

func (NullableCompleteSelfServiceResetRequest) IsSet

func (NullableCompleteSelfServiceResetRequest) MarshalJSON

func (v NullableCompleteSelfServiceResetRequest) MarshalJSON() ([]byte, error)

func (*NullableCompleteSelfServiceResetRequest) Set

func (*NullableCompleteSelfServiceResetRequest) UnmarshalJSON

func (v *NullableCompleteSelfServiceResetRequest) UnmarshalJSON(src []byte) error

func (*NullableCompleteSelfServiceResetRequest) Unset

type NullableCriterion

type NullableCriterion struct {
	// contains filtered or unexported fields
}

func NewNullableCriterion

func NewNullableCriterion(val *Criterion) *NullableCriterion

func (NullableCriterion) Get

func (v NullableCriterion) Get() *Criterion

func (NullableCriterion) IsSet

func (v NullableCriterion) IsSet() bool

func (NullableCriterion) MarshalJSON

func (v NullableCriterion) MarshalJSON() ([]byte, error)

func (*NullableCriterion) Set

func (v *NullableCriterion) Set(val *Criterion)

func (*NullableCriterion) UnmarshalJSON

func (v *NullableCriterion) UnmarshalJSON(src []byte) error

func (*NullableCriterion) Unset

func (v *NullableCriterion) Unset()

type NullableCriterionEnumerateEnvelope

type NullableCriterionEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableCriterionEnumerateEnvelope

func NewNullableCriterionEnumerateEnvelope(val *CriterionEnumerateEnvelope) *NullableCriterionEnumerateEnvelope

func (NullableCriterionEnumerateEnvelope) Get

func (NullableCriterionEnumerateEnvelope) IsSet

func (NullableCriterionEnumerateEnvelope) MarshalJSON

func (v NullableCriterionEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableCriterionEnumerateEnvelope) Set

func (*NullableCriterionEnumerateEnvelope) UnmarshalJSON

func (v *NullableCriterionEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableCriterionEnumerateEnvelope) Unset

type NullableDeliveryFailureReportType

type NullableDeliveryFailureReportType struct {
	// contains filtered or unexported fields
}

func NewNullableDeliveryFailureReportType

func NewNullableDeliveryFailureReportType(val *DeliveryFailureReportType) *NullableDeliveryFailureReportType

func (NullableDeliveryFailureReportType) Get

func (NullableDeliveryFailureReportType) IsSet

func (NullableDeliveryFailureReportType) MarshalJSON

func (v NullableDeliveryFailureReportType) MarshalJSON() ([]byte, error)

func (*NullableDeliveryFailureReportType) Set

func (*NullableDeliveryFailureReportType) UnmarshalJSON

func (v *NullableDeliveryFailureReportType) UnmarshalJSON(src []byte) error

func (*NullableDeliveryFailureReportType) Unset

type NullableDelta

type NullableDelta struct {
	// contains filtered or unexported fields
}

func NewNullableDelta

func NewNullableDelta(val *Delta) *NullableDelta

func (NullableDelta) Get

func (v NullableDelta) Get() *Delta

func (NullableDelta) IsSet

func (v NullableDelta) IsSet() bool

func (NullableDelta) MarshalJSON

func (v NullableDelta) MarshalJSON() ([]byte, error)

func (*NullableDelta) Set

func (v *NullableDelta) Set(val *Delta)

func (*NullableDelta) UnmarshalJSON

func (v *NullableDelta) UnmarshalJSON(src []byte) error

func (*NullableDelta) Unset

func (v *NullableDelta) Unset()

type NullableDynamicGroupType

type NullableDynamicGroupType struct {
	// contains filtered or unexported fields
}

func NewNullableDynamicGroupType

func NewNullableDynamicGroupType(val *DynamicGroupType) *NullableDynamicGroupType

func (NullableDynamicGroupType) Get

func (NullableDynamicGroupType) IsSet

func (v NullableDynamicGroupType) IsSet() bool

func (NullableDynamicGroupType) MarshalJSON

func (v NullableDynamicGroupType) MarshalJSON() ([]byte, error)

func (*NullableDynamicGroupType) Set

func (*NullableDynamicGroupType) UnmarshalJSON

func (v *NullableDynamicGroupType) UnmarshalJSON(src []byte) error

func (*NullableDynamicGroupType) Unset

func (v *NullableDynamicGroupType) Unset()

type NullableExceptionActionResult

type NullableExceptionActionResult struct {
	// contains filtered or unexported fields
}

func NewNullableExceptionActionResult

func NewNullableExceptionActionResult(val *ExceptionActionResult) *NullableExceptionActionResult

func (NullableExceptionActionResult) Get

func (NullableExceptionActionResult) IsSet

func (NullableExceptionActionResult) MarshalJSON

func (v NullableExceptionActionResult) MarshalJSON() ([]byte, error)

func (*NullableExceptionActionResult) Set

func (*NullableExceptionActionResult) UnmarshalJSON

func (v *NullableExceptionActionResult) UnmarshalJSON(src []byte) error

func (*NullableExceptionActionResult) Unset

func (v *NullableExceptionActionResult) Unset()

type NullableExceptionInfo

type NullableExceptionInfo struct {
	// contains filtered or unexported fields
}

func NewNullableExceptionInfo

func NewNullableExceptionInfo(val *ExceptionInfo) *NullableExceptionInfo

func (NullableExceptionInfo) Get

func (NullableExceptionInfo) IsSet

func (v NullableExceptionInfo) IsSet() bool

func (NullableExceptionInfo) MarshalJSON

func (v NullableExceptionInfo) MarshalJSON() ([]byte, error)

func (*NullableExceptionInfo) Set

func (v *NullableExceptionInfo) Set(val *ExceptionInfo)

func (*NullableExceptionInfo) UnmarshalJSON

func (v *NullableExceptionInfo) UnmarshalJSON(src []byte) error

func (*NullableExceptionInfo) Unset

func (v *NullableExceptionInfo) 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 NullableGeneratedCaptcha

type NullableGeneratedCaptcha struct {
	// contains filtered or unexported fields
}

func NewNullableGeneratedCaptcha

func NewNullableGeneratedCaptcha(val *GeneratedCaptcha) *NullableGeneratedCaptcha

func (NullableGeneratedCaptcha) Get

func (NullableGeneratedCaptcha) IsSet

func (v NullableGeneratedCaptcha) IsSet() bool

func (NullableGeneratedCaptcha) MarshalJSON

func (v NullableGeneratedCaptcha) MarshalJSON() ([]byte, error)

func (*NullableGeneratedCaptcha) Set

func (*NullableGeneratedCaptcha) UnmarshalJSON

func (v *NullableGeneratedCaptcha) UnmarshalJSON(src []byte) error

func (*NullableGeneratedCaptcha) Unset

func (v *NullableGeneratedCaptcha) Unset()

type NullableGroup

type NullableGroup struct {
	// contains filtered or unexported fields
}

func NewNullableGroup

func NewNullableGroup(val *Group) *NullableGroup

func (NullableGroup) Get

func (v NullableGroup) Get() *Group

func (NullableGroup) IsSet

func (v NullableGroup) IsSet() bool

func (NullableGroup) MarshalJSON

func (v NullableGroup) MarshalJSON() ([]byte, error)

func (*NullableGroup) Set

func (v *NullableGroup) Set(val *Group)

func (*NullableGroup) UnmarshalJSON

func (v *NullableGroup) UnmarshalJSON(src []byte) error

func (*NullableGroup) Unset

func (v *NullableGroup) Unset()

type NullableGroupAuthorization

type NullableGroupAuthorization struct {
	// contains filtered or unexported fields
}

func NewNullableGroupAuthorization

func NewNullableGroupAuthorization(val *GroupAuthorization) *NullableGroupAuthorization

func (NullableGroupAuthorization) Get

func (NullableGroupAuthorization) IsSet

func (v NullableGroupAuthorization) IsSet() bool

func (NullableGroupAuthorization) MarshalJSON

func (v NullableGroupAuthorization) MarshalJSON() ([]byte, error)

func (*NullableGroupAuthorization) Set

func (*NullableGroupAuthorization) UnmarshalJSON

func (v *NullableGroupAuthorization) UnmarshalJSON(src []byte) error

func (*NullableGroupAuthorization) Unset

func (v *NullableGroupAuthorization) Unset()

type NullableGroupAuthorizationEnumerateEnvelope

type NullableGroupAuthorizationEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupAuthorizationEnumerateEnvelope

func NewNullableGroupAuthorizationEnumerateEnvelope(val *GroupAuthorizationEnumerateEnvelope) *NullableGroupAuthorizationEnumerateEnvelope

func (NullableGroupAuthorizationEnumerateEnvelope) Get

func (NullableGroupAuthorizationEnumerateEnvelope) IsSet

func (NullableGroupAuthorizationEnumerateEnvelope) MarshalJSON

func (*NullableGroupAuthorizationEnumerateEnvelope) Set

func (*NullableGroupAuthorizationEnumerateEnvelope) UnmarshalJSON

func (v *NullableGroupAuthorizationEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupAuthorizationEnumerateEnvelope) Unset

type NullableGroupAuthorizationEnvelope

type NullableGroupAuthorizationEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupAuthorizationEnvelope

func NewNullableGroupAuthorizationEnvelope(val *GroupAuthorizationEnvelope) *NullableGroupAuthorizationEnvelope

func (NullableGroupAuthorizationEnvelope) Get

func (NullableGroupAuthorizationEnvelope) IsSet

func (NullableGroupAuthorizationEnvelope) MarshalJSON

func (v NullableGroupAuthorizationEnvelope) MarshalJSON() ([]byte, error)

func (*NullableGroupAuthorizationEnvelope) Set

func (*NullableGroupAuthorizationEnvelope) UnmarshalJSON

func (v *NullableGroupAuthorizationEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupAuthorizationEnvelope) Unset

type NullableGroupEnumerateEnvelope

type NullableGroupEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupEnumerateEnvelope

func NewNullableGroupEnumerateEnvelope(val *GroupEnumerateEnvelope) *NullableGroupEnumerateEnvelope

func (NullableGroupEnumerateEnvelope) Get

func (NullableGroupEnumerateEnvelope) IsSet

func (NullableGroupEnumerateEnvelope) MarshalJSON

func (v NullableGroupEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableGroupEnumerateEnvelope) Set

func (*NullableGroupEnumerateEnvelope) UnmarshalJSON

func (v *NullableGroupEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupEnumerateEnvelope) Unset

func (v *NullableGroupEnumerateEnvelope) Unset()

type NullableGroupEnvelope

type NullableGroupEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupEnvelope

func NewNullableGroupEnvelope(val *GroupEnvelope) *NullableGroupEnvelope

func (NullableGroupEnvelope) Get

func (NullableGroupEnvelope) IsSet

func (v NullableGroupEnvelope) IsSet() bool

func (NullableGroupEnvelope) MarshalJSON

func (v NullableGroupEnvelope) MarshalJSON() ([]byte, error)

func (*NullableGroupEnvelope) Set

func (v *NullableGroupEnvelope) Set(val *GroupEnvelope)

func (*NullableGroupEnvelope) UnmarshalJSON

func (v *NullableGroupEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupEnvelope) Unset

func (v *NullableGroupEnvelope) Unset()

type NullableGroupInfo

type NullableGroupInfo struct {
	// contains filtered or unexported fields
}

func NewNullableGroupInfo

func NewNullableGroupInfo(val *GroupInfo) *NullableGroupInfo

func (NullableGroupInfo) Get

func (v NullableGroupInfo) Get() *GroupInfo

func (NullableGroupInfo) IsSet

func (v NullableGroupInfo) IsSet() bool

func (NullableGroupInfo) MarshalJSON

func (v NullableGroupInfo) MarshalJSON() ([]byte, error)

func (*NullableGroupInfo) Set

func (v *NullableGroupInfo) Set(val *GroupInfo)

func (*NullableGroupInfo) UnmarshalJSON

func (v *NullableGroupInfo) UnmarshalJSON(src []byte) error

func (*NullableGroupInfo) Unset

func (v *NullableGroupInfo) Unset()

type NullableGroupMailProperties

type NullableGroupMailProperties struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMailProperties

func NewNullableGroupMailProperties(val *GroupMailProperties) *NullableGroupMailProperties

func (NullableGroupMailProperties) Get

func (NullableGroupMailProperties) IsSet

func (NullableGroupMailProperties) MarshalJSON

func (v NullableGroupMailProperties) MarshalJSON() ([]byte, error)

func (*NullableGroupMailProperties) Set

func (*NullableGroupMailProperties) UnmarshalJSON

func (v *NullableGroupMailProperties) UnmarshalJSON(src []byte) error

func (*NullableGroupMailProperties) Unset

func (v *NullableGroupMailProperties) Unset()

type NullableGroupMailPropertiesEnumerateEnvelope

type NullableGroupMailPropertiesEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMailPropertiesEnumerateEnvelope

func NewNullableGroupMailPropertiesEnumerateEnvelope(val *GroupMailPropertiesEnumerateEnvelope) *NullableGroupMailPropertiesEnumerateEnvelope

func (NullableGroupMailPropertiesEnumerateEnvelope) Get

func (NullableGroupMailPropertiesEnumerateEnvelope) IsSet

func (NullableGroupMailPropertiesEnumerateEnvelope) MarshalJSON

func (*NullableGroupMailPropertiesEnumerateEnvelope) Set

func (*NullableGroupMailPropertiesEnumerateEnvelope) UnmarshalJSON

func (*NullableGroupMailPropertiesEnumerateEnvelope) Unset

type NullableGroupMailPropertiesEnvelope

type NullableGroupMailPropertiesEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMailPropertiesEnvelope

func NewNullableGroupMailPropertiesEnvelope(val *GroupMailPropertiesEnvelope) *NullableGroupMailPropertiesEnvelope

func (NullableGroupMailPropertiesEnvelope) Get

func (NullableGroupMailPropertiesEnvelope) IsSet

func (NullableGroupMailPropertiesEnvelope) MarshalJSON

func (v NullableGroupMailPropertiesEnvelope) MarshalJSON() ([]byte, error)

func (*NullableGroupMailPropertiesEnvelope) Set

func (*NullableGroupMailPropertiesEnvelope) UnmarshalJSON

func (v *NullableGroupMailPropertiesEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupMailPropertiesEnvelope) Unset

type NullableGroupMember

type NullableGroupMember struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMember

func NewNullableGroupMember(val *GroupMember) *NullableGroupMember

func (NullableGroupMember) Get

func (NullableGroupMember) IsSet

func (v NullableGroupMember) IsSet() bool

func (NullableGroupMember) MarshalJSON

func (v NullableGroupMember) MarshalJSON() ([]byte, error)

func (*NullableGroupMember) Set

func (v *NullableGroupMember) Set(val *GroupMember)

func (*NullableGroupMember) UnmarshalJSON

func (v *NullableGroupMember) UnmarshalJSON(src []byte) error

func (*NullableGroupMember) Unset

func (v *NullableGroupMember) Unset()

type NullableGroupMemberEnvelope

type NullableGroupMemberEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMemberEnvelope

func NewNullableGroupMemberEnvelope(val *GroupMemberEnvelope) *NullableGroupMemberEnvelope

func (NullableGroupMemberEnvelope) Get

func (NullableGroupMemberEnvelope) IsSet

func (NullableGroupMemberEnvelope) MarshalJSON

func (v NullableGroupMemberEnvelope) MarshalJSON() ([]byte, error)

func (*NullableGroupMemberEnvelope) Set

func (*NullableGroupMemberEnvelope) UnmarshalJSON

func (v *NullableGroupMemberEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupMemberEnvelope) Unset

func (v *NullableGroupMemberEnvelope) Unset()

type NullableGroupMemberItem

type NullableGroupMemberItem struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMemberItem

func NewNullableGroupMemberItem(val *GroupMemberItem) *NullableGroupMemberItem

func (NullableGroupMemberItem) Get

func (NullableGroupMemberItem) IsSet

func (v NullableGroupMemberItem) IsSet() bool

func (NullableGroupMemberItem) MarshalJSON

func (v NullableGroupMemberItem) MarshalJSON() ([]byte, error)

func (*NullableGroupMemberItem) Set

func (*NullableGroupMemberItem) UnmarshalJSON

func (v *NullableGroupMemberItem) UnmarshalJSON(src []byte) error

func (*NullableGroupMemberItem) Unset

func (v *NullableGroupMemberItem) Unset()

type NullableGroupMemberTask

type NullableGroupMemberTask struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMemberTask

func NewNullableGroupMemberTask(val *GroupMemberTask) *NullableGroupMemberTask

func (NullableGroupMemberTask) Get

func (NullableGroupMemberTask) IsSet

func (v NullableGroupMemberTask) IsSet() bool

func (NullableGroupMemberTask) MarshalJSON

func (v NullableGroupMemberTask) MarshalJSON() ([]byte, error)

func (*NullableGroupMemberTask) Set

func (*NullableGroupMemberTask) UnmarshalJSON

func (v *NullableGroupMemberTask) UnmarshalJSON(src []byte) error

func (*NullableGroupMemberTask) Unset

func (v *NullableGroupMemberTask) Unset()

type NullableGroupMembership

type NullableGroupMembership struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMembership

func NewNullableGroupMembership(val *GroupMembership) *NullableGroupMembership

func (NullableGroupMembership) Get

func (NullableGroupMembership) IsSet

func (v NullableGroupMembership) IsSet() bool

func (NullableGroupMembership) MarshalJSON

func (v NullableGroupMembership) MarshalJSON() ([]byte, error)

func (*NullableGroupMembership) Set

func (*NullableGroupMembership) UnmarshalJSON

func (v *NullableGroupMembership) UnmarshalJSON(src []byte) error

func (*NullableGroupMembership) Unset

func (v *NullableGroupMembership) Unset()

type NullableGroupMembershipEnumerateEnvelope

type NullableGroupMembershipEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMembershipEnumerateEnvelope

func NewNullableGroupMembershipEnumerateEnvelope(val *GroupMembershipEnumerateEnvelope) *NullableGroupMembershipEnumerateEnvelope

func (NullableGroupMembershipEnumerateEnvelope) Get

func (NullableGroupMembershipEnumerateEnvelope) IsSet

func (NullableGroupMembershipEnumerateEnvelope) MarshalJSON

func (*NullableGroupMembershipEnumerateEnvelope) Set

func (*NullableGroupMembershipEnumerateEnvelope) UnmarshalJSON

func (v *NullableGroupMembershipEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupMembershipEnumerateEnvelope) Unset

type NullableGroupMembershipInfo

type NullableGroupMembershipInfo struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMembershipInfo

func NewNullableGroupMembershipInfo(val *GroupMembershipInfo) *NullableGroupMembershipInfo

func (NullableGroupMembershipInfo) Get

func (NullableGroupMembershipInfo) IsSet

func (NullableGroupMembershipInfo) MarshalJSON

func (v NullableGroupMembershipInfo) MarshalJSON() ([]byte, error)

func (*NullableGroupMembershipInfo) Set

func (*NullableGroupMembershipInfo) UnmarshalJSON

func (v *NullableGroupMembershipInfo) UnmarshalJSON(src []byte) error

func (*NullableGroupMembershipInfo) Unset

func (v *NullableGroupMembershipInfo) Unset()

type NullableGroupMembershipInfoEnumerateEnvelope

type NullableGroupMembershipInfoEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMembershipInfoEnumerateEnvelope

func NewNullableGroupMembershipInfoEnumerateEnvelope(val *GroupMembershipInfoEnumerateEnvelope) *NullableGroupMembershipInfoEnumerateEnvelope

func (NullableGroupMembershipInfoEnumerateEnvelope) Get

func (NullableGroupMembershipInfoEnumerateEnvelope) IsSet

func (NullableGroupMembershipInfoEnumerateEnvelope) MarshalJSON

func (*NullableGroupMembershipInfoEnumerateEnvelope) Set

func (*NullableGroupMembershipInfoEnumerateEnvelope) UnmarshalJSON

func (*NullableGroupMembershipInfoEnumerateEnvelope) Unset

type NullableGroupMembershipRestriction

type NullableGroupMembershipRestriction struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMembershipRestriction

func NewNullableGroupMembershipRestriction(val *GroupMembershipRestriction) *NullableGroupMembershipRestriction

func (NullableGroupMembershipRestriction) Get

func (NullableGroupMembershipRestriction) IsSet

func (NullableGroupMembershipRestriction) MarshalJSON

func (v NullableGroupMembershipRestriction) MarshalJSON() ([]byte, error)

func (*NullableGroupMembershipRestriction) Set

func (*NullableGroupMembershipRestriction) UnmarshalJSON

func (v *NullableGroupMembershipRestriction) UnmarshalJSON(src []byte) error

func (*NullableGroupMembershipRestriction) Unset

type NullableGroupMembershipRestrictionEnvelope

type NullableGroupMembershipRestrictionEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupMembershipRestrictionEnvelope

func NewNullableGroupMembershipRestrictionEnvelope(val *GroupMembershipRestrictionEnvelope) *NullableGroupMembershipRestrictionEnvelope

func (NullableGroupMembershipRestrictionEnvelope) Get

func (NullableGroupMembershipRestrictionEnvelope) IsSet

func (NullableGroupMembershipRestrictionEnvelope) MarshalJSON

func (*NullableGroupMembershipRestrictionEnvelope) Set

func (*NullableGroupMembershipRestrictionEnvelope) UnmarshalJSON

func (v *NullableGroupMembershipRestrictionEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupMembershipRestrictionEnvelope) Unset

type NullableGroupRolesResponse

type NullableGroupRolesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableGroupRolesResponse

func NewNullableGroupRolesResponse(val *GroupRolesResponse) *NullableGroupRolesResponse

func (NullableGroupRolesResponse) Get

func (NullableGroupRolesResponse) IsSet

func (v NullableGroupRolesResponse) IsSet() bool

func (NullableGroupRolesResponse) MarshalJSON

func (v NullableGroupRolesResponse) MarshalJSON() ([]byte, error)

func (*NullableGroupRolesResponse) Set

func (*NullableGroupRolesResponse) UnmarshalJSON

func (v *NullableGroupRolesResponse) UnmarshalJSON(src []byte) error

func (*NullableGroupRolesResponse) Unset

func (v *NullableGroupRolesResponse) Unset()

type NullableGroupRolesResponseEnumerateEnvelope

type NullableGroupRolesResponseEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupRolesResponseEnumerateEnvelope

func NewNullableGroupRolesResponseEnumerateEnvelope(val *GroupRolesResponseEnumerateEnvelope) *NullableGroupRolesResponseEnumerateEnvelope

func (NullableGroupRolesResponseEnumerateEnvelope) Get

func (NullableGroupRolesResponseEnumerateEnvelope) IsSet

func (NullableGroupRolesResponseEnumerateEnvelope) MarshalJSON

func (*NullableGroupRolesResponseEnumerateEnvelope) Set

func (*NullableGroupRolesResponseEnumerateEnvelope) UnmarshalJSON

func (v *NullableGroupRolesResponseEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupRolesResponseEnumerateEnvelope) Unset

type NullableGroupScope

type NullableGroupScope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupScope

func NewNullableGroupScope(val *GroupScope) *NullableGroupScope

func (NullableGroupScope) Get

func (v NullableGroupScope) Get() *GroupScope

func (NullableGroupScope) IsSet

func (v NullableGroupScope) IsSet() bool

func (NullableGroupScope) MarshalJSON

func (v NullableGroupScope) MarshalJSON() ([]byte, error)

func (*NullableGroupScope) Set

func (v *NullableGroupScope) Set(val *GroupScope)

func (*NullableGroupScope) UnmarshalJSON

func (v *NullableGroupScope) UnmarshalJSON(src []byte) error

func (*NullableGroupScope) Unset

func (v *NullableGroupScope) Unset()

type NullableGroupScopeAssignment

type NullableGroupScopeAssignment struct {
	// contains filtered or unexported fields
}

func NewNullableGroupScopeAssignment

func NewNullableGroupScopeAssignment(val *GroupScopeAssignment) *NullableGroupScopeAssignment

func (NullableGroupScopeAssignment) Get

func (NullableGroupScopeAssignment) IsSet

func (NullableGroupScopeAssignment) MarshalJSON

func (v NullableGroupScopeAssignment) MarshalJSON() ([]byte, error)

func (*NullableGroupScopeAssignment) Set

func (*NullableGroupScopeAssignment) UnmarshalJSON

func (v *NullableGroupScopeAssignment) UnmarshalJSON(src []byte) error

func (*NullableGroupScopeAssignment) Unset

func (v *NullableGroupScopeAssignment) Unset()

type NullableGroupScopeAssignmentEnvelope

type NullableGroupScopeAssignmentEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupScopeAssignmentEnvelope

func NewNullableGroupScopeAssignmentEnvelope(val *GroupScopeAssignmentEnvelope) *NullableGroupScopeAssignmentEnvelope

func (NullableGroupScopeAssignmentEnvelope) Get

func (NullableGroupScopeAssignmentEnvelope) IsSet

func (NullableGroupScopeAssignmentEnvelope) MarshalJSON

func (v NullableGroupScopeAssignmentEnvelope) MarshalJSON() ([]byte, error)

func (*NullableGroupScopeAssignmentEnvelope) Set

func (*NullableGroupScopeAssignmentEnvelope) UnmarshalJSON

func (v *NullableGroupScopeAssignmentEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupScopeAssignmentEnvelope) Unset

type NullableGroupScopeEnumerateEnvelope

type NullableGroupScopeEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupScopeEnumerateEnvelope

func NewNullableGroupScopeEnumerateEnvelope(val *GroupScopeEnumerateEnvelope) *NullableGroupScopeEnumerateEnvelope

func (NullableGroupScopeEnumerateEnvelope) Get

func (NullableGroupScopeEnumerateEnvelope) IsSet

func (NullableGroupScopeEnumerateEnvelope) MarshalJSON

func (v NullableGroupScopeEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableGroupScopeEnumerateEnvelope) Set

func (*NullableGroupScopeEnumerateEnvelope) UnmarshalJSON

func (v *NullableGroupScopeEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupScopeEnumerateEnvelope) Unset

type NullableGroupScopeEnvelope

type NullableGroupScopeEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupScopeEnvelope

func NewNullableGroupScopeEnvelope(val *GroupScopeEnvelope) *NullableGroupScopeEnvelope

func (NullableGroupScopeEnvelope) Get

func (NullableGroupScopeEnvelope) IsSet

func (v NullableGroupScopeEnvelope) IsSet() bool

func (NullableGroupScopeEnvelope) MarshalJSON

func (v NullableGroupScopeEnvelope) MarshalJSON() ([]byte, error)

func (*NullableGroupScopeEnvelope) Set

func (*NullableGroupScopeEnvelope) UnmarshalJSON

func (v *NullableGroupScopeEnvelope) UnmarshalJSON(src []byte) error

func (*NullableGroupScopeEnvelope) Unset

func (v *NullableGroupScopeEnvelope) Unset()

type NullableGroupSyncStatus

type NullableGroupSyncStatus struct {
	// contains filtered or unexported fields
}

func NewNullableGroupSyncStatus

func NewNullableGroupSyncStatus(val *GroupSyncStatus) *NullableGroupSyncStatus

func (NullableGroupSyncStatus) Get

func (NullableGroupSyncStatus) IsSet

func (v NullableGroupSyncStatus) IsSet() bool

func (NullableGroupSyncStatus) MarshalJSON

func (v NullableGroupSyncStatus) MarshalJSON() ([]byte, error)

func (*NullableGroupSyncStatus) Set

func (*NullableGroupSyncStatus) UnmarshalJSON

func (v *NullableGroupSyncStatus) UnmarshalJSON(src []byte) error

func (*NullableGroupSyncStatus) Unset

func (v *NullableGroupSyncStatus) Unset()

type NullableGroupSyncType

type NullableGroupSyncType struct {
	// contains filtered or unexported fields
}

func NewNullableGroupSyncType

func NewNullableGroupSyncType(val *GroupSyncType) *NullableGroupSyncType

func (NullableGroupSyncType) Get

func (NullableGroupSyncType) IsSet

func (v NullableGroupSyncType) IsSet() bool

func (NullableGroupSyncType) MarshalJSON

func (v NullableGroupSyncType) MarshalJSON() ([]byte, error)

func (*NullableGroupSyncType) Set

func (v *NullableGroupSyncType) Set(val *GroupSyncType)

func (*NullableGroupSyncType) UnmarshalJSON

func (v *NullableGroupSyncType) UnmarshalJSON(src []byte) error

func (*NullableGroupSyncType) Unset

func (v *NullableGroupSyncType) Unset()

type NullableGroupsAllowedToPost

type NullableGroupsAllowedToPost struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsAllowedToPost

func NewNullableGroupsAllowedToPost(val *GroupsAllowedToPost) *NullableGroupsAllowedToPost

func (NullableGroupsAllowedToPost) Get

func (NullableGroupsAllowedToPost) IsSet

func (NullableGroupsAllowedToPost) MarshalJSON

func (v NullableGroupsAllowedToPost) MarshalJSON() ([]byte, error)

func (*NullableGroupsAllowedToPost) Set

func (*NullableGroupsAllowedToPost) UnmarshalJSON

func (v *NullableGroupsAllowedToPost) UnmarshalJSON(src []byte) error

func (*NullableGroupsAllowedToPost) Unset

func (v *NullableGroupsAllowedToPost) Unset()

type NullableGroupsAllowedToPostEnumerateEnvelope

type NullableGroupsAllowedToPostEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableGroupsAllowedToPostEnumerateEnvelope

func NewNullableGroupsAllowedToPostEnumerateEnvelope(val *GroupsAllowedToPostEnumerateEnvelope) *NullableGroupsAllowedToPostEnumerateEnvelope

func (NullableGroupsAllowedToPostEnumerateEnvelope) Get

func (NullableGroupsAllowedToPostEnumerateEnvelope) IsSet

func (NullableGroupsAllowedToPostEnumerateEnvelope) MarshalJSON

func (*NullableGroupsAllowedToPostEnumerateEnvelope) Set

func (*NullableGroupsAllowedToPostEnumerateEnvelope) UnmarshalJSON

func (*NullableGroupsAllowedToPostEnumerateEnvelope) Unset

type NullableGuidGroupValueTuple

type NullableGuidGroupValueTuple struct {
	// contains filtered or unexported fields
}

func NewNullableGuidGroupValueTuple

func NewNullableGuidGroupValueTuple(val *GuidGroupValueTuple) *NullableGuidGroupValueTuple

func (NullableGuidGroupValueTuple) Get

func (NullableGuidGroupValueTuple) IsSet

func (NullableGuidGroupValueTuple) MarshalJSON

func (v NullableGuidGroupValueTuple) MarshalJSON() ([]byte, error)

func (*NullableGuidGroupValueTuple) Set

func (*NullableGuidGroupValueTuple) UnmarshalJSON

func (v *NullableGuidGroupValueTuple) UnmarshalJSON(src []byte) error

func (*NullableGuidGroupValueTuple) Unset

func (v *NullableGuidGroupValueTuple) Unset()

type NullableGuidIdentityValueTuple

type NullableGuidIdentityValueTuple struct {
	// contains filtered or unexported fields
}

func NewNullableGuidIdentityValueTuple

func NewNullableGuidIdentityValueTuple(val *GuidIdentityValueTuple) *NullableGuidIdentityValueTuple

func (NullableGuidIdentityValueTuple) Get

func (NullableGuidIdentityValueTuple) IsSet

func (NullableGuidIdentityValueTuple) MarshalJSON

func (v NullableGuidIdentityValueTuple) MarshalJSON() ([]byte, error)

func (*NullableGuidIdentityValueTuple) Set

func (*NullableGuidIdentityValueTuple) UnmarshalJSON

func (v *NullableGuidIdentityValueTuple) UnmarshalJSON(src []byte) error

func (*NullableGuidIdentityValueTuple) Unset

func (v *NullableGuidIdentityValueTuple) Unset()

type NullableGuidJObjectValueTuple

type NullableGuidJObjectValueTuple struct {
	// contains filtered or unexported fields
}

func NewNullableGuidJObjectValueTuple

func NewNullableGuidJObjectValueTuple(val *GuidJObjectValueTuple) *NullableGuidJObjectValueTuple

func (NullableGuidJObjectValueTuple) Get

func (NullableGuidJObjectValueTuple) IsSet

func (NullableGuidJObjectValueTuple) MarshalJSON

func (v NullableGuidJObjectValueTuple) MarshalJSON() ([]byte, error)

func (*NullableGuidJObjectValueTuple) Set

func (*NullableGuidJObjectValueTuple) UnmarshalJSON

func (v *NullableGuidJObjectValueTuple) UnmarshalJSON(src []byte) error

func (*NullableGuidJObjectValueTuple) Unset

func (v *NullableGuidJObjectValueTuple) Unset()

type NullableGuidJsonPatchDocumentValueTuple

type NullableGuidJsonPatchDocumentValueTuple struct {
	// contains filtered or unexported fields
}

func NewNullableGuidJsonPatchDocumentValueTuple

func NewNullableGuidJsonPatchDocumentValueTuple(val *GuidJsonPatchDocumentValueTuple) *NullableGuidJsonPatchDocumentValueTuple

func (NullableGuidJsonPatchDocumentValueTuple) Get

func (NullableGuidJsonPatchDocumentValueTuple) IsSet

func (NullableGuidJsonPatchDocumentValueTuple) MarshalJSON

func (v NullableGuidJsonPatchDocumentValueTuple) MarshalJSON() ([]byte, error)

func (*NullableGuidJsonPatchDocumentValueTuple) Set

func (*NullableGuidJsonPatchDocumentValueTuple) UnmarshalJSON

func (v *NullableGuidJsonPatchDocumentValueTuple) UnmarshalJSON(src []byte) error

func (*NullableGuidJsonPatchDocumentValueTuple) Unset

type NullableIActionResultEnvelope

type NullableIActionResultEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIActionResultEnvelope

func NewNullableIActionResultEnvelope(val *IActionResultEnvelope) *NullableIActionResultEnvelope

func (NullableIActionResultEnvelope) Get

func (NullableIActionResultEnvelope) IsSet

func (NullableIActionResultEnvelope) MarshalJSON

func (v NullableIActionResultEnvelope) MarshalJSON() ([]byte, error)

func (*NullableIActionResultEnvelope) Set

func (*NullableIActionResultEnvelope) UnmarshalJSON

func (v *NullableIActionResultEnvelope) UnmarshalJSON(src []byte) error

func (*NullableIActionResultEnvelope) Unset

func (v *NullableIActionResultEnvelope) Unset()

type NullableIdentifier

type NullableIdentifier struct {
	// contains filtered or unexported fields
}

func NewNullableIdentifier

func NewNullableIdentifier(val *Identifier) *NullableIdentifier

func (NullableIdentifier) Get

func (v NullableIdentifier) Get() *Identifier

func (NullableIdentifier) IsSet

func (v NullableIdentifier) IsSet() bool

func (NullableIdentifier) MarshalJSON

func (v NullableIdentifier) MarshalJSON() ([]byte, error)

func (*NullableIdentifier) Set

func (v *NullableIdentifier) Set(val *Identifier)

func (*NullableIdentifier) UnmarshalJSON

func (v *NullableIdentifier) UnmarshalJSON(src []byte) error

func (*NullableIdentifier) Unset

func (v *NullableIdentifier) Unset()

type NullableIdentifierEnumerateEnvelope

type NullableIdentifierEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentifierEnumerateEnvelope

func NewNullableIdentifierEnumerateEnvelope(val *IdentifierEnumerateEnvelope) *NullableIdentifierEnumerateEnvelope

func (NullableIdentifierEnumerateEnvelope) Get

func (NullableIdentifierEnumerateEnvelope) IsSet

func (NullableIdentifierEnumerateEnvelope) MarshalJSON

func (v NullableIdentifierEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableIdentifierEnumerateEnvelope) Set

func (*NullableIdentifierEnumerateEnvelope) UnmarshalJSON

func (v *NullableIdentifierEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableIdentifierEnumerateEnvelope) Unset

type NullableIdentifierInputWrapper

type NullableIdentifierInputWrapper struct {
	// contains filtered or unexported fields
}

func NewNullableIdentifierInputWrapper

func NewNullableIdentifierInputWrapper(val *IdentifierInputWrapper) *NullableIdentifierInputWrapper

func (NullableIdentifierInputWrapper) Get

func (NullableIdentifierInputWrapper) IsSet

func (NullableIdentifierInputWrapper) MarshalJSON

func (v NullableIdentifierInputWrapper) MarshalJSON() ([]byte, error)

func (*NullableIdentifierInputWrapper) Set

func (*NullableIdentifierInputWrapper) UnmarshalJSON

func (v *NullableIdentifierInputWrapper) UnmarshalJSON(src []byte) error

func (*NullableIdentifierInputWrapper) Unset

func (v *NullableIdentifierInputWrapper) Unset()

type NullableIdentitiesAllowedToPost

type NullableIdentitiesAllowedToPost struct {
	// contains filtered or unexported fields
}

func NewNullableIdentitiesAllowedToPost

func NewNullableIdentitiesAllowedToPost(val *IdentitiesAllowedToPost) *NullableIdentitiesAllowedToPost

func (NullableIdentitiesAllowedToPost) Get

func (NullableIdentitiesAllowedToPost) IsSet

func (NullableIdentitiesAllowedToPost) MarshalJSON

func (v NullableIdentitiesAllowedToPost) MarshalJSON() ([]byte, error)

func (*NullableIdentitiesAllowedToPost) Set

func (*NullableIdentitiesAllowedToPost) UnmarshalJSON

func (v *NullableIdentitiesAllowedToPost) UnmarshalJSON(src []byte) error

func (*NullableIdentitiesAllowedToPost) Unset

type NullableIdentitiesAllowedToPostEnumerateEnvelope

type NullableIdentitiesAllowedToPostEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentitiesAllowedToPostEnumerateEnvelope

func NewNullableIdentitiesAllowedToPostEnumerateEnvelope(val *IdentitiesAllowedToPostEnumerateEnvelope) *NullableIdentitiesAllowedToPostEnumerateEnvelope

func (NullableIdentitiesAllowedToPostEnumerateEnvelope) Get

func (NullableIdentitiesAllowedToPostEnumerateEnvelope) IsSet

func (NullableIdentitiesAllowedToPostEnumerateEnvelope) MarshalJSON

func (*NullableIdentitiesAllowedToPostEnumerateEnvelope) Set

func (*NullableIdentitiesAllowedToPostEnumerateEnvelope) UnmarshalJSON

func (*NullableIdentitiesAllowedToPostEnumerateEnvelope) Unset

type NullableIdentity

type NullableIdentity struct {
	// contains filtered or unexported fields
}

func NewNullableIdentity

func NewNullableIdentity(val *Identity) *NullableIdentity

func (NullableIdentity) Get

func (v NullableIdentity) Get() *Identity

func (NullableIdentity) IsSet

func (v NullableIdentity) IsSet() bool

func (NullableIdentity) MarshalJSON

func (v NullableIdentity) MarshalJSON() ([]byte, error)

func (*NullableIdentity) Set

func (v *NullableIdentity) Set(val *Identity)

func (*NullableIdentity) UnmarshalJSON

func (v *NullableIdentity) UnmarshalJSON(src []byte) error

func (*NullableIdentity) Unset

func (v *NullableIdentity) Unset()

type NullableIdentityEnumerateEnvelope

type NullableIdentityEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityEnumerateEnvelope

func NewNullableIdentityEnumerateEnvelope(val *IdentityEnumerateEnvelope) *NullableIdentityEnumerateEnvelope

func (NullableIdentityEnumerateEnvelope) Get

func (NullableIdentityEnumerateEnvelope) IsSet

func (NullableIdentityEnumerateEnvelope) MarshalJSON

func (v NullableIdentityEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableIdentityEnumerateEnvelope) Set

func (*NullableIdentityEnumerateEnvelope) UnmarshalJSON

func (v *NullableIdentityEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableIdentityEnumerateEnvelope) Unset

type NullableIdentityEnvelope

type NullableIdentityEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityEnvelope

func NewNullableIdentityEnvelope(val *IdentityEnvelope) *NullableIdentityEnvelope

func (NullableIdentityEnvelope) Get

func (NullableIdentityEnvelope) IsSet

func (v NullableIdentityEnvelope) IsSet() bool

func (NullableIdentityEnvelope) MarshalJSON

func (v NullableIdentityEnvelope) MarshalJSON() ([]byte, error)

func (*NullableIdentityEnvelope) Set

func (*NullableIdentityEnvelope) UnmarshalJSON

func (v *NullableIdentityEnvelope) UnmarshalJSON(src []byte) error

func (*NullableIdentityEnvelope) Unset

func (v *NullableIdentityEnvelope) Unset()

type NullableIdentityInfo

type NullableIdentityInfo struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityInfo

func NewNullableIdentityInfo(val *IdentityInfo) *NullableIdentityInfo

func (NullableIdentityInfo) Get

func (NullableIdentityInfo) IsSet

func (v NullableIdentityInfo) IsSet() bool

func (NullableIdentityInfo) MarshalJSON

func (v NullableIdentityInfo) MarshalJSON() ([]byte, error)

func (*NullableIdentityInfo) Set

func (v *NullableIdentityInfo) Set(val *IdentityInfo)

func (*NullableIdentityInfo) UnmarshalJSON

func (v *NullableIdentityInfo) UnmarshalJSON(src []byte) error

func (*NullableIdentityInfo) Unset

func (v *NullableIdentityInfo) Unset()

type NullableIdentityMembership

type NullableIdentityMembership struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembership

func NewNullableIdentityMembership(val *IdentityMembership) *NullableIdentityMembership

func (NullableIdentityMembership) Get

func (NullableIdentityMembership) IsSet

func (v NullableIdentityMembership) IsSet() bool

func (NullableIdentityMembership) MarshalJSON

func (v NullableIdentityMembership) MarshalJSON() ([]byte, error)

func (*NullableIdentityMembership) Set

func (*NullableIdentityMembership) UnmarshalJSON

func (v *NullableIdentityMembership) UnmarshalJSON(src []byte) error

func (*NullableIdentityMembership) Unset

func (v *NullableIdentityMembership) Unset()

type NullableIdentityMembershipCheck

type NullableIdentityMembershipCheck struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipCheck

func NewNullableIdentityMembershipCheck(val *IdentityMembershipCheck) *NullableIdentityMembershipCheck

func (NullableIdentityMembershipCheck) Get

func (NullableIdentityMembershipCheck) IsSet

func (NullableIdentityMembershipCheck) MarshalJSON

func (v NullableIdentityMembershipCheck) MarshalJSON() ([]byte, error)

func (*NullableIdentityMembershipCheck) Set

func (*NullableIdentityMembershipCheck) UnmarshalJSON

func (v *NullableIdentityMembershipCheck) UnmarshalJSON(src []byte) error

func (*NullableIdentityMembershipCheck) Unset

type NullableIdentityMembershipCheckEnvelope

type NullableIdentityMembershipCheckEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipCheckEnvelope

func NewNullableIdentityMembershipCheckEnvelope(val *IdentityMembershipCheckEnvelope) *NullableIdentityMembershipCheckEnvelope

func (NullableIdentityMembershipCheckEnvelope) Get

func (NullableIdentityMembershipCheckEnvelope) IsSet

func (NullableIdentityMembershipCheckEnvelope) MarshalJSON

func (v NullableIdentityMembershipCheckEnvelope) MarshalJSON() ([]byte, error)

func (*NullableIdentityMembershipCheckEnvelope) Set

func (*NullableIdentityMembershipCheckEnvelope) UnmarshalJSON

func (v *NullableIdentityMembershipCheckEnvelope) UnmarshalJSON(src []byte) error

func (*NullableIdentityMembershipCheckEnvelope) Unset

type NullableIdentityMembershipEnumerateEnvelope

type NullableIdentityMembershipEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipEnumerateEnvelope

func NewNullableIdentityMembershipEnumerateEnvelope(val *IdentityMembershipEnumerateEnvelope) *NullableIdentityMembershipEnumerateEnvelope

func (NullableIdentityMembershipEnumerateEnvelope) Get

func (NullableIdentityMembershipEnumerateEnvelope) IsSet

func (NullableIdentityMembershipEnumerateEnvelope) MarshalJSON

func (*NullableIdentityMembershipEnumerateEnvelope) Set

func (*NullableIdentityMembershipEnumerateEnvelope) UnmarshalJSON

func (v *NullableIdentityMembershipEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableIdentityMembershipEnumerateEnvelope) Unset

type NullableIdentityMembershipEnvelope

type NullableIdentityMembershipEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipEnvelope

func NewNullableIdentityMembershipEnvelope(val *IdentityMembershipEnvelope) *NullableIdentityMembershipEnvelope

func (NullableIdentityMembershipEnvelope) Get

func (NullableIdentityMembershipEnvelope) IsSet

func (NullableIdentityMembershipEnvelope) MarshalJSON

func (v NullableIdentityMembershipEnvelope) MarshalJSON() ([]byte, error)

func (*NullableIdentityMembershipEnvelope) Set

func (*NullableIdentityMembershipEnvelope) UnmarshalJSON

func (v *NullableIdentityMembershipEnvelope) UnmarshalJSON(src []byte) error

func (*NullableIdentityMembershipEnvelope) Unset

type NullableIdentityMembershipInfo

type NullableIdentityMembershipInfo struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipInfo

func NewNullableIdentityMembershipInfo(val *IdentityMembershipInfo) *NullableIdentityMembershipInfo

func (NullableIdentityMembershipInfo) Get

func (NullableIdentityMembershipInfo) IsSet

func (NullableIdentityMembershipInfo) MarshalJSON

func (v NullableIdentityMembershipInfo) MarshalJSON() ([]byte, error)

func (*NullableIdentityMembershipInfo) Set

func (*NullableIdentityMembershipInfo) UnmarshalJSON

func (v *NullableIdentityMembershipInfo) UnmarshalJSON(src []byte) error

func (*NullableIdentityMembershipInfo) Unset

func (v *NullableIdentityMembershipInfo) Unset()

type NullableIdentityMembershipInfoEnumerateEnvelope

type NullableIdentityMembershipInfoEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipInfoEnumerateEnvelope

func NewNullableIdentityMembershipInfoEnumerateEnvelope(val *IdentityMembershipInfoEnumerateEnvelope) *NullableIdentityMembershipInfoEnumerateEnvelope

func (NullableIdentityMembershipInfoEnumerateEnvelope) Get

func (NullableIdentityMembershipInfoEnumerateEnvelope) IsSet

func (NullableIdentityMembershipInfoEnumerateEnvelope) MarshalJSON

func (*NullableIdentityMembershipInfoEnumerateEnvelope) Set

func (*NullableIdentityMembershipInfoEnumerateEnvelope) UnmarshalJSON

func (*NullableIdentityMembershipInfoEnumerateEnvelope) Unset

type NullableIdentityMembershipRequest

type NullableIdentityMembershipRequest struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipRequest

func NewNullableIdentityMembershipRequest(val *IdentityMembershipRequest) *NullableIdentityMembershipRequest

func (NullableIdentityMembershipRequest) Get

func (NullableIdentityMembershipRequest) IsSet

func (NullableIdentityMembershipRequest) MarshalJSON

func (v NullableIdentityMembershipRequest) MarshalJSON() ([]byte, error)

func (*NullableIdentityMembershipRequest) Set

func (*NullableIdentityMembershipRequest) UnmarshalJSON

func (v *NullableIdentityMembershipRequest) UnmarshalJSON(src []byte) error

func (*NullableIdentityMembershipRequest) Unset

type NullableIdentityMembershipWithDetails

type NullableIdentityMembershipWithDetails struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipWithDetails

func NewNullableIdentityMembershipWithDetails(val *IdentityMembershipWithDetails) *NullableIdentityMembershipWithDetails

func (NullableIdentityMembershipWithDetails) Get

func (NullableIdentityMembershipWithDetails) IsSet

func (NullableIdentityMembershipWithDetails) MarshalJSON

func (v NullableIdentityMembershipWithDetails) MarshalJSON() ([]byte, error)

func (*NullableIdentityMembershipWithDetails) Set

func (*NullableIdentityMembershipWithDetails) UnmarshalJSON

func (v *NullableIdentityMembershipWithDetails) UnmarshalJSON(src []byte) error

func (*NullableIdentityMembershipWithDetails) Unset

type NullableIdentityMembershipWithDetailsEnumerateEnvelope

type NullableIdentityMembershipWithDetailsEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityMembershipWithDetailsEnumerateEnvelope

func NewNullableIdentityMembershipWithDetailsEnumerateEnvelope(val *IdentityMembershipWithDetailsEnumerateEnvelope) *NullableIdentityMembershipWithDetailsEnumerateEnvelope

func (NullableIdentityMembershipWithDetailsEnumerateEnvelope) Get

func (NullableIdentityMembershipWithDetailsEnumerateEnvelope) IsSet

func (NullableIdentityMembershipWithDetailsEnumerateEnvelope) MarshalJSON

func (*NullableIdentityMembershipWithDetailsEnumerateEnvelope) Set

func (*NullableIdentityMembershipWithDetailsEnumerateEnvelope) UnmarshalJSON

func (*NullableIdentityMembershipWithDetailsEnumerateEnvelope) Unset

type NullableIdentityType

type NullableIdentityType struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityType

func NewNullableIdentityType(val *IdentityType) *NullableIdentityType

func (NullableIdentityType) Get

func (NullableIdentityType) IsSet

func (v NullableIdentityType) IsSet() bool

func (NullableIdentityType) MarshalJSON

func (v NullableIdentityType) MarshalJSON() ([]byte, error)

func (*NullableIdentityType) Set

func (v *NullableIdentityType) Set(val *IdentityType)

func (*NullableIdentityType) UnmarshalJSON

func (v *NullableIdentityType) UnmarshalJSON(src []byte) error

func (*NullableIdentityType) Unset

func (v *NullableIdentityType) 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 NullableJObjectBulkOperationResult

type NullableJObjectBulkOperationResult struct {
	// contains filtered or unexported fields
}

func NewNullableJObjectBulkOperationResult

func NewNullableJObjectBulkOperationResult(val *JObjectBulkOperationResult) *NullableJObjectBulkOperationResult

func (NullableJObjectBulkOperationResult) Get

func (NullableJObjectBulkOperationResult) IsSet

func (NullableJObjectBulkOperationResult) MarshalJSON

func (v NullableJObjectBulkOperationResult) MarshalJSON() ([]byte, error)

func (*NullableJObjectBulkOperationResult) Set

func (*NullableJObjectBulkOperationResult) UnmarshalJSON

func (v *NullableJObjectBulkOperationResult) UnmarshalJSON(src []byte) error

func (*NullableJObjectBulkOperationResult) Unset

type NullableJObjectBulkOperationResultEnumerateEnvelope

type NullableJObjectBulkOperationResultEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableJObjectBulkOperationResultEnumerateEnvelope

func NewNullableJObjectBulkOperationResultEnumerateEnvelope(val *JObjectBulkOperationResultEnumerateEnvelope) *NullableJObjectBulkOperationResultEnumerateEnvelope

func (NullableJObjectBulkOperationResultEnumerateEnvelope) Get

func (NullableJObjectBulkOperationResultEnumerateEnvelope) IsSet

func (NullableJObjectBulkOperationResultEnumerateEnvelope) MarshalJSON

func (*NullableJObjectBulkOperationResultEnumerateEnvelope) Set

func (*NullableJObjectBulkOperationResultEnumerateEnvelope) UnmarshalJSON

func (*NullableJObjectBulkOperationResultEnumerateEnvelope) Unset

type NullableJsonPatchDocument

type NullableJsonPatchDocument struct {
	// contains filtered or unexported fields
}

func NewNullableJsonPatchDocument

func NewNullableJsonPatchDocument(val *JsonPatchDocument) *NullableJsonPatchDocument

func (NullableJsonPatchDocument) Get

func (NullableJsonPatchDocument) IsSet

func (v NullableJsonPatchDocument) IsSet() bool

func (NullableJsonPatchDocument) MarshalJSON

func (v NullableJsonPatchDocument) MarshalJSON() ([]byte, error)

func (*NullableJsonPatchDocument) Set

func (*NullableJsonPatchDocument) UnmarshalJSON

func (v *NullableJsonPatchDocument) UnmarshalJSON(src []byte) error

func (*NullableJsonPatchDocument) Unset

func (v *NullableJsonPatchDocument) 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 NullableJsonSchemaProperty

type NullableJsonSchemaProperty struct {
	// contains filtered or unexported fields
}

func NewNullableJsonSchemaProperty

func NewNullableJsonSchemaProperty(val *JsonSchemaProperty) *NullableJsonSchemaProperty

func (NullableJsonSchemaProperty) Get

func (NullableJsonSchemaProperty) IsSet

func (v NullableJsonSchemaProperty) IsSet() bool

func (NullableJsonSchemaProperty) MarshalJSON

func (v NullableJsonSchemaProperty) MarshalJSON() ([]byte, error)

func (*NullableJsonSchemaProperty) Set

func (*NullableJsonSchemaProperty) UnmarshalJSON

func (v *NullableJsonSchemaProperty) UnmarshalJSON(src []byte) error

func (*NullableJsonSchemaProperty) Unset

func (v *NullableJsonSchemaProperty) Unset()

type NullableJsonXmlObject

type NullableJsonXmlObject struct {
	// contains filtered or unexported fields
}

func NewNullableJsonXmlObject

func NewNullableJsonXmlObject(val *JsonXmlObject) *NullableJsonXmlObject

func (NullableJsonXmlObject) Get

func (NullableJsonXmlObject) IsSet

func (v NullableJsonXmlObject) IsSet() bool

func (NullableJsonXmlObject) MarshalJSON

func (v NullableJsonXmlObject) MarshalJSON() ([]byte, error)

func (*NullableJsonXmlObject) Set

func (v *NullableJsonXmlObject) Set(val *JsonXmlObject)

func (*NullableJsonXmlObject) UnmarshalJSON

func (v *NullableJsonXmlObject) UnmarshalJSON(src []byte) error

func (*NullableJsonXmlObject) Unset

func (v *NullableJsonXmlObject) Unset()

type NullableLevelOfAssurance

type NullableLevelOfAssurance struct {
	// contains filtered or unexported fields
}

func NewNullableLevelOfAssurance

func NewNullableLevelOfAssurance(val *LevelOfAssurance) *NullableLevelOfAssurance

func (NullableLevelOfAssurance) Get

func (NullableLevelOfAssurance) IsSet

func (v NullableLevelOfAssurance) IsSet() bool

func (NullableLevelOfAssurance) MarshalJSON

func (v NullableLevelOfAssurance) MarshalJSON() ([]byte, error)

func (*NullableLevelOfAssurance) Set

func (*NullableLevelOfAssurance) UnmarshalJSON

func (v *NullableLevelOfAssurance) UnmarshalJSON(src []byte) error

func (*NullableLevelOfAssurance) Unset

func (v *NullableLevelOfAssurance) Unset()

type NullableLevelOfAssuranceEnumerateEnvelope

type NullableLevelOfAssuranceEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableLevelOfAssuranceEnumerateEnvelope

func NewNullableLevelOfAssuranceEnumerateEnvelope(val *LevelOfAssuranceEnumerateEnvelope) *NullableLevelOfAssuranceEnumerateEnvelope

func (NullableLevelOfAssuranceEnumerateEnvelope) Get

func (NullableLevelOfAssuranceEnumerateEnvelope) IsSet

func (NullableLevelOfAssuranceEnumerateEnvelope) MarshalJSON

func (*NullableLevelOfAssuranceEnumerateEnvelope) Set

func (*NullableLevelOfAssuranceEnumerateEnvelope) UnmarshalJSON

func (v *NullableLevelOfAssuranceEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableLevelOfAssuranceEnumerateEnvelope) Unset

type NullableLifecycleSettings

type NullableLifecycleSettings struct {
	// contains filtered or unexported fields
}

func NewNullableLifecycleSettings

func NewNullableLifecycleSettings(val *LifecycleSettings) *NullableLifecycleSettings

func (NullableLifecycleSettings) Get

func (NullableLifecycleSettings) IsSet

func (v NullableLifecycleSettings) IsSet() bool

func (NullableLifecycleSettings) MarshalJSON

func (v NullableLifecycleSettings) MarshalJSON() ([]byte, error)

func (*NullableLifecycleSettings) Set

func (*NullableLifecycleSettings) UnmarshalJSON

func (v *NullableLifecycleSettings) UnmarshalJSON(src []byte) error

func (*NullableLifecycleSettings) Unset

func (v *NullableLifecycleSettings) Unset()

type NullableLifecycleSettingsEnumerateEnvelope

type NullableLifecycleSettingsEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableLifecycleSettingsEnumerateEnvelope

func NewNullableLifecycleSettingsEnumerateEnvelope(val *LifecycleSettingsEnumerateEnvelope) *NullableLifecycleSettingsEnumerateEnvelope

func (NullableLifecycleSettingsEnumerateEnvelope) Get

func (NullableLifecycleSettingsEnumerateEnvelope) IsSet

func (NullableLifecycleSettingsEnumerateEnvelope) MarshalJSON

func (*NullableLifecycleSettingsEnumerateEnvelope) Set

func (*NullableLifecycleSettingsEnumerateEnvelope) UnmarshalJSON

func (v *NullableLifecycleSettingsEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableLifecycleSettingsEnumerateEnvelope) Unset

type NullableLifecycleSettingsInfo

type NullableLifecycleSettingsInfo struct {
	// contains filtered or unexported fields
}

func NewNullableLifecycleSettingsInfo

func NewNullableLifecycleSettingsInfo(val *LifecycleSettingsInfo) *NullableLifecycleSettingsInfo

func (NullableLifecycleSettingsInfo) Get

func (NullableLifecycleSettingsInfo) IsSet

func (NullableLifecycleSettingsInfo) MarshalJSON

func (v NullableLifecycleSettingsInfo) MarshalJSON() ([]byte, error)

func (*NullableLifecycleSettingsInfo) Set

func (*NullableLifecycleSettingsInfo) UnmarshalJSON

func (v *NullableLifecycleSettingsInfo) UnmarshalJSON(src []byte) error

func (*NullableLifecycleSettingsInfo) Unset

func (v *NullableLifecycleSettingsInfo) Unset()

type NullableMailProperties

type NullableMailProperties struct {
	// contains filtered or unexported fields
}

func NewNullableMailProperties

func NewNullableMailProperties(val *MailProperties) *NullableMailProperties

func (NullableMailProperties) Get

func (NullableMailProperties) IsSet

func (v NullableMailProperties) IsSet() bool

func (NullableMailProperties) MarshalJSON

func (v NullableMailProperties) MarshalJSON() ([]byte, error)

func (*NullableMailProperties) Set

func (*NullableMailProperties) UnmarshalJSON

func (v *NullableMailProperties) UnmarshalJSON(src []byte) error

func (*NullableMailProperties) Unset

func (v *NullableMailProperties) Unset()

type NullableMailPropertiesEnumerateEnvelope

type NullableMailPropertiesEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableMailPropertiesEnumerateEnvelope

func NewNullableMailPropertiesEnumerateEnvelope(val *MailPropertiesEnumerateEnvelope) *NullableMailPropertiesEnumerateEnvelope

func (NullableMailPropertiesEnumerateEnvelope) Get

func (NullableMailPropertiesEnumerateEnvelope) IsSet

func (NullableMailPropertiesEnumerateEnvelope) MarshalJSON

func (v NullableMailPropertiesEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableMailPropertiesEnumerateEnvelope) Set

func (*NullableMailPropertiesEnumerateEnvelope) UnmarshalJSON

func (v *NullableMailPropertiesEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableMailPropertiesEnumerateEnvelope) Unset

type NullableMailPropertiesEnvelope

type NullableMailPropertiesEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableMailPropertiesEnvelope

func NewNullableMailPropertiesEnvelope(val *MailPropertiesEnvelope) *NullableMailPropertiesEnvelope

func (NullableMailPropertiesEnvelope) Get

func (NullableMailPropertiesEnvelope) IsSet

func (NullableMailPropertiesEnvelope) MarshalJSON

func (v NullableMailPropertiesEnvelope) MarshalJSON() ([]byte, error)

func (*NullableMailPropertiesEnvelope) Set

func (*NullableMailPropertiesEnvelope) UnmarshalJSON

func (v *NullableMailPropertiesEnvelope) UnmarshalJSON(src []byte) error

func (*NullableMailPropertiesEnvelope) Unset

func (v *NullableMailPropertiesEnvelope) Unset()

type NullableManagedResource

type NullableManagedResource struct {
	// contains filtered or unexported fields
}

func NewNullableManagedResource

func NewNullableManagedResource(val *ManagedResource) *NullableManagedResource

func (NullableManagedResource) Get

func (NullableManagedResource) IsSet

func (v NullableManagedResource) IsSet() bool

func (NullableManagedResource) MarshalJSON

func (v NullableManagedResource) MarshalJSON() ([]byte, error)

func (*NullableManagedResource) Set

func (*NullableManagedResource) UnmarshalJSON

func (v *NullableManagedResource) UnmarshalJSON(src []byte) error

func (*NullableManagedResource) Unset

func (v *NullableManagedResource) Unset()

type NullableManagedResourceEnumerateEnvelope

type NullableManagedResourceEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableManagedResourceEnumerateEnvelope

func NewNullableManagedResourceEnumerateEnvelope(val *ManagedResourceEnumerateEnvelope) *NullableManagedResourceEnumerateEnvelope

func (NullableManagedResourceEnumerateEnvelope) Get

func (NullableManagedResourceEnumerateEnvelope) IsSet

func (NullableManagedResourceEnumerateEnvelope) MarshalJSON

func (*NullableManagedResourceEnumerateEnvelope) Set

func (*NullableManagedResourceEnumerateEnvelope) UnmarshalJSON

func (v *NullableManagedResourceEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableManagedResourceEnumerateEnvelope) Unset

type NullableManagedResourceEnvelope

type NullableManagedResourceEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableManagedResourceEnvelope

func NewNullableManagedResourceEnvelope(val *ManagedResourceEnvelope) *NullableManagedResourceEnvelope

func (NullableManagedResourceEnvelope) Get

func (NullableManagedResourceEnvelope) IsSet

func (NullableManagedResourceEnvelope) MarshalJSON

func (v NullableManagedResourceEnvelope) MarshalJSON() ([]byte, error)

func (*NullableManagedResourceEnvelope) Set

func (*NullableManagedResourceEnvelope) UnmarshalJSON

func (v *NullableManagedResourceEnvelope) UnmarshalJSON(src []byte) error

func (*NullableManagedResourceEnvelope) Unset

type NullableManagedResourceType

type NullableManagedResourceType struct {
	// contains filtered or unexported fields
}

func NewNullableManagedResourceType

func NewNullableManagedResourceType(val *ManagedResourceType) *NullableManagedResourceType

func (NullableManagedResourceType) Get

func (NullableManagedResourceType) IsSet

func (NullableManagedResourceType) MarshalJSON

func (v NullableManagedResourceType) MarshalJSON() ([]byte, error)

func (*NullableManagedResourceType) Set

func (*NullableManagedResourceType) UnmarshalJSON

func (v *NullableManagedResourceType) UnmarshalJSON(src []byte) error

func (*NullableManagedResourceType) Unset

func (v *NullableManagedResourceType) Unset()

type NullableMfaMethodSettings

type NullableMfaMethodSettings struct {
	// contains filtered or unexported fields
}

func NewNullableMfaMethodSettings

func NewNullableMfaMethodSettings(val *MfaMethodSettings) *NullableMfaMethodSettings

func (NullableMfaMethodSettings) Get

func (NullableMfaMethodSettings) IsSet

func (v NullableMfaMethodSettings) IsSet() bool

func (NullableMfaMethodSettings) MarshalJSON

func (v NullableMfaMethodSettings) MarshalJSON() ([]byte, error)

func (*NullableMfaMethodSettings) Set

func (*NullableMfaMethodSettings) UnmarshalJSON

func (v *NullableMfaMethodSettings) UnmarshalJSON(src []byte) error

func (*NullableMfaMethodSettings) Unset

func (v *NullableMfaMethodSettings) Unset()

type NullableMfaSettings

type NullableMfaSettings struct {
	// contains filtered or unexported fields
}

func NewNullableMfaSettings

func NewNullableMfaSettings(val *MfaSettings) *NullableMfaSettings

func (NullableMfaSettings) Get

func (NullableMfaSettings) IsSet

func (v NullableMfaSettings) IsSet() bool

func (NullableMfaSettings) MarshalJSON

func (v NullableMfaSettings) MarshalJSON() ([]byte, error)

func (*NullableMfaSettings) Set

func (v *NullableMfaSettings) Set(val *MfaSettings)

func (*NullableMfaSettings) UnmarshalJSON

func (v *NullableMfaSettings) UnmarshalJSON(src []byte) error

func (*NullableMfaSettings) Unset

func (v *NullableMfaSettings) Unset()

type NullableObjectEnvelope

type NullableObjectEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableObjectEnvelope

func NewNullableObjectEnvelope(val *ObjectEnvelope) *NullableObjectEnvelope

func (NullableObjectEnvelope) Get

func (NullableObjectEnvelope) IsSet

func (v NullableObjectEnvelope) IsSet() bool

func (NullableObjectEnvelope) MarshalJSON

func (v NullableObjectEnvelope) MarshalJSON() ([]byte, error)

func (*NullableObjectEnvelope) Set

func (*NullableObjectEnvelope) UnmarshalJSON

func (v *NullableObjectEnvelope) UnmarshalJSON(src []byte) error

func (*NullableObjectEnvelope) Unset

func (v *NullableObjectEnvelope) Unset()

type NullableOkResult

type NullableOkResult struct {
	// contains filtered or unexported fields
}

func NewNullableOkResult

func NewNullableOkResult(val *OkResult) *NullableOkResult

func (NullableOkResult) Get

func (v NullableOkResult) Get() *OkResult

func (NullableOkResult) IsSet

func (v NullableOkResult) IsSet() bool

func (NullableOkResult) MarshalJSON

func (v NullableOkResult) MarshalJSON() ([]byte, error)

func (*NullableOkResult) Set

func (v *NullableOkResult) Set(val *OkResult)

func (*NullableOkResult) UnmarshalJSON

func (v *NullableOkResult) UnmarshalJSON(src []byte) error

func (*NullableOkResult) Unset

func (v *NullableOkResult) Unset()

type NullableOkResultEnvelope

type NullableOkResultEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableOkResultEnvelope

func NewNullableOkResultEnvelope(val *OkResultEnvelope) *NullableOkResultEnvelope

func (NullableOkResultEnvelope) Get

func (NullableOkResultEnvelope) IsSet

func (v NullableOkResultEnvelope) IsSet() bool

func (NullableOkResultEnvelope) MarshalJSON

func (v NullableOkResultEnvelope) MarshalJSON() ([]byte, error)

func (*NullableOkResultEnvelope) Set

func (*NullableOkResultEnvelope) UnmarshalJSON

func (v *NullableOkResultEnvelope) UnmarshalJSON(src []byte) error

func (*NullableOkResultEnvelope) Unset

func (v *NullableOkResultEnvelope) Unset()

type NullableOperation

type NullableOperation struct {
	// contains filtered or unexported fields
}

func NewNullableOperation

func NewNullableOperation(val *Operation) *NullableOperation

func (NullableOperation) Get

func (v NullableOperation) Get() *Operation

func (NullableOperation) IsSet

func (v NullableOperation) IsSet() bool

func (NullableOperation) MarshalJSON

func (v NullableOperation) MarshalJSON() ([]byte, error)

func (*NullableOperation) Set

func (v *NullableOperation) Set(val *Operation)

func (*NullableOperation) UnmarshalJSON

func (v *NullableOperation) UnmarshalJSON(src []byte) error

func (*NullableOperation) Unset

func (v *NullableOperation) Unset()

type NullableOperationAudit

type NullableOperationAudit struct {
	// contains filtered or unexported fields
}

func NewNullableOperationAudit

func NewNullableOperationAudit(val *OperationAudit) *NullableOperationAudit

func (NullableOperationAudit) Get

func (NullableOperationAudit) IsSet

func (v NullableOperationAudit) IsSet() bool

func (NullableOperationAudit) MarshalJSON

func (v NullableOperationAudit) MarshalJSON() ([]byte, error)

func (*NullableOperationAudit) Set

func (*NullableOperationAudit) UnmarshalJSON

func (v *NullableOperationAudit) UnmarshalJSON(src []byte) error

func (*NullableOperationAudit) Unset

func (v *NullableOperationAudit) Unset()

type NullableOperationAuditEnumerateEnvelope

type NullableOperationAuditEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableOperationAuditEnumerateEnvelope

func NewNullableOperationAuditEnumerateEnvelope(val *OperationAuditEnumerateEnvelope) *NullableOperationAuditEnumerateEnvelope

func (NullableOperationAuditEnumerateEnvelope) Get

func (NullableOperationAuditEnumerateEnvelope) IsSet

func (NullableOperationAuditEnumerateEnvelope) MarshalJSON

func (v NullableOperationAuditEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableOperationAuditEnumerateEnvelope) Set

func (*NullableOperationAuditEnumerateEnvelope) UnmarshalJSON

func (v *NullableOperationAuditEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableOperationAuditEnumerateEnvelope) Unset

type NullableOperationAuditEnvelope

type NullableOperationAuditEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableOperationAuditEnvelope

func NewNullableOperationAuditEnvelope(val *OperationAuditEnvelope) *NullableOperationAuditEnvelope

func (NullableOperationAuditEnvelope) Get

func (NullableOperationAuditEnvelope) IsSet

func (NullableOperationAuditEnvelope) MarshalJSON

func (v NullableOperationAuditEnvelope) MarshalJSON() ([]byte, error)

func (*NullableOperationAuditEnvelope) Set

func (*NullableOperationAuditEnvelope) UnmarshalJSON

func (v *NullableOperationAuditEnvelope) UnmarshalJSON(src []byte) error

func (*NullableOperationAuditEnvelope) Unset

func (v *NullableOperationAuditEnvelope) Unset()

type NullableOperationType

type NullableOperationType struct {
	// contains filtered or unexported fields
}

func NewNullableOperationType

func NewNullableOperationType(val *OperationType) *NullableOperationType

func (NullableOperationType) Get

func (NullableOperationType) IsSet

func (v NullableOperationType) IsSet() bool

func (NullableOperationType) MarshalJSON

func (v NullableOperationType) MarshalJSON() ([]byte, error)

func (*NullableOperationType) Set

func (v *NullableOperationType) Set(val *OperationType)

func (*NullableOperationType) UnmarshalJSON

func (v *NullableOperationType) UnmarshalJSON(src []byte) error

func (*NullableOperationType) Unset

func (v *NullableOperationType) Unset()

type NullablePagination

type NullablePagination struct {
	// contains filtered or unexported fields
}

func NewNullablePagination

func NewNullablePagination(val *Pagination) *NullablePagination

func (NullablePagination) Get

func (v NullablePagination) Get() *Pagination

func (NullablePagination) IsSet

func (v NullablePagination) IsSet() bool

func (NullablePagination) MarshalJSON

func (v NullablePagination) MarshalJSON() ([]byte, error)

func (*NullablePagination) Set

func (v *NullablePagination) Set(val *Pagination)

func (*NullablePagination) UnmarshalJSON

func (v *NullablePagination) UnmarshalJSON(src []byte) error

func (*NullablePagination) Unset

func (v *NullablePagination) Unset()
type NullablePaginationLinks struct {
	// contains filtered or unexported fields
}
func NewNullablePaginationLinks(val *PaginationLinks) *NullablePaginationLinks

func (NullablePaginationLinks) Get

func (NullablePaginationLinks) IsSet

func (v NullablePaginationLinks) IsSet() bool

func (NullablePaginationLinks) MarshalJSON

func (v NullablePaginationLinks) MarshalJSON() ([]byte, error)

func (*NullablePaginationLinks) Set

func (*NullablePaginationLinks) UnmarshalJSON

func (v *NullablePaginationLinks) UnmarshalJSON(src []byte) error

func (*NullablePaginationLinks) Unset

func (v *NullablePaginationLinks) Unset()

type NullablePasswordChangeRequest

type NullablePasswordChangeRequest struct {
	// contains filtered or unexported fields
}

func NewNullablePasswordChangeRequest

func NewNullablePasswordChangeRequest(val *PasswordChangeRequest) *NullablePasswordChangeRequest

func (NullablePasswordChangeRequest) Get

func (NullablePasswordChangeRequest) IsSet

func (NullablePasswordChangeRequest) MarshalJSON

func (v NullablePasswordChangeRequest) MarshalJSON() ([]byte, error)

func (*NullablePasswordChangeRequest) Set

func (*NullablePasswordChangeRequest) UnmarshalJSON

func (v *NullablePasswordChangeRequest) UnmarshalJSON(src []byte) error

func (*NullablePasswordChangeRequest) Unset

func (v *NullablePasswordChangeRequest) Unset()

type NullablePasswordResetEmail

type NullablePasswordResetEmail struct {
	// contains filtered or unexported fields
}

func NewNullablePasswordResetEmail

func NewNullablePasswordResetEmail(val *PasswordResetEmail) *NullablePasswordResetEmail

func (NullablePasswordResetEmail) Get

func (NullablePasswordResetEmail) IsSet

func (v NullablePasswordResetEmail) IsSet() bool

func (NullablePasswordResetEmail) MarshalJSON

func (v NullablePasswordResetEmail) MarshalJSON() ([]byte, error)

func (*NullablePasswordResetEmail) Set

func (*NullablePasswordResetEmail) UnmarshalJSON

func (v *NullablePasswordResetEmail) UnmarshalJSON(src []byte) error

func (*NullablePasswordResetEmail) Unset

func (v *NullablePasswordResetEmail) Unset()

type NullablePasswordResetRequest

type NullablePasswordResetRequest struct {
	// contains filtered or unexported fields
}

func NewNullablePasswordResetRequest

func NewNullablePasswordResetRequest(val *PasswordResetRequest) *NullablePasswordResetRequest

func (NullablePasswordResetRequest) Get

func (NullablePasswordResetRequest) IsSet

func (NullablePasswordResetRequest) MarshalJSON

func (v NullablePasswordResetRequest) MarshalJSON() ([]byte, error)

func (*NullablePasswordResetRequest) Set

func (*NullablePasswordResetRequest) UnmarshalJSON

func (v *NullablePasswordResetRequest) UnmarshalJSON(src []byte) error

func (*NullablePasswordResetRequest) Unset

func (v *NullablePasswordResetRequest) Unset()

type NullablePolicyCheckRequest

type NullablePolicyCheckRequest struct {
	// contains filtered or unexported fields
}

func NewNullablePolicyCheckRequest

func NewNullablePolicyCheckRequest(val *PolicyCheckRequest) *NullablePolicyCheckRequest

func (NullablePolicyCheckRequest) Get

func (NullablePolicyCheckRequest) IsSet

func (v NullablePolicyCheckRequest) IsSet() bool

func (NullablePolicyCheckRequest) MarshalJSON

func (v NullablePolicyCheckRequest) MarshalJSON() ([]byte, error)

func (*NullablePolicyCheckRequest) Set

func (*NullablePolicyCheckRequest) UnmarshalJSON

func (v *NullablePolicyCheckRequest) UnmarshalJSON(src []byte) error

func (*NullablePolicyCheckRequest) Unset

func (v *NullablePolicyCheckRequest) Unset()

type NullablePolicyOperationType

type NullablePolicyOperationType struct {
	// contains filtered or unexported fields
}

func NewNullablePolicyOperationType

func NewNullablePolicyOperationType(val *PolicyOperationType) *NullablePolicyOperationType

func (NullablePolicyOperationType) Get

func (NullablePolicyOperationType) IsSet

func (NullablePolicyOperationType) MarshalJSON

func (v NullablePolicyOperationType) MarshalJSON() ([]byte, error)

func (*NullablePolicyOperationType) Set

func (*NullablePolicyOperationType) UnmarshalJSON

func (v *NullablePolicyOperationType) UnmarshalJSON(src []byte) error

func (*NullablePolicyOperationType) Unset

func (v *NullablePolicyOperationType) Unset()

type NullablePrivacyType

type NullablePrivacyType struct {
	// contains filtered or unexported fields
}

func NewNullablePrivacyType

func NewNullablePrivacyType(val *PrivacyType) *NullablePrivacyType

func (NullablePrivacyType) Get

func (NullablePrivacyType) IsSet

func (v NullablePrivacyType) IsSet() bool

func (NullablePrivacyType) MarshalJSON

func (v NullablePrivacyType) MarshalJSON() ([]byte, error)

func (*NullablePrivacyType) Set

func (v *NullablePrivacyType) Set(val *PrivacyType)

func (*NullablePrivacyType) UnmarshalJSON

func (v *NullablePrivacyType) UnmarshalJSON(src []byte) error

func (*NullablePrivacyType) Unset

func (v *NullablePrivacyType) Unset()

type NullablePropertyDescription

type NullablePropertyDescription struct {
	// contains filtered or unexported fields
}

func NewNullablePropertyDescription

func NewNullablePropertyDescription(val *PropertyDescription) *NullablePropertyDescription

func (NullablePropertyDescription) Get

func (NullablePropertyDescription) IsSet

func (NullablePropertyDescription) MarshalJSON

func (v NullablePropertyDescription) MarshalJSON() ([]byte, error)

func (*NullablePropertyDescription) Set

func (*NullablePropertyDescription) UnmarshalJSON

func (v *NullablePropertyDescription) UnmarshalJSON(src []byte) error

func (*NullablePropertyDescription) Unset

func (v *NullablePropertyDescription) Unset()

type NullablePropertyType

type NullablePropertyType struct {
	// contains filtered or unexported fields
}

func NewNullablePropertyType

func NewNullablePropertyType(val *PropertyType) *NullablePropertyType

func (NullablePropertyType) Get

func (NullablePropertyType) IsSet

func (v NullablePropertyType) IsSet() bool

func (NullablePropertyType) MarshalJSON

func (v NullablePropertyType) MarshalJSON() ([]byte, error)

func (*NullablePropertyType) Set

func (v *NullablePropertyType) Set(val *PropertyType)

func (*NullablePropertyType) UnmarshalJSON

func (v *NullablePropertyType) UnmarshalJSON(src []byte) error

func (*NullablePropertyType) Unset

func (v *NullablePropertyType) Unset()

type NullableRequest

type NullableRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRequest

func NewNullableRequest(val *Request) *NullableRequest

func (NullableRequest) Get

func (v NullableRequest) Get() *Request

func (NullableRequest) IsSet

func (v NullableRequest) IsSet() bool

func (NullableRequest) MarshalJSON

func (v NullableRequest) MarshalJSON() ([]byte, error)

func (*NullableRequest) Set

func (v *NullableRequest) Set(val *Request)

func (*NullableRequest) UnmarshalJSON

func (v *NullableRequest) UnmarshalJSON(src []byte) error

func (*NullableRequest) Unset

func (v *NullableRequest) Unset()

type NullableRequestEnumerateEnvelope

type NullableRequestEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableRequestEnumerateEnvelope

func NewNullableRequestEnumerateEnvelope(val *RequestEnumerateEnvelope) *NullableRequestEnumerateEnvelope

func (NullableRequestEnumerateEnvelope) Get

func (NullableRequestEnumerateEnvelope) IsSet

func (NullableRequestEnumerateEnvelope) MarshalJSON

func (v NullableRequestEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableRequestEnumerateEnvelope) Set

func (*NullableRequestEnumerateEnvelope) UnmarshalJSON

func (v *NullableRequestEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableRequestEnumerateEnvelope) Unset

type NullableRequestEnvelope

type NullableRequestEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableRequestEnvelope

func NewNullableRequestEnvelope(val *RequestEnvelope) *NullableRequestEnvelope

func (NullableRequestEnvelope) Get

func (NullableRequestEnvelope) IsSet

func (v NullableRequestEnvelope) IsSet() bool

func (NullableRequestEnvelope) MarshalJSON

func (v NullableRequestEnvelope) MarshalJSON() ([]byte, error)

func (*NullableRequestEnvelope) Set

func (*NullableRequestEnvelope) UnmarshalJSON

func (v *NullableRequestEnvelope) UnmarshalJSON(src []byte) error

func (*NullableRequestEnvelope) Unset

func (v *NullableRequestEnvelope) Unset()

type NullableRequestParameter

type NullableRequestParameter struct {
	// contains filtered or unexported fields
}

func NewNullableRequestParameter

func NewNullableRequestParameter(val *RequestParameter) *NullableRequestParameter

func (NullableRequestParameter) Get

func (NullableRequestParameter) IsSet

func (v NullableRequestParameter) IsSet() bool

func (NullableRequestParameter) MarshalJSON

func (v NullableRequestParameter) MarshalJSON() ([]byte, error)

func (*NullableRequestParameter) Set

func (*NullableRequestParameter) UnmarshalJSON

func (v *NullableRequestParameter) UnmarshalJSON(src []byte) error

func (*NullableRequestParameter) Unset

func (v *NullableRequestParameter) Unset()

type NullableRequestStatus

type NullableRequestStatus struct {
	// contains filtered or unexported fields
}

func NewNullableRequestStatus

func NewNullableRequestStatus(val *RequestStatus) *NullableRequestStatus

func (NullableRequestStatus) Get

func (NullableRequestStatus) IsSet

func (v NullableRequestStatus) IsSet() bool

func (NullableRequestStatus) MarshalJSON

func (v NullableRequestStatus) MarshalJSON() ([]byte, error)

func (*NullableRequestStatus) Set

func (v *NullableRequestStatus) Set(val *RequestStatus)

func (*NullableRequestStatus) UnmarshalJSON

func (v *NullableRequestStatus) UnmarshalJSON(src []byte) error

func (*NullableRequestStatus) Unset

func (v *NullableRequestStatus) Unset()

type NullableRequestType

type NullableRequestType struct {
	// contains filtered or unexported fields
}

func NewNullableRequestType

func NewNullableRequestType(val *RequestType) *NullableRequestType

func (NullableRequestType) Get

func (NullableRequestType) IsSet

func (v NullableRequestType) IsSet() bool

func (NullableRequestType) MarshalJSON

func (v NullableRequestType) MarshalJSON() ([]byte, error)

func (*NullableRequestType) Set

func (v *NullableRequestType) Set(val *RequestType)

func (*NullableRequestType) UnmarshalJSON

func (v *NullableRequestType) UnmarshalJSON(src []byte) error

func (*NullableRequestType) Unset

func (v *NullableRequestType) Unset()

type NullableResourceCategory

type NullableResourceCategory struct {
	// contains filtered or unexported fields
}

func NewNullableResourceCategory

func NewNullableResourceCategory(val *ResourceCategory) *NullableResourceCategory

func (NullableResourceCategory) Get

func (NullableResourceCategory) IsSet

func (v NullableResourceCategory) IsSet() bool

func (NullableResourceCategory) MarshalJSON

func (v NullableResourceCategory) MarshalJSON() ([]byte, error)

func (*NullableResourceCategory) Set

func (*NullableResourceCategory) UnmarshalJSON

func (v *NullableResourceCategory) UnmarshalJSON(src []byte) error

func (*NullableResourceCategory) Unset

func (v *NullableResourceCategory) Unset()

type NullableResourceState

type NullableResourceState struct {
	// contains filtered or unexported fields
}

func NewNullableResourceState

func NewNullableResourceState(val *ResourceState) *NullableResourceState

func (NullableResourceState) Get

func (NullableResourceState) IsSet

func (v NullableResourceState) IsSet() bool

func (NullableResourceState) MarshalJSON

func (v NullableResourceState) MarshalJSON() ([]byte, error)

func (*NullableResourceState) Set

func (v *NullableResourceState) Set(val *ResourceState)

func (*NullableResourceState) UnmarshalJSON

func (v *NullableResourceState) UnmarshalJSON(src []byte) error

func (*NullableResourceState) Unset

func (v *NullableResourceState) Unset()

type NullableRole

type NullableRole struct {
	// contains filtered or unexported fields
}

func NewNullableRole

func NewNullableRole(val *Role) *NullableRole

func (NullableRole) Get

func (v NullableRole) Get() *Role

func (NullableRole) IsSet

func (v NullableRole) IsSet() bool

func (NullableRole) MarshalJSON

func (v NullableRole) MarshalJSON() ([]byte, error)

func (*NullableRole) Set

func (v *NullableRole) Set(val *Role)

func (*NullableRole) UnmarshalJSON

func (v *NullableRole) UnmarshalJSON(src []byte) error

func (*NullableRole) Unset

func (v *NullableRole) Unset()

type NullableRoleEnumerateEnvelope

type NullableRoleEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableRoleEnumerateEnvelope

func NewNullableRoleEnumerateEnvelope(val *RoleEnumerateEnvelope) *NullableRoleEnumerateEnvelope

func (NullableRoleEnumerateEnvelope) Get

func (NullableRoleEnumerateEnvelope) IsSet

func (NullableRoleEnumerateEnvelope) MarshalJSON

func (v NullableRoleEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*NullableRoleEnumerateEnvelope) Set

func (*NullableRoleEnumerateEnvelope) UnmarshalJSON

func (v *NullableRoleEnumerateEnvelope) UnmarshalJSON(src []byte) error

func (*NullableRoleEnumerateEnvelope) Unset

func (v *NullableRoleEnumerateEnvelope) Unset()

type NullableRoleEnvelope

type NullableRoleEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableRoleEnvelope

func NewNullableRoleEnvelope(val *RoleEnvelope) *NullableRoleEnvelope

func (NullableRoleEnvelope) Get

func (NullableRoleEnvelope) IsSet

func (v NullableRoleEnvelope) IsSet() bool

func (NullableRoleEnvelope) MarshalJSON

func (v NullableRoleEnvelope) MarshalJSON() ([]byte, error)

func (*NullableRoleEnvelope) Set

func (v *NullableRoleEnvelope) Set(val *RoleEnvelope)

func (*NullableRoleEnvelope) UnmarshalJSON

func (v *NullableRoleEnvelope) UnmarshalJSON(src []byte) error

func (*NullableRoleEnvelope) Unset

func (v *NullableRoleEnvelope) Unset()

type NullableRoleInfo

type NullableRoleInfo struct {
	// contains filtered or unexported fields
}

func NewNullableRoleInfo

func NewNullableRoleInfo(val *RoleInfo) *NullableRoleInfo

func (NullableRoleInfo) Get

func (v NullableRoleInfo) Get() *RoleInfo

func (NullableRoleInfo) IsSet

func (v NullableRoleInfo) IsSet() bool

func (NullableRoleInfo) MarshalJSON

func (v NullableRoleInfo) MarshalJSON() ([]byte, error)

func (*NullableRoleInfo) Set

func (v *NullableRoleInfo) Set(val *RoleInfo)

func (*NullableRoleInfo) UnmarshalJSON

func (v *NullableRoleInfo) UnmarshalJSON(src []byte) error

func (*NullableRoleInfo) Unset

func (v *NullableRoleInfo) Unset()

type NullableSelfServiceAccountActivationRequest

type NullableSelfServiceAccountActivationRequest struct {
	// contains filtered or unexported fields
}

func NewNullableSelfServiceAccountActivationRequest

func NewNullableSelfServiceAccountActivationRequest(val *SelfServiceAccountActivationRequest) *NullableSelfServiceAccountActivationRequest

func (NullableSelfServiceAccountActivationRequest) Get

func (NullableSelfServiceAccountActivationRequest) IsSet

func (NullableSelfServiceAccountActivationRequest) MarshalJSON

func (*NullableSelfServiceAccountActivationRequest) Set

func (*NullableSelfServiceAccountActivationRequest) UnmarshalJSON

func (v *NullableSelfServiceAccountActivationRequest) UnmarshalJSON(src []byte) error

func (*NullableSelfServiceAccountActivationRequest) Unset

type NullableSelfServiceResetRequest

type NullableSelfServiceResetRequest struct {
	// contains filtered or unexported fields
}

func NewNullableSelfServiceResetRequest

func NewNullableSelfServiceResetRequest(val *SelfServiceResetRequest) *NullableSelfServiceResetRequest

func (NullableSelfServiceResetRequest) Get

func (NullableSelfServiceResetRequest) IsSet

func (NullableSelfServiceResetRequest) MarshalJSON

func (v NullableSelfServiceResetRequest) MarshalJSON() ([]byte, error)

func (*NullableSelfServiceResetRequest) Set

func (*NullableSelfServiceResetRequest) UnmarshalJSON

func (v *NullableSelfServiceResetRequest) UnmarshalJSON(src []byte) error

func (*NullableSelfServiceResetRequest) Unset

type NullableSelfSubscriptionType

type NullableSelfSubscriptionType struct {
	// contains filtered or unexported fields
}

func NewNullableSelfSubscriptionType

func NewNullableSelfSubscriptionType(val *SelfSubscriptionType) *NullableSelfSubscriptionType

func (NullableSelfSubscriptionType) Get

func (NullableSelfSubscriptionType) IsSet

func (NullableSelfSubscriptionType) MarshalJSON

func (v NullableSelfSubscriptionType) MarshalJSON() ([]byte, error)

func (*NullableSelfSubscriptionType) Set

func (*NullableSelfSubscriptionType) UnmarshalJSON

func (v *NullableSelfSubscriptionType) UnmarshalJSON(src []byte) error

func (*NullableSelfSubscriptionType) Unset

func (v *NullableSelfSubscriptionType) 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 NullableStringArrayEnvelope

type NullableStringArrayEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableStringArrayEnvelope

func NewNullableStringArrayEnvelope(val *StringArrayEnvelope) *NullableStringArrayEnvelope

func (NullableStringArrayEnvelope) Get

func (NullableStringArrayEnvelope) IsSet

func (NullableStringArrayEnvelope) MarshalJSON

func (v NullableStringArrayEnvelope) MarshalJSON() ([]byte, error)

func (*NullableStringArrayEnvelope) Set

func (*NullableStringArrayEnvelope) UnmarshalJSON

func (v *NullableStringArrayEnvelope) UnmarshalJSON(src []byte) error

func (*NullableStringArrayEnvelope) Unset

func (v *NullableStringArrayEnvelope) Unset()

type NullableStringJObjectIEnumerableDictionaryEnvelope

type NullableStringJObjectIEnumerableDictionaryEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableStringJObjectIEnumerableDictionaryEnvelope

func NewNullableStringJObjectIEnumerableDictionaryEnvelope(val *StringJObjectIEnumerableDictionaryEnvelope) *NullableStringJObjectIEnumerableDictionaryEnvelope

func (NullableStringJObjectIEnumerableDictionaryEnvelope) Get

func (NullableStringJObjectIEnumerableDictionaryEnvelope) IsSet

func (NullableStringJObjectIEnumerableDictionaryEnvelope) MarshalJSON

func (*NullableStringJObjectIEnumerableDictionaryEnvelope) Set

func (*NullableStringJObjectIEnumerableDictionaryEnvelope) UnmarshalJSON

func (*NullableStringJObjectIEnumerableDictionaryEnvelope) Unset

type NullableStringStringDictionaryEnvelope

type NullableStringStringDictionaryEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableStringStringDictionaryEnvelope

func NewNullableStringStringDictionaryEnvelope(val *StringStringDictionaryEnvelope) *NullableStringStringDictionaryEnvelope

func (NullableStringStringDictionaryEnvelope) Get

func (NullableStringStringDictionaryEnvelope) IsSet

func (NullableStringStringDictionaryEnvelope) MarshalJSON

func (v NullableStringStringDictionaryEnvelope) MarshalJSON() ([]byte, error)

func (*NullableStringStringDictionaryEnvelope) Set

func (*NullableStringStringDictionaryEnvelope) UnmarshalJSON

func (v *NullableStringStringDictionaryEnvelope) UnmarshalJSON(src []byte) error

func (*NullableStringStringDictionaryEnvelope) Unset

type NullableTaskCreationOptions

type NullableTaskCreationOptions struct {
	// contains filtered or unexported fields
}

func NewNullableTaskCreationOptions

func NewNullableTaskCreationOptions(val *TaskCreationOptions) *NullableTaskCreationOptions

func (NullableTaskCreationOptions) Get

func (NullableTaskCreationOptions) IsSet

func (NullableTaskCreationOptions) MarshalJSON

func (v NullableTaskCreationOptions) MarshalJSON() ([]byte, error)

func (*NullableTaskCreationOptions) Set

func (*NullableTaskCreationOptions) UnmarshalJSON

func (v *NullableTaskCreationOptions) UnmarshalJSON(src []byte) error

func (*NullableTaskCreationOptions) Unset

func (v *NullableTaskCreationOptions) Unset()

type NullableTaskStatus

type NullableTaskStatus struct {
	// contains filtered or unexported fields
}

func NewNullableTaskStatus

func NewNullableTaskStatus(val *TaskStatus) *NullableTaskStatus

func (NullableTaskStatus) Get

func (v NullableTaskStatus) Get() *TaskStatus

func (NullableTaskStatus) IsSet

func (v NullableTaskStatus) IsSet() bool

func (NullableTaskStatus) MarshalJSON

func (v NullableTaskStatus) MarshalJSON() ([]byte, error)

func (*NullableTaskStatus) Set

func (v *NullableTaskStatus) Set(val *TaskStatus)

func (*NullableTaskStatus) UnmarshalJSON

func (v *NullableTaskStatus) UnmarshalJSON(src []byte) error

func (*NullableTaskStatus) Unset

func (v *NullableTaskStatus) 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 NullableTokenExchangePermission

type NullableTokenExchangePermission struct {
	// contains filtered or unexported fields
}

func NewNullableTokenExchangePermission

func NewNullableTokenExchangePermission(val *TokenExchangePermission) *NullableTokenExchangePermission

func (NullableTokenExchangePermission) Get

func (NullableTokenExchangePermission) IsSet

func (NullableTokenExchangePermission) MarshalJSON

func (v NullableTokenExchangePermission) MarshalJSON() ([]byte, error)

func (*NullableTokenExchangePermission) Set

func (*NullableTokenExchangePermission) UnmarshalJSON

func (v *NullableTokenExchangePermission) UnmarshalJSON(src []byte) error

func (*NullableTokenExchangePermission) Unset

type NullableTokenExchangePermissionEnvelope

type NullableTokenExchangePermissionEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableTokenExchangePermissionEnvelope

func NewNullableTokenExchangePermissionEnvelope(val *TokenExchangePermissionEnvelope) *NullableTokenExchangePermissionEnvelope

func (NullableTokenExchangePermissionEnvelope) Get

func (NullableTokenExchangePermissionEnvelope) IsSet

func (NullableTokenExchangePermissionEnvelope) MarshalJSON

func (v NullableTokenExchangePermissionEnvelope) MarshalJSON() ([]byte, error)

func (*NullableTokenExchangePermissionEnvelope) Set

func (*NullableTokenExchangePermissionEnvelope) UnmarshalJSON

func (v *NullableTokenExchangePermissionEnvelope) UnmarshalJSON(src []byte) error

func (*NullableTokenExchangePermissionEnvelope) Unset

type NullableTokenExchangeRequest

type NullableTokenExchangeRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTokenExchangeRequest

func NewNullableTokenExchangeRequest(val *TokenExchangeRequest) *NullableTokenExchangeRequest

func (NullableTokenExchangeRequest) Get

func (NullableTokenExchangeRequest) IsSet

func (NullableTokenExchangeRequest) MarshalJSON

func (v NullableTokenExchangeRequest) MarshalJSON() ([]byte, error)

func (*NullableTokenExchangeRequest) Set

func (*NullableTokenExchangeRequest) UnmarshalJSON

func (v *NullableTokenExchangeRequest) UnmarshalJSON(src []byte) error

func (*NullableTokenExchangeRequest) Unset

func (v *NullableTokenExchangeRequest) Unset()

type NullableUserApplicationSubscriptionStatus

type NullableUserApplicationSubscriptionStatus struct {
	// contains filtered or unexported fields
}

func NewNullableUserApplicationSubscriptionStatus

func NewNullableUserApplicationSubscriptionStatus(val *UserApplicationSubscriptionStatus) *NullableUserApplicationSubscriptionStatus

func (NullableUserApplicationSubscriptionStatus) Get

func (NullableUserApplicationSubscriptionStatus) IsSet

func (NullableUserApplicationSubscriptionStatus) MarshalJSON

func (*NullableUserApplicationSubscriptionStatus) Set

func (*NullableUserApplicationSubscriptionStatus) UnmarshalJSON

func (v *NullableUserApplicationSubscriptionStatus) UnmarshalJSON(src []byte) error

func (*NullableUserApplicationSubscriptionStatus) Unset

type NullableUserRoles

type NullableUserRoles struct {
	// contains filtered or unexported fields
}

func NewNullableUserRoles

func NewNullableUserRoles(val *UserRoles) *NullableUserRoles

func (NullableUserRoles) Get

func (v NullableUserRoles) Get() *UserRoles

func (NullableUserRoles) IsSet

func (v NullableUserRoles) IsSet() bool

func (NullableUserRoles) MarshalJSON

func (v NullableUserRoles) MarshalJSON() ([]byte, error)

func (*NullableUserRoles) Set

func (v *NullableUserRoles) Set(val *UserRoles)

func (*NullableUserRoles) UnmarshalJSON

func (v *NullableUserRoles) UnmarshalJSON(src []byte) error

func (*NullableUserRoles) Unset

func (v *NullableUserRoles) Unset()

type NullableUserRolesEnvelope

type NullableUserRolesEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableUserRolesEnvelope

func NewNullableUserRolesEnvelope(val *UserRolesEnvelope) *NullableUserRolesEnvelope

func (NullableUserRolesEnvelope) Get

func (NullableUserRolesEnvelope) IsSet

func (v NullableUserRolesEnvelope) IsSet() bool

func (NullableUserRolesEnvelope) MarshalJSON

func (v NullableUserRolesEnvelope) MarshalJSON() ([]byte, error)

func (*NullableUserRolesEnvelope) Set

func (*NullableUserRolesEnvelope) UnmarshalJSON

func (v *NullableUserRolesEnvelope) UnmarshalJSON(src []byte) error

func (*NullableUserRolesEnvelope) Unset

func (v *NullableUserRolesEnvelope) Unset()

type NullableUserSubscriptionByLifecycleSettings

type NullableUserSubscriptionByLifecycleSettings struct {
	// contains filtered or unexported fields
}

func NewNullableUserSubscriptionByLifecycleSettings

func NewNullableUserSubscriptionByLifecycleSettings(val *UserSubscriptionByLifecycleSettings) *NullableUserSubscriptionByLifecycleSettings

func (NullableUserSubscriptionByLifecycleSettings) Get

func (NullableUserSubscriptionByLifecycleSettings) IsSet

func (NullableUserSubscriptionByLifecycleSettings) MarshalJSON

func (*NullableUserSubscriptionByLifecycleSettings) Set

func (*NullableUserSubscriptionByLifecycleSettings) UnmarshalJSON

func (v *NullableUserSubscriptionByLifecycleSettings) UnmarshalJSON(src []byte) error

func (*NullableUserSubscriptionByLifecycleSettings) Unset

type NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope

type NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope

func NewNullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope(val *UserSubscriptionByLifecycleSettingsEnumerateEnvelope) *NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope

func (NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope) Get

func (NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope) IsSet

func (NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope) MarshalJSON

func (*NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope) Set

func (*NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope) UnmarshalJSON

func (*NullableUserSubscriptionByLifecycleSettingsEnumerateEnvelope) Unset

type NullableWarmupStatus

type NullableWarmupStatus struct {
	// contains filtered or unexported fields
}

func NewNullableWarmupStatus

func NewNullableWarmupStatus(val *WarmupStatus) *NullableWarmupStatus

func (NullableWarmupStatus) Get

func (NullableWarmupStatus) IsSet

func (v NullableWarmupStatus) IsSet() bool

func (NullableWarmupStatus) MarshalJSON

func (v NullableWarmupStatus) MarshalJSON() ([]byte, error)

func (*NullableWarmupStatus) Set

func (v *NullableWarmupStatus) Set(val *WarmupStatus)

func (*NullableWarmupStatus) UnmarshalJSON

func (v *NullableWarmupStatus) UnmarshalJSON(src []byte) error

func (*NullableWarmupStatus) Unset

func (v *NullableWarmupStatus) Unset()

type NullableWarmupStatusEnvelope

type NullableWarmupStatusEnvelope struct {
	// contains filtered or unexported fields
}

func NewNullableWarmupStatusEnvelope

func NewNullableWarmupStatusEnvelope(val *WarmupStatusEnvelope) *NullableWarmupStatusEnvelope

func (NullableWarmupStatusEnvelope) Get

func (NullableWarmupStatusEnvelope) IsSet

func (NullableWarmupStatusEnvelope) MarshalJSON

func (v NullableWarmupStatusEnvelope) MarshalJSON() ([]byte, error)

func (*NullableWarmupStatusEnvelope) Set

func (*NullableWarmupStatusEnvelope) UnmarshalJSON

func (v *NullableWarmupStatusEnvelope) UnmarshalJSON(src []byte) error

func (*NullableWarmupStatusEnvelope) Unset

func (v *NullableWarmupStatusEnvelope) Unset()

type ObjectEnvelope

type ObjectEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      interface{}    `json:"data,omitempty"`
}

ObjectEnvelope struct for ObjectEnvelope

func NewObjectEnvelope

func NewObjectEnvelope() *ObjectEnvelope

NewObjectEnvelope instantiates a new ObjectEnvelope 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 NewObjectEnvelopeWithDefaults

func NewObjectEnvelopeWithDefaults() *ObjectEnvelope

NewObjectEnvelopeWithDefaults instantiates a new ObjectEnvelope 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 (*ObjectEnvelope) GetData

func (o *ObjectEnvelope) GetData() interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ObjectEnvelope) GetDataOk

func (o *ObjectEnvelope) GetDataOk() (*interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ObjectEnvelope) GetMessage

func (o *ObjectEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ObjectEnvelope) GetMessageOk

func (o *ObjectEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ObjectEnvelope) GetRequestId

func (o *ObjectEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ObjectEnvelope) GetRequestIdOk

func (o *ObjectEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ObjectEnvelope) HasData

func (o *ObjectEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*ObjectEnvelope) HasMessage

func (o *ObjectEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ObjectEnvelope) HasRequestId

func (o *ObjectEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (ObjectEnvelope) MarshalJSON

func (o ObjectEnvelope) MarshalJSON() ([]byte, error)

func (*ObjectEnvelope) SetData

func (o *ObjectEnvelope) SetData(v interface{})

SetData gets a reference to the given interface{} and assigns it to the Data field.

func (*ObjectEnvelope) SetMessage

func (o *ObjectEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*ObjectEnvelope) SetMessageNil

func (o *ObjectEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ObjectEnvelope) SetRequestId

func (o *ObjectEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*ObjectEnvelope) SetRequestIdNil

func (o *ObjectEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (ObjectEnvelope) ToMap

func (o ObjectEnvelope) ToMap() (map[string]interface{}, error)

func (*ObjectEnvelope) UnsetMessage

func (o *ObjectEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*ObjectEnvelope) UnsetRequestId

func (o *ObjectEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type OkResult

type OkResult struct {
	StatusCode *int32 `json:"statusCode,omitempty"`
}

OkResult struct for OkResult

func NewOkResult

func NewOkResult() *OkResult

NewOkResult instantiates a new OkResult 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 NewOkResultWithDefaults

func NewOkResultWithDefaults() *OkResult

NewOkResultWithDefaults instantiates a new OkResult 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 (*OkResult) GetStatusCode

func (o *OkResult) GetStatusCode() int32

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*OkResult) GetStatusCodeOk

func (o *OkResult) GetStatusCodeOk() (*int32, bool)

GetStatusCodeOk returns a tuple with the StatusCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OkResult) HasStatusCode

func (o *OkResult) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (OkResult) MarshalJSON

func (o OkResult) MarshalJSON() ([]byte, error)

func (*OkResult) SetStatusCode

func (o *OkResult) SetStatusCode(v int32)

SetStatusCode gets a reference to the given int32 and assigns it to the StatusCode field.

func (OkResult) ToMap

func (o OkResult) ToMap() (map[string]interface{}, error)

type OkResultEnvelope

type OkResultEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *OkResult      `json:"data,omitempty"`
}

OkResultEnvelope struct for OkResultEnvelope

func NewOkResultEnvelope

func NewOkResultEnvelope() *OkResultEnvelope

NewOkResultEnvelope instantiates a new OkResultEnvelope 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 NewOkResultEnvelopeWithDefaults

func NewOkResultEnvelopeWithDefaults() *OkResultEnvelope

NewOkResultEnvelopeWithDefaults instantiates a new OkResultEnvelope 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 (*OkResultEnvelope) GetData

func (o *OkResultEnvelope) GetData() OkResult

GetData returns the Data field value if set, zero value otherwise.

func (*OkResultEnvelope) GetDataOk

func (o *OkResultEnvelope) GetDataOk() (*OkResult, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OkResultEnvelope) GetMessage

func (o *OkResultEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OkResultEnvelope) GetMessageOk

func (o *OkResultEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OkResultEnvelope) GetRequestId

func (o *OkResultEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OkResultEnvelope) GetRequestIdOk

func (o *OkResultEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OkResultEnvelope) HasData

func (o *OkResultEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*OkResultEnvelope) HasMessage

func (o *OkResultEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*OkResultEnvelope) HasRequestId

func (o *OkResultEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (OkResultEnvelope) MarshalJSON

func (o OkResultEnvelope) MarshalJSON() ([]byte, error)

func (*OkResultEnvelope) SetData

func (o *OkResultEnvelope) SetData(v OkResult)

SetData gets a reference to the given OkResult and assigns it to the Data field.

func (*OkResultEnvelope) SetMessage

func (o *OkResultEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*OkResultEnvelope) SetMessageNil

func (o *OkResultEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*OkResultEnvelope) SetRequestId

func (o *OkResultEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*OkResultEnvelope) SetRequestIdNil

func (o *OkResultEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (OkResultEnvelope) ToMap

func (o OkResultEnvelope) ToMap() (map[string]interface{}, error)

func (*OkResultEnvelope) UnsetMessage

func (o *OkResultEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*OkResultEnvelope) UnsetRequestId

func (o *OkResultEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type Operation

type Operation struct {
	Value interface{}    `json:"value,omitempty"`
	Path  NullableString `json:"path,omitempty"`
	Op    NullableString `json:"op,omitempty"`
	From  NullableString `json:"from,omitempty"`
}

Operation struct for Operation

func NewOperation

func NewOperation() *Operation

NewOperation instantiates a new Operation 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 NewOperationWithDefaults

func NewOperationWithDefaults() *Operation

NewOperationWithDefaults instantiates a new Operation 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 (*Operation) GetFrom

func (o *Operation) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Operation) GetFromOk

func (o *Operation) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Operation) GetOp

func (o *Operation) GetOp() string

GetOp returns the Op field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Operation) GetOpOk

func (o *Operation) GetOpOk() (*string, bool)

GetOpOk returns a tuple with the Op field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Operation) GetPath

func (o *Operation) GetPath() string

GetPath returns the Path field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Operation) GetPathOk

func (o *Operation) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Operation) GetValue

func (o *Operation) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Operation) GetValueOk

func (o *Operation) GetValueOk() (*interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Operation) HasFrom

func (o *Operation) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*Operation) HasOp

func (o *Operation) HasOp() bool

HasOp returns a boolean if a field has been set.

func (*Operation) HasPath

func (o *Operation) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*Operation) HasValue

func (o *Operation) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Operation) MarshalJSON

func (o Operation) MarshalJSON() ([]byte, error)

func (*Operation) SetFrom

func (o *Operation) SetFrom(v string)

SetFrom gets a reference to the given NullableString and assigns it to the From field.

func (*Operation) SetFromNil

func (o *Operation) SetFromNil()

SetFromNil sets the value for From to be an explicit nil

func (*Operation) SetOp

func (o *Operation) SetOp(v string)

SetOp gets a reference to the given NullableString and assigns it to the Op field.

func (*Operation) SetOpNil

func (o *Operation) SetOpNil()

SetOpNil sets the value for Op to be an explicit nil

func (*Operation) SetPath

func (o *Operation) SetPath(v string)

SetPath gets a reference to the given NullableString and assigns it to the Path field.

func (*Operation) SetPathNil

func (o *Operation) SetPathNil()

SetPathNil sets the value for Path to be an explicit nil

func (*Operation) SetValue

func (o *Operation) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (Operation) ToMap

func (o Operation) ToMap() (map[string]interface{}, error)

func (*Operation) UnsetFrom

func (o *Operation) UnsetFrom()

UnsetFrom ensures that no value is present for From, not even an explicit nil

func (*Operation) UnsetOp

func (o *Operation) UnsetOp()

UnsetOp ensures that no value is present for Op, not even an explicit nil

func (*Operation) UnsetPath

func (o *Operation) UnsetPath()

UnsetPath ensures that no value is present for Path, not even an explicit nil

type OperationAudit

type OperationAudit struct {
	Time                *time.Time           `json:"time,omitempty"`
	IdentityId          NullableString       `json:"identityId,omitempty"`
	DisplayName         NullableString       `json:"displayName,omitempty"`
	AccountId           NullableString       `json:"accountId,omitempty"`
	ApplicationId       NullableString       `json:"applicationId,omitempty"`
	IpAddress           NullableString       `json:"ipAddress,omitempty"`
	OperationType       NullableString       `json:"operationType,omitempty"`
	Authorized          *AuthorizationStatus `json:"authorized,omitempty"`
	AuthorizationReason NullableString       `json:"authorizationReason,omitempty"`
	Success             *bool                `json:"success,omitempty"`
	Reason              NullableString       `json:"reason,omitempty"`
	Description         NullableString       `json:"description,omitempty"`
	TargetObjectType1   NullableString       `json:"targetObjectType1,omitempty"`
	TargetObjectId1     NullableString       `json:"targetObjectId1,omitempty"`
	TargetObject1       NullableString       `json:"targetObject1,omitempty"`
	TargetObjectType2   NullableString       `json:"targetObjectType2,omitempty"`
	TargetObject2       NullableString       `json:"targetObject2,omitempty"`
	TargetObjectId2     NullableString       `json:"targetObjectId2,omitempty"`
	ParentObjectType    NullableString       `json:"parentObjectType,omitempty"`
	ParentObjectId      NullableString       `json:"parentObjectId,omitempty"`
	ParentObject        NullableString       `json:"parentObject,omitempty"`
	Id                  NullableString       `json:"id,omitempty"`
	CreationTime        *time.Time           `json:"creationTime,omitempty"`
}

OperationAudit struct for OperationAudit

func NewOperationAudit

func NewOperationAudit() *OperationAudit

NewOperationAudit instantiates a new OperationAudit 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 NewOperationAuditWithDefaults

func NewOperationAuditWithDefaults() *OperationAudit

NewOperationAuditWithDefaults instantiates a new OperationAudit 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 (*OperationAudit) GetAccountId

func (o *OperationAudit) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetAccountIdOk

func (o *OperationAudit) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetApplicationId

func (o *OperationAudit) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetApplicationIdOk

func (o *OperationAudit) GetApplicationIdOk() (*string, bool)

GetApplicationIdOk returns a tuple with the ApplicationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetAuthorizationReason

func (o *OperationAudit) GetAuthorizationReason() string

GetAuthorizationReason returns the AuthorizationReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetAuthorizationReasonOk

func (o *OperationAudit) GetAuthorizationReasonOk() (*string, bool)

GetAuthorizationReasonOk returns a tuple with the AuthorizationReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetAuthorized

func (o *OperationAudit) GetAuthorized() AuthorizationStatus

GetAuthorized returns the Authorized field value if set, zero value otherwise.

func (*OperationAudit) GetAuthorizedOk

func (o *OperationAudit) GetAuthorizedOk() (*AuthorizationStatus, bool)

GetAuthorizedOk returns a tuple with the Authorized field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationAudit) GetCreationTime

func (o *OperationAudit) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*OperationAudit) GetCreationTimeOk

func (o *OperationAudit) GetCreationTimeOk() (*time.Time, bool)

GetCreationTimeOk returns a tuple with the CreationTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationAudit) GetDescription

func (o *OperationAudit) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetDescriptionOk

func (o *OperationAudit) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetDisplayName

func (o *OperationAudit) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetDisplayNameOk

func (o *OperationAudit) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetId

func (o *OperationAudit) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetIdOk

func (o *OperationAudit) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetIdentityId

func (o *OperationAudit) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetIdentityIdOk

func (o *OperationAudit) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetIpAddress

func (o *OperationAudit) GetIpAddress() string

GetIpAddress returns the IpAddress field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetIpAddressOk

func (o *OperationAudit) GetIpAddressOk() (*string, bool)

GetIpAddressOk returns a tuple with the IpAddress field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetOperationType

func (o *OperationAudit) GetOperationType() string

GetOperationType returns the OperationType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetOperationTypeOk

func (o *OperationAudit) GetOperationTypeOk() (*string, bool)

GetOperationTypeOk returns a tuple with the OperationType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetParentObject

func (o *OperationAudit) GetParentObject() string

GetParentObject returns the ParentObject field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetParentObjectId

func (o *OperationAudit) GetParentObjectId() string

GetParentObjectId returns the ParentObjectId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetParentObjectIdOk

func (o *OperationAudit) GetParentObjectIdOk() (*string, bool)

GetParentObjectIdOk returns a tuple with the ParentObjectId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetParentObjectOk

func (o *OperationAudit) GetParentObjectOk() (*string, bool)

GetParentObjectOk returns a tuple with the ParentObject field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetParentObjectType

func (o *OperationAudit) GetParentObjectType() string

GetParentObjectType returns the ParentObjectType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetParentObjectTypeOk

func (o *OperationAudit) GetParentObjectTypeOk() (*string, bool)

GetParentObjectTypeOk returns a tuple with the ParentObjectType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetReason

func (o *OperationAudit) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetReasonOk

func (o *OperationAudit) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetSuccess

func (o *OperationAudit) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*OperationAudit) GetSuccessOk

func (o *OperationAudit) GetSuccessOk() (*bool, bool)

GetSuccessOk returns a tuple with the Success field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationAudit) GetTargetObject1

func (o *OperationAudit) GetTargetObject1() string

GetTargetObject1 returns the TargetObject1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetTargetObject1Ok

func (o *OperationAudit) GetTargetObject1Ok() (*string, bool)

GetTargetObject1Ok returns a tuple with the TargetObject1 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetTargetObject2

func (o *OperationAudit) GetTargetObject2() string

GetTargetObject2 returns the TargetObject2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetTargetObject2Ok

func (o *OperationAudit) GetTargetObject2Ok() (*string, bool)

GetTargetObject2Ok returns a tuple with the TargetObject2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetTargetObjectId1

func (o *OperationAudit) GetTargetObjectId1() string

GetTargetObjectId1 returns the TargetObjectId1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetTargetObjectId1Ok

func (o *OperationAudit) GetTargetObjectId1Ok() (*string, bool)

GetTargetObjectId1Ok returns a tuple with the TargetObjectId1 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetTargetObjectId2

func (o *OperationAudit) GetTargetObjectId2() string

GetTargetObjectId2 returns the TargetObjectId2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetTargetObjectId2Ok

func (o *OperationAudit) GetTargetObjectId2Ok() (*string, bool)

GetTargetObjectId2Ok returns a tuple with the TargetObjectId2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetTargetObjectType1

func (o *OperationAudit) GetTargetObjectType1() string

GetTargetObjectType1 returns the TargetObjectType1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetTargetObjectType1Ok

func (o *OperationAudit) GetTargetObjectType1Ok() (*string, bool)

GetTargetObjectType1Ok returns a tuple with the TargetObjectType1 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetTargetObjectType2

func (o *OperationAudit) GetTargetObjectType2() string

GetTargetObjectType2 returns the TargetObjectType2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAudit) GetTargetObjectType2Ok

func (o *OperationAudit) GetTargetObjectType2Ok() (*string, bool)

GetTargetObjectType2Ok returns a tuple with the TargetObjectType2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAudit) GetTime

func (o *OperationAudit) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*OperationAudit) GetTimeOk

func (o *OperationAudit) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationAudit) HasAccountId

func (o *OperationAudit) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*OperationAudit) HasApplicationId

func (o *OperationAudit) HasApplicationId() bool

HasApplicationId returns a boolean if a field has been set.

func (*OperationAudit) HasAuthorizationReason

func (o *OperationAudit) HasAuthorizationReason() bool

HasAuthorizationReason returns a boolean if a field has been set.

func (*OperationAudit) HasAuthorized

func (o *OperationAudit) HasAuthorized() bool

HasAuthorized returns a boolean if a field has been set.

func (*OperationAudit) HasCreationTime

func (o *OperationAudit) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*OperationAudit) HasDescription

func (o *OperationAudit) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OperationAudit) HasDisplayName

func (o *OperationAudit) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*OperationAudit) HasId

func (o *OperationAudit) HasId() bool

HasId returns a boolean if a field has been set.

func (*OperationAudit) HasIdentityId

func (o *OperationAudit) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (*OperationAudit) HasIpAddress

func (o *OperationAudit) HasIpAddress() bool

HasIpAddress returns a boolean if a field has been set.

func (*OperationAudit) HasOperationType

func (o *OperationAudit) HasOperationType() bool

HasOperationType returns a boolean if a field has been set.

func (*OperationAudit) HasParentObject

func (o *OperationAudit) HasParentObject() bool

HasParentObject returns a boolean if a field has been set.

func (*OperationAudit) HasParentObjectId

func (o *OperationAudit) HasParentObjectId() bool

HasParentObjectId returns a boolean if a field has been set.

func (*OperationAudit) HasParentObjectType

func (o *OperationAudit) HasParentObjectType() bool

HasParentObjectType returns a boolean if a field has been set.

func (*OperationAudit) HasReason

func (o *OperationAudit) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*OperationAudit) HasSuccess

func (o *OperationAudit) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (*OperationAudit) HasTargetObject1

func (o *OperationAudit) HasTargetObject1() bool

HasTargetObject1 returns a boolean if a field has been set.

func (*OperationAudit) HasTargetObject2

func (o *OperationAudit) HasTargetObject2() bool

HasTargetObject2 returns a boolean if a field has been set.

func (*OperationAudit) HasTargetObjectId1

func (o *OperationAudit) HasTargetObjectId1() bool

HasTargetObjectId1 returns a boolean if a field has been set.

func (*OperationAudit) HasTargetObjectId2

func (o *OperationAudit) HasTargetObjectId2() bool

HasTargetObjectId2 returns a boolean if a field has been set.

func (*OperationAudit) HasTargetObjectType1

func (o *OperationAudit) HasTargetObjectType1() bool

HasTargetObjectType1 returns a boolean if a field has been set.

func (*OperationAudit) HasTargetObjectType2

func (o *OperationAudit) HasTargetObjectType2() bool

HasTargetObjectType2 returns a boolean if a field has been set.

func (*OperationAudit) HasTime

func (o *OperationAudit) HasTime() bool

HasTime returns a boolean if a field has been set.

func (OperationAudit) MarshalJSON

func (o OperationAudit) MarshalJSON() ([]byte, error)

func (*OperationAudit) SetAccountId

func (o *OperationAudit) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*OperationAudit) SetAccountIdNil

func (o *OperationAudit) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*OperationAudit) SetApplicationId

func (o *OperationAudit) SetApplicationId(v string)

SetApplicationId gets a reference to the given NullableString and assigns it to the ApplicationId field.

func (*OperationAudit) SetApplicationIdNil

func (o *OperationAudit) SetApplicationIdNil()

SetApplicationIdNil sets the value for ApplicationId to be an explicit nil

func (*OperationAudit) SetAuthorizationReason

func (o *OperationAudit) SetAuthorizationReason(v string)

SetAuthorizationReason gets a reference to the given NullableString and assigns it to the AuthorizationReason field.

func (*OperationAudit) SetAuthorizationReasonNil

func (o *OperationAudit) SetAuthorizationReasonNil()

SetAuthorizationReasonNil sets the value for AuthorizationReason to be an explicit nil

func (*OperationAudit) SetAuthorized

func (o *OperationAudit) SetAuthorized(v AuthorizationStatus)

SetAuthorized gets a reference to the given AuthorizationStatus and assigns it to the Authorized field.

func (*OperationAudit) SetCreationTime

func (o *OperationAudit) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*OperationAudit) SetDescription

func (o *OperationAudit) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*OperationAudit) SetDescriptionNil

func (o *OperationAudit) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*OperationAudit) SetDisplayName

func (o *OperationAudit) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*OperationAudit) SetDisplayNameNil

func (o *OperationAudit) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*OperationAudit) SetId

func (o *OperationAudit) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*OperationAudit) SetIdNil

func (o *OperationAudit) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*OperationAudit) SetIdentityId

func (o *OperationAudit) SetIdentityId(v string)

SetIdentityId gets a reference to the given NullableString and assigns it to the IdentityId field.

func (*OperationAudit) SetIdentityIdNil

func (o *OperationAudit) SetIdentityIdNil()

SetIdentityIdNil sets the value for IdentityId to be an explicit nil

func (*OperationAudit) SetIpAddress

func (o *OperationAudit) SetIpAddress(v string)

SetIpAddress gets a reference to the given NullableString and assigns it to the IpAddress field.

func (*OperationAudit) SetIpAddressNil

func (o *OperationAudit) SetIpAddressNil()

SetIpAddressNil sets the value for IpAddress to be an explicit nil

func (*OperationAudit) SetOperationType

func (o *OperationAudit) SetOperationType(v string)

SetOperationType gets a reference to the given NullableString and assigns it to the OperationType field.

func (*OperationAudit) SetOperationTypeNil

func (o *OperationAudit) SetOperationTypeNil()

SetOperationTypeNil sets the value for OperationType to be an explicit nil

func (*OperationAudit) SetParentObject

func (o *OperationAudit) SetParentObject(v string)

SetParentObject gets a reference to the given NullableString and assigns it to the ParentObject field.

func (*OperationAudit) SetParentObjectId

func (o *OperationAudit) SetParentObjectId(v string)

SetParentObjectId gets a reference to the given NullableString and assigns it to the ParentObjectId field.

func (*OperationAudit) SetParentObjectIdNil

func (o *OperationAudit) SetParentObjectIdNil()

SetParentObjectIdNil sets the value for ParentObjectId to be an explicit nil

func (*OperationAudit) SetParentObjectNil

func (o *OperationAudit) SetParentObjectNil()

SetParentObjectNil sets the value for ParentObject to be an explicit nil

func (*OperationAudit) SetParentObjectType

func (o *OperationAudit) SetParentObjectType(v string)

SetParentObjectType gets a reference to the given NullableString and assigns it to the ParentObjectType field.

func (*OperationAudit) SetParentObjectTypeNil

func (o *OperationAudit) SetParentObjectTypeNil()

SetParentObjectTypeNil sets the value for ParentObjectType to be an explicit nil

func (*OperationAudit) SetReason

func (o *OperationAudit) SetReason(v string)

SetReason gets a reference to the given NullableString and assigns it to the Reason field.

func (*OperationAudit) SetReasonNil

func (o *OperationAudit) SetReasonNil()

SetReasonNil sets the value for Reason to be an explicit nil

func (*OperationAudit) SetSuccess

func (o *OperationAudit) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*OperationAudit) SetTargetObject1

func (o *OperationAudit) SetTargetObject1(v string)

SetTargetObject1 gets a reference to the given NullableString and assigns it to the TargetObject1 field.

func (*OperationAudit) SetTargetObject1Nil

func (o *OperationAudit) SetTargetObject1Nil()

SetTargetObject1Nil sets the value for TargetObject1 to be an explicit nil

func (*OperationAudit) SetTargetObject2

func (o *OperationAudit) SetTargetObject2(v string)

SetTargetObject2 gets a reference to the given NullableString and assigns it to the TargetObject2 field.

func (*OperationAudit) SetTargetObject2Nil

func (o *OperationAudit) SetTargetObject2Nil()

SetTargetObject2Nil sets the value for TargetObject2 to be an explicit nil

func (*OperationAudit) SetTargetObjectId1

func (o *OperationAudit) SetTargetObjectId1(v string)

SetTargetObjectId1 gets a reference to the given NullableString and assigns it to the TargetObjectId1 field.

func (*OperationAudit) SetTargetObjectId1Nil

func (o *OperationAudit) SetTargetObjectId1Nil()

SetTargetObjectId1Nil sets the value for TargetObjectId1 to be an explicit nil

func (*OperationAudit) SetTargetObjectId2

func (o *OperationAudit) SetTargetObjectId2(v string)

SetTargetObjectId2 gets a reference to the given NullableString and assigns it to the TargetObjectId2 field.

func (*OperationAudit) SetTargetObjectId2Nil

func (o *OperationAudit) SetTargetObjectId2Nil()

SetTargetObjectId2Nil sets the value for TargetObjectId2 to be an explicit nil

func (*OperationAudit) SetTargetObjectType1

func (o *OperationAudit) SetTargetObjectType1(v string)

SetTargetObjectType1 gets a reference to the given NullableString and assigns it to the TargetObjectType1 field.

func (*OperationAudit) SetTargetObjectType1Nil

func (o *OperationAudit) SetTargetObjectType1Nil()

SetTargetObjectType1Nil sets the value for TargetObjectType1 to be an explicit nil

func (*OperationAudit) SetTargetObjectType2

func (o *OperationAudit) SetTargetObjectType2(v string)

SetTargetObjectType2 gets a reference to the given NullableString and assigns it to the TargetObjectType2 field.

func (*OperationAudit) SetTargetObjectType2Nil

func (o *OperationAudit) SetTargetObjectType2Nil()

SetTargetObjectType2Nil sets the value for TargetObjectType2 to be an explicit nil

func (*OperationAudit) SetTime

func (o *OperationAudit) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (OperationAudit) ToMap

func (o OperationAudit) ToMap() (map[string]interface{}, error)

func (*OperationAudit) UnsetAccountId

func (o *OperationAudit) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

func (*OperationAudit) UnsetApplicationId

func (o *OperationAudit) UnsetApplicationId()

UnsetApplicationId ensures that no value is present for ApplicationId, not even an explicit nil

func (*OperationAudit) UnsetAuthorizationReason

func (o *OperationAudit) UnsetAuthorizationReason()

UnsetAuthorizationReason ensures that no value is present for AuthorizationReason, not even an explicit nil

func (*OperationAudit) UnsetDescription

func (o *OperationAudit) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*OperationAudit) UnsetDisplayName

func (o *OperationAudit) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*OperationAudit) UnsetId

func (o *OperationAudit) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*OperationAudit) UnsetIdentityId

func (o *OperationAudit) UnsetIdentityId()

UnsetIdentityId ensures that no value is present for IdentityId, not even an explicit nil

func (*OperationAudit) UnsetIpAddress

func (o *OperationAudit) UnsetIpAddress()

UnsetIpAddress ensures that no value is present for IpAddress, not even an explicit nil

func (*OperationAudit) UnsetOperationType

func (o *OperationAudit) UnsetOperationType()

UnsetOperationType ensures that no value is present for OperationType, not even an explicit nil

func (*OperationAudit) UnsetParentObject

func (o *OperationAudit) UnsetParentObject()

UnsetParentObject ensures that no value is present for ParentObject, not even an explicit nil

func (*OperationAudit) UnsetParentObjectId

func (o *OperationAudit) UnsetParentObjectId()

UnsetParentObjectId ensures that no value is present for ParentObjectId, not even an explicit nil

func (*OperationAudit) UnsetParentObjectType

func (o *OperationAudit) UnsetParentObjectType()

UnsetParentObjectType ensures that no value is present for ParentObjectType, not even an explicit nil

func (*OperationAudit) UnsetReason

func (o *OperationAudit) UnsetReason()

UnsetReason ensures that no value is present for Reason, not even an explicit nil

func (*OperationAudit) UnsetTargetObject1

func (o *OperationAudit) UnsetTargetObject1()

UnsetTargetObject1 ensures that no value is present for TargetObject1, not even an explicit nil

func (*OperationAudit) UnsetTargetObject2

func (o *OperationAudit) UnsetTargetObject2()

UnsetTargetObject2 ensures that no value is present for TargetObject2, not even an explicit nil

func (*OperationAudit) UnsetTargetObjectId1

func (o *OperationAudit) UnsetTargetObjectId1()

UnsetTargetObjectId1 ensures that no value is present for TargetObjectId1, not even an explicit nil

func (*OperationAudit) UnsetTargetObjectId2

func (o *OperationAudit) UnsetTargetObjectId2()

UnsetTargetObjectId2 ensures that no value is present for TargetObjectId2, not even an explicit nil

func (*OperationAudit) UnsetTargetObjectType1

func (o *OperationAudit) UnsetTargetObjectType1()

UnsetTargetObjectType1 ensures that no value is present for TargetObjectType1, not even an explicit nil

func (*OperationAudit) UnsetTargetObjectType2

func (o *OperationAudit) UnsetTargetObjectType2()

UnsetTargetObjectType2 ensures that no value is present for TargetObjectType2, not even an explicit nil

type OperationAuditEnumerateEnvelope

type OperationAuditEnumerateEnvelope struct {
	Pagination *Pagination      `json:"pagination,omitempty"`
	Delta      *Delta           `json:"delta,omitempty"`
	RequestId  NullableString   `json:"request_id,omitempty"`
	Message    NullableString   `json:"message,omitempty"`
	Data       []OperationAudit `json:"data,omitempty"`
}

OperationAuditEnumerateEnvelope struct for OperationAuditEnumerateEnvelope

func NewOperationAuditEnumerateEnvelope

func NewOperationAuditEnumerateEnvelope() *OperationAuditEnumerateEnvelope

NewOperationAuditEnumerateEnvelope instantiates a new OperationAuditEnumerateEnvelope 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 NewOperationAuditEnumerateEnvelopeWithDefaults

func NewOperationAuditEnumerateEnvelopeWithDefaults() *OperationAuditEnumerateEnvelope

NewOperationAuditEnumerateEnvelopeWithDefaults instantiates a new OperationAuditEnumerateEnvelope 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 (*OperationAuditEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAuditEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAuditEnumerateEnvelope) GetDelta

func (o *OperationAuditEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*OperationAuditEnumerateEnvelope) GetDeltaOk

func (o *OperationAuditEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

GetDeltaOk returns a tuple with the Delta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationAuditEnumerateEnvelope) GetMessage

func (o *OperationAuditEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAuditEnumerateEnvelope) GetMessageOk

func (o *OperationAuditEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAuditEnumerateEnvelope) GetPagination

func (o *OperationAuditEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*OperationAuditEnumerateEnvelope) GetPaginationOk

func (o *OperationAuditEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationAuditEnumerateEnvelope) GetRequestId

func (o *OperationAuditEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAuditEnumerateEnvelope) GetRequestIdOk

func (o *OperationAuditEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAuditEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*OperationAuditEnumerateEnvelope) HasDelta

func (o *OperationAuditEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*OperationAuditEnumerateEnvelope) HasMessage

func (o *OperationAuditEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*OperationAuditEnumerateEnvelope) HasPagination

func (o *OperationAuditEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*OperationAuditEnumerateEnvelope) HasRequestId

func (o *OperationAuditEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (OperationAuditEnumerateEnvelope) MarshalJSON

func (o OperationAuditEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*OperationAuditEnumerateEnvelope) SetData

SetData gets a reference to the given []OperationAudit and assigns it to the Data field.

func (*OperationAuditEnumerateEnvelope) SetDelta

func (o *OperationAuditEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*OperationAuditEnumerateEnvelope) SetMessage

func (o *OperationAuditEnumerateEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*OperationAuditEnumerateEnvelope) SetMessageNil

func (o *OperationAuditEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*OperationAuditEnumerateEnvelope) SetPagination

func (o *OperationAuditEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*OperationAuditEnumerateEnvelope) SetRequestId

func (o *OperationAuditEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*OperationAuditEnumerateEnvelope) SetRequestIdNil

func (o *OperationAuditEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (OperationAuditEnumerateEnvelope) ToMap

func (o OperationAuditEnumerateEnvelope) ToMap() (map[string]interface{}, error)

func (*OperationAuditEnumerateEnvelope) UnsetMessage

func (o *OperationAuditEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*OperationAuditEnumerateEnvelope) UnsetRequestId

func (o *OperationAuditEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type OperationAuditEnvelope

type OperationAuditEnvelope struct {
	RequestId NullableString  `json:"request_id,omitempty"`
	Message   NullableString  `json:"message,omitempty"`
	Data      *OperationAudit `json:"data,omitempty"`
}

OperationAuditEnvelope struct for OperationAuditEnvelope

func NewOperationAuditEnvelope

func NewOperationAuditEnvelope() *OperationAuditEnvelope

NewOperationAuditEnvelope instantiates a new OperationAuditEnvelope 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 NewOperationAuditEnvelopeWithDefaults

func NewOperationAuditEnvelopeWithDefaults() *OperationAuditEnvelope

NewOperationAuditEnvelopeWithDefaults instantiates a new OperationAuditEnvelope 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 (*OperationAuditEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*OperationAuditEnvelope) GetDataOk

func (o *OperationAuditEnvelope) GetDataOk() (*OperationAudit, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationAuditEnvelope) GetMessage

func (o *OperationAuditEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAuditEnvelope) GetMessageOk

func (o *OperationAuditEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAuditEnvelope) GetRequestId

func (o *OperationAuditEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OperationAuditEnvelope) GetRequestIdOk

func (o *OperationAuditEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OperationAuditEnvelope) HasData

func (o *OperationAuditEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*OperationAuditEnvelope) HasMessage

func (o *OperationAuditEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*OperationAuditEnvelope) HasRequestId

func (o *OperationAuditEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (OperationAuditEnvelope) MarshalJSON

func (o OperationAuditEnvelope) MarshalJSON() ([]byte, error)

func (*OperationAuditEnvelope) SetData

func (o *OperationAuditEnvelope) SetData(v OperationAudit)

SetData gets a reference to the given OperationAudit and assigns it to the Data field.

func (*OperationAuditEnvelope) SetMessage

func (o *OperationAuditEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*OperationAuditEnvelope) SetMessageNil

func (o *OperationAuditEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*OperationAuditEnvelope) SetRequestId

func (o *OperationAuditEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*OperationAuditEnvelope) SetRequestIdNil

func (o *OperationAuditEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (OperationAuditEnvelope) ToMap

func (o OperationAuditEnvelope) ToMap() (map[string]interface{}, error)

func (*OperationAuditEnvelope) UnsetMessage

func (o *OperationAuditEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*OperationAuditEnvelope) UnsetRequestId

func (o *OperationAuditEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type OperationType

type OperationType string

OperationType the model 'OperationType'

const (
	OPERATIONTYPE_UNDEFINED OperationType = "Undefined"
	OPERATIONTYPE_SET       OperationType = "Set"
	OPERATIONTYPE_ADD       OperationType = "Add"
	OPERATIONTYPE_REMOVE    OperationType = "Remove"
)

List of OperationType

func NewOperationTypeFromValue

func NewOperationTypeFromValue(v string) (*OperationType, error)

NewOperationTypeFromValue returns a pointer to a valid OperationType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OperationType) IsValid

func (v OperationType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (OperationType) Ptr

func (v OperationType) Ptr() *OperationType

Ptr returns reference to OperationType value

func (*OperationType) UnmarshalJSON

func (v *OperationType) UnmarshalJSON(src []byte) error

type Pagination

type Pagination struct {
	Total  NullableInt32    `json:"total,omitempty"`
	Offset NullableInt32    `json:"offset,omitempty"`
	Limit  NullableInt32    `json:"limit,omitempty"`
	Next   NullableString   `json:"next,omitempty"`
	Links  *PaginationLinks `json:"links,omitempty"`
	Token  NullableString   `json:"token,omitempty"`
}

Pagination struct for Pagination

func NewPagination

func NewPagination() *Pagination

NewPagination instantiates a new Pagination 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 NewPaginationWithDefaults

func NewPaginationWithDefaults() *Pagination

NewPaginationWithDefaults instantiates a new Pagination 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 (*Pagination) GetLimit

func (o *Pagination) GetLimit() int32

GetLimit returns the Limit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Pagination) GetLimitOk

func (o *Pagination) GetLimitOk() (*int32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (o *Pagination) GetLinks() PaginationLinks

GetLinks returns the Links field value if set, zero value otherwise.

func (*Pagination) GetLinksOk

func (o *Pagination) GetLinksOk() (*PaginationLinks, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pagination) GetNext

func (o *Pagination) GetNext() string

GetNext returns the Next field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Pagination) GetNextOk

func (o *Pagination) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Pagination) GetOffset

func (o *Pagination) GetOffset() int32

GetOffset returns the Offset field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Pagination) GetOffsetOk

func (o *Pagination) GetOffsetOk() (*int32, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Pagination) GetToken

func (o *Pagination) GetToken() string

GetToken returns the Token field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Pagination) GetTokenOk

func (o *Pagination) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Pagination) GetTotal

func (o *Pagination) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Pagination) GetTotalOk

func (o *Pagination) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Pagination) HasLimit

func (o *Pagination) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (o *Pagination) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*Pagination) HasNext

func (o *Pagination) HasNext() bool

HasNext returns a boolean if a field has been set.

func (*Pagination) HasOffset

func (o *Pagination) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*Pagination) HasToken

func (o *Pagination) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*Pagination) HasTotal

func (o *Pagination) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (Pagination) MarshalJSON

func (o Pagination) MarshalJSON() ([]byte, error)

func (*Pagination) SetLimit

func (o *Pagination) SetLimit(v int32)

SetLimit gets a reference to the given NullableInt32 and assigns it to the Limit field.

func (*Pagination) SetLimitNil

func (o *Pagination) SetLimitNil()

SetLimitNil sets the value for Limit to be an explicit nil

func (o *Pagination) SetLinks(v PaginationLinks)

SetLinks gets a reference to the given PaginationLinks and assigns it to the Links field.

func (*Pagination) SetNext

func (o *Pagination) SetNext(v string)

SetNext gets a reference to the given NullableString and assigns it to the Next field.

func (*Pagination) SetNextNil

func (o *Pagination) SetNextNil()

SetNextNil sets the value for Next to be an explicit nil

func (*Pagination) SetOffset

func (o *Pagination) SetOffset(v int32)

SetOffset gets a reference to the given NullableInt32 and assigns it to the Offset field.

func (*Pagination) SetOffsetNil

func (o *Pagination) SetOffsetNil()

SetOffsetNil sets the value for Offset to be an explicit nil

func (*Pagination) SetToken

func (o *Pagination) SetToken(v string)

SetToken gets a reference to the given NullableString and assigns it to the Token field.

func (*Pagination) SetTokenNil

func (o *Pagination) SetTokenNil()

SetTokenNil sets the value for Token to be an explicit nil

func (*Pagination) SetTotal

func (o *Pagination) SetTotal(v int32)

SetTotal gets a reference to the given NullableInt32 and assigns it to the Total field.

func (*Pagination) SetTotalNil

func (o *Pagination) SetTotalNil()

SetTotalNil sets the value for Total to be an explicit nil

func (Pagination) ToMap

func (o Pagination) ToMap() (map[string]interface{}, error)

func (*Pagination) UnsetLimit

func (o *Pagination) UnsetLimit()

UnsetLimit ensures that no value is present for Limit, not even an explicit nil

func (*Pagination) UnsetNext

func (o *Pagination) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

func (*Pagination) UnsetOffset

func (o *Pagination) UnsetOffset()

UnsetOffset ensures that no value is present for Offset, not even an explicit nil

func (*Pagination) UnsetToken

func (o *Pagination) UnsetToken()

UnsetToken ensures that no value is present for Token, not even an explicit nil

func (*Pagination) UnsetTotal

func (o *Pagination) UnsetTotal()

UnsetTotal ensures that no value is present for Total, not even an explicit nil

type PaginationLinks struct {
	First    NullableString `json:"first,omitempty"`
	Previous NullableString `json:"previous,omitempty"`
	Current  NullableString `json:"current,omitempty"`
	Next     NullableString `json:"next,omitempty"`
	Last     NullableString `json:"last,omitempty"`
}

PaginationLinks struct for PaginationLinks

func NewPaginationLinks() *PaginationLinks

NewPaginationLinks instantiates a new PaginationLinks 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 NewPaginationLinksWithDefaults

func NewPaginationLinksWithDefaults() *PaginationLinks

NewPaginationLinksWithDefaults instantiates a new PaginationLinks 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 (*PaginationLinks) GetCurrent

func (o *PaginationLinks) GetCurrent() string

GetCurrent returns the Current field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaginationLinks) GetCurrentOk

func (o *PaginationLinks) GetCurrentOk() (*string, bool)

GetCurrentOk returns a tuple with the Current field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginationLinks) GetFirst

func (o *PaginationLinks) GetFirst() string

GetFirst returns the First field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaginationLinks) GetFirstOk

func (o *PaginationLinks) GetFirstOk() (*string, bool)

GetFirstOk returns a tuple with the First field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginationLinks) GetLast

func (o *PaginationLinks) GetLast() string

GetLast returns the Last field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaginationLinks) GetLastOk

func (o *PaginationLinks) GetLastOk() (*string, bool)

GetLastOk returns a tuple with the Last field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginationLinks) GetNext

func (o *PaginationLinks) GetNext() string

GetNext returns the Next field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaginationLinks) GetNextOk

func (o *PaginationLinks) GetNextOk() (*string, bool)

GetNextOk returns a tuple with the Next field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginationLinks) GetPrevious

func (o *PaginationLinks) GetPrevious() string

GetPrevious returns the Previous field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaginationLinks) GetPreviousOk

func (o *PaginationLinks) GetPreviousOk() (*string, bool)

GetPreviousOk returns a tuple with the Previous field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginationLinks) HasCurrent

func (o *PaginationLinks) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*PaginationLinks) HasFirst

func (o *PaginationLinks) HasFirst() bool

HasFirst returns a boolean if a field has been set.

func (*PaginationLinks) HasLast

func (o *PaginationLinks) HasLast() bool

HasLast returns a boolean if a field has been set.

func (*PaginationLinks) HasNext

func (o *PaginationLinks) HasNext() bool

HasNext returns a boolean if a field has been set.

func (*PaginationLinks) HasPrevious

func (o *PaginationLinks) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

func (PaginationLinks) MarshalJSON

func (o PaginationLinks) MarshalJSON() ([]byte, error)

func (*PaginationLinks) SetCurrent

func (o *PaginationLinks) SetCurrent(v string)

SetCurrent gets a reference to the given NullableString and assigns it to the Current field.

func (*PaginationLinks) SetCurrentNil

func (o *PaginationLinks) SetCurrentNil()

SetCurrentNil sets the value for Current to be an explicit nil

func (*PaginationLinks) SetFirst

func (o *PaginationLinks) SetFirst(v string)

SetFirst gets a reference to the given NullableString and assigns it to the First field.

func (*PaginationLinks) SetFirstNil

func (o *PaginationLinks) SetFirstNil()

SetFirstNil sets the value for First to be an explicit nil

func (*PaginationLinks) SetLast

func (o *PaginationLinks) SetLast(v string)

SetLast gets a reference to the given NullableString and assigns it to the Last field.

func (*PaginationLinks) SetLastNil

func (o *PaginationLinks) SetLastNil()

SetLastNil sets the value for Last to be an explicit nil

func (*PaginationLinks) SetNext

func (o *PaginationLinks) SetNext(v string)

SetNext gets a reference to the given NullableString and assigns it to the Next field.

func (*PaginationLinks) SetNextNil

func (o *PaginationLinks) SetNextNil()

SetNextNil sets the value for Next to be an explicit nil

func (*PaginationLinks) SetPrevious

func (o *PaginationLinks) SetPrevious(v string)

SetPrevious gets a reference to the given NullableString and assigns it to the Previous field.

func (*PaginationLinks) SetPreviousNil

func (o *PaginationLinks) SetPreviousNil()

SetPreviousNil sets the value for Previous to be an explicit nil

func (PaginationLinks) ToMap

func (o PaginationLinks) ToMap() (map[string]interface{}, error)

func (*PaginationLinks) UnsetCurrent

func (o *PaginationLinks) UnsetCurrent()

UnsetCurrent ensures that no value is present for Current, not even an explicit nil

func (*PaginationLinks) UnsetFirst

func (o *PaginationLinks) UnsetFirst()

UnsetFirst ensures that no value is present for First, not even an explicit nil

func (*PaginationLinks) UnsetLast

func (o *PaginationLinks) UnsetLast()

UnsetLast ensures that no value is present for Last, not even an explicit nil

func (*PaginationLinks) UnsetNext

func (o *PaginationLinks) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

func (*PaginationLinks) UnsetPrevious

func (o *PaginationLinks) UnsetPrevious()

UnsetPrevious ensures that no value is present for Previous, not even an explicit nil

type PasswordChangeRequest

type PasswordChangeRequest struct {
	OldPassword string `json:"oldPassword"`
	NewPassword string `json:"newPassword"`
}

PasswordChangeRequest struct for PasswordChangeRequest

func NewPasswordChangeRequest

func NewPasswordChangeRequest(oldPassword string, newPassword string) *PasswordChangeRequest

NewPasswordChangeRequest instantiates a new PasswordChangeRequest 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 NewPasswordChangeRequestWithDefaults

func NewPasswordChangeRequestWithDefaults() *PasswordChangeRequest

NewPasswordChangeRequestWithDefaults instantiates a new PasswordChangeRequest 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 (*PasswordChangeRequest) GetNewPassword

func (o *PasswordChangeRequest) GetNewPassword() string

GetNewPassword returns the NewPassword field value

func (*PasswordChangeRequest) GetNewPasswordOk

func (o *PasswordChangeRequest) GetNewPasswordOk() (*string, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value and a boolean to check if the value has been set.

func (*PasswordChangeRequest) GetOldPassword

func (o *PasswordChangeRequest) GetOldPassword() string

GetOldPassword returns the OldPassword field value

func (*PasswordChangeRequest) GetOldPasswordOk

func (o *PasswordChangeRequest) GetOldPasswordOk() (*string, bool)

GetOldPasswordOk returns a tuple with the OldPassword field value and a boolean to check if the value has been set.

func (PasswordChangeRequest) MarshalJSON

func (o PasswordChangeRequest) MarshalJSON() ([]byte, error)

func (*PasswordChangeRequest) SetNewPassword

func (o *PasswordChangeRequest) SetNewPassword(v string)

SetNewPassword sets field value

func (*PasswordChangeRequest) SetOldPassword

func (o *PasswordChangeRequest) SetOldPassword(v string)

SetOldPassword sets field value

func (PasswordChangeRequest) ToMap

func (o PasswordChangeRequest) ToMap() (map[string]interface{}, error)

func (*PasswordChangeRequest) UnmarshalJSON

func (o *PasswordChangeRequest) UnmarshalJSON(data []byte) (err error)

type PasswordResetEmail

type PasswordResetEmail struct {
	Email        string `json:"email"`
	NewPassword  string `json:"newPassword"`
	IsEdhAccount bool   `json:"isEdhAccount"`
}

PasswordResetEmail struct for PasswordResetEmail

func NewPasswordResetEmail

func NewPasswordResetEmail(email string, newPassword string, isEdhAccount bool) *PasswordResetEmail

NewPasswordResetEmail instantiates a new PasswordResetEmail 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 NewPasswordResetEmailWithDefaults

func NewPasswordResetEmailWithDefaults() *PasswordResetEmail

NewPasswordResetEmailWithDefaults instantiates a new PasswordResetEmail 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 (*PasswordResetEmail) GetEmail

func (o *PasswordResetEmail) GetEmail() string

GetEmail returns the Email field value

func (*PasswordResetEmail) GetEmailOk

func (o *PasswordResetEmail) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*PasswordResetEmail) GetIsEdhAccount

func (o *PasswordResetEmail) GetIsEdhAccount() bool

GetIsEdhAccount returns the IsEdhAccount field value

func (*PasswordResetEmail) GetIsEdhAccountOk

func (o *PasswordResetEmail) GetIsEdhAccountOk() (*bool, bool)

GetIsEdhAccountOk returns a tuple with the IsEdhAccount field value and a boolean to check if the value has been set.

func (*PasswordResetEmail) GetNewPassword

func (o *PasswordResetEmail) GetNewPassword() string

GetNewPassword returns the NewPassword field value

func (*PasswordResetEmail) GetNewPasswordOk

func (o *PasswordResetEmail) GetNewPasswordOk() (*string, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value and a boolean to check if the value has been set.

func (PasswordResetEmail) MarshalJSON

func (o PasswordResetEmail) MarshalJSON() ([]byte, error)

func (*PasswordResetEmail) SetEmail

func (o *PasswordResetEmail) SetEmail(v string)

SetEmail sets field value

func (*PasswordResetEmail) SetIsEdhAccount

func (o *PasswordResetEmail) SetIsEdhAccount(v bool)

SetIsEdhAccount sets field value

func (*PasswordResetEmail) SetNewPassword

func (o *PasswordResetEmail) SetNewPassword(v string)

SetNewPassword sets field value

func (PasswordResetEmail) ToMap

func (o PasswordResetEmail) ToMap() (map[string]interface{}, error)

func (*PasswordResetEmail) UnmarshalJSON

func (o *PasswordResetEmail) UnmarshalJSON(data []byte) (err error)

type PasswordResetRequest

type PasswordResetRequest struct {
	NewPassword string `json:"newPassword"`
}

PasswordResetRequest struct for PasswordResetRequest

func NewPasswordResetRequest

func NewPasswordResetRequest(newPassword string) *PasswordResetRequest

NewPasswordResetRequest instantiates a new PasswordResetRequest 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 NewPasswordResetRequestWithDefaults

func NewPasswordResetRequestWithDefaults() *PasswordResetRequest

NewPasswordResetRequestWithDefaults instantiates a new PasswordResetRequest 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 (*PasswordResetRequest) GetNewPassword

func (o *PasswordResetRequest) GetNewPassword() string

GetNewPassword returns the NewPassword field value

func (*PasswordResetRequest) GetNewPasswordOk

func (o *PasswordResetRequest) GetNewPasswordOk() (*string, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value and a boolean to check if the value has been set.

func (PasswordResetRequest) MarshalJSON

func (o PasswordResetRequest) MarshalJSON() ([]byte, error)

func (*PasswordResetRequest) SetNewPassword

func (o *PasswordResetRequest) SetNewPassword(v string)

SetNewPassword sets field value

func (PasswordResetRequest) ToMap

func (o PasswordResetRequest) ToMap() (map[string]interface{}, error)

func (*PasswordResetRequest) UnmarshalJSON

func (o *PasswordResetRequest) UnmarshalJSON(data []byte) (err error)

type PolicyCheckRequest

type PolicyCheckRequest struct {
	Script              string              `json:"script"`
	PolicyOperationType PolicyOperationType `json:"policyOperationType"`
	Model               interface{}         `json:"model"`
	UpdatedModel        interface{}         `json:"updatedModel,omitempty"`
	MethodName          string              `json:"methodName"`
}

PolicyCheckRequest struct for PolicyCheckRequest

func NewPolicyCheckRequest

func NewPolicyCheckRequest(script string, policyOperationType PolicyOperationType, model interface{}, methodName string) *PolicyCheckRequest

NewPolicyCheckRequest instantiates a new PolicyCheckRequest 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 NewPolicyCheckRequestWithDefaults

func NewPolicyCheckRequestWithDefaults() *PolicyCheckRequest

NewPolicyCheckRequestWithDefaults instantiates a new PolicyCheckRequest 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 (*PolicyCheckRequest) GetMethodName

func (o *PolicyCheckRequest) GetMethodName() string

GetMethodName returns the MethodName field value

func (*PolicyCheckRequest) GetMethodNameOk

func (o *PolicyCheckRequest) GetMethodNameOk() (*string, bool)

GetMethodNameOk returns a tuple with the MethodName field value and a boolean to check if the value has been set.

func (*PolicyCheckRequest) GetModel

func (o *PolicyCheckRequest) GetModel() interface{}

GetModel returns the Model field value If the value is explicit nil, the zero value for interface{} will be returned

func (*PolicyCheckRequest) GetModelOk

func (o *PolicyCheckRequest) GetModelOk() (*interface{}, bool)

GetModelOk returns a tuple with the Model field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PolicyCheckRequest) GetPolicyOperationType

func (o *PolicyCheckRequest) GetPolicyOperationType() PolicyOperationType

GetPolicyOperationType returns the PolicyOperationType field value

func (*PolicyCheckRequest) GetPolicyOperationTypeOk

func (o *PolicyCheckRequest) GetPolicyOperationTypeOk() (*PolicyOperationType, bool)

GetPolicyOperationTypeOk returns a tuple with the PolicyOperationType field value and a boolean to check if the value has been set.

func (*PolicyCheckRequest) GetScript

func (o *PolicyCheckRequest) GetScript() string

GetScript returns the Script field value

func (*PolicyCheckRequest) GetScriptOk

func (o *PolicyCheckRequest) GetScriptOk() (*string, bool)

GetScriptOk returns a tuple with the Script field value and a boolean to check if the value has been set.

func (*PolicyCheckRequest) GetUpdatedModel

func (o *PolicyCheckRequest) GetUpdatedModel() interface{}

GetUpdatedModel returns the UpdatedModel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PolicyCheckRequest) GetUpdatedModelOk

func (o *PolicyCheckRequest) GetUpdatedModelOk() (*interface{}, bool)

GetUpdatedModelOk returns a tuple with the UpdatedModel field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PolicyCheckRequest) HasUpdatedModel

func (o *PolicyCheckRequest) HasUpdatedModel() bool

HasUpdatedModel returns a boolean if a field has been set.

func (PolicyCheckRequest) MarshalJSON

func (o PolicyCheckRequest) MarshalJSON() ([]byte, error)

func (*PolicyCheckRequest) SetMethodName

func (o *PolicyCheckRequest) SetMethodName(v string)

SetMethodName sets field value

func (*PolicyCheckRequest) SetModel

func (o *PolicyCheckRequest) SetModel(v interface{})

SetModel sets field value

func (*PolicyCheckRequest) SetPolicyOperationType

func (o *PolicyCheckRequest) SetPolicyOperationType(v PolicyOperationType)

SetPolicyOperationType sets field value

func (*PolicyCheckRequest) SetScript

func (o *PolicyCheckRequest) SetScript(v string)

SetScript sets field value

func (*PolicyCheckRequest) SetUpdatedModel

func (o *PolicyCheckRequest) SetUpdatedModel(v interface{})

SetUpdatedModel gets a reference to the given interface{} and assigns it to the UpdatedModel field.

func (PolicyCheckRequest) ToMap

func (o PolicyCheckRequest) ToMap() (map[string]interface{}, error)

func (*PolicyCheckRequest) UnmarshalJSON

func (o *PolicyCheckRequest) UnmarshalJSON(data []byte) (err error)

type PolicyOperationType

type PolicyOperationType string

PolicyOperationType the model 'PolicyOperationType'

const (
	POLICYOPERATIONTYPE_CREATE        PolicyOperationType = "Create"
	POLICYOPERATIONTYPE_READ          PolicyOperationType = "Read"
	POLICYOPERATIONTYPE_READ_ALL      PolicyOperationType = "ReadAll"
	POLICYOPERATIONTYPE_UPDATE        PolicyOperationType = "Update"
	POLICYOPERATIONTYPE_DELETE        PolicyOperationType = "Delete"
	POLICYOPERATIONTYPE_ANY_OPERATION PolicyOperationType = "AnyOperation"
)

List of PolicyOperationType

func NewPolicyOperationTypeFromValue

func NewPolicyOperationTypeFromValue(v string) (*PolicyOperationType, error)

NewPolicyOperationTypeFromValue returns a pointer to a valid PolicyOperationType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PolicyOperationType) IsValid

func (v PolicyOperationType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PolicyOperationType) Ptr

Ptr returns reference to PolicyOperationType value

func (*PolicyOperationType) UnmarshalJSON

func (v *PolicyOperationType) UnmarshalJSON(src []byte) error

type PrivacyType

type PrivacyType string

PrivacyType the model 'PrivacyType'

const (
	PRIVACYTYPE_OPEN    PrivacyType = "Open"
	PRIVACYTYPE_MEMBERS PrivacyType = "Members"
	PRIVACYTYPE_ADMINS  PrivacyType = "Admins"
)

List of PrivacyType

func NewPrivacyTypeFromValue

func NewPrivacyTypeFromValue(v string) (*PrivacyType, error)

NewPrivacyTypeFromValue returns a pointer to a valid PrivacyType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PrivacyType) IsValid

func (v PrivacyType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PrivacyType) Ptr

func (v PrivacyType) Ptr() *PrivacyType

Ptr returns reference to PrivacyType value

func (*PrivacyType) UnmarshalJSON

func (v *PrivacyType) UnmarshalJSON(src []byte) error

type PropertyDescription

type PropertyDescription struct {
	PropertyName      NullableString `json:"propertyName,omitempty"`
	PropertyType      *PropertyType  `json:"propertyType,omitempty"`
	Description       NullableString `json:"description,omitempty"`
	DisplayOrder      *int32         `json:"displayOrder,omitempty"`
	IsIdentifier      *bool          `json:"isIdentifier,omitempty"`
	Required          *bool          `json:"required,omitempty"`
	ValidationPattern NullableString `json:"validationPattern,omitempty"`
	Multivalued       *bool          `json:"multivalued,omitempty"`
	ReadOnly          *bool          `json:"readOnly,omitempty"`
}

PropertyDescription struct for PropertyDescription

func NewPropertyDescription

func NewPropertyDescription() *PropertyDescription

NewPropertyDescription instantiates a new PropertyDescription 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 NewPropertyDescriptionWithDefaults

func NewPropertyDescriptionWithDefaults() *PropertyDescription

NewPropertyDescriptionWithDefaults instantiates a new PropertyDescription 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 (*PropertyDescription) GetDescription

func (o *PropertyDescription) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PropertyDescription) GetDescriptionOk

func (o *PropertyDescription) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PropertyDescription) GetDisplayOrder

func (o *PropertyDescription) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*PropertyDescription) GetDisplayOrderOk

func (o *PropertyDescription) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PropertyDescription) GetIsIdentifier

func (o *PropertyDescription) GetIsIdentifier() bool

GetIsIdentifier returns the IsIdentifier field value if set, zero value otherwise.

func (*PropertyDescription) GetIsIdentifierOk

func (o *PropertyDescription) GetIsIdentifierOk() (*bool, bool)

GetIsIdentifierOk returns a tuple with the IsIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PropertyDescription) GetMultivalued

func (o *PropertyDescription) GetMultivalued() bool

GetMultivalued returns the Multivalued field value if set, zero value otherwise.

func (*PropertyDescription) GetMultivaluedOk

func (o *PropertyDescription) GetMultivaluedOk() (*bool, bool)

GetMultivaluedOk returns a tuple with the Multivalued field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PropertyDescription) GetPropertyName

func (o *PropertyDescription) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PropertyDescription) GetPropertyNameOk

func (o *PropertyDescription) GetPropertyNameOk() (*string, bool)

GetPropertyNameOk returns a tuple with the PropertyName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PropertyDescription) GetPropertyType

func (o *PropertyDescription) GetPropertyType() PropertyType

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*PropertyDescription) GetPropertyTypeOk

func (o *PropertyDescription) GetPropertyTypeOk() (*PropertyType, bool)

GetPropertyTypeOk returns a tuple with the PropertyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PropertyDescription) GetReadOnly

func (o *PropertyDescription) GetReadOnly() bool

GetReadOnly returns the ReadOnly field value if set, zero value otherwise.

func (*PropertyDescription) GetReadOnlyOk

func (o *PropertyDescription) GetReadOnlyOk() (*bool, bool)

GetReadOnlyOk returns a tuple with the ReadOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PropertyDescription) GetRequired

func (o *PropertyDescription) GetRequired() bool

GetRequired returns the Required field value if set, zero value otherwise.

func (*PropertyDescription) GetRequiredOk

func (o *PropertyDescription) GetRequiredOk() (*bool, bool)

GetRequiredOk returns a tuple with the Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PropertyDescription) GetValidationPattern

func (o *PropertyDescription) GetValidationPattern() string

GetValidationPattern returns the ValidationPattern field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PropertyDescription) GetValidationPatternOk

func (o *PropertyDescription) GetValidationPatternOk() (*string, bool)

GetValidationPatternOk returns a tuple with the ValidationPattern field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PropertyDescription) HasDescription

func (o *PropertyDescription) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PropertyDescription) HasDisplayOrder

func (o *PropertyDescription) HasDisplayOrder() bool

HasDisplayOrder returns a boolean if a field has been set.

func (*PropertyDescription) HasIsIdentifier

func (o *PropertyDescription) HasIsIdentifier() bool

HasIsIdentifier returns a boolean if a field has been set.

func (*PropertyDescription) HasMultivalued

func (o *PropertyDescription) HasMultivalued() bool

HasMultivalued returns a boolean if a field has been set.

func (*PropertyDescription) HasPropertyName

func (o *PropertyDescription) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*PropertyDescription) HasPropertyType

func (o *PropertyDescription) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*PropertyDescription) HasReadOnly

func (o *PropertyDescription) HasReadOnly() bool

HasReadOnly returns a boolean if a field has been set.

func (*PropertyDescription) HasRequired

func (o *PropertyDescription) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*PropertyDescription) HasValidationPattern

func (o *PropertyDescription) HasValidationPattern() bool

HasValidationPattern returns a boolean if a field has been set.

func (PropertyDescription) MarshalJSON

func (o PropertyDescription) MarshalJSON() ([]byte, error)

func (*PropertyDescription) SetDescription

func (o *PropertyDescription) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*PropertyDescription) SetDescriptionNil

func (o *PropertyDescription) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*PropertyDescription) SetDisplayOrder

func (o *PropertyDescription) SetDisplayOrder(v int32)

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*PropertyDescription) SetIsIdentifier

func (o *PropertyDescription) SetIsIdentifier(v bool)

SetIsIdentifier gets a reference to the given bool and assigns it to the IsIdentifier field.

func (*PropertyDescription) SetMultivalued

func (o *PropertyDescription) SetMultivalued(v bool)

SetMultivalued gets a reference to the given bool and assigns it to the Multivalued field.

func (*PropertyDescription) SetPropertyName

func (o *PropertyDescription) SetPropertyName(v string)

SetPropertyName gets a reference to the given NullableString and assigns it to the PropertyName field.

func (*PropertyDescription) SetPropertyNameNil

func (o *PropertyDescription) SetPropertyNameNil()

SetPropertyNameNil sets the value for PropertyName to be an explicit nil

func (*PropertyDescription) SetPropertyType

func (o *PropertyDescription) SetPropertyType(v PropertyType)

SetPropertyType gets a reference to the given PropertyType and assigns it to the PropertyType field.

func (*PropertyDescription) SetReadOnly

func (o *PropertyDescription) SetReadOnly(v bool)

SetReadOnly gets a reference to the given bool and assigns it to the ReadOnly field.

func (*PropertyDescription) SetRequired

func (o *PropertyDescription) SetRequired(v bool)

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*PropertyDescription) SetValidationPattern

func (o *PropertyDescription) SetValidationPattern(v string)

SetValidationPattern gets a reference to the given NullableString and assigns it to the ValidationPattern field.

func (*PropertyDescription) SetValidationPatternNil

func (o *PropertyDescription) SetValidationPatternNil()

SetValidationPatternNil sets the value for ValidationPattern to be an explicit nil

func (PropertyDescription) ToMap

func (o PropertyDescription) ToMap() (map[string]interface{}, error)

func (*PropertyDescription) UnsetDescription

func (o *PropertyDescription) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*PropertyDescription) UnsetPropertyName

func (o *PropertyDescription) UnsetPropertyName()

UnsetPropertyName ensures that no value is present for PropertyName, not even an explicit nil

func (*PropertyDescription) UnsetValidationPattern

func (o *PropertyDescription) UnsetValidationPattern()

UnsetValidationPattern ensures that no value is present for ValidationPattern, not even an explicit nil

type PropertyType

type PropertyType string

PropertyType the model 'PropertyType'

const (
	PROPERTYTYPE_UNDEFINED PropertyType = "Undefined"
	PROPERTYTYPE_STRING    PropertyType = "String"
	PROPERTYTYPE_NUMBER    PropertyType = "Number"
	PROPERTYTYPE_BOOLEAN   PropertyType = "Boolean"
	PROPERTYTYPE_DATE_TIME PropertyType = "DateTime"
	PROPERTYTYPE_REFERENCE PropertyType = "Reference"
	PROPERTYTYPE_BINARY    PropertyType = "Binary"
	PROPERTYTYPE_OBJECT    PropertyType = "Object"
)

List of PropertyType

func NewPropertyTypeFromValue

func NewPropertyTypeFromValue(v string) (*PropertyType, error)

NewPropertyTypeFromValue returns a pointer to a valid PropertyType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PropertyType) IsValid

func (v PropertyType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PropertyType) Ptr

func (v PropertyType) Ptr() *PropertyType

Ptr returns reference to PropertyType value

func (*PropertyType) UnmarshalJSON

func (v *PropertyType) UnmarshalJSON(src []byte) error

type Request

type Request struct {
	DisplayName       NullableString     `json:"displayName,omitempty"`
	RequestorId       NullableString     `json:"requestorId,omitempty"`
	Status            *RequestStatus     `json:"status,omitempty"`
	Reason            NullableString     `json:"reason,omitempty"`
	ApprovedBy        NullableString     `json:"approvedBy,omitempty"`
	RequestType       *RequestType       `json:"requestType,omitempty"`
	TargetType        NullableString     `json:"targetType,omitempty"`
	TargetId1         NullableString     `json:"targetId1,omitempty"`
	TargetId2         NullableString     `json:"targetId2,omitempty"`
	EndTime           NullableTime       `json:"endTime,omitempty"`
	ExpirationTime    NullableTime       `json:"expirationTime,omitempty"`
	HasApprovalToken  *bool              `json:"hasApprovalToken,omitempty"`
	RequestParameters []RequestParameter `json:"requestParameters,omitempty"`
	Id                NullableString     `json:"id,omitempty"`
	CreationTime      *time.Time         `json:"creationTime,omitempty"`
}

Request struct for Request

func NewRequest

func NewRequest() *Request

NewRequest instantiates a new Request 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 NewRequestWithDefaults

func NewRequestWithDefaults() *Request

NewRequestWithDefaults instantiates a new Request 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 (*Request) GetApprovedBy

func (o *Request) GetApprovedBy() string

GetApprovedBy returns the ApprovedBy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetApprovedByOk

func (o *Request) GetApprovedByOk() (*string, bool)

GetApprovedByOk returns a tuple with the ApprovedBy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetCreationTime

func (o *Request) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Request) GetCreationTimeOk

func (o *Request) GetCreationTimeOk() (*time.Time, bool)

GetCreationTimeOk returns a tuple with the CreationTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) GetDisplayName

func (o *Request) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetDisplayNameOk

func (o *Request) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetEndTime

func (o *Request) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetEndTimeOk

func (o *Request) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetExpirationTime

func (o *Request) GetExpirationTime() time.Time

GetExpirationTime returns the ExpirationTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetExpirationTimeOk

func (o *Request) GetExpirationTimeOk() (*time.Time, bool)

GetExpirationTimeOk returns a tuple with the ExpirationTime field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetHasApprovalToken

func (o *Request) GetHasApprovalToken() bool

GetHasApprovalToken returns the HasApprovalToken field value if set, zero value otherwise.

func (*Request) GetHasApprovalTokenOk

func (o *Request) GetHasApprovalTokenOk() (*bool, bool)

GetHasApprovalTokenOk returns a tuple with the HasApprovalToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) GetId

func (o *Request) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetIdOk

func (o *Request) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetReason

func (o *Request) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetReasonOk

func (o *Request) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetRequestParameters

func (o *Request) GetRequestParameters() []RequestParameter

GetRequestParameters returns the RequestParameters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetRequestParametersOk

func (o *Request) GetRequestParametersOk() ([]RequestParameter, bool)

GetRequestParametersOk returns a tuple with the RequestParameters field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetRequestType

func (o *Request) GetRequestType() RequestType

GetRequestType returns the RequestType field value if set, zero value otherwise.

func (*Request) GetRequestTypeOk

func (o *Request) GetRequestTypeOk() (*RequestType, bool)

GetRequestTypeOk returns a tuple with the RequestType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) GetRequestorId

func (o *Request) GetRequestorId() string

GetRequestorId returns the RequestorId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetRequestorIdOk

func (o *Request) GetRequestorIdOk() (*string, bool)

GetRequestorIdOk returns a tuple with the RequestorId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetStatus

func (o *Request) GetStatus() RequestStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Request) GetStatusOk

func (o *Request) GetStatusOk() (*RequestStatus, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) GetTargetId1

func (o *Request) GetTargetId1() string

GetTargetId1 returns the TargetId1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetTargetId1Ok

func (o *Request) GetTargetId1Ok() (*string, bool)

GetTargetId1Ok returns a tuple with the TargetId1 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetTargetId2

func (o *Request) GetTargetId2() string

GetTargetId2 returns the TargetId2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetTargetId2Ok

func (o *Request) GetTargetId2Ok() (*string, bool)

GetTargetId2Ok returns a tuple with the TargetId2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) GetTargetType

func (o *Request) GetTargetType() string

GetTargetType returns the TargetType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Request) GetTargetTypeOk

func (o *Request) GetTargetTypeOk() (*string, bool)

GetTargetTypeOk returns a tuple with the TargetType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Request) HasApprovedBy

func (o *Request) HasApprovedBy() bool

HasApprovedBy returns a boolean if a field has been set.

func (*Request) HasCreationTime

func (o *Request) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*Request) HasDisplayName

func (o *Request) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*Request) HasEndTime

func (o *Request) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*Request) HasExpirationTime

func (o *Request) HasExpirationTime() bool

HasExpirationTime returns a boolean if a field has been set.

func (*Request) HasHasApprovalToken

func (o *Request) HasHasApprovalToken() bool

HasHasApprovalToken returns a boolean if a field has been set.

func (*Request) HasId

func (o *Request) HasId() bool

HasId returns a boolean if a field has been set.

func (*Request) HasReason

func (o *Request) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*Request) HasRequestParameters

func (o *Request) HasRequestParameters() bool

HasRequestParameters returns a boolean if a field has been set.

func (*Request) HasRequestType

func (o *Request) HasRequestType() bool

HasRequestType returns a boolean if a field has been set.

func (*Request) HasRequestorId

func (o *Request) HasRequestorId() bool

HasRequestorId returns a boolean if a field has been set.

func (*Request) HasStatus

func (o *Request) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Request) HasTargetId1

func (o *Request) HasTargetId1() bool

HasTargetId1 returns a boolean if a field has been set.

func (*Request) HasTargetId2

func (o *Request) HasTargetId2() bool

HasTargetId2 returns a boolean if a field has been set.

func (*Request) HasTargetType

func (o *Request) HasTargetType() bool

HasTargetType returns a boolean if a field has been set.

func (Request) MarshalJSON

func (o Request) MarshalJSON() ([]byte, error)

func (*Request) SetApprovedBy

func (o *Request) SetApprovedBy(v string)

SetApprovedBy gets a reference to the given NullableString and assigns it to the ApprovedBy field.

func (*Request) SetApprovedByNil

func (o *Request) SetApprovedByNil()

SetApprovedByNil sets the value for ApprovedBy to be an explicit nil

func (*Request) SetCreationTime

func (o *Request) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*Request) SetDisplayName

func (o *Request) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*Request) SetDisplayNameNil

func (o *Request) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*Request) SetEndTime

func (o *Request) SetEndTime(v time.Time)

SetEndTime gets a reference to the given NullableTime and assigns it to the EndTime field.

func (*Request) SetEndTimeNil

func (o *Request) SetEndTimeNil()

SetEndTimeNil sets the value for EndTime to be an explicit nil

func (*Request) SetExpirationTime

func (o *Request) SetExpirationTime(v time.Time)

SetExpirationTime gets a reference to the given NullableTime and assigns it to the ExpirationTime field.

func (*Request) SetExpirationTimeNil

func (o *Request) SetExpirationTimeNil()

SetExpirationTimeNil sets the value for ExpirationTime to be an explicit nil

func (*Request) SetHasApprovalToken

func (o *Request) SetHasApprovalToken(v bool)

SetHasApprovalToken gets a reference to the given bool and assigns it to the HasApprovalToken field.

func (*Request) SetId

func (o *Request) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*Request) SetIdNil

func (o *Request) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Request) SetReason

func (o *Request) SetReason(v string)

SetReason gets a reference to the given NullableString and assigns it to the Reason field.

func (*Request) SetReasonNil

func (o *Request) SetReasonNil()

SetReasonNil sets the value for Reason to be an explicit nil

func (*Request) SetRequestParameters

func (o *Request) SetRequestParameters(v []RequestParameter)

SetRequestParameters gets a reference to the given []RequestParameter and assigns it to the RequestParameters field.

func (*Request) SetRequestType

func (o *Request) SetRequestType(v RequestType)

SetRequestType gets a reference to the given RequestType and assigns it to the RequestType field.

func (*Request) SetRequestorId

func (o *Request) SetRequestorId(v string)

SetRequestorId gets a reference to the given NullableString and assigns it to the RequestorId field.

func (*Request) SetRequestorIdNil

func (o *Request) SetRequestorIdNil()

SetRequestorIdNil sets the value for RequestorId to be an explicit nil

func (*Request) SetStatus

func (o *Request) SetStatus(v RequestStatus)

SetStatus gets a reference to the given RequestStatus and assigns it to the Status field.

func (*Request) SetTargetId1

func (o *Request) SetTargetId1(v string)

SetTargetId1 gets a reference to the given NullableString and assigns it to the TargetId1 field.

func (*Request) SetTargetId1Nil

func (o *Request) SetTargetId1Nil()

SetTargetId1Nil sets the value for TargetId1 to be an explicit nil

func (*Request) SetTargetId2

func (o *Request) SetTargetId2(v string)

SetTargetId2 gets a reference to the given NullableString and assigns it to the TargetId2 field.

func (*Request) SetTargetId2Nil

func (o *Request) SetTargetId2Nil()

SetTargetId2Nil sets the value for TargetId2 to be an explicit nil

func (*Request) SetTargetType

func (o *Request) SetTargetType(v string)

SetTargetType gets a reference to the given NullableString and assigns it to the TargetType field.

func (*Request) SetTargetTypeNil

func (o *Request) SetTargetTypeNil()

SetTargetTypeNil sets the value for TargetType to be an explicit nil

func (Request) ToMap

func (o Request) ToMap() (map[string]interface{}, error)

func (*Request) UnsetApprovedBy

func (o *Request) UnsetApprovedBy()

UnsetApprovedBy ensures that no value is present for ApprovedBy, not even an explicit nil

func (*Request) UnsetDisplayName

func (o *Request) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*Request) UnsetEndTime

func (o *Request) UnsetEndTime()

UnsetEndTime ensures that no value is present for EndTime, not even an explicit nil

func (*Request) UnsetExpirationTime

func (o *Request) UnsetExpirationTime()

UnsetExpirationTime ensures that no value is present for ExpirationTime, not even an explicit nil

func (*Request) UnsetId

func (o *Request) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*Request) UnsetReason

func (o *Request) UnsetReason()

UnsetReason ensures that no value is present for Reason, not even an explicit nil

func (*Request) UnsetRequestorId

func (o *Request) UnsetRequestorId()

UnsetRequestorId ensures that no value is present for RequestorId, not even an explicit nil

func (*Request) UnsetTargetId1

func (o *Request) UnsetTargetId1()

UnsetTargetId1 ensures that no value is present for TargetId1, not even an explicit nil

func (*Request) UnsetTargetId2

func (o *Request) UnsetTargetId2()

UnsetTargetId2 ensures that no value is present for TargetId2, not even an explicit nil

func (*Request) UnsetTargetType

func (o *Request) UnsetTargetType()

UnsetTargetType ensures that no value is present for TargetType, not even an explicit nil

type RequestEnumerateEnvelope

type RequestEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Request      `json:"data,omitempty"`
}

RequestEnumerateEnvelope struct for RequestEnumerateEnvelope

func NewRequestEnumerateEnvelope

func NewRequestEnumerateEnvelope() *RequestEnumerateEnvelope

NewRequestEnumerateEnvelope instantiates a new RequestEnumerateEnvelope 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 NewRequestEnumerateEnvelopeWithDefaults

func NewRequestEnumerateEnvelopeWithDefaults() *RequestEnumerateEnvelope

NewRequestEnumerateEnvelopeWithDefaults instantiates a new RequestEnumerateEnvelope 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 (*RequestEnumerateEnvelope) GetData

func (o *RequestEnumerateEnvelope) GetData() []Request

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestEnumerateEnvelope) GetDataOk

func (o *RequestEnumerateEnvelope) GetDataOk() ([]Request, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestEnumerateEnvelope) GetDelta

func (o *RequestEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*RequestEnumerateEnvelope) GetDeltaOk

func (o *RequestEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

GetDeltaOk returns a tuple with the Delta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestEnumerateEnvelope) GetMessage

func (o *RequestEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestEnumerateEnvelope) GetMessageOk

func (o *RequestEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestEnumerateEnvelope) GetPagination

func (o *RequestEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*RequestEnumerateEnvelope) GetPaginationOk

func (o *RequestEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestEnumerateEnvelope) GetRequestId

func (o *RequestEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestEnumerateEnvelope) GetRequestIdOk

func (o *RequestEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestEnumerateEnvelope) HasData

func (o *RequestEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*RequestEnumerateEnvelope) HasDelta

func (o *RequestEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*RequestEnumerateEnvelope) HasMessage

func (o *RequestEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RequestEnumerateEnvelope) HasPagination

func (o *RequestEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*RequestEnumerateEnvelope) HasRequestId

func (o *RequestEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (RequestEnumerateEnvelope) MarshalJSON

func (o RequestEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*RequestEnumerateEnvelope) SetData

func (o *RequestEnumerateEnvelope) SetData(v []Request)

SetData gets a reference to the given []Request and assigns it to the Data field.

func (*RequestEnumerateEnvelope) SetDelta

func (o *RequestEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*RequestEnumerateEnvelope) SetMessage

func (o *RequestEnumerateEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*RequestEnumerateEnvelope) SetMessageNil

func (o *RequestEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*RequestEnumerateEnvelope) SetPagination

func (o *RequestEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*RequestEnumerateEnvelope) SetRequestId

func (o *RequestEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*RequestEnumerateEnvelope) SetRequestIdNil

func (o *RequestEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (RequestEnumerateEnvelope) ToMap

func (o RequestEnumerateEnvelope) ToMap() (map[string]interface{}, error)

func (*RequestEnumerateEnvelope) UnsetMessage

func (o *RequestEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*RequestEnumerateEnvelope) UnsetRequestId

func (o *RequestEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type RequestEnvelope

type RequestEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *Request       `json:"data,omitempty"`
}

RequestEnvelope struct for RequestEnvelope

func NewRequestEnvelope

func NewRequestEnvelope() *RequestEnvelope

NewRequestEnvelope instantiates a new RequestEnvelope 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 NewRequestEnvelopeWithDefaults

func NewRequestEnvelopeWithDefaults() *RequestEnvelope

NewRequestEnvelopeWithDefaults instantiates a new RequestEnvelope 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 (*RequestEnvelope) GetData

func (o *RequestEnvelope) GetData() Request

GetData returns the Data field value if set, zero value otherwise.

func (*RequestEnvelope) GetDataOk

func (o *RequestEnvelope) GetDataOk() (*Request, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestEnvelope) GetMessage

func (o *RequestEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestEnvelope) GetMessageOk

func (o *RequestEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestEnvelope) GetRequestId

func (o *RequestEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestEnvelope) GetRequestIdOk

func (o *RequestEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestEnvelope) HasData

func (o *RequestEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*RequestEnvelope) HasMessage

func (o *RequestEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RequestEnvelope) HasRequestId

func (o *RequestEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (RequestEnvelope) MarshalJSON

func (o RequestEnvelope) MarshalJSON() ([]byte, error)

func (*RequestEnvelope) SetData

func (o *RequestEnvelope) SetData(v Request)

SetData gets a reference to the given Request and assigns it to the Data field.

func (*RequestEnvelope) SetMessage

func (o *RequestEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*RequestEnvelope) SetMessageNil

func (o *RequestEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*RequestEnvelope) SetRequestId

func (o *RequestEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*RequestEnvelope) SetRequestIdNil

func (o *RequestEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (RequestEnvelope) ToMap

func (o RequestEnvelope) ToMap() (map[string]interface{}, error)

func (*RequestEnvelope) UnsetMessage

func (o *RequestEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*RequestEnvelope) UnsetRequestId

func (o *RequestEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type RequestParameter

type RequestParameter struct {
	RequestId     NullableString `json:"requestId,omitempty"`
	OperationType *OperationType `json:"operationType,omitempty"`
	PropertyName  NullableString `json:"propertyName,omitempty"`
	PropertyValue NullableString `json:"propertyValue,omitempty"`
	Id            NullableString `json:"id,omitempty"`
	CreationTime  *time.Time     `json:"creationTime,omitempty"`
}

RequestParameter struct for RequestParameter

func NewRequestParameter

func NewRequestParameter() *RequestParameter

NewRequestParameter instantiates a new RequestParameter 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 NewRequestParameterWithDefaults

func NewRequestParameterWithDefaults() *RequestParameter

NewRequestParameterWithDefaults instantiates a new RequestParameter 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 (*RequestParameter) GetCreationTime

func (o *RequestParameter) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*RequestParameter) GetCreationTimeOk

func (o *RequestParameter) GetCreationTimeOk() (*time.Time, bool)

GetCreationTimeOk returns a tuple with the CreationTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestParameter) GetId

func (o *RequestParameter) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestParameter) GetIdOk

func (o *RequestParameter) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestParameter) GetOperationType

func (o *RequestParameter) GetOperationType() OperationType

GetOperationType returns the OperationType field value if set, zero value otherwise.

func (*RequestParameter) GetOperationTypeOk

func (o *RequestParameter) GetOperationTypeOk() (*OperationType, bool)

GetOperationTypeOk returns a tuple with the OperationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestParameter) GetPropertyName

func (o *RequestParameter) GetPropertyName() string

GetPropertyName returns the PropertyName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestParameter) GetPropertyNameOk

func (o *RequestParameter) GetPropertyNameOk() (*string, bool)

GetPropertyNameOk returns a tuple with the PropertyName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestParameter) GetPropertyValue

func (o *RequestParameter) GetPropertyValue() string

GetPropertyValue returns the PropertyValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestParameter) GetPropertyValueOk

func (o *RequestParameter) GetPropertyValueOk() (*string, bool)

GetPropertyValueOk returns a tuple with the PropertyValue field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestParameter) GetRequestId

func (o *RequestParameter) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RequestParameter) GetRequestIdOk

func (o *RequestParameter) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RequestParameter) HasCreationTime

func (o *RequestParameter) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*RequestParameter) HasId

func (o *RequestParameter) HasId() bool

HasId returns a boolean if a field has been set.

func (*RequestParameter) HasOperationType

func (o *RequestParameter) HasOperationType() bool

HasOperationType returns a boolean if a field has been set.

func (*RequestParameter) HasPropertyName

func (o *RequestParameter) HasPropertyName() bool

HasPropertyName returns a boolean if a field has been set.

func (*RequestParameter) HasPropertyValue

func (o *RequestParameter) HasPropertyValue() bool

HasPropertyValue returns a boolean if a field has been set.

func (*RequestParameter) HasRequestId

func (o *RequestParameter) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (RequestParameter) MarshalJSON

func (o RequestParameter) MarshalJSON() ([]byte, error)

func (*RequestParameter) SetCreationTime

func (o *RequestParameter) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*RequestParameter) SetId

func (o *RequestParameter) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*RequestParameter) SetIdNil

func (o *RequestParameter) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*RequestParameter) SetOperationType

func (o *RequestParameter) SetOperationType(v OperationType)

SetOperationType gets a reference to the given OperationType and assigns it to the OperationType field.

func (*RequestParameter) SetPropertyName

func (o *RequestParameter) SetPropertyName(v string)

SetPropertyName gets a reference to the given NullableString and assigns it to the PropertyName field.

func (*RequestParameter) SetPropertyNameNil

func (o *RequestParameter) SetPropertyNameNil()

SetPropertyNameNil sets the value for PropertyName to be an explicit nil

func (*RequestParameter) SetPropertyValue

func (o *RequestParameter) SetPropertyValue(v string)

SetPropertyValue gets a reference to the given NullableString and assigns it to the PropertyValue field.

func (*RequestParameter) SetPropertyValueNil

func (o *RequestParameter) SetPropertyValueNil()

SetPropertyValueNil sets the value for PropertyValue to be an explicit nil

func (*RequestParameter) SetRequestId

func (o *RequestParameter) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*RequestParameter) SetRequestIdNil

func (o *RequestParameter) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (RequestParameter) ToMap

func (o RequestParameter) ToMap() (map[string]interface{}, error)

func (*RequestParameter) UnsetId

func (o *RequestParameter) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*RequestParameter) UnsetPropertyName

func (o *RequestParameter) UnsetPropertyName()

UnsetPropertyName ensures that no value is present for PropertyName, not even an explicit nil

func (*RequestParameter) UnsetPropertyValue

func (o *RequestParameter) UnsetPropertyValue()

UnsetPropertyValue ensures that no value is present for PropertyValue, not even an explicit nil

func (*RequestParameter) UnsetRequestId

func (o *RequestParameter) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type RequestStatus

type RequestStatus string

RequestStatus the model 'RequestStatus'

const (
	REQUESTSTATUS_UNDEFINED RequestStatus = "Undefined"
	REQUESTSTATUS_PENDING   RequestStatus = "Pending"
	REQUESTSTATUS_TIMED_OUT RequestStatus = "TimedOut"
	REQUESTSTATUS_DENIED    RequestStatus = "Denied"
	REQUESTSTATUS_CANCELED  RequestStatus = "Canceled"
	REQUESTSTATUS_FAILED    RequestStatus = "Failed"
	REQUESTSTATUS_COMPLETED RequestStatus = "Completed"
)

List of RequestStatus

func NewRequestStatusFromValue

func NewRequestStatusFromValue(v string) (*RequestStatus, error)

NewRequestStatusFromValue returns a pointer to a valid RequestStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RequestStatus) IsValid

func (v RequestStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RequestStatus) Ptr

func (v RequestStatus) Ptr() *RequestStatus

Ptr returns reference to RequestStatus value

func (*RequestStatus) UnmarshalJSON

func (v *RequestStatus) UnmarshalJSON(src []byte) error

type RequestType

type RequestType string

RequestType the model 'RequestType'

const (
	REQUESTTYPE_UNDEFINED RequestType = "Undefined"
	REQUESTTYPE_CREATE    RequestType = "Create"
	REQUESTTYPE_UPDATE    RequestType = "Update"
	REQUESTTYPE_DELETE    RequestType = "Delete"
)

List of RequestType

func NewRequestTypeFromValue

func NewRequestTypeFromValue(v string) (*RequestType, error)

NewRequestTypeFromValue returns a pointer to a valid RequestType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RequestType) IsValid

func (v RequestType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RequestType) Ptr

func (v RequestType) Ptr() *RequestType

Ptr returns reference to RequestType value

func (*RequestType) UnmarshalJSON

func (v *RequestType) UnmarshalJSON(src []byte) error

type ResourceCategory

type ResourceCategory string

ResourceCategory the model 'ResourceCategory'

const (
	RESOURCECATEGORY_UNDEFINED ResourceCategory = "Undefined"
	RESOURCECATEGORY_OFFICIAL  ResourceCategory = "Official"
	RESOURCECATEGORY_PERSONAL  ResourceCategory = "Personal"
	RESOURCECATEGORY_TEST      ResourceCategory = "Test"
)

List of ResourceCategory

func NewResourceCategoryFromValue

func NewResourceCategoryFromValue(v string) (*ResourceCategory, error)

NewResourceCategoryFromValue returns a pointer to a valid ResourceCategory for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ResourceCategory) IsValid

func (v ResourceCategory) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ResourceCategory) Ptr

Ptr returns reference to ResourceCategory value

func (*ResourceCategory) UnmarshalJSON

func (v *ResourceCategory) UnmarshalJSON(src []byte) error

type ResourceState

type ResourceState string

ResourceState the model 'ResourceState'

const (
	RESOURCESTATE_ACTIVE          ResourceState = "Active"
	RESOURCESTATE_ACTION_REQUIRED ResourceState = "ActionRequired"
	RESOURCESTATE_GRACE_PERIOD    ResourceState = "GracePeriod"
	RESOURCESTATE_BLOCKED         ResourceState = "Blocked"
	RESOURCESTATE_ARCHIVED        ResourceState = "Archived"
	RESOURCESTATE_DELETED         ResourceState = "Deleted"
	RESOURCESTATE_INVALID         ResourceState = "Invalid"
	RESOURCESTATE_CREATED         ResourceState = "Created"
)

List of ResourceState

func NewResourceStateFromValue

func NewResourceStateFromValue(v string) (*ResourceState, error)

NewResourceStateFromValue returns a pointer to a valid ResourceState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ResourceState) IsValid

func (v ResourceState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ResourceState) Ptr

func (v ResourceState) Ptr() *ResourceState

Ptr returns reference to ResourceState value

func (*ResourceState) UnmarshalJSON

func (v *ResourceState) UnmarshalJSON(src []byte) error

type Role

type Role struct {
	Name            string         `json:"name"`
	DisplayName     string         `json:"displayName"`
	Description     string         `json:"description"`
	ApplicationId   *string        `json:"applicationId,omitempty"`
	Required        *bool          `json:"required,omitempty"`
	MinimumLoaId    NullableString `json:"minimumLoaId,omitempty"`
	Multifactor     *bool          `json:"multifactor,omitempty"`
	ApplyToAllUsers *bool          `json:"applyToAllUsers,omitempty"`
	Id              NullableString `json:"id,omitempty"`
	CreationTime    *time.Time     `json:"creationTime,omitempty"`
}

Role struct for Role

func NewRole

func NewRole(name string, displayName string, description string) *Role

NewRole instantiates a new Role 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 NewRoleWithDefaults

func NewRoleWithDefaults() *Role

NewRoleWithDefaults instantiates a new Role 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 (*Role) GetApplicationId

func (o *Role) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise.

func (*Role) GetApplicationIdOk

func (o *Role) GetApplicationIdOk() (*string, bool)

GetApplicationIdOk returns a tuple with the ApplicationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetApplyToAllUsers

func (o *Role) GetApplyToAllUsers() bool

GetApplyToAllUsers returns the ApplyToAllUsers field value if set, zero value otherwise.

func (*Role) GetApplyToAllUsersOk

func (o *Role) GetApplyToAllUsersOk() (*bool, bool)

GetApplyToAllUsersOk returns a tuple with the ApplyToAllUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetCreationTime

func (o *Role) GetCreationTime() time.Time

GetCreationTime returns the CreationTime field value if set, zero value otherwise.

func (*Role) GetCreationTimeOk

func (o *Role) GetCreationTimeOk() (*time.Time, bool)

GetCreationTimeOk returns a tuple with the CreationTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetDescription

func (o *Role) GetDescription() string

GetDescription returns the Description field value

func (*Role) GetDescriptionOk

func (o *Role) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*Role) GetDisplayName

func (o *Role) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*Role) GetDisplayNameOk

func (o *Role) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*Role) GetId

func (o *Role) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Role) GetIdOk

func (o *Role) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Role) GetMinimumLoaId

func (o *Role) GetMinimumLoaId() string

GetMinimumLoaId returns the MinimumLoaId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Role) GetMinimumLoaIdOk

func (o *Role) GetMinimumLoaIdOk() (*string, bool)

GetMinimumLoaIdOk returns a tuple with the MinimumLoaId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Role) GetMultifactor

func (o *Role) GetMultifactor() bool

GetMultifactor returns the Multifactor field value if set, zero value otherwise.

func (*Role) GetMultifactorOk

func (o *Role) GetMultifactorOk() (*bool, bool)

GetMultifactorOk returns a tuple with the Multifactor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetName

func (o *Role) GetName() string

GetName returns the Name field value

func (*Role) GetNameOk

func (o *Role) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Role) GetRequired

func (o *Role) GetRequired() bool

GetRequired returns the Required field value if set, zero value otherwise.

func (*Role) GetRequiredOk

func (o *Role) GetRequiredOk() (*bool, bool)

GetRequiredOk returns a tuple with the Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) HasApplicationId

func (o *Role) HasApplicationId() bool

HasApplicationId returns a boolean if a field has been set.

func (*Role) HasApplyToAllUsers

func (o *Role) HasApplyToAllUsers() bool

HasApplyToAllUsers returns a boolean if a field has been set.

func (*Role) HasCreationTime

func (o *Role) HasCreationTime() bool

HasCreationTime returns a boolean if a field has been set.

func (*Role) HasId

func (o *Role) HasId() bool

HasId returns a boolean if a field has been set.

func (*Role) HasMinimumLoaId

func (o *Role) HasMinimumLoaId() bool

HasMinimumLoaId returns a boolean if a field has been set.

func (*Role) HasMultifactor

func (o *Role) HasMultifactor() bool

HasMultifactor returns a boolean if a field has been set.

func (*Role) HasRequired

func (o *Role) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (Role) MarshalJSON

func (o Role) MarshalJSON() ([]byte, error)

func (*Role) SetApplicationId

func (o *Role) SetApplicationId(v string)

SetApplicationId gets a reference to the given string and assigns it to the ApplicationId field.

func (*Role) SetApplyToAllUsers

func (o *Role) SetApplyToAllUsers(v bool)

SetApplyToAllUsers gets a reference to the given bool and assigns it to the ApplyToAllUsers field.

func (*Role) SetCreationTime

func (o *Role) SetCreationTime(v time.Time)

SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.

func (*Role) SetDescription

func (o *Role) SetDescription(v string)

SetDescription sets field value

func (*Role) SetDisplayName

func (o *Role) SetDisplayName(v string)

SetDisplayName sets field value

func (*Role) SetId

func (o *Role) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*Role) SetIdNil

func (o *Role) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*Role) SetMinimumLoaId

func (o *Role) SetMinimumLoaId(v string)

SetMinimumLoaId gets a reference to the given NullableString and assigns it to the MinimumLoaId field.

func (*Role) SetMinimumLoaIdNil

func (o *Role) SetMinimumLoaIdNil()

SetMinimumLoaIdNil sets the value for MinimumLoaId to be an explicit nil

func (*Role) SetMultifactor

func (o *Role) SetMultifactor(v bool)

SetMultifactor gets a reference to the given bool and assigns it to the Multifactor field.

func (*Role) SetName

func (o *Role) SetName(v string)

SetName sets field value

func (*Role) SetRequired

func (o *Role) SetRequired(v bool)

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (Role) ToMap

func (o Role) ToMap() (map[string]interface{}, error)

func (*Role) UnmarshalJSON

func (o *Role) UnmarshalJSON(data []byte) (err error)

func (*Role) UnsetId

func (o *Role) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*Role) UnsetMinimumLoaId

func (o *Role) UnsetMinimumLoaId()

UnsetMinimumLoaId ensures that no value is present for MinimumLoaId, not even an explicit nil

type RoleEnumerateEnvelope

type RoleEnumerateEnvelope struct {
	Pagination *Pagination    `json:"pagination,omitempty"`
	Delta      *Delta         `json:"delta,omitempty"`
	RequestId  NullableString `json:"request_id,omitempty"`
	Message    NullableString `json:"message,omitempty"`
	Data       []Role         `json:"data,omitempty"`
}

RoleEnumerateEnvelope struct for RoleEnumerateEnvelope

func NewRoleEnumerateEnvelope

func NewRoleEnumerateEnvelope() *RoleEnumerateEnvelope

NewRoleEnumerateEnvelope instantiates a new RoleEnumerateEnvelope 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 NewRoleEnumerateEnvelopeWithDefaults

func NewRoleEnumerateEnvelopeWithDefaults() *RoleEnumerateEnvelope

NewRoleEnumerateEnvelopeWithDefaults instantiates a new RoleEnumerateEnvelope 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 (*RoleEnumerateEnvelope) GetData

func (o *RoleEnumerateEnvelope) GetData() []Role

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleEnumerateEnvelope) GetDataOk

func (o *RoleEnumerateEnvelope) GetDataOk() ([]Role, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleEnumerateEnvelope) GetDelta

func (o *RoleEnumerateEnvelope) GetDelta() Delta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*RoleEnumerateEnvelope) GetDeltaOk

func (o *RoleEnumerateEnvelope) GetDeltaOk() (*Delta, bool)

GetDeltaOk returns a tuple with the Delta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleEnumerateEnvelope) GetMessage

func (o *RoleEnumerateEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleEnumerateEnvelope) GetMessageOk

func (o *RoleEnumerateEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleEnumerateEnvelope) GetPagination

func (o *RoleEnumerateEnvelope) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*RoleEnumerateEnvelope) GetPaginationOk

func (o *RoleEnumerateEnvelope) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleEnumerateEnvelope) GetRequestId

func (o *RoleEnumerateEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleEnumerateEnvelope) GetRequestIdOk

func (o *RoleEnumerateEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleEnumerateEnvelope) HasData

func (o *RoleEnumerateEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*RoleEnumerateEnvelope) HasDelta

func (o *RoleEnumerateEnvelope) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*RoleEnumerateEnvelope) HasMessage

func (o *RoleEnumerateEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RoleEnumerateEnvelope) HasPagination

func (o *RoleEnumerateEnvelope) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*RoleEnumerateEnvelope) HasRequestId

func (o *RoleEnumerateEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (RoleEnumerateEnvelope) MarshalJSON

func (o RoleEnumerateEnvelope) MarshalJSON() ([]byte, error)

func (*RoleEnumerateEnvelope) SetData

func (o *RoleEnumerateEnvelope) SetData(v []Role)

SetData gets a reference to the given []Role and assigns it to the Data field.

func (*RoleEnumerateEnvelope) SetDelta

func (o *RoleEnumerateEnvelope) SetDelta(v Delta)

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*RoleEnumerateEnvelope) SetMessage

func (o *RoleEnumerateEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*RoleEnumerateEnvelope) SetMessageNil

func (o *RoleEnumerateEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*RoleEnumerateEnvelope) SetPagination

func (o *RoleEnumerateEnvelope) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*RoleEnumerateEnvelope) SetRequestId

func (o *RoleEnumerateEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*RoleEnumerateEnvelope) SetRequestIdNil

func (o *RoleEnumerateEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (RoleEnumerateEnvelope) ToMap

func (o RoleEnumerateEnvelope) ToMap() (map[string]interface{}, error)

func (*RoleEnumerateEnvelope) UnsetMessage

func (o *RoleEnumerateEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*RoleEnumerateEnvelope) UnsetRequestId

func (o *RoleEnumerateEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type RoleEnvelope

type RoleEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *Role          `json:"data,omitempty"`
}

RoleEnvelope struct for RoleEnvelope

func NewRoleEnvelope

func NewRoleEnvelope() *RoleEnvelope

NewRoleEnvelope instantiates a new RoleEnvelope 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 NewRoleEnvelopeWithDefaults

func NewRoleEnvelopeWithDefaults() *RoleEnvelope

NewRoleEnvelopeWithDefaults instantiates a new RoleEnvelope 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 (*RoleEnvelope) GetData

func (o *RoleEnvelope) GetData() Role

GetData returns the Data field value if set, zero value otherwise.

func (*RoleEnvelope) GetDataOk

func (o *RoleEnvelope) GetDataOk() (*Role, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleEnvelope) GetMessage

func (o *RoleEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleEnvelope) GetMessageOk

func (o *RoleEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleEnvelope) GetRequestId

func (o *RoleEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleEnvelope) GetRequestIdOk

func (o *RoleEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleEnvelope) HasData

func (o *RoleEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*RoleEnvelope) HasMessage

func (o *RoleEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RoleEnvelope) HasRequestId

func (o *RoleEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (RoleEnvelope) MarshalJSON

func (o RoleEnvelope) MarshalJSON() ([]byte, error)

func (*RoleEnvelope) SetData

func (o *RoleEnvelope) SetData(v Role)

SetData gets a reference to the given Role and assigns it to the Data field.

func (*RoleEnvelope) SetMessage

func (o *RoleEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*RoleEnvelope) SetMessageNil

func (o *RoleEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*RoleEnvelope) SetRequestId

func (o *RoleEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*RoleEnvelope) SetRequestIdNil

func (o *RoleEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (RoleEnvelope) ToMap

func (o RoleEnvelope) ToMap() (map[string]interface{}, error)

func (*RoleEnvelope) UnsetMessage

func (o *RoleEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*RoleEnvelope) UnsetRequestId

func (o *RoleEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type RoleInfo

type RoleInfo struct {
	Id          NullableString `json:"id,omitempty"`
	Name        NullableString `json:"name,omitempty"`
	DisplayName NullableString `json:"displayName,omitempty"`
	Description NullableString `json:"description,omitempty"`
}

RoleInfo struct for RoleInfo

func NewRoleInfo

func NewRoleInfo() *RoleInfo

NewRoleInfo instantiates a new RoleInfo 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 NewRoleInfoWithDefaults

func NewRoleInfoWithDefaults() *RoleInfo

NewRoleInfoWithDefaults instantiates a new RoleInfo 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 (*RoleInfo) GetDescription

func (o *RoleInfo) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleInfo) GetDescriptionOk

func (o *RoleInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleInfo) GetDisplayName

func (o *RoleInfo) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleInfo) GetDisplayNameOk

func (o *RoleInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleInfo) GetId

func (o *RoleInfo) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleInfo) GetIdOk

func (o *RoleInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleInfo) GetName

func (o *RoleInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RoleInfo) GetNameOk

func (o *RoleInfo) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RoleInfo) HasDescription

func (o *RoleInfo) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RoleInfo) HasDisplayName

func (o *RoleInfo) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RoleInfo) HasId

func (o *RoleInfo) HasId() bool

HasId returns a boolean if a field has been set.

func (*RoleInfo) HasName

func (o *RoleInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (RoleInfo) MarshalJSON

func (o RoleInfo) MarshalJSON() ([]byte, error)

func (*RoleInfo) SetDescription

func (o *RoleInfo) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*RoleInfo) SetDescriptionNil

func (o *RoleInfo) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*RoleInfo) SetDisplayName

func (o *RoleInfo) SetDisplayName(v string)

SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.

func (*RoleInfo) SetDisplayNameNil

func (o *RoleInfo) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*RoleInfo) SetId

func (o *RoleInfo) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*RoleInfo) SetIdNil

func (o *RoleInfo) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*RoleInfo) SetName

func (o *RoleInfo) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*RoleInfo) SetNameNil

func (o *RoleInfo) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (RoleInfo) ToMap

func (o RoleInfo) ToMap() (map[string]interface{}, error)

func (*RoleInfo) UnsetDescription

func (o *RoleInfo) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*RoleInfo) UnsetDisplayName

func (o *RoleInfo) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*RoleInfo) UnsetId

func (o *RoleInfo) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*RoleInfo) UnsetName

func (o *RoleInfo) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type SelfServiceAccountActivationRequest

type SelfServiceAccountActivationRequest struct {
	Id            *string        `json:"id,omitempty"`
	ApprovalToken NullableString `json:"approvalToken,omitempty"`
	Captcha       *CaptchaAnswer `json:"captcha,omitempty"`
	DateOfBirth   *time.Time     `json:"dateOfBirth,omitempty"`
	CernPassword  NullableString `json:"cernPassword,omitempty"`
	EdhPassword   NullableString `json:"edhPassword,omitempty"`
}

SelfServiceAccountActivationRequest struct for SelfServiceAccountActivationRequest

func NewSelfServiceAccountActivationRequest

func NewSelfServiceAccountActivationRequest() *SelfServiceAccountActivationRequest

NewSelfServiceAccountActivationRequest instantiates a new SelfServiceAccountActivationRequest 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 NewSelfServiceAccountActivationRequestWithDefaults

func NewSelfServiceAccountActivationRequestWithDefaults() *SelfServiceAccountActivationRequest

NewSelfServiceAccountActivationRequestWithDefaults instantiates a new SelfServiceAccountActivationRequest 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 (*SelfServiceAccountActivationRequest) GetApprovalToken

func (o *SelfServiceAccountActivationRequest) GetApprovalToken() string

GetApprovalToken returns the ApprovalToken field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelfServiceAccountActivationRequest) GetApprovalTokenOk

func (o *SelfServiceAccountActivationRequest) GetApprovalTokenOk() (*string, bool)

GetApprovalTokenOk returns a tuple with the ApprovalToken field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelfServiceAccountActivationRequest) GetCaptcha

GetCaptcha returns the Captcha field value if set, zero value otherwise.

func (*SelfServiceAccountActivationRequest) GetCaptchaOk

GetCaptchaOk returns a tuple with the Captcha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelfServiceAccountActivationRequest) GetCernPassword

func (o *SelfServiceAccountActivationRequest) GetCernPassword() string

GetCernPassword returns the CernPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelfServiceAccountActivationRequest) GetCernPasswordOk

func (o *SelfServiceAccountActivationRequest) GetCernPasswordOk() (*string, bool)

GetCernPasswordOk returns a tuple with the CernPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelfServiceAccountActivationRequest) GetDateOfBirth

func (o *SelfServiceAccountActivationRequest) GetDateOfBirth() time.Time

GetDateOfBirth returns the DateOfBirth field value if set, zero value otherwise.

func (*SelfServiceAccountActivationRequest) GetDateOfBirthOk

func (o *SelfServiceAccountActivationRequest) GetDateOfBirthOk() (*time.Time, bool)

GetDateOfBirthOk returns a tuple with the DateOfBirth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelfServiceAccountActivationRequest) GetEdhPassword

func (o *SelfServiceAccountActivationRequest) GetEdhPassword() string

GetEdhPassword returns the EdhPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelfServiceAccountActivationRequest) GetEdhPasswordOk

func (o *SelfServiceAccountActivationRequest) GetEdhPasswordOk() (*string, bool)

GetEdhPasswordOk returns a tuple with the EdhPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelfServiceAccountActivationRequest) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*SelfServiceAccountActivationRequest) 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 (*SelfServiceAccountActivationRequest) HasApprovalToken

func (o *SelfServiceAccountActivationRequest) HasApprovalToken() bool

HasApprovalToken returns a boolean if a field has been set.

func (*SelfServiceAccountActivationRequest) HasCaptcha

func (o *SelfServiceAccountActivationRequest) HasCaptcha() bool

HasCaptcha returns a boolean if a field has been set.

func (*SelfServiceAccountActivationRequest) HasCernPassword

func (o *SelfServiceAccountActivationRequest) HasCernPassword() bool

HasCernPassword returns a boolean if a field has been set.

func (*SelfServiceAccountActivationRequest) HasDateOfBirth

func (o *SelfServiceAccountActivationRequest) HasDateOfBirth() bool

HasDateOfBirth returns a boolean if a field has been set.

func (*SelfServiceAccountActivationRequest) HasEdhPassword

func (o *SelfServiceAccountActivationRequest) HasEdhPassword() bool

HasEdhPassword returns a boolean if a field has been set.

func (*SelfServiceAccountActivationRequest) HasId

HasId returns a boolean if a field has been set.

func (SelfServiceAccountActivationRequest) MarshalJSON

func (o SelfServiceAccountActivationRequest) MarshalJSON() ([]byte, error)

func (*SelfServiceAccountActivationRequest) SetApprovalToken

func (o *SelfServiceAccountActivationRequest) SetApprovalToken(v string)

SetApprovalToken gets a reference to the given NullableString and assigns it to the ApprovalToken field.

func (*SelfServiceAccountActivationRequest) SetApprovalTokenNil

func (o *SelfServiceAccountActivationRequest) SetApprovalTokenNil()

SetApprovalTokenNil sets the value for ApprovalToken to be an explicit nil

func (*SelfServiceAccountActivationRequest) SetCaptcha

SetCaptcha gets a reference to the given CaptchaAnswer and assigns it to the Captcha field.

func (*SelfServiceAccountActivationRequest) SetCernPassword

func (o *SelfServiceAccountActivationRequest) SetCernPassword(v string)

SetCernPassword gets a reference to the given NullableString and assigns it to the CernPassword field.

func (*SelfServiceAccountActivationRequest) SetCernPasswordNil

func (o *SelfServiceAccountActivationRequest) SetCernPasswordNil()

SetCernPasswordNil sets the value for CernPassword to be an explicit nil

func (*SelfServiceAccountActivationRequest) SetDateOfBirth

func (o *SelfServiceAccountActivationRequest) SetDateOfBirth(v time.Time)

SetDateOfBirth gets a reference to the given time.Time and assigns it to the DateOfBirth field.

func (*SelfServiceAccountActivationRequest) SetEdhPassword

func (o *SelfServiceAccountActivationRequest) SetEdhPassword(v string)

SetEdhPassword gets a reference to the given NullableString and assigns it to the EdhPassword field.

func (*SelfServiceAccountActivationRequest) SetEdhPasswordNil

func (o *SelfServiceAccountActivationRequest) SetEdhPasswordNil()

SetEdhPasswordNil sets the value for EdhPassword to be an explicit nil

func (*SelfServiceAccountActivationRequest) SetId

SetId gets a reference to the given string and assigns it to the Id field.

func (SelfServiceAccountActivationRequest) ToMap

func (o SelfServiceAccountActivationRequest) ToMap() (map[string]interface{}, error)

func (*SelfServiceAccountActivationRequest) UnsetApprovalToken

func (o *SelfServiceAccountActivationRequest) UnsetApprovalToken()

UnsetApprovalToken ensures that no value is present for ApprovalToken, not even an explicit nil

func (*SelfServiceAccountActivationRequest) UnsetCernPassword

func (o *SelfServiceAccountActivationRequest) UnsetCernPassword()

UnsetCernPassword ensures that no value is present for CernPassword, not even an explicit nil

func (*SelfServiceAccountActivationRequest) UnsetEdhPassword

func (o *SelfServiceAccountActivationRequest) UnsetEdhPassword()

UnsetEdhPassword ensures that no value is present for EdhPassword, not even an explicit nil

type SelfServiceResetRequest

type SelfServiceResetRequest struct {
	AccountName NullableString `json:"accountName,omitempty"`
	DateOfBirth *time.Time     `json:"dateOfBirth,omitempty"`
	Captcha     *CaptchaAnswer `json:"captcha,omitempty"`
}

SelfServiceResetRequest struct for SelfServiceResetRequest

func NewSelfServiceResetRequest

func NewSelfServiceResetRequest() *SelfServiceResetRequest

NewSelfServiceResetRequest instantiates a new SelfServiceResetRequest 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 NewSelfServiceResetRequestWithDefaults

func NewSelfServiceResetRequestWithDefaults() *SelfServiceResetRequest

NewSelfServiceResetRequestWithDefaults instantiates a new SelfServiceResetRequest 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 (*SelfServiceResetRequest) GetAccountName

func (o *SelfServiceResetRequest) GetAccountName() string

GetAccountName returns the AccountName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelfServiceResetRequest) GetAccountNameOk

func (o *SelfServiceResetRequest) GetAccountNameOk() (*string, bool)

GetAccountNameOk returns a tuple with the AccountName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelfServiceResetRequest) GetCaptcha

func (o *SelfServiceResetRequest) GetCaptcha() CaptchaAnswer

GetCaptcha returns the Captcha field value if set, zero value otherwise.

func (*SelfServiceResetRequest) GetCaptchaOk

func (o *SelfServiceResetRequest) GetCaptchaOk() (*CaptchaAnswer, bool)

GetCaptchaOk returns a tuple with the Captcha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelfServiceResetRequest) GetDateOfBirth

func (o *SelfServiceResetRequest) GetDateOfBirth() time.Time

GetDateOfBirth returns the DateOfBirth field value if set, zero value otherwise.

func (*SelfServiceResetRequest) GetDateOfBirthOk

func (o *SelfServiceResetRequest) GetDateOfBirthOk() (*time.Time, bool)

GetDateOfBirthOk returns a tuple with the DateOfBirth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelfServiceResetRequest) HasAccountName

func (o *SelfServiceResetRequest) HasAccountName() bool

HasAccountName returns a boolean if a field has been set.

func (*SelfServiceResetRequest) HasCaptcha

func (o *SelfServiceResetRequest) HasCaptcha() bool

HasCaptcha returns a boolean if a field has been set.

func (*SelfServiceResetRequest) HasDateOfBirth

func (o *SelfServiceResetRequest) HasDateOfBirth() bool

HasDateOfBirth returns a boolean if a field has been set.

func (SelfServiceResetRequest) MarshalJSON

func (o SelfServiceResetRequest) MarshalJSON() ([]byte, error)

func (*SelfServiceResetRequest) SetAccountName

func (o *SelfServiceResetRequest) SetAccountName(v string)

SetAccountName gets a reference to the given NullableString and assigns it to the AccountName field.

func (*SelfServiceResetRequest) SetAccountNameNil

func (o *SelfServiceResetRequest) SetAccountNameNil()

SetAccountNameNil sets the value for AccountName to be an explicit nil

func (*SelfServiceResetRequest) SetCaptcha

func (o *SelfServiceResetRequest) SetCaptcha(v CaptchaAnswer)

SetCaptcha gets a reference to the given CaptchaAnswer and assigns it to the Captcha field.

func (*SelfServiceResetRequest) SetDateOfBirth

func (o *SelfServiceResetRequest) SetDateOfBirth(v time.Time)

SetDateOfBirth gets a reference to the given time.Time and assigns it to the DateOfBirth field.

func (SelfServiceResetRequest) ToMap

func (o SelfServiceResetRequest) ToMap() (map[string]interface{}, error)

func (*SelfServiceResetRequest) UnsetAccountName

func (o *SelfServiceResetRequest) UnsetAccountName()

UnsetAccountName ensures that no value is present for AccountName, not even an explicit nil

type SelfSubscriptionType

type SelfSubscriptionType string

SelfSubscriptionType the model 'SelfSubscriptionType'

const (
	SELFSUBSCRIPTIONTYPE_CLOSED     SelfSubscriptionType = "Closed"
	SELFSUBSCRIPTIONTYPE_OPEN       SelfSubscriptionType = "Open"
	SELFSUBSCRIPTIONTYPE_CERN_USERS SelfSubscriptionType = "CernUsers"
)

List of SelfSubscriptionType

func NewSelfSubscriptionTypeFromValue

func NewSelfSubscriptionTypeFromValue(v string) (*SelfSubscriptionType, error)

NewSelfSubscriptionTypeFromValue returns a pointer to a valid SelfSubscriptionType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SelfSubscriptionType) IsValid

func (v SelfSubscriptionType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SelfSubscriptionType) Ptr

Ptr returns reference to SelfSubscriptionType value

func (*SelfSubscriptionType) UnmarshalJSON

func (v *SelfSubscriptionType) UnmarshalJSON(src []byte) 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 StringArrayEnvelope

type StringArrayEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      []string       `json:"data,omitempty"`
}

StringArrayEnvelope struct for StringArrayEnvelope

func NewStringArrayEnvelope

func NewStringArrayEnvelope() *StringArrayEnvelope

NewStringArrayEnvelope instantiates a new StringArrayEnvelope 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 NewStringArrayEnvelopeWithDefaults

func NewStringArrayEnvelopeWithDefaults() *StringArrayEnvelope

NewStringArrayEnvelopeWithDefaults instantiates a new StringArrayEnvelope 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 (*StringArrayEnvelope) GetData

func (o *StringArrayEnvelope) GetData() []string

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringArrayEnvelope) GetDataOk

func (o *StringArrayEnvelope) GetDataOk() ([]string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringArrayEnvelope) GetMessage

func (o *StringArrayEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringArrayEnvelope) GetMessageOk

func (o *StringArrayEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringArrayEnvelope) GetRequestId

func (o *StringArrayEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringArrayEnvelope) GetRequestIdOk

func (o *StringArrayEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringArrayEnvelope) HasData

func (o *StringArrayEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*StringArrayEnvelope) HasMessage

func (o *StringArrayEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*StringArrayEnvelope) HasRequestId

func (o *StringArrayEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (StringArrayEnvelope) MarshalJSON

func (o StringArrayEnvelope) MarshalJSON() ([]byte, error)

func (*StringArrayEnvelope) SetData

func (o *StringArrayEnvelope) SetData(v []string)

SetData gets a reference to the given []string and assigns it to the Data field.

func (*StringArrayEnvelope) SetMessage

func (o *StringArrayEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*StringArrayEnvelope) SetMessageNil

func (o *StringArrayEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*StringArrayEnvelope) SetRequestId

func (o *StringArrayEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*StringArrayEnvelope) SetRequestIdNil

func (o *StringArrayEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (StringArrayEnvelope) ToMap

func (o StringArrayEnvelope) ToMap() (map[string]interface{}, error)

func (*StringArrayEnvelope) UnsetMessage

func (o *StringArrayEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*StringArrayEnvelope) UnsetRequestId

func (o *StringArrayEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type StringJObjectIEnumerableDictionaryEnvelope

type StringJObjectIEnumerableDictionaryEnvelope struct {
	RequestId NullableString           `json:"request_id,omitempty"`
	Message   NullableString           `json:"message,omitempty"`
	Data      map[string][]interface{} `json:"data,omitempty"`
}

StringJObjectIEnumerableDictionaryEnvelope struct for StringJObjectIEnumerableDictionaryEnvelope

func NewStringJObjectIEnumerableDictionaryEnvelope

func NewStringJObjectIEnumerableDictionaryEnvelope() *StringJObjectIEnumerableDictionaryEnvelope

NewStringJObjectIEnumerableDictionaryEnvelope instantiates a new StringJObjectIEnumerableDictionaryEnvelope 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 NewStringJObjectIEnumerableDictionaryEnvelopeWithDefaults

func NewStringJObjectIEnumerableDictionaryEnvelopeWithDefaults() *StringJObjectIEnumerableDictionaryEnvelope

NewStringJObjectIEnumerableDictionaryEnvelopeWithDefaults instantiates a new StringJObjectIEnumerableDictionaryEnvelope 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 (*StringJObjectIEnumerableDictionaryEnvelope) GetData

func (o *StringJObjectIEnumerableDictionaryEnvelope) GetData() map[string][]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringJObjectIEnumerableDictionaryEnvelope) GetDataOk

func (o *StringJObjectIEnumerableDictionaryEnvelope) GetDataOk() (*map[string][]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringJObjectIEnumerableDictionaryEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringJObjectIEnumerableDictionaryEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringJObjectIEnumerableDictionaryEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringJObjectIEnumerableDictionaryEnvelope) GetRequestIdOk

func (o *StringJObjectIEnumerableDictionaryEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringJObjectIEnumerableDictionaryEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*StringJObjectIEnumerableDictionaryEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*StringJObjectIEnumerableDictionaryEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (StringJObjectIEnumerableDictionaryEnvelope) MarshalJSON

func (*StringJObjectIEnumerableDictionaryEnvelope) SetData

func (o *StringJObjectIEnumerableDictionaryEnvelope) SetData(v map[string][]interface{})

SetData gets a reference to the given map[string][]interface{} and assigns it to the Data field.

func (*StringJObjectIEnumerableDictionaryEnvelope) SetMessage

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*StringJObjectIEnumerableDictionaryEnvelope) SetMessageNil

func (o *StringJObjectIEnumerableDictionaryEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*StringJObjectIEnumerableDictionaryEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*StringJObjectIEnumerableDictionaryEnvelope) SetRequestIdNil

func (o *StringJObjectIEnumerableDictionaryEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (StringJObjectIEnumerableDictionaryEnvelope) ToMap

func (o StringJObjectIEnumerableDictionaryEnvelope) ToMap() (map[string]interface{}, error)

func (*StringJObjectIEnumerableDictionaryEnvelope) UnsetMessage

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*StringJObjectIEnumerableDictionaryEnvelope) UnsetRequestId

func (o *StringJObjectIEnumerableDictionaryEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type StringStringDictionaryEnvelope

type StringStringDictionaryEnvelope struct {
	RequestId NullableString    `json:"request_id,omitempty"`
	Message   NullableString    `json:"message,omitempty"`
	Data      map[string]string `json:"data,omitempty"`
}

StringStringDictionaryEnvelope struct for StringStringDictionaryEnvelope

func NewStringStringDictionaryEnvelope

func NewStringStringDictionaryEnvelope() *StringStringDictionaryEnvelope

NewStringStringDictionaryEnvelope instantiates a new StringStringDictionaryEnvelope 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 NewStringStringDictionaryEnvelopeWithDefaults

func NewStringStringDictionaryEnvelopeWithDefaults() *StringStringDictionaryEnvelope

NewStringStringDictionaryEnvelopeWithDefaults instantiates a new StringStringDictionaryEnvelope 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 (*StringStringDictionaryEnvelope) GetData

func (o *StringStringDictionaryEnvelope) GetData() map[string]string

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringStringDictionaryEnvelope) GetDataOk

func (o *StringStringDictionaryEnvelope) GetDataOk() (*map[string]string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringStringDictionaryEnvelope) GetMessage

func (o *StringStringDictionaryEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringStringDictionaryEnvelope) GetMessageOk

func (o *StringStringDictionaryEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringStringDictionaryEnvelope) GetRequestId

func (o *StringStringDictionaryEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StringStringDictionaryEnvelope) GetRequestIdOk

func (o *StringStringDictionaryEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StringStringDictionaryEnvelope) HasData

func (o *StringStringDictionaryEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*StringStringDictionaryEnvelope) HasMessage

func (o *StringStringDictionaryEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*StringStringDictionaryEnvelope) HasRequestId

func (o *StringStringDictionaryEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (StringStringDictionaryEnvelope) MarshalJSON

func (o StringStringDictionaryEnvelope) MarshalJSON() ([]byte, error)

func (*StringStringDictionaryEnvelope) SetData

func (o *StringStringDictionaryEnvelope) SetData(v map[string]string)

SetData gets a reference to the given map[string]string and assigns it to the Data field.

func (*StringStringDictionaryEnvelope) SetMessage

func (o *StringStringDictionaryEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*StringStringDictionaryEnvelope) SetMessageNil

func (o *StringStringDictionaryEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*StringStringDictionaryEnvelope) SetRequestId

func (o *StringStringDictionaryEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*StringStringDictionaryEnvelope) SetRequestIdNil

func (o *StringStringDictionaryEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (StringStringDictionaryEnvelope) ToMap

func (o StringStringDictionaryEnvelope) ToMap() (map[string]interface{}, error)

func (*StringStringDictionaryEnvelope) UnsetMessage

func (o *StringStringDictionaryEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*StringStringDictionaryEnvelope) UnsetRequestId

func (o *StringStringDictionaryEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type TaskCreationOptions

type TaskCreationOptions string

TaskCreationOptions the model 'TaskCreationOptions'

const (
	TASKCREATIONOPTIONS_NONE                             TaskCreationOptions = "None"
	TASKCREATIONOPTIONS_PREFER_FAIRNESS                  TaskCreationOptions = "PreferFairness"
	TASKCREATIONOPTIONS_LONG_RUNNING                     TaskCreationOptions = "LongRunning"
	TASKCREATIONOPTIONS_ATTACHED_TO_PARENT               TaskCreationOptions = "AttachedToParent"
	TASKCREATIONOPTIONS_DENY_CHILD_ATTACH                TaskCreationOptions = "DenyChildAttach"
	TASKCREATIONOPTIONS_HIDE_SCHEDULER                   TaskCreationOptions = "HideScheduler"
	TASKCREATIONOPTIONS_RUN_CONTINUATIONS_ASYNCHRONOUSLY TaskCreationOptions = "RunContinuationsAsynchronously"
)

List of TaskCreationOptions

func NewTaskCreationOptionsFromValue

func NewTaskCreationOptionsFromValue(v string) (*TaskCreationOptions, error)

NewTaskCreationOptionsFromValue returns a pointer to a valid TaskCreationOptions for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskCreationOptions) IsValid

func (v TaskCreationOptions) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskCreationOptions) Ptr

Ptr returns reference to TaskCreationOptions value

func (*TaskCreationOptions) UnmarshalJSON

func (v *TaskCreationOptions) UnmarshalJSON(src []byte) error

type TaskStatus

type TaskStatus string

TaskStatus the model 'TaskStatus'

const (
	TASKSTATUS_CREATED                          TaskStatus = "Created"
	TASKSTATUS_WAITING_FOR_ACTIVATION           TaskStatus = "WaitingForActivation"
	TASKSTATUS_WAITING_TO_RUN                   TaskStatus = "WaitingToRun"
	TASKSTATUS_RUNNING                          TaskStatus = "Running"
	TASKSTATUS_WAITING_FOR_CHILDREN_TO_COMPLETE TaskStatus = "WaitingForChildrenToComplete"
	TASKSTATUS_RAN_TO_COMPLETION                TaskStatus = "RanToCompletion"
	TASKSTATUS_CANCELED                         TaskStatus = "Canceled"
	TASKSTATUS_FAULTED                          TaskStatus = "Faulted"
)

List of TaskStatus

func NewTaskStatusFromValue

func NewTaskStatusFromValue(v string) (*TaskStatus, error)

NewTaskStatusFromValue returns a pointer to a valid TaskStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskStatus) IsValid

func (v TaskStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskStatus) Ptr

func (v TaskStatus) Ptr() *TaskStatus

Ptr returns reference to TaskStatus value

func (*TaskStatus) UnmarshalJSON

func (v *TaskStatus) UnmarshalJSON(src []byte) error

type TokenExchangePermission

type TokenExchangePermission struct {
	TargetRegistrationId  *string `json:"targetRegistrationId,omitempty"`
	AllowedRegistrationId *string `json:"allowedRegistrationId,omitempty"`
	Builtin               *bool   `json:"builtin,omitempty"`
}

TokenExchangePermission struct for TokenExchangePermission

func NewTokenExchangePermission

func NewTokenExchangePermission() *TokenExchangePermission

NewTokenExchangePermission instantiates a new TokenExchangePermission 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 NewTokenExchangePermissionWithDefaults

func NewTokenExchangePermissionWithDefaults() *TokenExchangePermission

NewTokenExchangePermissionWithDefaults instantiates a new TokenExchangePermission 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 (*TokenExchangePermission) GetAllowedRegistrationId

func (o *TokenExchangePermission) GetAllowedRegistrationId() string

GetAllowedRegistrationId returns the AllowedRegistrationId field value if set, zero value otherwise.

func (*TokenExchangePermission) GetAllowedRegistrationIdOk

func (o *TokenExchangePermission) GetAllowedRegistrationIdOk() (*string, bool)

GetAllowedRegistrationIdOk returns a tuple with the AllowedRegistrationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenExchangePermission) GetBuiltin

func (o *TokenExchangePermission) GetBuiltin() bool

GetBuiltin returns the Builtin field value if set, zero value otherwise.

func (*TokenExchangePermission) GetBuiltinOk

func (o *TokenExchangePermission) GetBuiltinOk() (*bool, bool)

GetBuiltinOk returns a tuple with the Builtin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenExchangePermission) GetTargetRegistrationId

func (o *TokenExchangePermission) GetTargetRegistrationId() string

GetTargetRegistrationId returns the TargetRegistrationId field value if set, zero value otherwise.

func (*TokenExchangePermission) GetTargetRegistrationIdOk

func (o *TokenExchangePermission) GetTargetRegistrationIdOk() (*string, bool)

GetTargetRegistrationIdOk returns a tuple with the TargetRegistrationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenExchangePermission) HasAllowedRegistrationId

func (o *TokenExchangePermission) HasAllowedRegistrationId() bool

HasAllowedRegistrationId returns a boolean if a field has been set.

func (*TokenExchangePermission) HasBuiltin

func (o *TokenExchangePermission) HasBuiltin() bool

HasBuiltin returns a boolean if a field has been set.

func (*TokenExchangePermission) HasTargetRegistrationId

func (o *TokenExchangePermission) HasTargetRegistrationId() bool

HasTargetRegistrationId returns a boolean if a field has been set.

func (TokenExchangePermission) MarshalJSON

func (o TokenExchangePermission) MarshalJSON() ([]byte, error)

func (*TokenExchangePermission) SetAllowedRegistrationId

func (o *TokenExchangePermission) SetAllowedRegistrationId(v string)

SetAllowedRegistrationId gets a reference to the given string and assigns it to the AllowedRegistrationId field.

func (*TokenExchangePermission) SetBuiltin

func (o *TokenExchangePermission) SetBuiltin(v bool)

SetBuiltin gets a reference to the given bool and assigns it to the Builtin field.

func (*TokenExchangePermission) SetTargetRegistrationId

func (o *TokenExchangePermission) SetTargetRegistrationId(v string)

SetTargetRegistrationId gets a reference to the given string and assigns it to the TargetRegistrationId field.

func (TokenExchangePermission) ToMap

func (o TokenExchangePermission) ToMap() (map[string]interface{}, error)

type TokenExchangePermissionEnvelope

type TokenExchangePermissionEnvelope struct {
	RequestId NullableString           `json:"request_id,omitempty"`
	Message   NullableString           `json:"message,omitempty"`
	Data      *TokenExchangePermission `json:"data,omitempty"`
}

TokenExchangePermissionEnvelope struct for TokenExchangePermissionEnvelope

func NewTokenExchangePermissionEnvelope

func NewTokenExchangePermissionEnvelope() *TokenExchangePermissionEnvelope

NewTokenExchangePermissionEnvelope instantiates a new TokenExchangePermissionEnvelope 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 NewTokenExchangePermissionEnvelopeWithDefaults

func NewTokenExchangePermissionEnvelopeWithDefaults() *TokenExchangePermissionEnvelope

NewTokenExchangePermissionEnvelopeWithDefaults instantiates a new TokenExchangePermissionEnvelope 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 (*TokenExchangePermissionEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*TokenExchangePermissionEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenExchangePermissionEnvelope) GetMessage

func (o *TokenExchangePermissionEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenExchangePermissionEnvelope) GetMessageOk

func (o *TokenExchangePermissionEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TokenExchangePermissionEnvelope) GetRequestId

func (o *TokenExchangePermissionEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenExchangePermissionEnvelope) GetRequestIdOk

func (o *TokenExchangePermissionEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TokenExchangePermissionEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*TokenExchangePermissionEnvelope) HasMessage

func (o *TokenExchangePermissionEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*TokenExchangePermissionEnvelope) HasRequestId

func (o *TokenExchangePermissionEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (TokenExchangePermissionEnvelope) MarshalJSON

func (o TokenExchangePermissionEnvelope) MarshalJSON() ([]byte, error)

func (*TokenExchangePermissionEnvelope) SetData

SetData gets a reference to the given TokenExchangePermission and assigns it to the Data field.

func (*TokenExchangePermissionEnvelope) SetMessage

func (o *TokenExchangePermissionEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*TokenExchangePermissionEnvelope) SetMessageNil

func (o *TokenExchangePermissionEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*TokenExchangePermissionEnvelope) SetRequestId

func (o *TokenExchangePermissionEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*TokenExchangePermissionEnvelope) SetRequestIdNil

func (o *TokenExchangePermissionEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (TokenExchangePermissionEnvelope) ToMap

func (o TokenExchangePermissionEnvelope) ToMap() (map[string]interface{}, error)

func (*TokenExchangePermissionEnvelope) UnsetMessage

func (o *TokenExchangePermissionEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*TokenExchangePermissionEnvelope) UnsetRequestId

func (o *TokenExchangePermissionEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type TokenExchangeRequest

type TokenExchangeRequest struct {
	RegistrationId        NullableString `json:"registrationId,omitempty"`
	AllowedRegistrationId NullableString `json:"allowedRegistrationId,omitempty"`
	Comment               NullableString `json:"comment,omitempty"`
}

TokenExchangeRequest struct for TokenExchangeRequest

func NewTokenExchangeRequest

func NewTokenExchangeRequest() *TokenExchangeRequest

NewTokenExchangeRequest instantiates a new TokenExchangeRequest 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 NewTokenExchangeRequestWithDefaults

func NewTokenExchangeRequestWithDefaults() *TokenExchangeRequest

NewTokenExchangeRequestWithDefaults instantiates a new TokenExchangeRequest 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 (*TokenExchangeRequest) GetAllowedRegistrationId

func (o *TokenExchangeRequest) GetAllowedRegistrationId() string

GetAllowedRegistrationId returns the AllowedRegistrationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenExchangeRequest) GetAllowedRegistrationIdOk

func (o *TokenExchangeRequest) GetAllowedRegistrationIdOk() (*string, bool)

GetAllowedRegistrationIdOk returns a tuple with the AllowedRegistrationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TokenExchangeRequest) GetComment

func (o *TokenExchangeRequest) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenExchangeRequest) GetCommentOk

func (o *TokenExchangeRequest) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TokenExchangeRequest) GetRegistrationId

func (o *TokenExchangeRequest) GetRegistrationId() string

GetRegistrationId returns the RegistrationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TokenExchangeRequest) GetRegistrationIdOk

func (o *TokenExchangeRequest) GetRegistrationIdOk() (*string, bool)

GetRegistrationIdOk returns a tuple with the RegistrationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TokenExchangeRequest) HasAllowedRegistrationId

func (o *TokenExchangeRequest) HasAllowedRegistrationId() bool

HasAllowedRegistrationId returns a boolean if a field has been set.

func (*TokenExchangeRequest) HasComment

func (o *TokenExchangeRequest) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*TokenExchangeRequest) HasRegistrationId

func (o *TokenExchangeRequest) HasRegistrationId() bool

HasRegistrationId returns a boolean if a field has been set.

func (TokenExchangeRequest) MarshalJSON

func (o TokenExchangeRequest) MarshalJSON() ([]byte, error)

func (*TokenExchangeRequest) SetAllowedRegistrationId

func (o *TokenExchangeRequest) SetAllowedRegistrationId(v string)

SetAllowedRegistrationId gets a reference to the given NullableString and assigns it to the AllowedRegistrationId field.

func (*TokenExchangeRequest) SetAllowedRegistrationIdNil

func (o *TokenExchangeRequest) SetAllowedRegistrationIdNil()

SetAllowedRegistrationIdNil sets the value for AllowedRegistrationId to be an explicit nil

func (*TokenExchangeRequest) SetComment

func (o *TokenExchangeRequest) SetComment(v string)

SetComment gets a reference to the given NullableString and assigns it to the Comment field.

func (*TokenExchangeRequest) SetCommentNil

func (o *TokenExchangeRequest) SetCommentNil()

SetCommentNil sets the value for Comment to be an explicit nil

func (*TokenExchangeRequest) SetRegistrationId

func (o *TokenExchangeRequest) SetRegistrationId(v string)

SetRegistrationId gets a reference to the given NullableString and assigns it to the RegistrationId field.

func (*TokenExchangeRequest) SetRegistrationIdNil

func (o *TokenExchangeRequest) SetRegistrationIdNil()

SetRegistrationIdNil sets the value for RegistrationId to be an explicit nil

func (TokenExchangeRequest) ToMap

func (o TokenExchangeRequest) ToMap() (map[string]interface{}, error)

func (*TokenExchangeRequest) UnsetAllowedRegistrationId

func (o *TokenExchangeRequest) UnsetAllowedRegistrationId()

UnsetAllowedRegistrationId ensures that no value is present for AllowedRegistrationId, not even an explicit nil

func (*TokenExchangeRequest) UnsetComment

func (o *TokenExchangeRequest) UnsetComment()

UnsetComment ensures that no value is present for Comment, not even an explicit nil

func (*TokenExchangeRequest) UnsetRegistrationId

func (o *TokenExchangeRequest) UnsetRegistrationId()

UnsetRegistrationId ensures that no value is present for RegistrationId, not even an explicit nil

type UserApplicationSubscriptionStatus

type UserApplicationSubscriptionStatus string

UserApplicationSubscriptionStatus the model 'UserApplicationSubscriptionStatus'

const (
	USERAPPLICATIONSUBSCRIPTIONSTATUS_UNDEFINED    UserApplicationSubscriptionStatus = "Undefined"
	USERAPPLICATIONSUBSCRIPTIONSTATUS_DENIED       UserApplicationSubscriptionStatus = "Denied"
	USERAPPLICATIONSUBSCRIPTIONSTATUS_NOT_ELIGIBLE UserApplicationSubscriptionStatus = "NotEligible"
	USERAPPLICATIONSUBSCRIPTIONSTATUS_ELIGIBLE     UserApplicationSubscriptionStatus = "Eligible"
	USERAPPLICATIONSUBSCRIPTIONSTATUS_SUBSCRIBED   UserApplicationSubscriptionStatus = "Subscribed"
	USERAPPLICATIONSUBSCRIPTIONSTATUS_INVALID      UserApplicationSubscriptionStatus = "Invalid"
)

List of UserApplicationSubscriptionStatus

func NewUserApplicationSubscriptionStatusFromValue

func NewUserApplicationSubscriptionStatusFromValue(v string) (*UserApplicationSubscriptionStatus, error)

NewUserApplicationSubscriptionStatusFromValue returns a pointer to a valid UserApplicationSubscriptionStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UserApplicationSubscriptionStatus) IsValid

IsValid return true if the value is valid for the enum, false otherwise

func (UserApplicationSubscriptionStatus) Ptr

Ptr returns reference to UserApplicationSubscriptionStatus value

func (*UserApplicationSubscriptionStatus) UnmarshalJSON

func (v *UserApplicationSubscriptionStatus) UnmarshalJSON(src []byte) error

type UserRoles

type UserRoles struct {
	Roles           []Role `json:"roles,omitempty"`
	RolesMissingLoa []Role `json:"rolesMissingLoa,omitempty"`
	RolesMissingMfa []Role `json:"rolesMissingMfa,omitempty"`
}

UserRoles struct for UserRoles

func NewUserRoles

func NewUserRoles() *UserRoles

NewUserRoles instantiates a new UserRoles 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 NewUserRolesWithDefaults

func NewUserRolesWithDefaults() *UserRoles

NewUserRolesWithDefaults instantiates a new UserRoles 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 (*UserRoles) GetRoles

func (o *UserRoles) GetRoles() []Role

GetRoles returns the Roles field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserRoles) GetRolesMissingLoa

func (o *UserRoles) GetRolesMissingLoa() []Role

GetRolesMissingLoa returns the RolesMissingLoa field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserRoles) GetRolesMissingLoaOk

func (o *UserRoles) GetRolesMissingLoaOk() ([]Role, bool)

GetRolesMissingLoaOk returns a tuple with the RolesMissingLoa field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserRoles) GetRolesMissingMfa

func (o *UserRoles) GetRolesMissingMfa() []Role

GetRolesMissingMfa returns the RolesMissingMfa field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserRoles) GetRolesMissingMfaOk

func (o *UserRoles) GetRolesMissingMfaOk() ([]Role, bool)

GetRolesMissingMfaOk returns a tuple with the RolesMissingMfa field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserRoles) GetRolesOk

func (o *UserRoles) GetRolesOk() ([]Role, bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserRoles) HasRoles

func (o *UserRoles) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*UserRoles) HasRolesMissingLoa

func (o *UserRoles) HasRolesMissingLoa() bool

HasRolesMissingLoa returns a boolean if a field has been set.

func (*UserRoles) HasRolesMissingMfa

func (o *UserRoles) HasRolesMissingMfa() bool

HasRolesMissingMfa returns a boolean if a field has been set.

func (UserRoles) MarshalJSON

func (o UserRoles) MarshalJSON() ([]byte, error)

func (*UserRoles) SetRoles

func (o *UserRoles) SetRoles(v []Role)

SetRoles gets a reference to the given []Role and assigns it to the Roles field.

func (*UserRoles) SetRolesMissingLoa

func (o *UserRoles) SetRolesMissingLoa(v []Role)

SetRolesMissingLoa gets a reference to the given []Role and assigns it to the RolesMissingLoa field.

func (*UserRoles) SetRolesMissingMfa

func (o *UserRoles) SetRolesMissingMfa(v []Role)

SetRolesMissingMfa gets a reference to the given []Role and assigns it to the RolesMissingMfa field.

func (UserRoles) ToMap

func (o UserRoles) ToMap() (map[string]interface{}, error)

type UserRolesEnvelope

type UserRolesEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *UserRoles     `json:"data,omitempty"`
}

UserRolesEnvelope struct for UserRolesEnvelope

func NewUserRolesEnvelope

func NewUserRolesEnvelope() *UserRolesEnvelope

NewUserRolesEnvelope instantiates a new UserRolesEnvelope 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 NewUserRolesEnvelopeWithDefaults

func NewUserRolesEnvelopeWithDefaults() *UserRolesEnvelope

NewUserRolesEnvelopeWithDefaults instantiates a new UserRolesEnvelope 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 (*UserRolesEnvelope) GetData

func (o *UserRolesEnvelope) GetData() UserRoles

GetData returns the Data field value if set, zero value otherwise.

func (*UserRolesEnvelope) GetDataOk

func (o *UserRolesEnvelope) GetDataOk() (*UserRoles, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRolesEnvelope) GetMessage

func (o *UserRolesEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserRolesEnvelope) GetMessageOk

func (o *UserRolesEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserRolesEnvelope) GetRequestId

func (o *UserRolesEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserRolesEnvelope) GetRequestIdOk

func (o *UserRolesEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserRolesEnvelope) HasData

func (o *UserRolesEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*UserRolesEnvelope) HasMessage

func (o *UserRolesEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*UserRolesEnvelope) HasRequestId

func (o *UserRolesEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (UserRolesEnvelope) MarshalJSON

func (o UserRolesEnvelope) MarshalJSON() ([]byte, error)

func (*UserRolesEnvelope) SetData

func (o *UserRolesEnvelope) SetData(v UserRoles)

SetData gets a reference to the given UserRoles and assigns it to the Data field.

func (*UserRolesEnvelope) SetMessage

func (o *UserRolesEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*UserRolesEnvelope) SetMessageNil

func (o *UserRolesEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*UserRolesEnvelope) SetRequestId

func (o *UserRolesEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*UserRolesEnvelope) SetRequestIdNil

func (o *UserRolesEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (UserRolesEnvelope) ToMap

func (o UserRolesEnvelope) ToMap() (map[string]interface{}, error)

func (*UserRolesEnvelope) UnsetMessage

func (o *UserRolesEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*UserRolesEnvelope) UnsetRequestId

func (o *UserRolesEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type UserSubscriptionByLifecycleSettings

type UserSubscriptionByLifecycleSettings struct {
	Application                               *ApplicationInfo                   `json:"application,omitempty"`
	LifecycleSettings                         *LifecycleSettingsInfo             `json:"lifecycleSettings,omitempty"`
	Status                                    *UserApplicationSubscriptionStatus `json:"status,omitempty"`
	IsAdmin                                   *bool                              `json:"isAdmin,omitempty"`
	JoinSelfSubscriptionGroupPendingRequestId NullableString                     `json:"joinSelfSubscriptionGroupPendingRequestId,omitempty"`
}

UserSubscriptionByLifecycleSettings struct for UserSubscriptionByLifecycleSettings

func NewUserSubscriptionByLifecycleSettings

func NewUserSubscriptionByLifecycleSettings() *UserSubscriptionByLifecycleSettings

NewUserSubscriptionByLifecycleSettings instantiates a new UserSubscriptionByLifecycleSettings 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 NewUserSubscriptionByLifecycleSettingsWithDefaults

func NewUserSubscriptionByLifecycleSettingsWithDefaults() *UserSubscriptionByLifecycleSettings

NewUserSubscriptionByLifecycleSettingsWithDefaults instantiates a new UserSubscriptionByLifecycleSettings 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 (*UserSubscriptionByLifecycleSettings) GetApplication

GetApplication returns the Application field value if set, zero value otherwise.

func (*UserSubscriptionByLifecycleSettings) GetApplicationOk

func (o *UserSubscriptionByLifecycleSettings) GetApplicationOk() (*ApplicationInfo, bool)

GetApplicationOk returns a tuple with the Application field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscriptionByLifecycleSettings) GetIsAdmin

func (o *UserSubscriptionByLifecycleSettings) GetIsAdmin() bool

GetIsAdmin returns the IsAdmin field value if set, zero value otherwise.

func (*UserSubscriptionByLifecycleSettings) GetIsAdminOk

func (o *UserSubscriptionByLifecycleSettings) GetIsAdminOk() (*bool, bool)

GetIsAdminOk returns a tuple with the IsAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscriptionByLifecycleSettings) GetJoinSelfSubscriptionGroupPendingRequestId

func (o *UserSubscriptionByLifecycleSettings) GetJoinSelfSubscriptionGroupPendingRequestId() string

GetJoinSelfSubscriptionGroupPendingRequestId returns the JoinSelfSubscriptionGroupPendingRequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSubscriptionByLifecycleSettings) GetJoinSelfSubscriptionGroupPendingRequestIdOk

func (o *UserSubscriptionByLifecycleSettings) GetJoinSelfSubscriptionGroupPendingRequestIdOk() (*string, bool)

GetJoinSelfSubscriptionGroupPendingRequestIdOk returns a tuple with the JoinSelfSubscriptionGroupPendingRequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSubscriptionByLifecycleSettings) GetLifecycleSettings

GetLifecycleSettings returns the LifecycleSettings field value if set, zero value otherwise.

func (*UserSubscriptionByLifecycleSettings) GetLifecycleSettingsOk

func (o *UserSubscriptionByLifecycleSettings) GetLifecycleSettingsOk() (*LifecycleSettingsInfo, bool)

GetLifecycleSettingsOk returns a tuple with the LifecycleSettings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscriptionByLifecycleSettings) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*UserSubscriptionByLifecycleSettings) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscriptionByLifecycleSettings) HasApplication

func (o *UserSubscriptionByLifecycleSettings) HasApplication() bool

HasApplication returns a boolean if a field has been set.

func (*UserSubscriptionByLifecycleSettings) HasIsAdmin

func (o *UserSubscriptionByLifecycleSettings) HasIsAdmin() bool

HasIsAdmin returns a boolean if a field has been set.

func (*UserSubscriptionByLifecycleSettings) HasJoinSelfSubscriptionGroupPendingRequestId

func (o *UserSubscriptionByLifecycleSettings) HasJoinSelfSubscriptionGroupPendingRequestId() bool

HasJoinSelfSubscriptionGroupPendingRequestId returns a boolean if a field has been set.

func (*UserSubscriptionByLifecycleSettings) HasLifecycleSettings

func (o *UserSubscriptionByLifecycleSettings) HasLifecycleSettings() bool

HasLifecycleSettings returns a boolean if a field has been set.

func (*UserSubscriptionByLifecycleSettings) HasStatus

HasStatus returns a boolean if a field has been set.

func (UserSubscriptionByLifecycleSettings) MarshalJSON

func (o UserSubscriptionByLifecycleSettings) MarshalJSON() ([]byte, error)

func (*UserSubscriptionByLifecycleSettings) SetApplication

SetApplication gets a reference to the given ApplicationInfo and assigns it to the Application field.

func (*UserSubscriptionByLifecycleSettings) SetIsAdmin

func (o *UserSubscriptionByLifecycleSettings) SetIsAdmin(v bool)

SetIsAdmin gets a reference to the given bool and assigns it to the IsAdmin field.

func (*UserSubscriptionByLifecycleSettings) SetJoinSelfSubscriptionGroupPendingRequestId

func (o *UserSubscriptionByLifecycleSettings) SetJoinSelfSubscriptionGroupPendingRequestId(v string)

SetJoinSelfSubscriptionGroupPendingRequestId gets a reference to the given NullableString and assigns it to the JoinSelfSubscriptionGroupPendingRequestId field.

func (*UserSubscriptionByLifecycleSettings) SetJoinSelfSubscriptionGroupPendingRequestIdNil

func (o *UserSubscriptionByLifecycleSettings) SetJoinSelfSubscriptionGroupPendingRequestIdNil()

SetJoinSelfSubscriptionGroupPendingRequestIdNil sets the value for JoinSelfSubscriptionGroupPendingRequestId to be an explicit nil

func (*UserSubscriptionByLifecycleSettings) SetLifecycleSettings

SetLifecycleSettings gets a reference to the given LifecycleSettingsInfo and assigns it to the LifecycleSettings field.

func (*UserSubscriptionByLifecycleSettings) SetStatus

SetStatus gets a reference to the given UserApplicationSubscriptionStatus and assigns it to the Status field.

func (UserSubscriptionByLifecycleSettings) ToMap

func (o UserSubscriptionByLifecycleSettings) ToMap() (map[string]interface{}, error)

func (*UserSubscriptionByLifecycleSettings) UnsetJoinSelfSubscriptionGroupPendingRequestId

func (o *UserSubscriptionByLifecycleSettings) UnsetJoinSelfSubscriptionGroupPendingRequestId()

UnsetJoinSelfSubscriptionGroupPendingRequestId ensures that no value is present for JoinSelfSubscriptionGroupPendingRequestId, not even an explicit nil

type UserSubscriptionByLifecycleSettingsEnumerateEnvelope

type UserSubscriptionByLifecycleSettingsEnumerateEnvelope struct {
	Pagination *Pagination                           `json:"pagination,omitempty"`
	Delta      *Delta                                `json:"delta,omitempty"`
	RequestId  NullableString                        `json:"request_id,omitempty"`
	Message    NullableString                        `json:"message,omitempty"`
	Data       []UserSubscriptionByLifecycleSettings `json:"data,omitempty"`
}

UserSubscriptionByLifecycleSettingsEnumerateEnvelope struct for UserSubscriptionByLifecycleSettingsEnumerateEnvelope

func NewUserSubscriptionByLifecycleSettingsEnumerateEnvelope

func NewUserSubscriptionByLifecycleSettingsEnumerateEnvelope() *UserSubscriptionByLifecycleSettingsEnumerateEnvelope

NewUserSubscriptionByLifecycleSettingsEnumerateEnvelope instantiates a new UserSubscriptionByLifecycleSettingsEnumerateEnvelope 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 NewUserSubscriptionByLifecycleSettingsEnumerateEnvelopeWithDefaults

func NewUserSubscriptionByLifecycleSettingsEnumerateEnvelopeWithDefaults() *UserSubscriptionByLifecycleSettingsEnumerateEnvelope

NewUserSubscriptionByLifecycleSettingsEnumerateEnvelopeWithDefaults instantiates a new UserSubscriptionByLifecycleSettingsEnumerateEnvelope 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 (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetDeltaOk

GetDeltaOk returns a tuple with the Delta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetMessage

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetMessageOk

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetPaginationOk

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) GetRequestIdOk

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) HasData

HasData returns a boolean if a field has been set.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) HasDelta

HasDelta returns a boolean if a field has been set.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) HasMessage

HasMessage returns a boolean if a field has been set.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) HasPagination

HasPagination returns a boolean if a field has been set.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) HasRequestId

HasRequestId returns a boolean if a field has been set.

func (UserSubscriptionByLifecycleSettingsEnumerateEnvelope) MarshalJSON

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) SetData

SetData gets a reference to the given []UserSubscriptionByLifecycleSettings and assigns it to the Data field.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) SetDelta

SetDelta gets a reference to the given Delta and assigns it to the Delta field.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) SetMessage

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) SetMessageNil

SetMessageNil sets the value for Message to be an explicit nil

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) SetPagination

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) SetRequestId

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) SetRequestIdNil

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (UserSubscriptionByLifecycleSettingsEnumerateEnvelope) ToMap

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) UnsetMessage

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*UserSubscriptionByLifecycleSettingsEnumerateEnvelope) UnsetRequestId

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

type WarmupStatus

type WarmupStatus struct {
	WarmedUp *bool `json:"warmedUp,omitempty"`
}

WarmupStatus struct for WarmupStatus

func NewWarmupStatus

func NewWarmupStatus() *WarmupStatus

NewWarmupStatus instantiates a new WarmupStatus 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 NewWarmupStatusWithDefaults

func NewWarmupStatusWithDefaults() *WarmupStatus

NewWarmupStatusWithDefaults instantiates a new WarmupStatus 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 (*WarmupStatus) GetWarmedUp

func (o *WarmupStatus) GetWarmedUp() bool

GetWarmedUp returns the WarmedUp field value if set, zero value otherwise.

func (*WarmupStatus) GetWarmedUpOk

func (o *WarmupStatus) GetWarmedUpOk() (*bool, bool)

GetWarmedUpOk returns a tuple with the WarmedUp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WarmupStatus) HasWarmedUp

func (o *WarmupStatus) HasWarmedUp() bool

HasWarmedUp returns a boolean if a field has been set.

func (WarmupStatus) MarshalJSON

func (o WarmupStatus) MarshalJSON() ([]byte, error)

func (*WarmupStatus) SetWarmedUp

func (o *WarmupStatus) SetWarmedUp(v bool)

SetWarmedUp gets a reference to the given bool and assigns it to the WarmedUp field.

func (WarmupStatus) ToMap

func (o WarmupStatus) ToMap() (map[string]interface{}, error)

type WarmupStatusEnvelope

type WarmupStatusEnvelope struct {
	RequestId NullableString `json:"request_id,omitempty"`
	Message   NullableString `json:"message,omitempty"`
	Data      *WarmupStatus  `json:"data,omitempty"`
}

WarmupStatusEnvelope struct for WarmupStatusEnvelope

func NewWarmupStatusEnvelope

func NewWarmupStatusEnvelope() *WarmupStatusEnvelope

NewWarmupStatusEnvelope instantiates a new WarmupStatusEnvelope 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 NewWarmupStatusEnvelopeWithDefaults

func NewWarmupStatusEnvelopeWithDefaults() *WarmupStatusEnvelope

NewWarmupStatusEnvelopeWithDefaults instantiates a new WarmupStatusEnvelope 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 (*WarmupStatusEnvelope) GetData

func (o *WarmupStatusEnvelope) GetData() WarmupStatus

GetData returns the Data field value if set, zero value otherwise.

func (*WarmupStatusEnvelope) GetDataOk

func (o *WarmupStatusEnvelope) GetDataOk() (*WarmupStatus, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WarmupStatusEnvelope) GetMessage

func (o *WarmupStatusEnvelope) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WarmupStatusEnvelope) GetMessageOk

func (o *WarmupStatusEnvelope) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WarmupStatusEnvelope) GetRequestId

func (o *WarmupStatusEnvelope) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WarmupStatusEnvelope) GetRequestIdOk

func (o *WarmupStatusEnvelope) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WarmupStatusEnvelope) HasData

func (o *WarmupStatusEnvelope) HasData() bool

HasData returns a boolean if a field has been set.

func (*WarmupStatusEnvelope) HasMessage

func (o *WarmupStatusEnvelope) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*WarmupStatusEnvelope) HasRequestId

func (o *WarmupStatusEnvelope) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (WarmupStatusEnvelope) MarshalJSON

func (o WarmupStatusEnvelope) MarshalJSON() ([]byte, error)

func (*WarmupStatusEnvelope) SetData

func (o *WarmupStatusEnvelope) SetData(v WarmupStatus)

SetData gets a reference to the given WarmupStatus and assigns it to the Data field.

func (*WarmupStatusEnvelope) SetMessage

func (o *WarmupStatusEnvelope) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*WarmupStatusEnvelope) SetMessageNil

func (o *WarmupStatusEnvelope) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*WarmupStatusEnvelope) SetRequestId

func (o *WarmupStatusEnvelope) SetRequestId(v string)

SetRequestId gets a reference to the given NullableString and assigns it to the RequestId field.

func (*WarmupStatusEnvelope) SetRequestIdNil

func (o *WarmupStatusEnvelope) SetRequestIdNil()

SetRequestIdNil sets the value for RequestId to be an explicit nil

func (WarmupStatusEnvelope) ToMap

func (o WarmupStatusEnvelope) ToMap() (map[string]interface{}, error)

func (*WarmupStatusEnvelope) UnsetMessage

func (o *WarmupStatusEnvelope) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*WarmupStatusEnvelope) UnsetRequestId

func (o *WarmupStatusEnvelope) UnsetRequestId()

UnsetRequestId ensures that no value is present for RequestId, not even an explicit nil

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL