cc

package
v1.2.0 Latest Latest
Warning

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

Go to latest
Published: Nov 6, 2023 License: MIT Imports: 23 Imported by: 0

README

Go API client for cc

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0.0
  • Package version: 1.2.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import cc "github.com/sailpoint-oss/golang-sdk"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), cc.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), cc.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), cc.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), cc.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://sailpoint.api.identitynow.com

Class Method HTTP request Description
AccountsApi ListAccounts Get /cc/api/account/list List Accounts
AccountsApi RemoveAccount Post /cc/api/account/remove/{id} Remove Account
ApplicationsApi CreateApplication Post /cc/api/app/create Create Application
ApplicationsApi DeleteApplication Post /cc/api/app/delete/{id} Delete Application
ApplicationsApi GetApplication Get /cc/api/app/get/{id} Get Single Application
ApplicationsApi GetApplicationAccessProfiles Get /cc/api/app/getAccessProfiles/{id} Get Access Profiles for Application
ApplicationsApi ListApplications Get /cc/api/app/list List Applications
ApplicationsApi UpdateApplication Post /cc/api/app/update/{id} Update Application
ConnectorsApi CreateConnector Post /cc/api/connector/create Create Connector
ConnectorsApi DeleteConnector Post /cc/api/connector/delete/{id} Delete Connector
ConnectorsApi ExportConnectorConfig Get /cc/api/connector/export/{id} Export Connector Config
ConnectorsApi ImportConnectorConfig Post /cc/api/connector/import/{id} Import Connector Config
ConnectorsApi ListConnectors Get /cc/api/connector/list List Connectors
SourcesAccountsApi ExportAccountFeed Get /cc/api/source/exportAccountFeed/{id} Export Account Feed
SourcesAggregationApi LoadAccounts Post /cc/api/source/loadAccounts/{id} Account Aggregation (File)
SourcesAggregationApi LoadEntitlements Post /cc/api/source/loadEntitlements/{id} Account Aggregation (File)
SystemApi RefreshIdentities Post /cc/api/system/refreshIdentities Refresh Identities
UserApi GetIdentity Get /cc/api/user/get/{id} Get Single Identity
UserApi UpdateUserPermissions Post /cc/api/user/updatePermissions Update User Permissions

Documentation For Models

Documentation For Authorization

UserContextAuth
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • sp:scopes:default: default scope
  • sp:scopes:all: access to all scopes

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)
UserContextAuth

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

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")
)

Functions

func CacheExpires

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

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

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 {
	AccountsApi *AccountsApiService

	ApplicationsApi *ApplicationsApiService

	ConnectorsApi *ConnectorsApiService

	SourcesAccountsApi *SourcesAccountsApiService

	SourcesAggregationApi *SourcesAggregationApiService

	SystemApi *SystemApiService

	UserApi *UserApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the IdentityNow cc (private) APIs API v1.0.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) GetAPIClient

func (c *APIClient) GetAPIClient() *APIClient

func (*APIClient) GetCommon

func (c *APIClient) GetCommon() *service

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 AccessToken

type AccessToken struct {
	AccessToken         string `json:"access_token"`
	TokenType           string `json:"token_type"`
	ExpiresIn           int    `json:"expires_in"`
	Scope               string `json:"scope"`
	TenantId            string `json:"tenant_id"`
	Pod                 string `json:"pod"`
	StrongAuthSupported bool   `json:"strong_auth_supported"`
	Org                 string `json:"org"`
	IdentityId          string `json:"identity_id"`
	UserName            string `json:"user_name"`
	StrongAuth          bool   `json:"strong_auth"`
	Jti                 string `json:"jti"`
}

type AccountsApiService

type AccountsApiService service

AccountsApiService AccountsApi service

func (*AccountsApiService) ListAccounts

ListAccounts List Accounts

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

func (*AccountsApiService) ListAccountsExecute

Execute executes the request

@return []ListAccounts200ResponseInner

func (*AccountsApiService) RemoveAccount

RemoveAccount Remove Account

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

func (*AccountsApiService) RemoveAccountExecute

func (a *AccountsApiService) RemoveAccountExecute(r ApiRemoveAccountRequest) (*http.Response, error)

Execute executes the request

type ApiCreateApplicationRequest

type ApiCreateApplicationRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiCreateApplicationRequest) CreateApplicationRequest

func (r ApiCreateApplicationRequest) CreateApplicationRequest(createApplicationRequest CreateApplicationRequest) ApiCreateApplicationRequest

func (ApiCreateApplicationRequest) Execute

func (r ApiCreateApplicationRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiCreateConnectorRequest

type ApiCreateConnectorRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiCreateConnectorRequest) ClassName

func (ApiCreateConnectorRequest) ContentType

func (r ApiCreateConnectorRequest) ContentType(contentType string) ApiCreateConnectorRequest

func (ApiCreateConnectorRequest) Description

func (r ApiCreateConnectorRequest) Description(description string) ApiCreateConnectorRequest

func (ApiCreateConnectorRequest) DirectConnect

func (r ApiCreateConnectorRequest) DirectConnect(directConnect bool) ApiCreateConnectorRequest

func (ApiCreateConnectorRequest) Execute

func (r ApiCreateConnectorRequest) Execute() (*http.Response, error)

func (ApiCreateConnectorRequest) Name

func (ApiCreateConnectorRequest) Status

type ApiDeleteApplicationRequest

type ApiDeleteApplicationRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteApplicationRequest) Execute

type ApiDeleteConnectorRequest

type ApiDeleteConnectorRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteConnectorRequest) Execute

func (r ApiDeleteConnectorRequest) Execute() (*http.Response, error)

type ApiExportAccountFeedRequest

type ApiExportAccountFeedRequest struct {
	ApiService *SourcesAccountsApiService
	// contains filtered or unexported fields
}

func (ApiExportAccountFeedRequest) Execute

type ApiExportConnectorConfigRequest

type ApiExportConnectorConfigRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiExportConnectorConfigRequest) Execute

type ApiGetApplicationAccessProfilesRequest

type ApiGetApplicationAccessProfilesRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetApplicationAccessProfilesRequest) Execute

func (r ApiGetApplicationAccessProfilesRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiGetApplicationRequest

type ApiGetApplicationRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiGetApplicationRequest) Execute

type ApiGetIdentityRequest added in v1.0.3

type ApiGetIdentityRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiGetIdentityRequest) Execute added in v1.0.3

type ApiImportConnectorConfigRequest

type ApiImportConnectorConfigRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiImportConnectorConfigRequest) Execute

func (ApiImportConnectorConfigRequest) File

This is the connector config zip bundle which gets uploaded.

type ApiListAccountsRequest

type ApiListAccountsRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiListAccountsRequest) Execute

type ApiListApplicationsRequest

type ApiListApplicationsRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiListApplicationsRequest) Execute

type ApiListConnectorsRequest

type ApiListConnectorsRequest struct {
	ApiService *ConnectorsApiService
	// contains filtered or unexported fields
}

func (ApiListConnectorsRequest) Execute

type ApiLoadAccountsRequest

type ApiLoadAccountsRequest struct {
	ApiService *SourcesAggregationApiService
	// contains filtered or unexported fields
}

func (ApiLoadAccountsRequest) ContentType

func (r ApiLoadAccountsRequest) ContentType(contentType string) ApiLoadAccountsRequest

func (ApiLoadAccountsRequest) DisableOptimization

func (r ApiLoadAccountsRequest) DisableOptimization(disableOptimization bool) ApiLoadAccountsRequest

func (ApiLoadAccountsRequest) Execute

func (r ApiLoadAccountsRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiLoadAccountsRequest) File

type ApiLoadEntitlementsRequest added in v1.2.0

type ApiLoadEntitlementsRequest struct {
	ApiService *SourcesAggregationApiService
	// contains filtered or unexported fields
}

func (ApiLoadEntitlementsRequest) ContentType added in v1.2.0

func (ApiLoadEntitlementsRequest) Execute added in v1.2.0

func (r ApiLoadEntitlementsRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiLoadEntitlementsRequest) File added in v1.2.0

type ApiRefreshIdentitiesRequest

type ApiRefreshIdentitiesRequest struct {
	ApiService *SystemApiService
	// contains filtered or unexported fields
}

func (ApiRefreshIdentitiesRequest) ContentType

func (ApiRefreshIdentitiesRequest) Execute

func (r ApiRefreshIdentitiesRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiRefreshIdentitiesRequest) RefreshIdentitiesRequest added in v1.1.1

func (r ApiRefreshIdentitiesRequest) RefreshIdentitiesRequest(refreshIdentitiesRequest RefreshIdentitiesRequest) ApiRefreshIdentitiesRequest

type ApiRemoveAccountRequest

type ApiRemoveAccountRequest struct {
	ApiService *AccountsApiService
	// contains filtered or unexported fields
}

func (ApiRemoveAccountRequest) Execute

func (r ApiRemoveAccountRequest) Execute() (*http.Response, error)

type ApiUpdateApplicationRequest

type ApiUpdateApplicationRequest struct {
	ApiService *ApplicationsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateApplicationRequest) Execute

func (r ApiUpdateApplicationRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiUpdateApplicationRequest) RequestBody added in v1.2.0

func (r ApiUpdateApplicationRequest) RequestBody(requestBody map[string]interface{}) ApiUpdateApplicationRequest

type ApiUpdateUserPermissionsRequest

type ApiUpdateUserPermissionsRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiUpdateUserPermissionsRequest) Execute

func (ApiUpdateUserPermissionsRequest) UpdateUserPermissionsRequest

func (r ApiUpdateUserPermissionsRequest) UpdateUserPermissionsRequest(updateUserPermissionsRequest UpdateUserPermissionsRequest) ApiUpdateUserPermissionsRequest

type ApplicationsApiService

type ApplicationsApiService service

ApplicationsApiService ApplicationsApi service

func (*ApplicationsApiService) CreateApplication

CreateApplication Create Application

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

func (*ApplicationsApiService) CreateApplicationExecute

func (a *ApplicationsApiService) CreateApplicationExecute(r ApiCreateApplicationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ApplicationsApiService) DeleteApplication

DeleteApplication Delete Application

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

func (*ApplicationsApiService) DeleteApplicationExecute

func (a *ApplicationsApiService) DeleteApplicationExecute(r ApiDeleteApplicationRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationsApiService) GetApplication

GetApplication Get Single Application

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

func (*ApplicationsApiService) GetApplicationAccessProfiles

func (a *ApplicationsApiService) GetApplicationAccessProfiles(ctx context.Context, id string) ApiGetApplicationAccessProfilesRequest

GetApplicationAccessProfiles Get Access Profiles for Application

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

func (*ApplicationsApiService) GetApplicationAccessProfilesExecute

func (a *ApplicationsApiService) GetApplicationAccessProfilesExecute(r ApiGetApplicationAccessProfilesRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ApplicationsApiService) GetApplicationExecute

Execute executes the request

@return GetApplication200Response

func (*ApplicationsApiService) ListApplications

ListApplications List Applications

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

func (*ApplicationsApiService) ListApplicationsExecute

Execute executes the request

@return []ListApplications200ResponseInner

func (*ApplicationsApiService) UpdateApplication

UpdateApplication Update Application

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

func (*ApplicationsApiService) UpdateApplicationExecute

func (a *ApplicationsApiService) UpdateApplicationExecute(r ApiUpdateApplicationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration(clientId string, clientSecret string, baseURL string, tokenURL string, token string) *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 ConnectorsApiService

type ConnectorsApiService service

ConnectorsApiService ConnectorsApi service

func (*ConnectorsApiService) CreateConnector

CreateConnector Create Connector

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

func (*ConnectorsApiService) CreateConnectorExecute

func (a *ConnectorsApiService) CreateConnectorExecute(r ApiCreateConnectorRequest) (*http.Response, error)

Execute executes the request

func (*ConnectorsApiService) DeleteConnector

DeleteConnector Delete Connector

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

func (*ConnectorsApiService) DeleteConnectorExecute

func (a *ConnectorsApiService) DeleteConnectorExecute(r ApiDeleteConnectorRequest) (*http.Response, error)

Execute executes the request

func (*ConnectorsApiService) ExportConnectorConfig

ExportConnectorConfig Export Connector Config

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

func (*ConnectorsApiService) ExportConnectorConfigExecute

func (a *ConnectorsApiService) ExportConnectorConfigExecute(r ApiExportConnectorConfigRequest) (*http.Response, error)

Execute executes the request

func (*ConnectorsApiService) ImportConnectorConfig

ImportConnectorConfig Import Connector Config

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

func (*ConnectorsApiService) ImportConnectorConfigExecute

func (a *ConnectorsApiService) ImportConnectorConfigExecute(r ApiImportConnectorConfigRequest) (*http.Response, error)

Execute executes the request

func (*ConnectorsApiService) ListConnectors

ListConnectors List Connectors

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

func (*ConnectorsApiService) ListConnectorsExecute

Execute executes the request

@return ListConnectors200Response

type CreateApplicationRequest

type CreateApplicationRequest struct {
	Name                 *string `json:"name,omitempty"`
	Description          *string `json:"description,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateApplicationRequest struct for CreateApplicationRequest

func NewCreateApplicationRequest

func NewCreateApplicationRequest() *CreateApplicationRequest

NewCreateApplicationRequest instantiates a new CreateApplicationRequest 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 NewCreateApplicationRequestWithDefaults

func NewCreateApplicationRequestWithDefaults() *CreateApplicationRequest

NewCreateApplicationRequestWithDefaults instantiates a new CreateApplicationRequest 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 (*CreateApplicationRequest) GetDescription

func (o *CreateApplicationRequest) GetDescription() string

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

func (*CreateApplicationRequest) GetDescriptionOk

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

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

func (*CreateApplicationRequest) GetName

func (o *CreateApplicationRequest) GetName() string

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

func (*CreateApplicationRequest) GetNameOk

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

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

func (*CreateApplicationRequest) HasDescription

func (o *CreateApplicationRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateApplicationRequest) HasName

func (o *CreateApplicationRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (CreateApplicationRequest) MarshalJSON

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

func (*CreateApplicationRequest) SetDescription

func (o *CreateApplicationRequest) SetDescription(v string)

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

func (*CreateApplicationRequest) SetName

func (o *CreateApplicationRequest) SetName(v string)

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

func (CreateApplicationRequest) ToMap added in v1.0.3

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

func (*CreateApplicationRequest) UnmarshalJSON

func (o *CreateApplicationRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateConnectorRequest

type CreateConnectorRequest struct {
	Name                 *string `json:"name,omitempty"`
	Description          *string `json:"description,omitempty"`
	ClassName            *string `json:"className,omitempty"`
	DirectConnect        *bool   `json:"directConnect,omitempty"`
	Status               *string `json:"status,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateConnectorRequest struct for CreateConnectorRequest

func NewCreateConnectorRequest

func NewCreateConnectorRequest() *CreateConnectorRequest

NewCreateConnectorRequest instantiates a new CreateConnectorRequest 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 NewCreateConnectorRequestWithDefaults

func NewCreateConnectorRequestWithDefaults() *CreateConnectorRequest

NewCreateConnectorRequestWithDefaults instantiates a new CreateConnectorRequest 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 (*CreateConnectorRequest) GetClassName

func (o *CreateConnectorRequest) GetClassName() string

GetClassName returns the ClassName field value if set, zero value otherwise.

func (*CreateConnectorRequest) GetClassNameOk

func (o *CreateConnectorRequest) GetClassNameOk() (*string, bool)

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

func (*CreateConnectorRequest) GetDescription

func (o *CreateConnectorRequest) GetDescription() string

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

func (*CreateConnectorRequest) GetDescriptionOk

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

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

func (*CreateConnectorRequest) GetDirectConnect

func (o *CreateConnectorRequest) GetDirectConnect() bool

GetDirectConnect returns the DirectConnect field value if set, zero value otherwise.

func (*CreateConnectorRequest) GetDirectConnectOk

func (o *CreateConnectorRequest) GetDirectConnectOk() (*bool, bool)

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

func (*CreateConnectorRequest) GetName

func (o *CreateConnectorRequest) GetName() string

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

func (*CreateConnectorRequest) GetNameOk

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

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

func (*CreateConnectorRequest) GetStatus

func (o *CreateConnectorRequest) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CreateConnectorRequest) GetStatusOk

func (o *CreateConnectorRequest) GetStatusOk() (*string, 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 (*CreateConnectorRequest) HasClassName

func (o *CreateConnectorRequest) HasClassName() bool

HasClassName returns a boolean if a field has been set.

func (*CreateConnectorRequest) HasDescription

func (o *CreateConnectorRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateConnectorRequest) HasDirectConnect

func (o *CreateConnectorRequest) HasDirectConnect() bool

HasDirectConnect returns a boolean if a field has been set.

func (*CreateConnectorRequest) HasName

func (o *CreateConnectorRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateConnectorRequest) HasStatus

func (o *CreateConnectorRequest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CreateConnectorRequest) MarshalJSON

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

func (*CreateConnectorRequest) SetClassName

func (o *CreateConnectorRequest) SetClassName(v string)

SetClassName gets a reference to the given string and assigns it to the ClassName field.

func (*CreateConnectorRequest) SetDescription

func (o *CreateConnectorRequest) SetDescription(v string)

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

func (*CreateConnectorRequest) SetDirectConnect

func (o *CreateConnectorRequest) SetDirectConnect(v bool)

SetDirectConnect gets a reference to the given bool and assigns it to the DirectConnect field.

func (*CreateConnectorRequest) SetName

func (o *CreateConnectorRequest) SetName(v string)

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

func (*CreateConnectorRequest) SetStatus

func (o *CreateConnectorRequest) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (CreateConnectorRequest) ToMap added in v1.0.3

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

func (*CreateConnectorRequest) UnmarshalJSON

func (o *CreateConnectorRequest) UnmarshalJSON(bytes []byte) (err error)

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 GetApplication200Response added in v1.2.0

type GetApplication200Response struct {
	Id                                     *string                                                       `json:"id,omitempty"`
	AppId                                  *string                                                       `json:"appId,omitempty"`
	ServiceId                              *string                                                       `json:"serviceId,omitempty"`
	ServiceAppId                           *string                                                       `json:"serviceAppId,omitempty"`
	Name                                   *string                                                       `json:"name,omitempty"`
	Description                            *string                                                       `json:"description,omitempty"`
	AppCenterEnabled                       *bool                                                         `json:"appCenterEnabled,omitempty"`
	ProvisionRequestEnabled                *bool                                                         `json:"provisionRequestEnabled,omitempty"`
	ControlType                            *string                                                       `json:"controlType,omitempty"`
	Mobile                                 *bool                                                         `json:"mobile,omitempty"`
	PrivateApp                             *bool                                                         `json:"privateApp,omitempty"`
	ScriptName                             *string                                                       `json:"scriptName,omitempty"`
	Status                                 *string                                                       `json:"status,omitempty"`
	Icon                                   *string                                                       `json:"icon,omitempty"`
	Health                                 *ListApplications200ResponseInnerHealth                       `json:"health,omitempty"`
	EnableSso                              *bool                                                         `json:"enableSso,omitempty"`
	SsoMethod                              *string                                                       `json:"ssoMethod,omitempty"`
	HasLinks                               *bool                                                         `json:"hasLinks,omitempty"`
	HasAutomations                         *bool                                                         `json:"hasAutomations,omitempty"`
	StepUpAuthData                         map[string]interface{}                                        `json:"stepUpAuthData,omitempty"`
	StepUpAuthType                         *string                                                       `json:"stepUpAuthType,omitempty"`
	UsageAnalytics                         *bool                                                         `json:"usageAnalytics,omitempty"`
	UsageCertRequired                      *bool                                                         `json:"usageCertRequired,omitempty"`
	UsageCertText                          map[string]interface{}                                        `json:"usageCertText,omitempty"`
	LaunchpadEnabled                       *bool                                                         `json:"launchpadEnabled,omitempty"`
	PasswordManaged                        *bool                                                         `json:"passwordManaged,omitempty"`
	Owner                                  *ListApplications200ResponseInnerOwner                        `json:"owner,omitempty"`
	DateCreated                            *float32                                                      `json:"dateCreated,omitempty"`
	LastUpdated                            *float32                                                      `json:"lastUpdated,omitempty"`
	DefaultAccessProfile                   map[string]interface{}                                        `json:"defaultAccessProfile,omitempty"`
	Service                                *string                                                       `json:"service,omitempty"`
	SelectedSsoMethod                      *string                                                       `json:"selectedSsoMethod,omitempty"`
	SupportedSsoMethods                    *float32                                                      `json:"supportedSsoMethods,omitempty"`
	OffNetworkBlockedRoles                 map[string]interface{}                                        `json:"offNetworkBlockedRoles,omitempty"`
	SupportedOffNetwork                    *string                                                       `json:"supportedOffNetwork,omitempty"`
	AccountServiceId                       *float32                                                      `json:"accountServiceId,omitempty"`
	LauncherCount                          *float32                                                      `json:"launcherCount,omitempty"`
	AccountServiceName                     *string                                                       `json:"accountServiceName,omitempty"`
	AccountServiceExternalId               *string                                                       `json:"accountServiceExternalId,omitempty"`
	AccountServiceMatchAllAccounts         *bool                                                         `json:"accountServiceMatchAllAccounts,omitempty"`
	ExternalId                             *string                                                       `json:"externalId,omitempty"`
	AccountServiceUseForPasswordManagement *bool                                                         `json:"accountServiceUseForPasswordManagement,omitempty"`
	AccountServicePolicyId                 *string                                                       `json:"accountServicePolicyId,omitempty"`
	AccountServicePolicyName               *string                                                       `json:"accountServicePolicyName,omitempty"`
	RequireStrongAuthn                     *bool                                                         `json:"requireStrongAuthn,omitempty"`
	AccountServicePolicies                 []ListApplications200ResponseInnerAccountServicePoliciesInner `json:"accountServicePolicies,omitempty"`
	XsdVersion                             *string                                                       `json:"xsdVersion,omitempty"`
	AppProfiles                            []ListApplications200ResponseInnerAppProfilesInner            `json:"appProfiles,omitempty"`
	PasswordServiceId                      *float32                                                      `json:"passwordServiceId,omitempty"`
	AccessProfileIds                       map[string]interface{}                                        `json:"accessProfileIds,omitempty"`
	AdditionalProperties                   map[string]interface{}
}

GetApplication200Response struct for GetApplication200Response

func NewGetApplication200Response added in v1.2.0

func NewGetApplication200Response() *GetApplication200Response

NewGetApplication200Response instantiates a new GetApplication200Response 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 NewGetApplication200ResponseWithDefaults added in v1.2.0

func NewGetApplication200ResponseWithDefaults() *GetApplication200Response

NewGetApplication200ResponseWithDefaults instantiates a new GetApplication200Response 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 (*GetApplication200Response) GetAccessProfileIds added in v1.2.0

func (o *GetApplication200Response) GetAccessProfileIds() map[string]interface{}

GetAccessProfileIds returns the AccessProfileIds field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccessProfileIdsOk added in v1.2.0

func (o *GetApplication200Response) GetAccessProfileIdsOk() (map[string]interface{}, bool)

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

func (*GetApplication200Response) GetAccountServiceExternalId added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceExternalId() string

GetAccountServiceExternalId returns the AccountServiceExternalId field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccountServiceExternalIdOk added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceExternalIdOk() (*string, bool)

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

func (*GetApplication200Response) GetAccountServiceId added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceId() float32

GetAccountServiceId returns the AccountServiceId field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccountServiceIdOk added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceIdOk() (*float32, bool)

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

func (*GetApplication200Response) GetAccountServiceMatchAllAccounts added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceMatchAllAccounts() bool

GetAccountServiceMatchAllAccounts returns the AccountServiceMatchAllAccounts field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccountServiceMatchAllAccountsOk added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceMatchAllAccountsOk() (*bool, bool)

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

func (*GetApplication200Response) GetAccountServiceName added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceName() string

GetAccountServiceName returns the AccountServiceName field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccountServiceNameOk added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceNameOk() (*string, bool)

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

func (*GetApplication200Response) GetAccountServicePolicies added in v1.2.0

GetAccountServicePolicies returns the AccountServicePolicies field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccountServicePoliciesOk added in v1.2.0

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

func (*GetApplication200Response) GetAccountServicePolicyId added in v1.2.0

func (o *GetApplication200Response) GetAccountServicePolicyId() string

GetAccountServicePolicyId returns the AccountServicePolicyId field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccountServicePolicyIdOk added in v1.2.0

func (o *GetApplication200Response) GetAccountServicePolicyIdOk() (*string, bool)

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

func (*GetApplication200Response) GetAccountServicePolicyName added in v1.2.0

func (o *GetApplication200Response) GetAccountServicePolicyName() string

GetAccountServicePolicyName returns the AccountServicePolicyName field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccountServicePolicyNameOk added in v1.2.0

func (o *GetApplication200Response) GetAccountServicePolicyNameOk() (*string, bool)

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

func (*GetApplication200Response) GetAccountServiceUseForPasswordManagement added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceUseForPasswordManagement() bool

GetAccountServiceUseForPasswordManagement returns the AccountServiceUseForPasswordManagement field value if set, zero value otherwise.

func (*GetApplication200Response) GetAccountServiceUseForPasswordManagementOk added in v1.2.0

func (o *GetApplication200Response) GetAccountServiceUseForPasswordManagementOk() (*bool, bool)

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

func (*GetApplication200Response) GetAppCenterEnabled added in v1.2.0

func (o *GetApplication200Response) GetAppCenterEnabled() bool

GetAppCenterEnabled returns the AppCenterEnabled field value if set, zero value otherwise.

func (*GetApplication200Response) GetAppCenterEnabledOk added in v1.2.0

func (o *GetApplication200Response) GetAppCenterEnabledOk() (*bool, bool)

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

func (*GetApplication200Response) GetAppId added in v1.2.0

func (o *GetApplication200Response) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*GetApplication200Response) GetAppIdOk added in v1.2.0

func (o *GetApplication200Response) GetAppIdOk() (*string, bool)

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

func (*GetApplication200Response) GetAppProfiles added in v1.2.0

GetAppProfiles returns the AppProfiles field value if set, zero value otherwise.

func (*GetApplication200Response) GetAppProfilesOk added in v1.2.0

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

func (*GetApplication200Response) GetControlType added in v1.2.0

func (o *GetApplication200Response) GetControlType() string

GetControlType returns the ControlType field value if set, zero value otherwise.

func (*GetApplication200Response) GetControlTypeOk added in v1.2.0

func (o *GetApplication200Response) GetControlTypeOk() (*string, bool)

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

func (*GetApplication200Response) GetDateCreated added in v1.2.0

func (o *GetApplication200Response) GetDateCreated() float32

GetDateCreated returns the DateCreated field value if set, zero value otherwise.

func (*GetApplication200Response) GetDateCreatedOk added in v1.2.0

func (o *GetApplication200Response) GetDateCreatedOk() (*float32, bool)

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

func (*GetApplication200Response) GetDefaultAccessProfile added in v1.2.0

func (o *GetApplication200Response) GetDefaultAccessProfile() map[string]interface{}

GetDefaultAccessProfile returns the DefaultAccessProfile field value if set, zero value otherwise.

func (*GetApplication200Response) GetDefaultAccessProfileOk added in v1.2.0

func (o *GetApplication200Response) GetDefaultAccessProfileOk() (map[string]interface{}, bool)

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

func (*GetApplication200Response) GetDescription added in v1.2.0

func (o *GetApplication200Response) GetDescription() string

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

func (*GetApplication200Response) GetDescriptionOk added in v1.2.0

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

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

func (*GetApplication200Response) GetEnableSso added in v1.2.0

func (o *GetApplication200Response) GetEnableSso() bool

GetEnableSso returns the EnableSso field value if set, zero value otherwise.

func (*GetApplication200Response) GetEnableSsoOk added in v1.2.0

func (o *GetApplication200Response) GetEnableSsoOk() (*bool, bool)

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

func (*GetApplication200Response) GetExternalId added in v1.2.0

func (o *GetApplication200Response) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*GetApplication200Response) GetExternalIdOk added in v1.2.0

func (o *GetApplication200Response) GetExternalIdOk() (*string, bool)

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

func (*GetApplication200Response) GetHasAutomations added in v1.2.0

func (o *GetApplication200Response) GetHasAutomations() bool

GetHasAutomations returns the HasAutomations field value if set, zero value otherwise.

func (*GetApplication200Response) GetHasAutomationsOk added in v1.2.0

func (o *GetApplication200Response) GetHasAutomationsOk() (*bool, bool)

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

func (o *GetApplication200Response) GetHasLinks() bool

GetHasLinks returns the HasLinks field value if set, zero value otherwise.

func (*GetApplication200Response) GetHasLinksOk added in v1.2.0

func (o *GetApplication200Response) GetHasLinksOk() (*bool, bool)

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

func (*GetApplication200Response) GetHealth added in v1.2.0

GetHealth returns the Health field value if set, zero value otherwise.

func (*GetApplication200Response) GetHealthOk added in v1.2.0

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

func (*GetApplication200Response) GetIcon added in v1.2.0

func (o *GetApplication200Response) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*GetApplication200Response) GetIconOk added in v1.2.0

func (o *GetApplication200Response) GetIconOk() (*string, bool)

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

func (*GetApplication200Response) GetId added in v1.2.0

func (o *GetApplication200Response) GetId() string

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

func (*GetApplication200Response) GetIdOk added in v1.2.0

func (o *GetApplication200Response) 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 (*GetApplication200Response) GetLastUpdated added in v1.2.0

func (o *GetApplication200Response) GetLastUpdated() float32

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*GetApplication200Response) GetLastUpdatedOk added in v1.2.0

func (o *GetApplication200Response) GetLastUpdatedOk() (*float32, bool)

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

func (*GetApplication200Response) GetLauncherCount added in v1.2.0

func (o *GetApplication200Response) GetLauncherCount() float32

GetLauncherCount returns the LauncherCount field value if set, zero value otherwise.

func (*GetApplication200Response) GetLauncherCountOk added in v1.2.0

func (o *GetApplication200Response) GetLauncherCountOk() (*float32, bool)

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

func (*GetApplication200Response) GetLaunchpadEnabled added in v1.2.0

func (o *GetApplication200Response) GetLaunchpadEnabled() bool

GetLaunchpadEnabled returns the LaunchpadEnabled field value if set, zero value otherwise.

func (*GetApplication200Response) GetLaunchpadEnabledOk added in v1.2.0

func (o *GetApplication200Response) GetLaunchpadEnabledOk() (*bool, bool)

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

func (*GetApplication200Response) GetMobile added in v1.2.0

func (o *GetApplication200Response) GetMobile() bool

GetMobile returns the Mobile field value if set, zero value otherwise.

func (*GetApplication200Response) GetMobileOk added in v1.2.0

func (o *GetApplication200Response) GetMobileOk() (*bool, bool)

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

func (*GetApplication200Response) GetName added in v1.2.0

func (o *GetApplication200Response) GetName() string

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

func (*GetApplication200Response) GetNameOk added in v1.2.0

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

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

func (*GetApplication200Response) GetOffNetworkBlockedRoles added in v1.2.0

func (o *GetApplication200Response) GetOffNetworkBlockedRoles() map[string]interface{}

GetOffNetworkBlockedRoles returns the OffNetworkBlockedRoles field value if set, zero value otherwise.

func (*GetApplication200Response) GetOffNetworkBlockedRolesOk added in v1.2.0

func (o *GetApplication200Response) GetOffNetworkBlockedRolesOk() (map[string]interface{}, bool)

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

func (*GetApplication200Response) GetOwner added in v1.2.0

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

func (*GetApplication200Response) GetOwnerOk added in v1.2.0

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 (*GetApplication200Response) GetPasswordManaged added in v1.2.0

func (o *GetApplication200Response) GetPasswordManaged() bool

GetPasswordManaged returns the PasswordManaged field value if set, zero value otherwise.

func (*GetApplication200Response) GetPasswordManagedOk added in v1.2.0

func (o *GetApplication200Response) GetPasswordManagedOk() (*bool, bool)

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

func (*GetApplication200Response) GetPasswordServiceId added in v1.2.0

func (o *GetApplication200Response) GetPasswordServiceId() float32

GetPasswordServiceId returns the PasswordServiceId field value if set, zero value otherwise.

func (*GetApplication200Response) GetPasswordServiceIdOk added in v1.2.0

func (o *GetApplication200Response) GetPasswordServiceIdOk() (*float32, bool)

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

func (*GetApplication200Response) GetPrivateApp added in v1.2.0

func (o *GetApplication200Response) GetPrivateApp() bool

GetPrivateApp returns the PrivateApp field value if set, zero value otherwise.

func (*GetApplication200Response) GetPrivateAppOk added in v1.2.0

func (o *GetApplication200Response) GetPrivateAppOk() (*bool, bool)

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

func (*GetApplication200Response) GetProvisionRequestEnabled added in v1.2.0

func (o *GetApplication200Response) GetProvisionRequestEnabled() bool

GetProvisionRequestEnabled returns the ProvisionRequestEnabled field value if set, zero value otherwise.

func (*GetApplication200Response) GetProvisionRequestEnabledOk added in v1.2.0

func (o *GetApplication200Response) GetProvisionRequestEnabledOk() (*bool, bool)

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

func (*GetApplication200Response) GetRequireStrongAuthn added in v1.2.0

func (o *GetApplication200Response) GetRequireStrongAuthn() bool

GetRequireStrongAuthn returns the RequireStrongAuthn field value if set, zero value otherwise.

func (*GetApplication200Response) GetRequireStrongAuthnOk added in v1.2.0

func (o *GetApplication200Response) GetRequireStrongAuthnOk() (*bool, bool)

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

func (*GetApplication200Response) GetScriptName added in v1.2.0

func (o *GetApplication200Response) GetScriptName() string

GetScriptName returns the ScriptName field value if set, zero value otherwise.

func (*GetApplication200Response) GetScriptNameOk added in v1.2.0

func (o *GetApplication200Response) GetScriptNameOk() (*string, bool)

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

func (*GetApplication200Response) GetSelectedSsoMethod added in v1.2.0

func (o *GetApplication200Response) GetSelectedSsoMethod() string

GetSelectedSsoMethod returns the SelectedSsoMethod field value if set, zero value otherwise.

func (*GetApplication200Response) GetSelectedSsoMethodOk added in v1.2.0

func (o *GetApplication200Response) GetSelectedSsoMethodOk() (*string, bool)

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

func (*GetApplication200Response) GetService added in v1.2.0

func (o *GetApplication200Response) GetService() string

GetService returns the Service field value if set, zero value otherwise.

func (*GetApplication200Response) GetServiceAppId added in v1.2.0

func (o *GetApplication200Response) GetServiceAppId() string

GetServiceAppId returns the ServiceAppId field value if set, zero value otherwise.

func (*GetApplication200Response) GetServiceAppIdOk added in v1.2.0

func (o *GetApplication200Response) GetServiceAppIdOk() (*string, bool)

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

func (*GetApplication200Response) GetServiceId added in v1.2.0

func (o *GetApplication200Response) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*GetApplication200Response) GetServiceIdOk added in v1.2.0

func (o *GetApplication200Response) GetServiceIdOk() (*string, bool)

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

func (*GetApplication200Response) GetServiceOk added in v1.2.0

func (o *GetApplication200Response) GetServiceOk() (*string, bool)

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

func (*GetApplication200Response) GetSsoMethod added in v1.2.0

func (o *GetApplication200Response) GetSsoMethod() string

GetSsoMethod returns the SsoMethod field value if set, zero value otherwise.

func (*GetApplication200Response) GetSsoMethodOk added in v1.2.0

func (o *GetApplication200Response) GetSsoMethodOk() (*string, bool)

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

func (*GetApplication200Response) GetStatus added in v1.2.0

func (o *GetApplication200Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetApplication200Response) GetStatusOk added in v1.2.0

func (o *GetApplication200Response) GetStatusOk() (*string, 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 (*GetApplication200Response) GetStepUpAuthData added in v1.2.0

func (o *GetApplication200Response) GetStepUpAuthData() map[string]interface{}

GetStepUpAuthData returns the StepUpAuthData field value if set, zero value otherwise.

func (*GetApplication200Response) GetStepUpAuthDataOk added in v1.2.0

func (o *GetApplication200Response) GetStepUpAuthDataOk() (map[string]interface{}, bool)

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

func (*GetApplication200Response) GetStepUpAuthType added in v1.2.0

func (o *GetApplication200Response) GetStepUpAuthType() string

GetStepUpAuthType returns the StepUpAuthType field value if set, zero value otherwise.

func (*GetApplication200Response) GetStepUpAuthTypeOk added in v1.2.0

func (o *GetApplication200Response) GetStepUpAuthTypeOk() (*string, bool)

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

func (*GetApplication200Response) GetSupportedOffNetwork added in v1.2.0

func (o *GetApplication200Response) GetSupportedOffNetwork() string

GetSupportedOffNetwork returns the SupportedOffNetwork field value if set, zero value otherwise.

func (*GetApplication200Response) GetSupportedOffNetworkOk added in v1.2.0

func (o *GetApplication200Response) GetSupportedOffNetworkOk() (*string, bool)

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

func (*GetApplication200Response) GetSupportedSsoMethods added in v1.2.0

func (o *GetApplication200Response) GetSupportedSsoMethods() float32

GetSupportedSsoMethods returns the SupportedSsoMethods field value if set, zero value otherwise.

func (*GetApplication200Response) GetSupportedSsoMethodsOk added in v1.2.0

func (o *GetApplication200Response) GetSupportedSsoMethodsOk() (*float32, bool)

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

func (*GetApplication200Response) GetUsageAnalytics added in v1.2.0

func (o *GetApplication200Response) GetUsageAnalytics() bool

GetUsageAnalytics returns the UsageAnalytics field value if set, zero value otherwise.

func (*GetApplication200Response) GetUsageAnalyticsOk added in v1.2.0

func (o *GetApplication200Response) GetUsageAnalyticsOk() (*bool, bool)

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

func (*GetApplication200Response) GetUsageCertRequired added in v1.2.0

func (o *GetApplication200Response) GetUsageCertRequired() bool

GetUsageCertRequired returns the UsageCertRequired field value if set, zero value otherwise.

func (*GetApplication200Response) GetUsageCertRequiredOk added in v1.2.0

func (o *GetApplication200Response) GetUsageCertRequiredOk() (*bool, bool)

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

func (*GetApplication200Response) GetUsageCertText added in v1.2.0

func (o *GetApplication200Response) GetUsageCertText() map[string]interface{}

GetUsageCertText returns the UsageCertText field value if set, zero value otherwise.

func (*GetApplication200Response) GetUsageCertTextOk added in v1.2.0

func (o *GetApplication200Response) GetUsageCertTextOk() (map[string]interface{}, bool)

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

func (*GetApplication200Response) GetXsdVersion added in v1.2.0

func (o *GetApplication200Response) GetXsdVersion() string

GetXsdVersion returns the XsdVersion field value if set, zero value otherwise.

func (*GetApplication200Response) GetXsdVersionOk added in v1.2.0

func (o *GetApplication200Response) GetXsdVersionOk() (*string, bool)

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

func (*GetApplication200Response) HasAccessProfileIds added in v1.2.0

func (o *GetApplication200Response) HasAccessProfileIds() bool

HasAccessProfileIds returns a boolean if a field has been set.

func (*GetApplication200Response) HasAccountServiceExternalId added in v1.2.0

func (o *GetApplication200Response) HasAccountServiceExternalId() bool

HasAccountServiceExternalId returns a boolean if a field has been set.

func (*GetApplication200Response) HasAccountServiceId added in v1.2.0

func (o *GetApplication200Response) HasAccountServiceId() bool

HasAccountServiceId returns a boolean if a field has been set.

func (*GetApplication200Response) HasAccountServiceMatchAllAccounts added in v1.2.0

func (o *GetApplication200Response) HasAccountServiceMatchAllAccounts() bool

HasAccountServiceMatchAllAccounts returns a boolean if a field has been set.

func (*GetApplication200Response) HasAccountServiceName added in v1.2.0

func (o *GetApplication200Response) HasAccountServiceName() bool

HasAccountServiceName returns a boolean if a field has been set.

func (*GetApplication200Response) HasAccountServicePolicies added in v1.2.0

func (o *GetApplication200Response) HasAccountServicePolicies() bool

HasAccountServicePolicies returns a boolean if a field has been set.

func (*GetApplication200Response) HasAccountServicePolicyId added in v1.2.0

func (o *GetApplication200Response) HasAccountServicePolicyId() bool

HasAccountServicePolicyId returns a boolean if a field has been set.

func (*GetApplication200Response) HasAccountServicePolicyName added in v1.2.0

func (o *GetApplication200Response) HasAccountServicePolicyName() bool

HasAccountServicePolicyName returns a boolean if a field has been set.

func (*GetApplication200Response) HasAccountServiceUseForPasswordManagement added in v1.2.0

func (o *GetApplication200Response) HasAccountServiceUseForPasswordManagement() bool

HasAccountServiceUseForPasswordManagement returns a boolean if a field has been set.

func (*GetApplication200Response) HasAppCenterEnabled added in v1.2.0

func (o *GetApplication200Response) HasAppCenterEnabled() bool

HasAppCenterEnabled returns a boolean if a field has been set.

func (*GetApplication200Response) HasAppId added in v1.2.0

func (o *GetApplication200Response) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*GetApplication200Response) HasAppProfiles added in v1.2.0

func (o *GetApplication200Response) HasAppProfiles() bool

HasAppProfiles returns a boolean if a field has been set.

func (*GetApplication200Response) HasControlType added in v1.2.0

func (o *GetApplication200Response) HasControlType() bool

HasControlType returns a boolean if a field has been set.

func (*GetApplication200Response) HasDateCreated added in v1.2.0

func (o *GetApplication200Response) HasDateCreated() bool

HasDateCreated returns a boolean if a field has been set.

func (*GetApplication200Response) HasDefaultAccessProfile added in v1.2.0

func (o *GetApplication200Response) HasDefaultAccessProfile() bool

HasDefaultAccessProfile returns a boolean if a field has been set.

func (*GetApplication200Response) HasDescription added in v1.2.0

func (o *GetApplication200Response) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GetApplication200Response) HasEnableSso added in v1.2.0

func (o *GetApplication200Response) HasEnableSso() bool

HasEnableSso returns a boolean if a field has been set.

func (*GetApplication200Response) HasExternalId added in v1.2.0

func (o *GetApplication200Response) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*GetApplication200Response) HasHasAutomations added in v1.2.0

func (o *GetApplication200Response) HasHasAutomations() bool

HasHasAutomations returns a boolean if a field has been set.

func (o *GetApplication200Response) HasHasLinks() bool

HasHasLinks returns a boolean if a field has been set.

func (*GetApplication200Response) HasHealth added in v1.2.0

func (o *GetApplication200Response) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*GetApplication200Response) HasIcon added in v1.2.0

func (o *GetApplication200Response) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*GetApplication200Response) HasId added in v1.2.0

func (o *GetApplication200Response) HasId() bool

HasId returns a boolean if a field has been set.

func (*GetApplication200Response) HasLastUpdated added in v1.2.0

func (o *GetApplication200Response) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*GetApplication200Response) HasLauncherCount added in v1.2.0

func (o *GetApplication200Response) HasLauncherCount() bool

HasLauncherCount returns a boolean if a field has been set.

func (*GetApplication200Response) HasLaunchpadEnabled added in v1.2.0

func (o *GetApplication200Response) HasLaunchpadEnabled() bool

HasLaunchpadEnabled returns a boolean if a field has been set.

func (*GetApplication200Response) HasMobile added in v1.2.0

func (o *GetApplication200Response) HasMobile() bool

HasMobile returns a boolean if a field has been set.

func (*GetApplication200Response) HasName added in v1.2.0

func (o *GetApplication200Response) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetApplication200Response) HasOffNetworkBlockedRoles added in v1.2.0

func (o *GetApplication200Response) HasOffNetworkBlockedRoles() bool

HasOffNetworkBlockedRoles returns a boolean if a field has been set.

func (*GetApplication200Response) HasOwner added in v1.2.0

func (o *GetApplication200Response) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*GetApplication200Response) HasPasswordManaged added in v1.2.0

func (o *GetApplication200Response) HasPasswordManaged() bool

HasPasswordManaged returns a boolean if a field has been set.

func (*GetApplication200Response) HasPasswordServiceId added in v1.2.0

func (o *GetApplication200Response) HasPasswordServiceId() bool

HasPasswordServiceId returns a boolean if a field has been set.

func (*GetApplication200Response) HasPrivateApp added in v1.2.0

func (o *GetApplication200Response) HasPrivateApp() bool

HasPrivateApp returns a boolean if a field has been set.

func (*GetApplication200Response) HasProvisionRequestEnabled added in v1.2.0

func (o *GetApplication200Response) HasProvisionRequestEnabled() bool

HasProvisionRequestEnabled returns a boolean if a field has been set.

func (*GetApplication200Response) HasRequireStrongAuthn added in v1.2.0

func (o *GetApplication200Response) HasRequireStrongAuthn() bool

HasRequireStrongAuthn returns a boolean if a field has been set.

func (*GetApplication200Response) HasScriptName added in v1.2.0

func (o *GetApplication200Response) HasScriptName() bool

HasScriptName returns a boolean if a field has been set.

func (*GetApplication200Response) HasSelectedSsoMethod added in v1.2.0

func (o *GetApplication200Response) HasSelectedSsoMethod() bool

HasSelectedSsoMethod returns a boolean if a field has been set.

func (*GetApplication200Response) HasService added in v1.2.0

func (o *GetApplication200Response) HasService() bool

HasService returns a boolean if a field has been set.

func (*GetApplication200Response) HasServiceAppId added in v1.2.0

func (o *GetApplication200Response) HasServiceAppId() bool

HasServiceAppId returns a boolean if a field has been set.

func (*GetApplication200Response) HasServiceId added in v1.2.0

func (o *GetApplication200Response) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*GetApplication200Response) HasSsoMethod added in v1.2.0

func (o *GetApplication200Response) HasSsoMethod() bool

HasSsoMethod returns a boolean if a field has been set.

func (*GetApplication200Response) HasStatus added in v1.2.0

func (o *GetApplication200Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetApplication200Response) HasStepUpAuthData added in v1.2.0

func (o *GetApplication200Response) HasStepUpAuthData() bool

HasStepUpAuthData returns a boolean if a field has been set.

func (*GetApplication200Response) HasStepUpAuthType added in v1.2.0

func (o *GetApplication200Response) HasStepUpAuthType() bool

HasStepUpAuthType returns a boolean if a field has been set.

func (*GetApplication200Response) HasSupportedOffNetwork added in v1.2.0

func (o *GetApplication200Response) HasSupportedOffNetwork() bool

HasSupportedOffNetwork returns a boolean if a field has been set.

func (*GetApplication200Response) HasSupportedSsoMethods added in v1.2.0

func (o *GetApplication200Response) HasSupportedSsoMethods() bool

HasSupportedSsoMethods returns a boolean if a field has been set.

func (*GetApplication200Response) HasUsageAnalytics added in v1.2.0

func (o *GetApplication200Response) HasUsageAnalytics() bool

HasUsageAnalytics returns a boolean if a field has been set.

func (*GetApplication200Response) HasUsageCertRequired added in v1.2.0

func (o *GetApplication200Response) HasUsageCertRequired() bool

HasUsageCertRequired returns a boolean if a field has been set.

func (*GetApplication200Response) HasUsageCertText added in v1.2.0

func (o *GetApplication200Response) HasUsageCertText() bool

HasUsageCertText returns a boolean if a field has been set.

func (*GetApplication200Response) HasXsdVersion added in v1.2.0

func (o *GetApplication200Response) HasXsdVersion() bool

HasXsdVersion returns a boolean if a field has been set.

func (GetApplication200Response) MarshalJSON added in v1.2.0

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

func (*GetApplication200Response) SetAccessProfileIds added in v1.2.0

func (o *GetApplication200Response) SetAccessProfileIds(v map[string]interface{})

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

func (*GetApplication200Response) SetAccountServiceExternalId added in v1.2.0

func (o *GetApplication200Response) SetAccountServiceExternalId(v string)

SetAccountServiceExternalId gets a reference to the given string and assigns it to the AccountServiceExternalId field.

func (*GetApplication200Response) SetAccountServiceId added in v1.2.0

func (o *GetApplication200Response) SetAccountServiceId(v float32)

SetAccountServiceId gets a reference to the given float32 and assigns it to the AccountServiceId field.

func (*GetApplication200Response) SetAccountServiceMatchAllAccounts added in v1.2.0

func (o *GetApplication200Response) SetAccountServiceMatchAllAccounts(v bool)

SetAccountServiceMatchAllAccounts gets a reference to the given bool and assigns it to the AccountServiceMatchAllAccounts field.

func (*GetApplication200Response) SetAccountServiceName added in v1.2.0

func (o *GetApplication200Response) SetAccountServiceName(v string)

SetAccountServiceName gets a reference to the given string and assigns it to the AccountServiceName field.

func (*GetApplication200Response) SetAccountServicePolicies added in v1.2.0

SetAccountServicePolicies gets a reference to the given []ListApplications200ResponseInnerAccountServicePoliciesInner and assigns it to the AccountServicePolicies field.

func (*GetApplication200Response) SetAccountServicePolicyId added in v1.2.0

func (o *GetApplication200Response) SetAccountServicePolicyId(v string)

SetAccountServicePolicyId gets a reference to the given string and assigns it to the AccountServicePolicyId field.

func (*GetApplication200Response) SetAccountServicePolicyName added in v1.2.0

func (o *GetApplication200Response) SetAccountServicePolicyName(v string)

SetAccountServicePolicyName gets a reference to the given string and assigns it to the AccountServicePolicyName field.

func (*GetApplication200Response) SetAccountServiceUseForPasswordManagement added in v1.2.0

func (o *GetApplication200Response) SetAccountServiceUseForPasswordManagement(v bool)

SetAccountServiceUseForPasswordManagement gets a reference to the given bool and assigns it to the AccountServiceUseForPasswordManagement field.

func (*GetApplication200Response) SetAppCenterEnabled added in v1.2.0

func (o *GetApplication200Response) SetAppCenterEnabled(v bool)

SetAppCenterEnabled gets a reference to the given bool and assigns it to the AppCenterEnabled field.

func (*GetApplication200Response) SetAppId added in v1.2.0

func (o *GetApplication200Response) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*GetApplication200Response) SetAppProfiles added in v1.2.0

SetAppProfiles gets a reference to the given []ListApplications200ResponseInnerAppProfilesInner and assigns it to the AppProfiles field.

func (*GetApplication200Response) SetControlType added in v1.2.0

func (o *GetApplication200Response) SetControlType(v string)

SetControlType gets a reference to the given string and assigns it to the ControlType field.

func (*GetApplication200Response) SetDateCreated added in v1.2.0

func (o *GetApplication200Response) SetDateCreated(v float32)

SetDateCreated gets a reference to the given float32 and assigns it to the DateCreated field.

func (*GetApplication200Response) SetDefaultAccessProfile added in v1.2.0

func (o *GetApplication200Response) SetDefaultAccessProfile(v map[string]interface{})

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

func (*GetApplication200Response) SetDescription added in v1.2.0

func (o *GetApplication200Response) SetDescription(v string)

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

func (*GetApplication200Response) SetEnableSso added in v1.2.0

func (o *GetApplication200Response) SetEnableSso(v bool)

SetEnableSso gets a reference to the given bool and assigns it to the EnableSso field.

func (*GetApplication200Response) SetExternalId added in v1.2.0

func (o *GetApplication200Response) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*GetApplication200Response) SetHasAutomations added in v1.2.0

func (o *GetApplication200Response) SetHasAutomations(v bool)

SetHasAutomations gets a reference to the given bool and assigns it to the HasAutomations field.

func (o *GetApplication200Response) SetHasLinks(v bool)

SetHasLinks gets a reference to the given bool and assigns it to the HasLinks field.

func (*GetApplication200Response) SetHealth added in v1.2.0

SetHealth gets a reference to the given ListApplications200ResponseInnerHealth and assigns it to the Health field.

func (*GetApplication200Response) SetIcon added in v1.2.0

func (o *GetApplication200Response) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*GetApplication200Response) SetId added in v1.2.0

func (o *GetApplication200Response) SetId(v string)

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

func (*GetApplication200Response) SetLastUpdated added in v1.2.0

func (o *GetApplication200Response) SetLastUpdated(v float32)

SetLastUpdated gets a reference to the given float32 and assigns it to the LastUpdated field.

func (*GetApplication200Response) SetLauncherCount added in v1.2.0

func (o *GetApplication200Response) SetLauncherCount(v float32)

SetLauncherCount gets a reference to the given float32 and assigns it to the LauncherCount field.

func (*GetApplication200Response) SetLaunchpadEnabled added in v1.2.0

func (o *GetApplication200Response) SetLaunchpadEnabled(v bool)

SetLaunchpadEnabled gets a reference to the given bool and assigns it to the LaunchpadEnabled field.

func (*GetApplication200Response) SetMobile added in v1.2.0

func (o *GetApplication200Response) SetMobile(v bool)

SetMobile gets a reference to the given bool and assigns it to the Mobile field.

func (*GetApplication200Response) SetName added in v1.2.0

func (o *GetApplication200Response) SetName(v string)

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

func (*GetApplication200Response) SetOffNetworkBlockedRoles added in v1.2.0

func (o *GetApplication200Response) SetOffNetworkBlockedRoles(v map[string]interface{})

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

func (*GetApplication200Response) SetOwner added in v1.2.0

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

func (*GetApplication200Response) SetPasswordManaged added in v1.2.0

func (o *GetApplication200Response) SetPasswordManaged(v bool)

SetPasswordManaged gets a reference to the given bool and assigns it to the PasswordManaged field.

func (*GetApplication200Response) SetPasswordServiceId added in v1.2.0

func (o *GetApplication200Response) SetPasswordServiceId(v float32)

SetPasswordServiceId gets a reference to the given float32 and assigns it to the PasswordServiceId field.

func (*GetApplication200Response) SetPrivateApp added in v1.2.0

func (o *GetApplication200Response) SetPrivateApp(v bool)

SetPrivateApp gets a reference to the given bool and assigns it to the PrivateApp field.

func (*GetApplication200Response) SetProvisionRequestEnabled added in v1.2.0

func (o *GetApplication200Response) SetProvisionRequestEnabled(v bool)

SetProvisionRequestEnabled gets a reference to the given bool and assigns it to the ProvisionRequestEnabled field.

func (*GetApplication200Response) SetRequireStrongAuthn added in v1.2.0

func (o *GetApplication200Response) SetRequireStrongAuthn(v bool)

SetRequireStrongAuthn gets a reference to the given bool and assigns it to the RequireStrongAuthn field.

func (*GetApplication200Response) SetScriptName added in v1.2.0

func (o *GetApplication200Response) SetScriptName(v string)

SetScriptName gets a reference to the given string and assigns it to the ScriptName field.

func (*GetApplication200Response) SetSelectedSsoMethod added in v1.2.0

func (o *GetApplication200Response) SetSelectedSsoMethod(v string)

SetSelectedSsoMethod gets a reference to the given string and assigns it to the SelectedSsoMethod field.

func (*GetApplication200Response) SetService added in v1.2.0

func (o *GetApplication200Response) SetService(v string)

SetService gets a reference to the given string and assigns it to the Service field.

func (*GetApplication200Response) SetServiceAppId added in v1.2.0

func (o *GetApplication200Response) SetServiceAppId(v string)

SetServiceAppId gets a reference to the given string and assigns it to the ServiceAppId field.

func (*GetApplication200Response) SetServiceId added in v1.2.0

func (o *GetApplication200Response) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*GetApplication200Response) SetSsoMethod added in v1.2.0

func (o *GetApplication200Response) SetSsoMethod(v string)

SetSsoMethod gets a reference to the given string and assigns it to the SsoMethod field.

func (*GetApplication200Response) SetStatus added in v1.2.0

func (o *GetApplication200Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetApplication200Response) SetStepUpAuthData added in v1.2.0

func (o *GetApplication200Response) SetStepUpAuthData(v map[string]interface{})

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

func (*GetApplication200Response) SetStepUpAuthType added in v1.2.0

func (o *GetApplication200Response) SetStepUpAuthType(v string)

SetStepUpAuthType gets a reference to the given string and assigns it to the StepUpAuthType field.

func (*GetApplication200Response) SetSupportedOffNetwork added in v1.2.0

func (o *GetApplication200Response) SetSupportedOffNetwork(v string)

SetSupportedOffNetwork gets a reference to the given string and assigns it to the SupportedOffNetwork field.

func (*GetApplication200Response) SetSupportedSsoMethods added in v1.2.0

func (o *GetApplication200Response) SetSupportedSsoMethods(v float32)

SetSupportedSsoMethods gets a reference to the given float32 and assigns it to the SupportedSsoMethods field.

func (*GetApplication200Response) SetUsageAnalytics added in v1.2.0

func (o *GetApplication200Response) SetUsageAnalytics(v bool)

SetUsageAnalytics gets a reference to the given bool and assigns it to the UsageAnalytics field.

func (*GetApplication200Response) SetUsageCertRequired added in v1.2.0

func (o *GetApplication200Response) SetUsageCertRequired(v bool)

SetUsageCertRequired gets a reference to the given bool and assigns it to the UsageCertRequired field.

func (*GetApplication200Response) SetUsageCertText added in v1.2.0

func (o *GetApplication200Response) SetUsageCertText(v map[string]interface{})

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

func (*GetApplication200Response) SetXsdVersion added in v1.2.0

func (o *GetApplication200Response) SetXsdVersion(v string)

SetXsdVersion gets a reference to the given string and assigns it to the XsdVersion field.

func (GetApplication200Response) ToMap added in v1.2.0

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

func (*GetApplication200Response) UnmarshalJSON added in v1.2.0

func (o *GetApplication200Response) UnmarshalJSON(bytes []byte) (err error)

type GetIdentity200Response added in v1.0.3

type GetIdentity200Response struct {
	Id                          *string                     `json:"id,omitempty"`
	Alias                       *string                     `json:"alias,omitempty"`
	Uid                         *string                     `json:"uid,omitempty"`
	Name                        *string                     `json:"name,omitempty"`
	DisplayName                 *string                     `json:"displayName,omitempty"`
	Uuid                        *string                     `json:"uuid,omitempty"`
	EncryptionKey               map[string]interface{}      `json:"encryptionKey,omitempty"`
	EncryptionCheck             map[string]interface{}      `json:"encryptionCheck,omitempty"`
	Status                      *string                     `json:"status,omitempty"`
	Pending                     *bool                       `json:"pending,omitempty"`
	PasswordResetSinceLastLogin *bool                       `json:"passwordResetSinceLastLogin,omitempty"`
	UsageCertAttested           map[string]interface{}      `json:"usageCertAttested,omitempty"`
	UserFlags                   map[string]interface{}      `json:"userFlags,omitempty"`
	Enabled                     *bool                       `json:"enabled,omitempty"`
	AltAuthVia                  *string                     `json:"altAuthVia,omitempty"`
	AltAuthViaIntegrationData   map[string]interface{}      `json:"altAuthViaIntegrationData,omitempty"`
	KbaAnswers                  *float32                    `json:"kbaAnswers,omitempty"`
	DisablePasswordReset        *bool                       `json:"disablePasswordReset,omitempty"`
	PtaSourceId                 map[string]interface{}      `json:"ptaSourceId,omitempty"`
	SupportsPasswordPush        *bool                       `json:"supportsPasswordPush,omitempty"`
	Attributes                  map[string]interface{}      `json:"attributes,omitempty"`
	ExternalId                  *string                     `json:"externalId,omitempty"`
	Role                        []map[string]interface{}    `json:"role,omitempty"`
	Phone                       map[string]interface{}      `json:"phone,omitempty"`
	Email                       *string                     `json:"email,omitempty"`
	PersonalEmail               map[string]interface{}      `json:"personalEmail,omitempty"`
	EmployeeNumber              map[string]interface{}      `json:"employeeNumber,omitempty"`
	RiskScore                   *float32                    `json:"riskScore,omitempty"`
	FeatureFlags                map[string]interface{}      `json:"featureFlags,omitempty"`
	Feature                     []string                    `json:"feature,omitempty"`
	OrgEncryptionKey            *string                     `json:"orgEncryptionKey,omitempty"`
	OrgEncryptionKeyId          *string                     `json:"orgEncryptionKeyId,omitempty"`
	Meta                        map[string]interface{}      `json:"meta,omitempty"`
	Org                         *GetIdentity200ResponseOrg  `json:"org,omitempty"`
	StepUpAuth                  *bool                       `json:"stepUpAuth,omitempty"`
	BxInstallPrompted           *bool                       `json:"bxInstallPrompted,omitempty"`
	FederatedLogin              *bool                       `json:"federatedLogin,omitempty"`
	Auth                        *GetIdentity200ResponseAuth `json:"auth,omitempty"`
	OnNetwork                   *bool                       `json:"onNetwork,omitempty"`
	OnTrustedGeo                *bool                       `json:"onTrustedGeo,omitempty"`
	LoginUrl                    *string                     `json:"loginUrl,omitempty"`
	AdditionalProperties        map[string]interface{}
}

GetIdentity200Response struct for GetIdentity200Response

func NewGetIdentity200Response added in v1.0.3

func NewGetIdentity200Response() *GetIdentity200Response

NewGetIdentity200Response instantiates a new GetIdentity200Response 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 NewGetIdentity200ResponseWithDefaults added in v1.0.3

func NewGetIdentity200ResponseWithDefaults() *GetIdentity200Response

NewGetIdentity200ResponseWithDefaults instantiates a new GetIdentity200Response 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 (*GetIdentity200Response) GetAlias added in v1.0.3

func (o *GetIdentity200Response) GetAlias() string

GetAlias returns the Alias field value if set, zero value otherwise.

func (*GetIdentity200Response) GetAliasOk added in v1.0.3

func (o *GetIdentity200Response) GetAliasOk() (*string, bool)

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

func (*GetIdentity200Response) GetAltAuthVia added in v1.0.3

func (o *GetIdentity200Response) GetAltAuthVia() string

GetAltAuthVia returns the AltAuthVia field value if set, zero value otherwise.

func (*GetIdentity200Response) GetAltAuthViaIntegrationData added in v1.0.3

func (o *GetIdentity200Response) GetAltAuthViaIntegrationData() map[string]interface{}

GetAltAuthViaIntegrationData returns the AltAuthViaIntegrationData field value if set, zero value otherwise.

func (*GetIdentity200Response) GetAltAuthViaIntegrationDataOk added in v1.0.3

func (o *GetIdentity200Response) GetAltAuthViaIntegrationDataOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetAltAuthViaOk added in v1.0.3

func (o *GetIdentity200Response) GetAltAuthViaOk() (*string, bool)

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

func (*GetIdentity200Response) GetAttributes added in v1.0.3

func (o *GetIdentity200Response) GetAttributes() map[string]interface{}

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*GetIdentity200Response) GetAttributesOk added in v1.0.3

func (o *GetIdentity200Response) GetAttributesOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetAuth added in v1.0.3

GetAuth returns the Auth field value if set, zero value otherwise.

func (*GetIdentity200Response) GetAuthOk added in v1.0.3

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

func (*GetIdentity200Response) GetBxInstallPrompted added in v1.0.3

func (o *GetIdentity200Response) GetBxInstallPrompted() bool

GetBxInstallPrompted returns the BxInstallPrompted field value if set, zero value otherwise.

func (*GetIdentity200Response) GetBxInstallPromptedOk added in v1.0.3

func (o *GetIdentity200Response) GetBxInstallPromptedOk() (*bool, bool)

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

func (*GetIdentity200Response) GetDisablePasswordReset added in v1.0.3

func (o *GetIdentity200Response) GetDisablePasswordReset() bool

GetDisablePasswordReset returns the DisablePasswordReset field value if set, zero value otherwise.

func (*GetIdentity200Response) GetDisablePasswordResetOk added in v1.0.3

func (o *GetIdentity200Response) GetDisablePasswordResetOk() (*bool, bool)

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

func (*GetIdentity200Response) GetDisplayName added in v1.0.3

func (o *GetIdentity200Response) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*GetIdentity200Response) GetDisplayNameOk added in v1.0.3

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

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

func (*GetIdentity200Response) GetEmail added in v1.0.3

func (o *GetIdentity200Response) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*GetIdentity200Response) GetEmailOk added in v1.0.3

func (o *GetIdentity200Response) 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.

func (*GetIdentity200Response) GetEmployeeNumber added in v1.0.3

func (o *GetIdentity200Response) GetEmployeeNumber() map[string]interface{}

GetEmployeeNumber returns the EmployeeNumber field value if set, zero value otherwise.

func (*GetIdentity200Response) GetEmployeeNumberOk added in v1.0.3

func (o *GetIdentity200Response) GetEmployeeNumberOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetEnabled added in v1.0.3

func (o *GetIdentity200Response) GetEnabled() bool

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

func (*GetIdentity200Response) GetEnabledOk added in v1.0.3

func (o *GetIdentity200Response) 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 (*GetIdentity200Response) GetEncryptionCheck added in v1.0.3

func (o *GetIdentity200Response) GetEncryptionCheck() map[string]interface{}

GetEncryptionCheck returns the EncryptionCheck field value if set, zero value otherwise.

func (*GetIdentity200Response) GetEncryptionCheckOk added in v1.0.3

func (o *GetIdentity200Response) GetEncryptionCheckOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetEncryptionKey added in v1.0.3

func (o *GetIdentity200Response) GetEncryptionKey() map[string]interface{}

GetEncryptionKey returns the EncryptionKey field value if set, zero value otherwise.

func (*GetIdentity200Response) GetEncryptionKeyOk added in v1.0.3

func (o *GetIdentity200Response) GetEncryptionKeyOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetExternalId added in v1.0.3

func (o *GetIdentity200Response) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*GetIdentity200Response) GetExternalIdOk added in v1.0.3

func (o *GetIdentity200Response) GetExternalIdOk() (*string, bool)

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

func (*GetIdentity200Response) GetFeature added in v1.0.3

func (o *GetIdentity200Response) GetFeature() []string

GetFeature returns the Feature field value if set, zero value otherwise.

func (*GetIdentity200Response) GetFeatureFlags added in v1.0.3

func (o *GetIdentity200Response) GetFeatureFlags() map[string]interface{}

GetFeatureFlags returns the FeatureFlags field value if set, zero value otherwise.

func (*GetIdentity200Response) GetFeatureFlagsOk added in v1.0.3

func (o *GetIdentity200Response) GetFeatureFlagsOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetFeatureOk added in v1.0.3

func (o *GetIdentity200Response) GetFeatureOk() ([]string, bool)

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

func (*GetIdentity200Response) GetFederatedLogin added in v1.0.3

func (o *GetIdentity200Response) GetFederatedLogin() bool

GetFederatedLogin returns the FederatedLogin field value if set, zero value otherwise.

func (*GetIdentity200Response) GetFederatedLoginOk added in v1.0.3

func (o *GetIdentity200Response) GetFederatedLoginOk() (*bool, bool)

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

func (*GetIdentity200Response) GetId added in v1.0.3

func (o *GetIdentity200Response) GetId() string

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

func (*GetIdentity200Response) GetIdOk added in v1.0.3

func (o *GetIdentity200Response) 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 (*GetIdentity200Response) GetKbaAnswers added in v1.0.3

func (o *GetIdentity200Response) GetKbaAnswers() float32

GetKbaAnswers returns the KbaAnswers field value if set, zero value otherwise.

func (*GetIdentity200Response) GetKbaAnswersOk added in v1.0.3

func (o *GetIdentity200Response) GetKbaAnswersOk() (*float32, bool)

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

func (*GetIdentity200Response) GetLoginUrl added in v1.0.3

func (o *GetIdentity200Response) GetLoginUrl() string

GetLoginUrl returns the LoginUrl field value if set, zero value otherwise.

func (*GetIdentity200Response) GetLoginUrlOk added in v1.0.3

func (o *GetIdentity200Response) GetLoginUrlOk() (*string, bool)

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

func (*GetIdentity200Response) GetMeta added in v1.0.3

func (o *GetIdentity200Response) GetMeta() map[string]interface{}

GetMeta returns the Meta field value if set, zero value otherwise.

func (*GetIdentity200Response) GetMetaOk added in v1.0.3

func (o *GetIdentity200Response) GetMetaOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetName added in v1.0.3

func (o *GetIdentity200Response) GetName() string

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

func (*GetIdentity200Response) GetNameOk added in v1.0.3

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

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

func (*GetIdentity200Response) GetOnNetwork added in v1.0.3

func (o *GetIdentity200Response) GetOnNetwork() bool

GetOnNetwork returns the OnNetwork field value if set, zero value otherwise.

func (*GetIdentity200Response) GetOnNetworkOk added in v1.0.3

func (o *GetIdentity200Response) GetOnNetworkOk() (*bool, bool)

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

func (*GetIdentity200Response) GetOnTrustedGeo added in v1.0.3

func (o *GetIdentity200Response) GetOnTrustedGeo() bool

GetOnTrustedGeo returns the OnTrustedGeo field value if set, zero value otherwise.

func (*GetIdentity200Response) GetOnTrustedGeoOk added in v1.0.3

func (o *GetIdentity200Response) GetOnTrustedGeoOk() (*bool, bool)

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

func (*GetIdentity200Response) GetOrg added in v1.0.3

GetOrg returns the Org field value if set, zero value otherwise.

func (*GetIdentity200Response) GetOrgEncryptionKey added in v1.0.3

func (o *GetIdentity200Response) GetOrgEncryptionKey() string

GetOrgEncryptionKey returns the OrgEncryptionKey field value if set, zero value otherwise.

func (*GetIdentity200Response) GetOrgEncryptionKeyId added in v1.0.3

func (o *GetIdentity200Response) GetOrgEncryptionKeyId() string

GetOrgEncryptionKeyId returns the OrgEncryptionKeyId field value if set, zero value otherwise.

func (*GetIdentity200Response) GetOrgEncryptionKeyIdOk added in v1.0.3

func (o *GetIdentity200Response) GetOrgEncryptionKeyIdOk() (*string, bool)

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

func (*GetIdentity200Response) GetOrgEncryptionKeyOk added in v1.0.3

func (o *GetIdentity200Response) GetOrgEncryptionKeyOk() (*string, bool)

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

func (*GetIdentity200Response) GetOrgOk added in v1.0.3

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

func (*GetIdentity200Response) GetPasswordResetSinceLastLogin added in v1.0.3

func (o *GetIdentity200Response) GetPasswordResetSinceLastLogin() bool

GetPasswordResetSinceLastLogin returns the PasswordResetSinceLastLogin field value if set, zero value otherwise.

func (*GetIdentity200Response) GetPasswordResetSinceLastLoginOk added in v1.0.3

func (o *GetIdentity200Response) GetPasswordResetSinceLastLoginOk() (*bool, bool)

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

func (*GetIdentity200Response) GetPending added in v1.0.3

func (o *GetIdentity200Response) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*GetIdentity200Response) GetPendingOk added in v1.0.3

func (o *GetIdentity200Response) GetPendingOk() (*bool, bool)

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

func (*GetIdentity200Response) GetPersonalEmail added in v1.0.3

func (o *GetIdentity200Response) GetPersonalEmail() map[string]interface{}

GetPersonalEmail returns the PersonalEmail field value if set, zero value otherwise.

func (*GetIdentity200Response) GetPersonalEmailOk added in v1.0.3

func (o *GetIdentity200Response) GetPersonalEmailOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetPhone added in v1.0.3

func (o *GetIdentity200Response) GetPhone() map[string]interface{}

GetPhone returns the Phone field value if set, zero value otherwise.

func (*GetIdentity200Response) GetPhoneOk added in v1.0.3

func (o *GetIdentity200Response) GetPhoneOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetPtaSourceId added in v1.0.3

func (o *GetIdentity200Response) GetPtaSourceId() map[string]interface{}

GetPtaSourceId returns the PtaSourceId field value if set, zero value otherwise.

func (*GetIdentity200Response) GetPtaSourceIdOk added in v1.0.3

func (o *GetIdentity200Response) GetPtaSourceIdOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetRiskScore added in v1.0.3

func (o *GetIdentity200Response) GetRiskScore() float32

GetRiskScore returns the RiskScore field value if set, zero value otherwise.

func (*GetIdentity200Response) GetRiskScoreOk added in v1.0.3

func (o *GetIdentity200Response) GetRiskScoreOk() (*float32, bool)

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

func (*GetIdentity200Response) GetRole added in v1.0.3

func (o *GetIdentity200Response) GetRole() []map[string]interface{}

GetRole returns the Role field value if set, zero value otherwise.

func (*GetIdentity200Response) GetRoleOk added in v1.0.3

func (o *GetIdentity200Response) GetRoleOk() ([]map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetStatus added in v1.0.3

func (o *GetIdentity200Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetIdentity200Response) GetStatusOk added in v1.0.3

func (o *GetIdentity200Response) GetStatusOk() (*string, 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 (*GetIdentity200Response) GetStepUpAuth added in v1.0.3

func (o *GetIdentity200Response) GetStepUpAuth() bool

GetStepUpAuth returns the StepUpAuth field value if set, zero value otherwise.

func (*GetIdentity200Response) GetStepUpAuthOk added in v1.0.3

func (o *GetIdentity200Response) GetStepUpAuthOk() (*bool, bool)

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

func (*GetIdentity200Response) GetSupportsPasswordPush added in v1.0.3

func (o *GetIdentity200Response) GetSupportsPasswordPush() bool

GetSupportsPasswordPush returns the SupportsPasswordPush field value if set, zero value otherwise.

func (*GetIdentity200Response) GetSupportsPasswordPushOk added in v1.0.3

func (o *GetIdentity200Response) GetSupportsPasswordPushOk() (*bool, bool)

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

func (*GetIdentity200Response) GetUid added in v1.0.3

func (o *GetIdentity200Response) GetUid() string

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

func (*GetIdentity200Response) GetUidOk added in v1.0.3

func (o *GetIdentity200Response) GetUidOk() (*string, 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.

func (*GetIdentity200Response) GetUsageCertAttested added in v1.0.3

func (o *GetIdentity200Response) GetUsageCertAttested() map[string]interface{}

GetUsageCertAttested returns the UsageCertAttested field value if set, zero value otherwise.

func (*GetIdentity200Response) GetUsageCertAttestedOk added in v1.0.3

func (o *GetIdentity200Response) GetUsageCertAttestedOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetUserFlags added in v1.0.3

func (o *GetIdentity200Response) GetUserFlags() map[string]interface{}

GetUserFlags returns the UserFlags field value if set, zero value otherwise.

func (*GetIdentity200Response) GetUserFlagsOk added in v1.0.3

func (o *GetIdentity200Response) GetUserFlagsOk() (map[string]interface{}, bool)

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

func (*GetIdentity200Response) GetUuid added in v1.0.3

func (o *GetIdentity200Response) GetUuid() string

GetUuid returns the Uuid field value if set, zero value otherwise.

func (*GetIdentity200Response) GetUuidOk added in v1.0.3

func (o *GetIdentity200Response) GetUuidOk() (*string, bool)

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

func (*GetIdentity200Response) HasAlias added in v1.0.3

func (o *GetIdentity200Response) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*GetIdentity200Response) HasAltAuthVia added in v1.0.3

func (o *GetIdentity200Response) HasAltAuthVia() bool

HasAltAuthVia returns a boolean if a field has been set.

func (*GetIdentity200Response) HasAltAuthViaIntegrationData added in v1.0.3

func (o *GetIdentity200Response) HasAltAuthViaIntegrationData() bool

HasAltAuthViaIntegrationData returns a boolean if a field has been set.

func (*GetIdentity200Response) HasAttributes added in v1.0.3

func (o *GetIdentity200Response) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*GetIdentity200Response) HasAuth added in v1.0.3

func (o *GetIdentity200Response) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*GetIdentity200Response) HasBxInstallPrompted added in v1.0.3

func (o *GetIdentity200Response) HasBxInstallPrompted() bool

HasBxInstallPrompted returns a boolean if a field has been set.

func (*GetIdentity200Response) HasDisablePasswordReset added in v1.0.3

func (o *GetIdentity200Response) HasDisablePasswordReset() bool

HasDisablePasswordReset returns a boolean if a field has been set.

func (*GetIdentity200Response) HasDisplayName added in v1.0.3

func (o *GetIdentity200Response) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*GetIdentity200Response) HasEmail added in v1.0.3

func (o *GetIdentity200Response) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*GetIdentity200Response) HasEmployeeNumber added in v1.0.3

func (o *GetIdentity200Response) HasEmployeeNumber() bool

HasEmployeeNumber returns a boolean if a field has been set.

func (*GetIdentity200Response) HasEnabled added in v1.0.3

func (o *GetIdentity200Response) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*GetIdentity200Response) HasEncryptionCheck added in v1.0.3

func (o *GetIdentity200Response) HasEncryptionCheck() bool

HasEncryptionCheck returns a boolean if a field has been set.

func (*GetIdentity200Response) HasEncryptionKey added in v1.0.3

func (o *GetIdentity200Response) HasEncryptionKey() bool

HasEncryptionKey returns a boolean if a field has been set.

func (*GetIdentity200Response) HasExternalId added in v1.0.3

func (o *GetIdentity200Response) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*GetIdentity200Response) HasFeature added in v1.0.3

func (o *GetIdentity200Response) HasFeature() bool

HasFeature returns a boolean if a field has been set.

func (*GetIdentity200Response) HasFeatureFlags added in v1.0.3

func (o *GetIdentity200Response) HasFeatureFlags() bool

HasFeatureFlags returns a boolean if a field has been set.

func (*GetIdentity200Response) HasFederatedLogin added in v1.0.3

func (o *GetIdentity200Response) HasFederatedLogin() bool

HasFederatedLogin returns a boolean if a field has been set.

func (*GetIdentity200Response) HasId added in v1.0.3

func (o *GetIdentity200Response) HasId() bool

HasId returns a boolean if a field has been set.

func (*GetIdentity200Response) HasKbaAnswers added in v1.0.3

func (o *GetIdentity200Response) HasKbaAnswers() bool

HasKbaAnswers returns a boolean if a field has been set.

func (*GetIdentity200Response) HasLoginUrl added in v1.0.3

func (o *GetIdentity200Response) HasLoginUrl() bool

HasLoginUrl returns a boolean if a field has been set.

func (*GetIdentity200Response) HasMeta added in v1.0.3

func (o *GetIdentity200Response) HasMeta() bool

HasMeta returns a boolean if a field has been set.

func (*GetIdentity200Response) HasName added in v1.0.3

func (o *GetIdentity200Response) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetIdentity200Response) HasOnNetwork added in v1.0.3

func (o *GetIdentity200Response) HasOnNetwork() bool

HasOnNetwork returns a boolean if a field has been set.

func (*GetIdentity200Response) HasOnTrustedGeo added in v1.0.3

func (o *GetIdentity200Response) HasOnTrustedGeo() bool

HasOnTrustedGeo returns a boolean if a field has been set.

func (*GetIdentity200Response) HasOrg added in v1.0.3

func (o *GetIdentity200Response) HasOrg() bool

HasOrg returns a boolean if a field has been set.

func (*GetIdentity200Response) HasOrgEncryptionKey added in v1.0.3

func (o *GetIdentity200Response) HasOrgEncryptionKey() bool

HasOrgEncryptionKey returns a boolean if a field has been set.

func (*GetIdentity200Response) HasOrgEncryptionKeyId added in v1.0.3

func (o *GetIdentity200Response) HasOrgEncryptionKeyId() bool

HasOrgEncryptionKeyId returns a boolean if a field has been set.

func (*GetIdentity200Response) HasPasswordResetSinceLastLogin added in v1.0.3

func (o *GetIdentity200Response) HasPasswordResetSinceLastLogin() bool

HasPasswordResetSinceLastLogin returns a boolean if a field has been set.

func (*GetIdentity200Response) HasPending added in v1.0.3

func (o *GetIdentity200Response) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*GetIdentity200Response) HasPersonalEmail added in v1.0.3

func (o *GetIdentity200Response) HasPersonalEmail() bool

HasPersonalEmail returns a boolean if a field has been set.

func (*GetIdentity200Response) HasPhone added in v1.0.3

func (o *GetIdentity200Response) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*GetIdentity200Response) HasPtaSourceId added in v1.0.3

func (o *GetIdentity200Response) HasPtaSourceId() bool

HasPtaSourceId returns a boolean if a field has been set.

func (*GetIdentity200Response) HasRiskScore added in v1.0.3

func (o *GetIdentity200Response) HasRiskScore() bool

HasRiskScore returns a boolean if a field has been set.

func (*GetIdentity200Response) HasRole added in v1.0.3

func (o *GetIdentity200Response) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*GetIdentity200Response) HasStatus added in v1.0.3

func (o *GetIdentity200Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetIdentity200Response) HasStepUpAuth added in v1.0.3

func (o *GetIdentity200Response) HasStepUpAuth() bool

HasStepUpAuth returns a boolean if a field has been set.

func (*GetIdentity200Response) HasSupportsPasswordPush added in v1.0.3

func (o *GetIdentity200Response) HasSupportsPasswordPush() bool

HasSupportsPasswordPush returns a boolean if a field has been set.

func (*GetIdentity200Response) HasUid added in v1.0.3

func (o *GetIdentity200Response) HasUid() bool

HasUid returns a boolean if a field has been set.

func (*GetIdentity200Response) HasUsageCertAttested added in v1.0.3

func (o *GetIdentity200Response) HasUsageCertAttested() bool

HasUsageCertAttested returns a boolean if a field has been set.

func (*GetIdentity200Response) HasUserFlags added in v1.0.3

func (o *GetIdentity200Response) HasUserFlags() bool

HasUserFlags returns a boolean if a field has been set.

func (*GetIdentity200Response) HasUuid added in v1.0.3

func (o *GetIdentity200Response) HasUuid() bool

HasUuid returns a boolean if a field has been set.

func (GetIdentity200Response) MarshalJSON added in v1.0.3

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

func (*GetIdentity200Response) SetAlias added in v1.0.3

func (o *GetIdentity200Response) SetAlias(v string)

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*GetIdentity200Response) SetAltAuthVia added in v1.0.3

func (o *GetIdentity200Response) SetAltAuthVia(v string)

SetAltAuthVia gets a reference to the given string and assigns it to the AltAuthVia field.

func (*GetIdentity200Response) SetAltAuthViaIntegrationData added in v1.0.3

func (o *GetIdentity200Response) SetAltAuthViaIntegrationData(v map[string]interface{})

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

func (*GetIdentity200Response) SetAttributes added in v1.0.3

func (o *GetIdentity200Response) SetAttributes(v map[string]interface{})

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

func (*GetIdentity200Response) SetAuth added in v1.0.3

SetAuth gets a reference to the given GetIdentity200ResponseAuth and assigns it to the Auth field.

func (*GetIdentity200Response) SetBxInstallPrompted added in v1.0.3

func (o *GetIdentity200Response) SetBxInstallPrompted(v bool)

SetBxInstallPrompted gets a reference to the given bool and assigns it to the BxInstallPrompted field.

func (*GetIdentity200Response) SetDisablePasswordReset added in v1.0.3

func (o *GetIdentity200Response) SetDisablePasswordReset(v bool)

SetDisablePasswordReset gets a reference to the given bool and assigns it to the DisablePasswordReset field.

func (*GetIdentity200Response) SetDisplayName added in v1.0.3

func (o *GetIdentity200Response) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*GetIdentity200Response) SetEmail added in v1.0.3

func (o *GetIdentity200Response) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*GetIdentity200Response) SetEmployeeNumber added in v1.0.3

func (o *GetIdentity200Response) SetEmployeeNumber(v map[string]interface{})

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

func (*GetIdentity200Response) SetEnabled added in v1.0.3

func (o *GetIdentity200Response) SetEnabled(v bool)

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

func (*GetIdentity200Response) SetEncryptionCheck added in v1.0.3

func (o *GetIdentity200Response) SetEncryptionCheck(v map[string]interface{})

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

func (*GetIdentity200Response) SetEncryptionKey added in v1.0.3

func (o *GetIdentity200Response) SetEncryptionKey(v map[string]interface{})

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

func (*GetIdentity200Response) SetExternalId added in v1.0.3

func (o *GetIdentity200Response) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*GetIdentity200Response) SetFeature added in v1.0.3

func (o *GetIdentity200Response) SetFeature(v []string)

SetFeature gets a reference to the given []string and assigns it to the Feature field.

func (*GetIdentity200Response) SetFeatureFlags added in v1.0.3

func (o *GetIdentity200Response) SetFeatureFlags(v map[string]interface{})

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

func (*GetIdentity200Response) SetFederatedLogin added in v1.0.3

func (o *GetIdentity200Response) SetFederatedLogin(v bool)

SetFederatedLogin gets a reference to the given bool and assigns it to the FederatedLogin field.

func (*GetIdentity200Response) SetId added in v1.0.3

func (o *GetIdentity200Response) SetId(v string)

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

func (*GetIdentity200Response) SetKbaAnswers added in v1.0.3

func (o *GetIdentity200Response) SetKbaAnswers(v float32)

SetKbaAnswers gets a reference to the given float32 and assigns it to the KbaAnswers field.

func (*GetIdentity200Response) SetLoginUrl added in v1.0.3

func (o *GetIdentity200Response) SetLoginUrl(v string)

SetLoginUrl gets a reference to the given string and assigns it to the LoginUrl field.

func (*GetIdentity200Response) SetMeta added in v1.0.3

func (o *GetIdentity200Response) SetMeta(v map[string]interface{})

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

func (*GetIdentity200Response) SetName added in v1.0.3

func (o *GetIdentity200Response) SetName(v string)

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

func (*GetIdentity200Response) SetOnNetwork added in v1.0.3

func (o *GetIdentity200Response) SetOnNetwork(v bool)

SetOnNetwork gets a reference to the given bool and assigns it to the OnNetwork field.

func (*GetIdentity200Response) SetOnTrustedGeo added in v1.0.3

func (o *GetIdentity200Response) SetOnTrustedGeo(v bool)

SetOnTrustedGeo gets a reference to the given bool and assigns it to the OnTrustedGeo field.

func (*GetIdentity200Response) SetOrg added in v1.0.3

SetOrg gets a reference to the given GetIdentity200ResponseOrg and assigns it to the Org field.

func (*GetIdentity200Response) SetOrgEncryptionKey added in v1.0.3

func (o *GetIdentity200Response) SetOrgEncryptionKey(v string)

SetOrgEncryptionKey gets a reference to the given string and assigns it to the OrgEncryptionKey field.

func (*GetIdentity200Response) SetOrgEncryptionKeyId added in v1.0.3

func (o *GetIdentity200Response) SetOrgEncryptionKeyId(v string)

SetOrgEncryptionKeyId gets a reference to the given string and assigns it to the OrgEncryptionKeyId field.

func (*GetIdentity200Response) SetPasswordResetSinceLastLogin added in v1.0.3

func (o *GetIdentity200Response) SetPasswordResetSinceLastLogin(v bool)

SetPasswordResetSinceLastLogin gets a reference to the given bool and assigns it to the PasswordResetSinceLastLogin field.

func (*GetIdentity200Response) SetPending added in v1.0.3

func (o *GetIdentity200Response) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*GetIdentity200Response) SetPersonalEmail added in v1.0.3

func (o *GetIdentity200Response) SetPersonalEmail(v map[string]interface{})

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

func (*GetIdentity200Response) SetPhone added in v1.0.3

func (o *GetIdentity200Response) SetPhone(v map[string]interface{})

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

func (*GetIdentity200Response) SetPtaSourceId added in v1.0.3

func (o *GetIdentity200Response) SetPtaSourceId(v map[string]interface{})

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

func (*GetIdentity200Response) SetRiskScore added in v1.0.3

func (o *GetIdentity200Response) SetRiskScore(v float32)

SetRiskScore gets a reference to the given float32 and assigns it to the RiskScore field.

func (*GetIdentity200Response) SetRole added in v1.0.3

func (o *GetIdentity200Response) SetRole(v []map[string]interface{})

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

func (*GetIdentity200Response) SetStatus added in v1.0.3

func (o *GetIdentity200Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetIdentity200Response) SetStepUpAuth added in v1.0.3

func (o *GetIdentity200Response) SetStepUpAuth(v bool)

SetStepUpAuth gets a reference to the given bool and assigns it to the StepUpAuth field.

func (*GetIdentity200Response) SetSupportsPasswordPush added in v1.0.3

func (o *GetIdentity200Response) SetSupportsPasswordPush(v bool)

SetSupportsPasswordPush gets a reference to the given bool and assigns it to the SupportsPasswordPush field.

func (*GetIdentity200Response) SetUid added in v1.0.3

func (o *GetIdentity200Response) SetUid(v string)

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

func (*GetIdentity200Response) SetUsageCertAttested added in v1.0.3

func (o *GetIdentity200Response) SetUsageCertAttested(v map[string]interface{})

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

func (*GetIdentity200Response) SetUserFlags added in v1.0.3

func (o *GetIdentity200Response) SetUserFlags(v map[string]interface{})

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

func (*GetIdentity200Response) SetUuid added in v1.0.3

func (o *GetIdentity200Response) SetUuid(v string)

SetUuid gets a reference to the given string and assigns it to the Uuid field.

func (GetIdentity200Response) ToMap added in v1.0.3

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

func (*GetIdentity200Response) UnmarshalJSON added in v1.0.3

func (o *GetIdentity200Response) UnmarshalJSON(bytes []byte) (err error)

type GetIdentity200ResponseAuth added in v1.0.3

type GetIdentity200ResponseAuth struct {
	Service              *string `json:"service,omitempty"`
	Encryption           *string `json:"encryption,omitempty"`
	AdditionalProperties map[string]interface{}
}

GetIdentity200ResponseAuth struct for GetIdentity200ResponseAuth

func NewGetIdentity200ResponseAuth added in v1.0.3

func NewGetIdentity200ResponseAuth() *GetIdentity200ResponseAuth

NewGetIdentity200ResponseAuth instantiates a new GetIdentity200ResponseAuth 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 NewGetIdentity200ResponseAuthWithDefaults added in v1.0.3

func NewGetIdentity200ResponseAuthWithDefaults() *GetIdentity200ResponseAuth

NewGetIdentity200ResponseAuthWithDefaults instantiates a new GetIdentity200ResponseAuth 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 (*GetIdentity200ResponseAuth) GetEncryption added in v1.0.3

func (o *GetIdentity200ResponseAuth) GetEncryption() string

GetEncryption returns the Encryption field value if set, zero value otherwise.

func (*GetIdentity200ResponseAuth) GetEncryptionOk added in v1.0.3

func (o *GetIdentity200ResponseAuth) GetEncryptionOk() (*string, bool)

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

func (*GetIdentity200ResponseAuth) GetService added in v1.0.3

func (o *GetIdentity200ResponseAuth) GetService() string

GetService returns the Service field value if set, zero value otherwise.

func (*GetIdentity200ResponseAuth) GetServiceOk added in v1.0.3

func (o *GetIdentity200ResponseAuth) GetServiceOk() (*string, bool)

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

func (*GetIdentity200ResponseAuth) HasEncryption added in v1.0.3

func (o *GetIdentity200ResponseAuth) HasEncryption() bool

HasEncryption returns a boolean if a field has been set.

func (*GetIdentity200ResponseAuth) HasService added in v1.0.3

func (o *GetIdentity200ResponseAuth) HasService() bool

HasService returns a boolean if a field has been set.

func (GetIdentity200ResponseAuth) MarshalJSON added in v1.0.3

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

func (*GetIdentity200ResponseAuth) SetEncryption added in v1.0.3

func (o *GetIdentity200ResponseAuth) SetEncryption(v string)

SetEncryption gets a reference to the given string and assigns it to the Encryption field.

func (*GetIdentity200ResponseAuth) SetService added in v1.0.3

func (o *GetIdentity200ResponseAuth) SetService(v string)

SetService gets a reference to the given string and assigns it to the Service field.

func (GetIdentity200ResponseAuth) ToMap added in v1.0.3

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

func (*GetIdentity200ResponseAuth) UnmarshalJSON added in v1.0.3

func (o *GetIdentity200ResponseAuth) UnmarshalJSON(bytes []byte) (err error)

type GetIdentity200ResponseOrg added in v1.0.3

type GetIdentity200ResponseOrg struct {
	Name                              *string                  `json:"name,omitempty"`
	ScriptName                        *string                  `json:"scriptName,omitempty"`
	Mode                              *string                  `json:"mode,omitempty"`
	NumQuestions                      *float32                 `json:"numQuestions,omitempty"`
	Status                            *string                  `json:"status,omitempty"`
	MaxRegisteredUsers                *float32                 `json:"maxRegisteredUsers,omitempty"`
	Pod                               *string                  `json:"pod,omitempty"`
	PwdResetPersonalPhone             *bool                    `json:"pwdResetPersonalPhone,omitempty"`
	PwdResetPersonalEmail             *bool                    `json:"pwdResetPersonalEmail,omitempty"`
	PwdResetKba                       *bool                    `json:"pwdResetKba,omitempty"`
	PwdResetEmail                     *bool                    `json:"pwdResetEmail,omitempty"`
	PwdResetDuo                       *bool                    `json:"pwdResetDuo,omitempty"`
	PwdResetPhoneMask                 *bool                    `json:"pwdResetPhoneMask,omitempty"`
	AuthErrorText                     map[string]interface{}   `json:"authErrorText,omitempty"`
	StrongAuthKba                     *bool                    `json:"strongAuthKba,omitempty"`
	StrongAuthPersonalPhone           *bool                    `json:"strongAuthPersonalPhone,omitempty"`
	StrongAuthPersonalEmail           *bool                    `json:"strongAuthPersonalEmail,omitempty"`
	Integrations                      []map[string]interface{} `json:"integrations,omitempty"`
	ProductName                       *string                  `json:"productName,omitempty"`
	KbaReqForAuthn                    *float32                 `json:"kbaReqForAuthn,omitempty"`
	KbaReqAnswers                     *float32                 `json:"kbaReqAnswers,omitempty"`
	LockoutAttemptThreshold           *float32                 `json:"lockoutAttemptThreshold,omitempty"`
	LockoutTimeMinutes                *float32                 `json:"lockoutTimeMinutes,omitempty"`
	UsageCertRequired                 *bool                    `json:"usageCertRequired,omitempty"`
	AdminStrongAuthRequired           *bool                    `json:"adminStrongAuthRequired,omitempty"`
	EnableExternalPasswordChange      *bool                    `json:"enableExternalPasswordChange,omitempty"`
	EnablePasswordReplay              *bool                    `json:"enablePasswordReplay,omitempty"`
	EnableAutomaticPasswordReplay     *bool                    `json:"enableAutomaticPasswordReplay,omitempty"`
	NotifyAuthenticationSettingChange *bool                    `json:"notifyAuthenticationSettingChange,omitempty"`
	Netmasks                          map[string]interface{}   `json:"netmasks,omitempty"`
	CountryCodes                      map[string]interface{}   `json:"countryCodes,omitempty"`
	WhiteList                         *bool                    `json:"whiteList,omitempty"`
	UsernameEmptyText                 map[string]interface{}   `json:"usernameEmptyText,omitempty"`
	UsernameLabel                     map[string]interface{}   `json:"usernameLabel,omitempty"`
	EnableAutomationGeneration        *bool                    `json:"enableAutomationGeneration,omitempty"`
	EmailTestMode                     *bool                    `json:"emailTestMode,omitempty"`
	EmailTestAddress                  *string                  `json:"emailTestAddress,omitempty"`
	OrgType                           *string                  `json:"orgType,omitempty"`
	PasswordReplayState               *string                  `json:"passwordReplayState,omitempty"`
	SystemNotificationConfig          *string                  `json:"systemNotificationConfig,omitempty"`
	RedirectPatterns                  *string                  `json:"redirectPatterns,omitempty"`
	MaxClusterDebugHours              *string                  `json:"maxClusterDebugHours,omitempty"`
	BrandName                         *string                  `json:"brandName,omitempty"`
	EmailFromAddress                  map[string]interface{}   `json:"emailFromAddress,omitempty"`
	StandardLogoUrl                   map[string]interface{}   `json:"standardLogoUrl,omitempty"`
	NarrowLogoUrl                     map[string]interface{}   `json:"narrowLogoUrl,omitempty"`
	ActionButtonColor                 *string                  `json:"actionButtonColor,omitempty"`
	ActiveLinkColor                   *string                  `json:"activeLinkColor,omitempty"`
	NavigationColor                   *string                  `json:"navigationColor,omitempty"`
	AdditionalProperties              map[string]interface{}
}

GetIdentity200ResponseOrg struct for GetIdentity200ResponseOrg

func NewGetIdentity200ResponseOrg added in v1.0.3

func NewGetIdentity200ResponseOrg() *GetIdentity200ResponseOrg

NewGetIdentity200ResponseOrg instantiates a new GetIdentity200ResponseOrg 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 NewGetIdentity200ResponseOrgWithDefaults added in v1.0.3

func NewGetIdentity200ResponseOrgWithDefaults() *GetIdentity200ResponseOrg

NewGetIdentity200ResponseOrgWithDefaults instantiates a new GetIdentity200ResponseOrg 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 (*GetIdentity200ResponseOrg) GetActionButtonColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetActionButtonColor() string

GetActionButtonColor returns the ActionButtonColor field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetActionButtonColorOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetActionButtonColorOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetActiveLinkColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetActiveLinkColor() string

GetActiveLinkColor returns the ActiveLinkColor field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetActiveLinkColorOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetActiveLinkColorOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetAdminStrongAuthRequired added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetAdminStrongAuthRequired() bool

GetAdminStrongAuthRequired returns the AdminStrongAuthRequired field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetAdminStrongAuthRequiredOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetAdminStrongAuthRequiredOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetAuthErrorText added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetAuthErrorText() map[string]interface{}

GetAuthErrorText returns the AuthErrorText field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetAuthErrorTextOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetAuthErrorTextOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetBrandName added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetBrandName() string

GetBrandName returns the BrandName field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetBrandNameOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetBrandNameOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetCountryCodes added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetCountryCodes() map[string]interface{}

GetCountryCodes returns the CountryCodes field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetCountryCodesOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetCountryCodesOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetEmailFromAddress added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEmailFromAddress() map[string]interface{}

GetEmailFromAddress returns the EmailFromAddress field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetEmailFromAddressOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEmailFromAddressOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetEmailTestAddress added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEmailTestAddress() string

GetEmailTestAddress returns the EmailTestAddress field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetEmailTestAddressOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEmailTestAddressOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetEmailTestMode added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEmailTestMode() bool

GetEmailTestMode returns the EmailTestMode field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetEmailTestModeOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEmailTestModeOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetEnableAutomaticPasswordReplay added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEnableAutomaticPasswordReplay() bool

GetEnableAutomaticPasswordReplay returns the EnableAutomaticPasswordReplay field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetEnableAutomaticPasswordReplayOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEnableAutomaticPasswordReplayOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetEnableAutomationGeneration added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEnableAutomationGeneration() bool

GetEnableAutomationGeneration returns the EnableAutomationGeneration field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetEnableAutomationGenerationOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEnableAutomationGenerationOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetEnableExternalPasswordChange added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEnableExternalPasswordChange() bool

GetEnableExternalPasswordChange returns the EnableExternalPasswordChange field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetEnableExternalPasswordChangeOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEnableExternalPasswordChangeOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetEnablePasswordReplay added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEnablePasswordReplay() bool

GetEnablePasswordReplay returns the EnablePasswordReplay field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetEnablePasswordReplayOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetEnablePasswordReplayOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetIntegrations added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetIntegrations() []map[string]interface{}

GetIntegrations returns the Integrations field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetIntegrationsOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetIntegrationsOk() ([]map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetKbaReqAnswers added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetKbaReqAnswers() float32

GetKbaReqAnswers returns the KbaReqAnswers field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetKbaReqAnswersOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetKbaReqAnswersOk() (*float32, bool)

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

func (*GetIdentity200ResponseOrg) GetKbaReqForAuthn added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetKbaReqForAuthn() float32

GetKbaReqForAuthn returns the KbaReqForAuthn field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetKbaReqForAuthnOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetKbaReqForAuthnOk() (*float32, bool)

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

func (*GetIdentity200ResponseOrg) GetLockoutAttemptThreshold added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetLockoutAttemptThreshold() float32

GetLockoutAttemptThreshold returns the LockoutAttemptThreshold field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetLockoutAttemptThresholdOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetLockoutAttemptThresholdOk() (*float32, bool)

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

func (*GetIdentity200ResponseOrg) GetLockoutTimeMinutes added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetLockoutTimeMinutes() float32

GetLockoutTimeMinutes returns the LockoutTimeMinutes field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetLockoutTimeMinutesOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetLockoutTimeMinutesOk() (*float32, bool)

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

func (o *GetIdentity200ResponseOrg) GetLogo() map[string]interface{}

GetLogo returns the Logo field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetLogoOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetLogoOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetMaxClusterDebugHours added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetMaxClusterDebugHours() string

GetMaxClusterDebugHours returns the MaxClusterDebugHours field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetMaxClusterDebugHoursOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetMaxClusterDebugHoursOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetMaxRegisteredUsers added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetMaxRegisteredUsers() float32

GetMaxRegisteredUsers returns the MaxRegisteredUsers field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetMaxRegisteredUsersOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetMaxRegisteredUsersOk() (*float32, bool)

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

func (*GetIdentity200ResponseOrg) GetMode added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetModeOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetModeOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetName added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetName() string

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

func (*GetIdentity200ResponseOrg) GetNameOk added in v1.0.3

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

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

func (*GetIdentity200ResponseOrg) GetNarrowLogoUrl added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNarrowLogoUrl() map[string]interface{}

GetNarrowLogoUrl returns the NarrowLogoUrl field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetNarrowLogoUrlOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNarrowLogoUrlOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetNavigationColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNavigationColor() string

GetNavigationColor returns the NavigationColor field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetNavigationColorOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNavigationColorOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetNetmasks added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNetmasks() map[string]interface{}

GetNetmasks returns the Netmasks field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetNetmasksOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNetmasksOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetNotifyAuthenticationSettingChange added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNotifyAuthenticationSettingChange() bool

GetNotifyAuthenticationSettingChange returns the NotifyAuthenticationSettingChange field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetNotifyAuthenticationSettingChangeOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNotifyAuthenticationSettingChangeOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetNumQuestions added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNumQuestions() float32

GetNumQuestions returns the NumQuestions field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetNumQuestionsOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetNumQuestionsOk() (*float32, bool)

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

func (*GetIdentity200ResponseOrg) GetOrgType added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetOrgType() string

GetOrgType returns the OrgType field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetOrgTypeOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetOrgTypeOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetPasswordReplayState added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPasswordReplayState() string

GetPasswordReplayState returns the PasswordReplayState field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetPasswordReplayStateOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPasswordReplayStateOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetPod added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPod() string

GetPod returns the Pod field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetPodOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPodOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetProductName added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetProductName() string

GetProductName returns the ProductName field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetProductNameOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetProductNameOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetPwdResetDuo added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetDuo() bool

GetPwdResetDuo returns the PwdResetDuo field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetPwdResetDuoOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetDuoOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetPwdResetEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetEmail() bool

GetPwdResetEmail returns the PwdResetEmail field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetPwdResetEmailOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetEmailOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetPwdResetKba added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetKba() bool

GetPwdResetKba returns the PwdResetKba field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetPwdResetKbaOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetKbaOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetPwdResetPersonalEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetPersonalEmail() bool

GetPwdResetPersonalEmail returns the PwdResetPersonalEmail field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetPwdResetPersonalEmailOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetPersonalEmailOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetPwdResetPersonalPhone added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetPersonalPhone() bool

GetPwdResetPersonalPhone returns the PwdResetPersonalPhone field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetPwdResetPersonalPhoneOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetPersonalPhoneOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetPwdResetPhoneMask added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetPhoneMask() bool

GetPwdResetPhoneMask returns the PwdResetPhoneMask field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetPwdResetPhoneMaskOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetPwdResetPhoneMaskOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetRedirectPatterns added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetRedirectPatterns() string

GetRedirectPatterns returns the RedirectPatterns field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetRedirectPatternsOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetRedirectPatternsOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetScriptName added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetScriptName() string

GetScriptName returns the ScriptName field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetScriptNameOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetScriptNameOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetStandardLogoUrl added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStandardLogoUrl() map[string]interface{}

GetStandardLogoUrl returns the StandardLogoUrl field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetStandardLogoUrlOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStandardLogoUrlOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetStatus added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetStatusOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStatusOk() (*string, 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 (*GetIdentity200ResponseOrg) GetStrongAuthKba added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStrongAuthKba() bool

GetStrongAuthKba returns the StrongAuthKba field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetStrongAuthKbaOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStrongAuthKbaOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetStrongAuthPersonalEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStrongAuthPersonalEmail() bool

GetStrongAuthPersonalEmail returns the StrongAuthPersonalEmail field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetStrongAuthPersonalEmailOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStrongAuthPersonalEmailOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetStrongAuthPersonalPhone added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStrongAuthPersonalPhone() bool

GetStrongAuthPersonalPhone returns the StrongAuthPersonalPhone field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetStrongAuthPersonalPhoneOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetStrongAuthPersonalPhoneOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetSystemNotificationConfig added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetSystemNotificationConfig() string

GetSystemNotificationConfig returns the SystemNotificationConfig field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetSystemNotificationConfigOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetSystemNotificationConfigOk() (*string, bool)

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

func (*GetIdentity200ResponseOrg) GetUsageCertRequired added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetUsageCertRequired() bool

GetUsageCertRequired returns the UsageCertRequired field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetUsageCertRequiredOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetUsageCertRequiredOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) GetUsernameEmptyText added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetUsernameEmptyText() map[string]interface{}

GetUsernameEmptyText returns the UsernameEmptyText field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetUsernameEmptyTextOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetUsernameEmptyTextOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetUsernameLabel added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetUsernameLabel() map[string]interface{}

GetUsernameLabel returns the UsernameLabel field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetUsernameLabelOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetUsernameLabelOk() (map[string]interface{}, bool)

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

func (*GetIdentity200ResponseOrg) GetWhiteList added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetWhiteList() bool

GetWhiteList returns the WhiteList field value if set, zero value otherwise.

func (*GetIdentity200ResponseOrg) GetWhiteListOk added in v1.0.3

func (o *GetIdentity200ResponseOrg) GetWhiteListOk() (*bool, bool)

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

func (*GetIdentity200ResponseOrg) HasActionButtonColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasActionButtonColor() bool

HasActionButtonColor returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasActiveLinkColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasActiveLinkColor() bool

HasActiveLinkColor returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasAdminStrongAuthRequired added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasAdminStrongAuthRequired() bool

HasAdminStrongAuthRequired returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasAuthErrorText added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasAuthErrorText() bool

HasAuthErrorText returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasBrandName added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasBrandName() bool

HasBrandName returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasCountryCodes added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasCountryCodes() bool

HasCountryCodes returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasEmailFromAddress added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasEmailFromAddress() bool

HasEmailFromAddress returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasEmailTestAddress added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasEmailTestAddress() bool

HasEmailTestAddress returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasEmailTestMode added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasEmailTestMode() bool

HasEmailTestMode returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasEnableAutomaticPasswordReplay added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasEnableAutomaticPasswordReplay() bool

HasEnableAutomaticPasswordReplay returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasEnableAutomationGeneration added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasEnableAutomationGeneration() bool

HasEnableAutomationGeneration returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasEnableExternalPasswordChange added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasEnableExternalPasswordChange() bool

HasEnableExternalPasswordChange returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasEnablePasswordReplay added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasEnablePasswordReplay() bool

HasEnablePasswordReplay returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasIntegrations added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasIntegrations() bool

HasIntegrations returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasKbaReqAnswers added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasKbaReqAnswers() bool

HasKbaReqAnswers returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasKbaReqForAuthn added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasKbaReqForAuthn() bool

HasKbaReqForAuthn returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasLockoutAttemptThreshold added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasLockoutAttemptThreshold() bool

HasLockoutAttemptThreshold returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasLockoutTimeMinutes added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasLockoutTimeMinutes() bool

HasLockoutTimeMinutes returns a boolean if a field has been set.

func (o *GetIdentity200ResponseOrg) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasMaxClusterDebugHours added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasMaxClusterDebugHours() bool

HasMaxClusterDebugHours returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasMaxRegisteredUsers added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasMaxRegisteredUsers() bool

HasMaxRegisteredUsers returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasMode added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasName added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasNarrowLogoUrl added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasNarrowLogoUrl() bool

HasNarrowLogoUrl returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasNavigationColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasNavigationColor() bool

HasNavigationColor returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasNetmasks added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasNetmasks() bool

HasNetmasks returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasNotifyAuthenticationSettingChange added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasNotifyAuthenticationSettingChange() bool

HasNotifyAuthenticationSettingChange returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasNumQuestions added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasNumQuestions() bool

HasNumQuestions returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasOrgType added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasOrgType() bool

HasOrgType returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasPasswordReplayState added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasPasswordReplayState() bool

HasPasswordReplayState returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasPod added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasPod() bool

HasPod returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasProductName added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasProductName() bool

HasProductName returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasPwdResetDuo added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasPwdResetDuo() bool

HasPwdResetDuo returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasPwdResetEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasPwdResetEmail() bool

HasPwdResetEmail returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasPwdResetKba added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasPwdResetKba() bool

HasPwdResetKba returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasPwdResetPersonalEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasPwdResetPersonalEmail() bool

HasPwdResetPersonalEmail returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasPwdResetPersonalPhone added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasPwdResetPersonalPhone() bool

HasPwdResetPersonalPhone returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasPwdResetPhoneMask added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasPwdResetPhoneMask() bool

HasPwdResetPhoneMask returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasRedirectPatterns added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasRedirectPatterns() bool

HasRedirectPatterns returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasScriptName added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasScriptName() bool

HasScriptName returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasStandardLogoUrl added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasStandardLogoUrl() bool

HasStandardLogoUrl returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasStatus added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasStrongAuthKba added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasStrongAuthKba() bool

HasStrongAuthKba returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasStrongAuthPersonalEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasStrongAuthPersonalEmail() bool

HasStrongAuthPersonalEmail returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasStrongAuthPersonalPhone added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasStrongAuthPersonalPhone() bool

HasStrongAuthPersonalPhone returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasSystemNotificationConfig added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasSystemNotificationConfig() bool

HasSystemNotificationConfig returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasUsageCertRequired added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasUsageCertRequired() bool

HasUsageCertRequired returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasUsernameEmptyText added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasUsernameEmptyText() bool

HasUsernameEmptyText returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasUsernameLabel added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasUsernameLabel() bool

HasUsernameLabel returns a boolean if a field has been set.

func (*GetIdentity200ResponseOrg) HasWhiteList added in v1.0.3

func (o *GetIdentity200ResponseOrg) HasWhiteList() bool

HasWhiteList returns a boolean if a field has been set.

func (GetIdentity200ResponseOrg) MarshalJSON added in v1.0.3

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

func (*GetIdentity200ResponseOrg) SetActionButtonColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetActionButtonColor(v string)

SetActionButtonColor gets a reference to the given string and assigns it to the ActionButtonColor field.

func (*GetIdentity200ResponseOrg) SetActiveLinkColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetActiveLinkColor(v string)

SetActiveLinkColor gets a reference to the given string and assigns it to the ActiveLinkColor field.

func (*GetIdentity200ResponseOrg) SetAdminStrongAuthRequired added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetAdminStrongAuthRequired(v bool)

SetAdminStrongAuthRequired gets a reference to the given bool and assigns it to the AdminStrongAuthRequired field.

func (*GetIdentity200ResponseOrg) SetAuthErrorText added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetAuthErrorText(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetBrandName added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetBrandName(v string)

SetBrandName gets a reference to the given string and assigns it to the BrandName field.

func (*GetIdentity200ResponseOrg) SetCountryCodes added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetCountryCodes(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetEmailFromAddress added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetEmailFromAddress(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetEmailTestAddress added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetEmailTestAddress(v string)

SetEmailTestAddress gets a reference to the given string and assigns it to the EmailTestAddress field.

func (*GetIdentity200ResponseOrg) SetEmailTestMode added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetEmailTestMode(v bool)

SetEmailTestMode gets a reference to the given bool and assigns it to the EmailTestMode field.

func (*GetIdentity200ResponseOrg) SetEnableAutomaticPasswordReplay added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetEnableAutomaticPasswordReplay(v bool)

SetEnableAutomaticPasswordReplay gets a reference to the given bool and assigns it to the EnableAutomaticPasswordReplay field.

func (*GetIdentity200ResponseOrg) SetEnableAutomationGeneration added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetEnableAutomationGeneration(v bool)

SetEnableAutomationGeneration gets a reference to the given bool and assigns it to the EnableAutomationGeneration field.

func (*GetIdentity200ResponseOrg) SetEnableExternalPasswordChange added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetEnableExternalPasswordChange(v bool)

SetEnableExternalPasswordChange gets a reference to the given bool and assigns it to the EnableExternalPasswordChange field.

func (*GetIdentity200ResponseOrg) SetEnablePasswordReplay added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetEnablePasswordReplay(v bool)

SetEnablePasswordReplay gets a reference to the given bool and assigns it to the EnablePasswordReplay field.

func (*GetIdentity200ResponseOrg) SetIntegrations added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetIntegrations(v []map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetKbaReqAnswers added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetKbaReqAnswers(v float32)

SetKbaReqAnswers gets a reference to the given float32 and assigns it to the KbaReqAnswers field.

func (*GetIdentity200ResponseOrg) SetKbaReqForAuthn added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetKbaReqForAuthn(v float32)

SetKbaReqForAuthn gets a reference to the given float32 and assigns it to the KbaReqForAuthn field.

func (*GetIdentity200ResponseOrg) SetLockoutAttemptThreshold added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetLockoutAttemptThreshold(v float32)

SetLockoutAttemptThreshold gets a reference to the given float32 and assigns it to the LockoutAttemptThreshold field.

func (*GetIdentity200ResponseOrg) SetLockoutTimeMinutes added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetLockoutTimeMinutes(v float32)

SetLockoutTimeMinutes gets a reference to the given float32 and assigns it to the LockoutTimeMinutes field.

func (o *GetIdentity200ResponseOrg) SetLogo(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetMaxClusterDebugHours added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetMaxClusterDebugHours(v string)

SetMaxClusterDebugHours gets a reference to the given string and assigns it to the MaxClusterDebugHours field.

func (*GetIdentity200ResponseOrg) SetMaxRegisteredUsers added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetMaxRegisteredUsers(v float32)

SetMaxRegisteredUsers gets a reference to the given float32 and assigns it to the MaxRegisteredUsers field.

func (*GetIdentity200ResponseOrg) SetMode added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*GetIdentity200ResponseOrg) SetName added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetName(v string)

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

func (*GetIdentity200ResponseOrg) SetNarrowLogoUrl added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetNarrowLogoUrl(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetNavigationColor added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetNavigationColor(v string)

SetNavigationColor gets a reference to the given string and assigns it to the NavigationColor field.

func (*GetIdentity200ResponseOrg) SetNetmasks added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetNetmasks(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetNotifyAuthenticationSettingChange added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetNotifyAuthenticationSettingChange(v bool)

SetNotifyAuthenticationSettingChange gets a reference to the given bool and assigns it to the NotifyAuthenticationSettingChange field.

func (*GetIdentity200ResponseOrg) SetNumQuestions added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetNumQuestions(v float32)

SetNumQuestions gets a reference to the given float32 and assigns it to the NumQuestions field.

func (*GetIdentity200ResponseOrg) SetOrgType added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetOrgType(v string)

SetOrgType gets a reference to the given string and assigns it to the OrgType field.

func (*GetIdentity200ResponseOrg) SetPasswordReplayState added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetPasswordReplayState(v string)

SetPasswordReplayState gets a reference to the given string and assigns it to the PasswordReplayState field.

func (*GetIdentity200ResponseOrg) SetPod added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetPod(v string)

SetPod gets a reference to the given string and assigns it to the Pod field.

func (*GetIdentity200ResponseOrg) SetProductName added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetProductName(v string)

SetProductName gets a reference to the given string and assigns it to the ProductName field.

func (*GetIdentity200ResponseOrg) SetPwdResetDuo added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetPwdResetDuo(v bool)

SetPwdResetDuo gets a reference to the given bool and assigns it to the PwdResetDuo field.

func (*GetIdentity200ResponseOrg) SetPwdResetEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetPwdResetEmail(v bool)

SetPwdResetEmail gets a reference to the given bool and assigns it to the PwdResetEmail field.

func (*GetIdentity200ResponseOrg) SetPwdResetKba added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetPwdResetKba(v bool)

SetPwdResetKba gets a reference to the given bool and assigns it to the PwdResetKba field.

func (*GetIdentity200ResponseOrg) SetPwdResetPersonalEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetPwdResetPersonalEmail(v bool)

SetPwdResetPersonalEmail gets a reference to the given bool and assigns it to the PwdResetPersonalEmail field.

func (*GetIdentity200ResponseOrg) SetPwdResetPersonalPhone added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetPwdResetPersonalPhone(v bool)

SetPwdResetPersonalPhone gets a reference to the given bool and assigns it to the PwdResetPersonalPhone field.

func (*GetIdentity200ResponseOrg) SetPwdResetPhoneMask added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetPwdResetPhoneMask(v bool)

SetPwdResetPhoneMask gets a reference to the given bool and assigns it to the PwdResetPhoneMask field.

func (*GetIdentity200ResponseOrg) SetRedirectPatterns added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetRedirectPatterns(v string)

SetRedirectPatterns gets a reference to the given string and assigns it to the RedirectPatterns field.

func (*GetIdentity200ResponseOrg) SetScriptName added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetScriptName(v string)

SetScriptName gets a reference to the given string and assigns it to the ScriptName field.

func (*GetIdentity200ResponseOrg) SetStandardLogoUrl added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetStandardLogoUrl(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetStatus added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetIdentity200ResponseOrg) SetStrongAuthKba added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetStrongAuthKba(v bool)

SetStrongAuthKba gets a reference to the given bool and assigns it to the StrongAuthKba field.

func (*GetIdentity200ResponseOrg) SetStrongAuthPersonalEmail added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetStrongAuthPersonalEmail(v bool)

SetStrongAuthPersonalEmail gets a reference to the given bool and assigns it to the StrongAuthPersonalEmail field.

func (*GetIdentity200ResponseOrg) SetStrongAuthPersonalPhone added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetStrongAuthPersonalPhone(v bool)

SetStrongAuthPersonalPhone gets a reference to the given bool and assigns it to the StrongAuthPersonalPhone field.

func (*GetIdentity200ResponseOrg) SetSystemNotificationConfig added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetSystemNotificationConfig(v string)

SetSystemNotificationConfig gets a reference to the given string and assigns it to the SystemNotificationConfig field.

func (*GetIdentity200ResponseOrg) SetUsageCertRequired added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetUsageCertRequired(v bool)

SetUsageCertRequired gets a reference to the given bool and assigns it to the UsageCertRequired field.

func (*GetIdentity200ResponseOrg) SetUsernameEmptyText added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetUsernameEmptyText(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetUsernameLabel added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetUsernameLabel(v map[string]interface{})

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

func (*GetIdentity200ResponseOrg) SetWhiteList added in v1.0.3

func (o *GetIdentity200ResponseOrg) SetWhiteList(v bool)

SetWhiteList gets a reference to the given bool and assigns it to the WhiteList field.

func (GetIdentity200ResponseOrg) ToMap added in v1.0.3

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

func (*GetIdentity200ResponseOrg) UnmarshalJSON added in v1.0.3

func (o *GetIdentity200ResponseOrg) UnmarshalJSON(bytes []byte) (err error)

type ImportConnectorConfigRequest

type ImportConnectorConfigRequest struct {
	// This is the connector config zip bundle which gets uploaded.
	File                 **os.File `json:"file,omitempty"`
	AdditionalProperties map[string]interface{}
}

ImportConnectorConfigRequest struct for ImportConnectorConfigRequest

func NewImportConnectorConfigRequest

func NewImportConnectorConfigRequest() *ImportConnectorConfigRequest

NewImportConnectorConfigRequest instantiates a new ImportConnectorConfigRequest 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 NewImportConnectorConfigRequestWithDefaults

func NewImportConnectorConfigRequestWithDefaults() *ImportConnectorConfigRequest

NewImportConnectorConfigRequestWithDefaults instantiates a new ImportConnectorConfigRequest 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 (*ImportConnectorConfigRequest) GetFile

func (o *ImportConnectorConfigRequest) GetFile() *os.File

GetFile returns the File field value if set, zero value otherwise.

func (*ImportConnectorConfigRequest) GetFileOk

func (o *ImportConnectorConfigRequest) GetFileOk() (**os.File, bool)

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

func (*ImportConnectorConfigRequest) HasFile

func (o *ImportConnectorConfigRequest) HasFile() bool

HasFile returns a boolean if a field has been set.

func (ImportConnectorConfigRequest) MarshalJSON

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

func (*ImportConnectorConfigRequest) SetFile

func (o *ImportConnectorConfigRequest) SetFile(v *os.File)

SetFile gets a reference to the given *os.File and assigns it to the File field.

func (ImportConnectorConfigRequest) ToMap added in v1.0.3

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

func (*ImportConnectorConfigRequest) UnmarshalJSON

func (o *ImportConnectorConfigRequest) UnmarshalJSON(bytes []byte) (err error)

type ListAccounts200ResponseInner added in v1.2.0

type ListAccounts200ResponseInner struct {
	Id                       *string                                           `json:"id,omitempty"`
	Type                     *string                                           `json:"type,omitempty"`
	DisplayName              *string                                           `json:"displayName,omitempty"`
	Username                 *string                                           `json:"username,omitempty"`
	PasswordRequired         *bool                                             `json:"passwordRequired,omitempty"`
	PasswordProvided         *bool                                             `json:"passwordProvided,omitempty"`
	Apps                     []map[string]interface{}                          `json:"apps,omitempty"`
	SsoMethod                *string                                           `json:"ssoMethod,omitempty"`
	IdEncryption             *string                                           `json:"idEncryption,omitempty"`
	PasswordEncryption       *string                                           `json:"passwordEncryption,omitempty"`
	LastPasswdChange         NullableString                                    `json:"lastPasswdChange,omitempty"`
	ServiceName              *string                                           `json:"serviceName,omitempty"`
	DateDisabled             NullableString                                    `json:"dateDisabled,omitempty"`
	AccountServiceId         *int32                                            `json:"accountServiceId,omitempty"`
	ServiceId                *int32                                            `json:"serviceId,omitempty"`
	PendingPasswordRequestId NullableString                                    `json:"pendingPasswordRequestId,omitempty"`
	PasswordChangeStatus     *string                                           `json:"passwordChangeStatus,omitempty"`
	PasswordChangeResult     *ListAccounts200ResponseInnerPasswordChangeResult `json:"passwordChangeResult,omitempty"`
	AdditionalProperties     map[string]interface{}
}

ListAccounts200ResponseInner struct for ListAccounts200ResponseInner

func NewListAccounts200ResponseInner added in v1.2.0

func NewListAccounts200ResponseInner() *ListAccounts200ResponseInner

NewListAccounts200ResponseInner instantiates a new ListAccounts200ResponseInner 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 NewListAccounts200ResponseInnerWithDefaults added in v1.2.0

func NewListAccounts200ResponseInnerWithDefaults() *ListAccounts200ResponseInner

NewListAccounts200ResponseInnerWithDefaults instantiates a new ListAccounts200ResponseInner 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 (*ListAccounts200ResponseInner) GetAccountServiceId added in v1.2.0

func (o *ListAccounts200ResponseInner) GetAccountServiceId() int32

GetAccountServiceId returns the AccountServiceId field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetAccountServiceIdOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetAccountServiceIdOk() (*int32, bool)

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

func (*ListAccounts200ResponseInner) GetApps added in v1.2.0

func (o *ListAccounts200ResponseInner) GetApps() []map[string]interface{}

GetApps returns the Apps field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetAppsOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetAppsOk() ([]map[string]interface{}, bool)

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

func (*ListAccounts200ResponseInner) GetDateDisabled added in v1.2.0

func (o *ListAccounts200ResponseInner) GetDateDisabled() string

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

func (*ListAccounts200ResponseInner) GetDateDisabledOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetDateDisabledOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) GetDisplayName added in v1.2.0

func (o *ListAccounts200ResponseInner) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetDisplayNameOk added in v1.2.0

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

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

func (*ListAccounts200ResponseInner) GetId added in v1.2.0

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

func (*ListAccounts200ResponseInner) GetIdEncryption added in v1.2.0

func (o *ListAccounts200ResponseInner) GetIdEncryption() string

GetIdEncryption returns the IdEncryption field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetIdEncryptionOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetIdEncryptionOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) GetIdOk added in v1.2.0

func (o *ListAccounts200ResponseInner) 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 (*ListAccounts200ResponseInner) GetLastPasswdChange added in v1.2.0

func (o *ListAccounts200ResponseInner) GetLastPasswdChange() string

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

func (*ListAccounts200ResponseInner) GetLastPasswdChangeOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetLastPasswdChangeOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) GetPasswordChangeResult added in v1.2.0

GetPasswordChangeResult returns the PasswordChangeResult field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetPasswordChangeResultOk added in v1.2.0

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

func (*ListAccounts200ResponseInner) GetPasswordChangeStatus added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPasswordChangeStatus() string

GetPasswordChangeStatus returns the PasswordChangeStatus field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetPasswordChangeStatusOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPasswordChangeStatusOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) GetPasswordEncryption added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPasswordEncryption() string

GetPasswordEncryption returns the PasswordEncryption field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetPasswordEncryptionOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPasswordEncryptionOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) GetPasswordProvided added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPasswordProvided() bool

GetPasswordProvided returns the PasswordProvided field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetPasswordProvidedOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPasswordProvidedOk() (*bool, bool)

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

func (*ListAccounts200ResponseInner) GetPasswordRequired added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPasswordRequired() bool

GetPasswordRequired returns the PasswordRequired field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetPasswordRequiredOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPasswordRequiredOk() (*bool, bool)

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

func (*ListAccounts200ResponseInner) GetPendingPasswordRequestId added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPendingPasswordRequestId() string

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

func (*ListAccounts200ResponseInner) GetPendingPasswordRequestIdOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetPendingPasswordRequestIdOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) GetServiceId added in v1.2.0

func (o *ListAccounts200ResponseInner) GetServiceId() int32

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetServiceIdOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetServiceIdOk() (*int32, bool)

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

func (*ListAccounts200ResponseInner) GetServiceName added in v1.2.0

func (o *ListAccounts200ResponseInner) GetServiceName() string

GetServiceName returns the ServiceName field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetServiceNameOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetServiceNameOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) GetSsoMethod added in v1.2.0

func (o *ListAccounts200ResponseInner) GetSsoMethod() string

GetSsoMethod returns the SsoMethod field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetSsoMethodOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetSsoMethodOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) GetType added in v1.2.0

func (o *ListAccounts200ResponseInner) GetType() string

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

func (*ListAccounts200ResponseInner) GetTypeOk added in v1.2.0

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

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

func (*ListAccounts200ResponseInner) GetUsername added in v1.2.0

func (o *ListAccounts200ResponseInner) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ListAccounts200ResponseInner) GetUsernameOk added in v1.2.0

func (o *ListAccounts200ResponseInner) GetUsernameOk() (*string, bool)

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

func (*ListAccounts200ResponseInner) HasAccountServiceId added in v1.2.0

func (o *ListAccounts200ResponseInner) HasAccountServiceId() bool

HasAccountServiceId returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasApps added in v1.2.0

func (o *ListAccounts200ResponseInner) HasApps() bool

HasApps returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasDateDisabled added in v1.2.0

func (o *ListAccounts200ResponseInner) HasDateDisabled() bool

HasDateDisabled returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasDisplayName added in v1.2.0

func (o *ListAccounts200ResponseInner) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasId added in v1.2.0

HasId returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasIdEncryption added in v1.2.0

func (o *ListAccounts200ResponseInner) HasIdEncryption() bool

HasIdEncryption returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasLastPasswdChange added in v1.2.0

func (o *ListAccounts200ResponseInner) HasLastPasswdChange() bool

HasLastPasswdChange returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasPasswordChangeResult added in v1.2.0

func (o *ListAccounts200ResponseInner) HasPasswordChangeResult() bool

HasPasswordChangeResult returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasPasswordChangeStatus added in v1.2.0

func (o *ListAccounts200ResponseInner) HasPasswordChangeStatus() bool

HasPasswordChangeStatus returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasPasswordEncryption added in v1.2.0

func (o *ListAccounts200ResponseInner) HasPasswordEncryption() bool

HasPasswordEncryption returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasPasswordProvided added in v1.2.0

func (o *ListAccounts200ResponseInner) HasPasswordProvided() bool

HasPasswordProvided returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasPasswordRequired added in v1.2.0

func (o *ListAccounts200ResponseInner) HasPasswordRequired() bool

HasPasswordRequired returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasPendingPasswordRequestId added in v1.2.0

func (o *ListAccounts200ResponseInner) HasPendingPasswordRequestId() bool

HasPendingPasswordRequestId returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasServiceId added in v1.2.0

func (o *ListAccounts200ResponseInner) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasServiceName added in v1.2.0

func (o *ListAccounts200ResponseInner) HasServiceName() bool

HasServiceName returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasSsoMethod added in v1.2.0

func (o *ListAccounts200ResponseInner) HasSsoMethod() bool

HasSsoMethod returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasType added in v1.2.0

func (o *ListAccounts200ResponseInner) HasType() bool

HasType returns a boolean if a field has been set.

func (*ListAccounts200ResponseInner) HasUsername added in v1.2.0

func (o *ListAccounts200ResponseInner) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ListAccounts200ResponseInner) MarshalJSON added in v1.2.0

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

func (*ListAccounts200ResponseInner) SetAccountServiceId added in v1.2.0

func (o *ListAccounts200ResponseInner) SetAccountServiceId(v int32)

SetAccountServiceId gets a reference to the given int32 and assigns it to the AccountServiceId field.

func (*ListAccounts200ResponseInner) SetApps added in v1.2.0

func (o *ListAccounts200ResponseInner) SetApps(v []map[string]interface{})

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

func (*ListAccounts200ResponseInner) SetDateDisabled added in v1.2.0

func (o *ListAccounts200ResponseInner) SetDateDisabled(v string)

SetDateDisabled gets a reference to the given NullableString and assigns it to the DateDisabled field.

func (*ListAccounts200ResponseInner) SetDateDisabledNil added in v1.2.0

func (o *ListAccounts200ResponseInner) SetDateDisabledNil()

SetDateDisabledNil sets the value for DateDisabled to be an explicit nil

func (*ListAccounts200ResponseInner) SetDisplayName added in v1.2.0

func (o *ListAccounts200ResponseInner) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ListAccounts200ResponseInner) SetId added in v1.2.0

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

func (*ListAccounts200ResponseInner) SetIdEncryption added in v1.2.0

func (o *ListAccounts200ResponseInner) SetIdEncryption(v string)

SetIdEncryption gets a reference to the given string and assigns it to the IdEncryption field.

func (*ListAccounts200ResponseInner) SetLastPasswdChange added in v1.2.0

func (o *ListAccounts200ResponseInner) SetLastPasswdChange(v string)

SetLastPasswdChange gets a reference to the given NullableString and assigns it to the LastPasswdChange field.

func (*ListAccounts200ResponseInner) SetLastPasswdChangeNil added in v1.2.0

func (o *ListAccounts200ResponseInner) SetLastPasswdChangeNil()

SetLastPasswdChangeNil sets the value for LastPasswdChange to be an explicit nil

func (*ListAccounts200ResponseInner) SetPasswordChangeResult added in v1.2.0

SetPasswordChangeResult gets a reference to the given ListAccounts200ResponseInnerPasswordChangeResult and assigns it to the PasswordChangeResult field.

func (*ListAccounts200ResponseInner) SetPasswordChangeStatus added in v1.2.0

func (o *ListAccounts200ResponseInner) SetPasswordChangeStatus(v string)

SetPasswordChangeStatus gets a reference to the given string and assigns it to the PasswordChangeStatus field.

func (*ListAccounts200ResponseInner) SetPasswordEncryption added in v1.2.0

func (o *ListAccounts200ResponseInner) SetPasswordEncryption(v string)

SetPasswordEncryption gets a reference to the given string and assigns it to the PasswordEncryption field.

func (*ListAccounts200ResponseInner) SetPasswordProvided added in v1.2.0

func (o *ListAccounts200ResponseInner) SetPasswordProvided(v bool)

SetPasswordProvided gets a reference to the given bool and assigns it to the PasswordProvided field.

func (*ListAccounts200ResponseInner) SetPasswordRequired added in v1.2.0

func (o *ListAccounts200ResponseInner) SetPasswordRequired(v bool)

SetPasswordRequired gets a reference to the given bool and assigns it to the PasswordRequired field.

func (*ListAccounts200ResponseInner) SetPendingPasswordRequestId added in v1.2.0

func (o *ListAccounts200ResponseInner) SetPendingPasswordRequestId(v string)

SetPendingPasswordRequestId gets a reference to the given NullableString and assigns it to the PendingPasswordRequestId field.

func (*ListAccounts200ResponseInner) SetPendingPasswordRequestIdNil added in v1.2.0

func (o *ListAccounts200ResponseInner) SetPendingPasswordRequestIdNil()

SetPendingPasswordRequestIdNil sets the value for PendingPasswordRequestId to be an explicit nil

func (*ListAccounts200ResponseInner) SetServiceId added in v1.2.0

func (o *ListAccounts200ResponseInner) SetServiceId(v int32)

SetServiceId gets a reference to the given int32 and assigns it to the ServiceId field.

func (*ListAccounts200ResponseInner) SetServiceName added in v1.2.0

func (o *ListAccounts200ResponseInner) SetServiceName(v string)

SetServiceName gets a reference to the given string and assigns it to the ServiceName field.

func (*ListAccounts200ResponseInner) SetSsoMethod added in v1.2.0

func (o *ListAccounts200ResponseInner) SetSsoMethod(v string)

SetSsoMethod gets a reference to the given string and assigns it to the SsoMethod field.

func (*ListAccounts200ResponseInner) SetType added in v1.2.0

func (o *ListAccounts200ResponseInner) SetType(v string)

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

func (*ListAccounts200ResponseInner) SetUsername added in v1.2.0

func (o *ListAccounts200ResponseInner) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ListAccounts200ResponseInner) ToMap added in v1.2.0

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

func (*ListAccounts200ResponseInner) UnmarshalJSON added in v1.2.0

func (o *ListAccounts200ResponseInner) UnmarshalJSON(bytes []byte) (err error)

func (*ListAccounts200ResponseInner) UnsetDateDisabled added in v1.2.0

func (o *ListAccounts200ResponseInner) UnsetDateDisabled()

UnsetDateDisabled ensures that no value is present for DateDisabled, not even an explicit nil

func (*ListAccounts200ResponseInner) UnsetLastPasswdChange added in v1.2.0

func (o *ListAccounts200ResponseInner) UnsetLastPasswdChange()

UnsetLastPasswdChange ensures that no value is present for LastPasswdChange, not even an explicit nil

func (*ListAccounts200ResponseInner) UnsetPendingPasswordRequestId added in v1.2.0

func (o *ListAccounts200ResponseInner) UnsetPendingPasswordRequestId()

UnsetPendingPasswordRequestId ensures that no value is present for PendingPasswordRequestId, not even an explicit nil

type ListAccounts200ResponseInnerPasswordChangeResult added in v1.2.0

type ListAccounts200ResponseInnerPasswordChangeResult struct {
	CompletionStatus     *string `json:"completionStatus,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListAccounts200ResponseInnerPasswordChangeResult struct for ListAccounts200ResponseInnerPasswordChangeResult

func NewListAccounts200ResponseInnerPasswordChangeResult added in v1.2.0

func NewListAccounts200ResponseInnerPasswordChangeResult() *ListAccounts200ResponseInnerPasswordChangeResult

NewListAccounts200ResponseInnerPasswordChangeResult instantiates a new ListAccounts200ResponseInnerPasswordChangeResult 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 NewListAccounts200ResponseInnerPasswordChangeResultWithDefaults added in v1.2.0

func NewListAccounts200ResponseInnerPasswordChangeResultWithDefaults() *ListAccounts200ResponseInnerPasswordChangeResult

NewListAccounts200ResponseInnerPasswordChangeResultWithDefaults instantiates a new ListAccounts200ResponseInnerPasswordChangeResult 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 (*ListAccounts200ResponseInnerPasswordChangeResult) GetCompletionStatus added in v1.2.0

GetCompletionStatus returns the CompletionStatus field value if set, zero value otherwise.

func (*ListAccounts200ResponseInnerPasswordChangeResult) GetCompletionStatusOk added in v1.2.0

func (o *ListAccounts200ResponseInnerPasswordChangeResult) GetCompletionStatusOk() (*string, bool)

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

func (*ListAccounts200ResponseInnerPasswordChangeResult) HasCompletionStatus added in v1.2.0

func (o *ListAccounts200ResponseInnerPasswordChangeResult) HasCompletionStatus() bool

HasCompletionStatus returns a boolean if a field has been set.

func (ListAccounts200ResponseInnerPasswordChangeResult) MarshalJSON added in v1.2.0

func (*ListAccounts200ResponseInnerPasswordChangeResult) SetCompletionStatus added in v1.2.0

func (o *ListAccounts200ResponseInnerPasswordChangeResult) SetCompletionStatus(v string)

SetCompletionStatus gets a reference to the given string and assigns it to the CompletionStatus field.

func (ListAccounts200ResponseInnerPasswordChangeResult) ToMap added in v1.2.0

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

func (*ListAccounts200ResponseInnerPasswordChangeResult) UnmarshalJSON added in v1.2.0

func (o *ListAccounts200ResponseInnerPasswordChangeResult) UnmarshalJSON(bytes []byte) (err error)

type ListApplications200ResponseInner added in v1.0.3

type ListApplications200ResponseInner struct {
	Id                                     *string                                                       `json:"id,omitempty"`
	AppId                                  *string                                                       `json:"appId,omitempty"`
	ServiceId                              *string                                                       `json:"serviceId,omitempty"`
	ServiceAppId                           *string                                                       `json:"serviceAppId,omitempty"`
	Name                                   *string                                                       `json:"name,omitempty"`
	Description                            *string                                                       `json:"description,omitempty"`
	AppCenterEnabled                       *bool                                                         `json:"appCenterEnabled,omitempty"`
	ProvisionRequestEnabled                *bool                                                         `json:"provisionRequestEnabled,omitempty"`
	ControlType                            *string                                                       `json:"controlType,omitempty"`
	Mobile                                 *bool                                                         `json:"mobile,omitempty"`
	PrivateApp                             *bool                                                         `json:"privateApp,omitempty"`
	ScriptName                             *string                                                       `json:"scriptName,omitempty"`
	Status                                 *string                                                       `json:"status,omitempty"`
	Icon                                   *string                                                       `json:"icon,omitempty"`
	Health                                 *ListApplications200ResponseInnerHealth                       `json:"health,omitempty"`
	EnableSso                              *bool                                                         `json:"enableSso,omitempty"`
	SsoMethod                              *string                                                       `json:"ssoMethod,omitempty"`
	HasLinks                               *bool                                                         `json:"hasLinks,omitempty"`
	HasAutomations                         *bool                                                         `json:"hasAutomations,omitempty"`
	StepUpAuthData                         map[string]interface{}                                        `json:"stepUpAuthData,omitempty"`
	StepUpAuthType                         *string                                                       `json:"stepUpAuthType,omitempty"`
	UsageAnalytics                         *bool                                                         `json:"usageAnalytics,omitempty"`
	UsageCertRequired                      *bool                                                         `json:"usageCertRequired,omitempty"`
	UsageCertText                          map[string]interface{}                                        `json:"usageCertText,omitempty"`
	LaunchpadEnabled                       *bool                                                         `json:"launchpadEnabled,omitempty"`
	PasswordManaged                        *bool                                                         `json:"passwordManaged,omitempty"`
	Owner                                  *ListApplications200ResponseInnerOwner                        `json:"owner,omitempty"`
	DateCreated                            *float32                                                      `json:"dateCreated,omitempty"`
	LastUpdated                            *float32                                                      `json:"lastUpdated,omitempty"`
	DefaultAccessProfile                   map[string]interface{}                                        `json:"defaultAccessProfile,omitempty"`
	Service                                *string                                                       `json:"service,omitempty"`
	SelectedSsoMethod                      *string                                                       `json:"selectedSsoMethod,omitempty"`
	SupportedSsoMethods                    *float32                                                      `json:"supportedSsoMethods,omitempty"`
	OffNetworkBlockedRoles                 map[string]interface{}                                        `json:"offNetworkBlockedRoles,omitempty"`
	SupportedOffNetwork                    *string                                                       `json:"supportedOffNetwork,omitempty"`
	AccountServiceId                       *float32                                                      `json:"accountServiceId,omitempty"`
	LauncherCount                          *float32                                                      `json:"launcherCount,omitempty"`
	AccountServiceName                     *string                                                       `json:"accountServiceName,omitempty"`
	AccountServiceExternalId               *string                                                       `json:"accountServiceExternalId,omitempty"`
	AccountServiceMatchAllAccounts         *bool                                                         `json:"accountServiceMatchAllAccounts,omitempty"`
	ExternalId                             *string                                                       `json:"externalId,omitempty"`
	AccountServiceUseForPasswordManagement *bool                                                         `json:"accountServiceUseForPasswordManagement,omitempty"`
	AccountServicePolicyId                 *string                                                       `json:"accountServicePolicyId,omitempty"`
	AccountServicePolicyName               *string                                                       `json:"accountServicePolicyName,omitempty"`
	RequireStrongAuthn                     *bool                                                         `json:"requireStrongAuthn,omitempty"`
	AccountServicePolicies                 []ListApplications200ResponseInnerAccountServicePoliciesInner `json:"accountServicePolicies,omitempty"`
	XsdVersion                             *string                                                       `json:"xsdVersion,omitempty"`
	AppProfiles                            []ListApplications200ResponseInnerAppProfilesInner            `json:"appProfiles,omitempty"`
	PasswordServiceId                      *float32                                                      `json:"passwordServiceId,omitempty"`
	AccessProfileIds                       []string                                                      `json:"accessProfileIds,omitempty"`
	AdditionalProperties                   map[string]interface{}
}

ListApplications200ResponseInner struct for ListApplications200ResponseInner

func NewListApplications200ResponseInner added in v1.0.3

func NewListApplications200ResponseInner() *ListApplications200ResponseInner

NewListApplications200ResponseInner instantiates a new ListApplications200ResponseInner 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 NewListApplications200ResponseInnerWithDefaults added in v1.0.3

func NewListApplications200ResponseInnerWithDefaults() *ListApplications200ResponseInner

NewListApplications200ResponseInnerWithDefaults instantiates a new ListApplications200ResponseInner 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 (*ListApplications200ResponseInner) GetAccessProfileIds added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccessProfileIds() []string

GetAccessProfileIds returns the AccessProfileIds field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccessProfileIdsOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccessProfileIdsOk() ([]string, bool)

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

func (*ListApplications200ResponseInner) GetAccountServiceExternalId added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceExternalId() string

GetAccountServiceExternalId returns the AccountServiceExternalId field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccountServiceExternalIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceExternalIdOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetAccountServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceId() float32

GetAccountServiceId returns the AccountServiceId field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccountServiceIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceIdOk() (*float32, bool)

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

func (*ListApplications200ResponseInner) GetAccountServiceMatchAllAccounts added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceMatchAllAccounts() bool

GetAccountServiceMatchAllAccounts returns the AccountServiceMatchAllAccounts field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccountServiceMatchAllAccountsOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceMatchAllAccountsOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetAccountServiceName added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceName() string

GetAccountServiceName returns the AccountServiceName field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccountServiceNameOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceNameOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetAccountServicePolicies added in v1.0.3

GetAccountServicePolicies returns the AccountServicePolicies field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccountServicePoliciesOk added in v1.0.3

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

func (*ListApplications200ResponseInner) GetAccountServicePolicyId added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServicePolicyId() string

GetAccountServicePolicyId returns the AccountServicePolicyId field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccountServicePolicyIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServicePolicyIdOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetAccountServicePolicyName added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServicePolicyName() string

GetAccountServicePolicyName returns the AccountServicePolicyName field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccountServicePolicyNameOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServicePolicyNameOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetAccountServiceUseForPasswordManagement added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceUseForPasswordManagement() bool

GetAccountServiceUseForPasswordManagement returns the AccountServiceUseForPasswordManagement field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAccountServiceUseForPasswordManagementOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAccountServiceUseForPasswordManagementOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetAppCenterEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) GetAppCenterEnabled() bool

GetAppCenterEnabled returns the AppCenterEnabled field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAppCenterEnabledOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAppCenterEnabledOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetAppId added in v1.0.3

GetAppId returns the AppId field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAppIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetAppIdOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetAppProfiles added in v1.0.3

GetAppProfiles returns the AppProfiles field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetAppProfilesOk added in v1.0.3

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

func (*ListApplications200ResponseInner) GetControlType added in v1.0.3

func (o *ListApplications200ResponseInner) GetControlType() string

GetControlType returns the ControlType field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetControlTypeOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetControlTypeOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetDateCreated added in v1.0.3

func (o *ListApplications200ResponseInner) GetDateCreated() float32

GetDateCreated returns the DateCreated field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetDateCreatedOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetDateCreatedOk() (*float32, bool)

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

func (*ListApplications200ResponseInner) GetDefaultAccessProfile added in v1.0.3

func (o *ListApplications200ResponseInner) GetDefaultAccessProfile() map[string]interface{}

GetDefaultAccessProfile returns the DefaultAccessProfile field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetDefaultAccessProfileOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetDefaultAccessProfileOk() (map[string]interface{}, bool)

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

func (*ListApplications200ResponseInner) GetDescription added in v1.0.3

func (o *ListApplications200ResponseInner) GetDescription() string

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

func (*ListApplications200ResponseInner) GetDescriptionOk added in v1.0.3

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

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

func (*ListApplications200ResponseInner) GetEnableSso added in v1.0.3

func (o *ListApplications200ResponseInner) GetEnableSso() bool

GetEnableSso returns the EnableSso field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetEnableSsoOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetEnableSsoOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetExternalId added in v1.0.3

func (o *ListApplications200ResponseInner) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetExternalIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetExternalIdOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetHasAutomations added in v1.0.3

func (o *ListApplications200ResponseInner) GetHasAutomations() bool

GetHasAutomations returns the HasAutomations field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetHasAutomationsOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetHasAutomationsOk() (*bool, bool)

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

func (o *ListApplications200ResponseInner) GetHasLinks() bool

GetHasLinks returns the HasLinks field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetHasLinksOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetHasLinksOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetHealth added in v1.0.3

GetHealth returns the Health field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetHealthOk added in v1.0.3

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

func (*ListApplications200ResponseInner) GetIcon added in v1.0.3

GetIcon returns the Icon field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetIconOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetIconOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetId added in v1.0.3

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

func (*ListApplications200ResponseInner) GetIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) 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 (*ListApplications200ResponseInner) GetLastUpdated added in v1.0.3

func (o *ListApplications200ResponseInner) GetLastUpdated() float32

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetLastUpdatedOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetLastUpdatedOk() (*float32, bool)

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

func (*ListApplications200ResponseInner) GetLauncherCount added in v1.0.3

func (o *ListApplications200ResponseInner) GetLauncherCount() float32

GetLauncherCount returns the LauncherCount field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetLauncherCountOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetLauncherCountOk() (*float32, bool)

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

func (*ListApplications200ResponseInner) GetLaunchpadEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) GetLaunchpadEnabled() bool

GetLaunchpadEnabled returns the LaunchpadEnabled field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetLaunchpadEnabledOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetLaunchpadEnabledOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetMobile added in v1.0.3

func (o *ListApplications200ResponseInner) GetMobile() bool

GetMobile returns the Mobile field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetMobileOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetMobileOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetName added in v1.0.3

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

func (*ListApplications200ResponseInner) GetNameOk added in v1.0.3

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

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

func (*ListApplications200ResponseInner) GetOffNetworkBlockedRoles added in v1.0.3

func (o *ListApplications200ResponseInner) GetOffNetworkBlockedRoles() map[string]interface{}

GetOffNetworkBlockedRoles returns the OffNetworkBlockedRoles field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetOffNetworkBlockedRolesOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetOffNetworkBlockedRolesOk() (map[string]interface{}, bool)

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

func (*ListApplications200ResponseInner) GetOwner added in v1.0.3

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

func (*ListApplications200ResponseInner) GetOwnerOk added in v1.0.3

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 (*ListApplications200ResponseInner) GetPasswordManaged added in v1.0.3

func (o *ListApplications200ResponseInner) GetPasswordManaged() bool

GetPasswordManaged returns the PasswordManaged field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetPasswordManagedOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetPasswordManagedOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetPasswordServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) GetPasswordServiceId() float32

GetPasswordServiceId returns the PasswordServiceId field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetPasswordServiceIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetPasswordServiceIdOk() (*float32, bool)

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

func (*ListApplications200ResponseInner) GetPrivateApp added in v1.0.3

func (o *ListApplications200ResponseInner) GetPrivateApp() bool

GetPrivateApp returns the PrivateApp field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetPrivateAppOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetPrivateAppOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetProvisionRequestEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) GetProvisionRequestEnabled() bool

GetProvisionRequestEnabled returns the ProvisionRequestEnabled field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetProvisionRequestEnabledOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetProvisionRequestEnabledOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetRequireStrongAuthn added in v1.0.3

func (o *ListApplications200ResponseInner) GetRequireStrongAuthn() bool

GetRequireStrongAuthn returns the RequireStrongAuthn field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetRequireStrongAuthnOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetRequireStrongAuthnOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetScriptName added in v1.0.3

func (o *ListApplications200ResponseInner) GetScriptName() string

GetScriptName returns the ScriptName field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetScriptNameOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetScriptNameOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetSelectedSsoMethod added in v1.0.3

func (o *ListApplications200ResponseInner) GetSelectedSsoMethod() string

GetSelectedSsoMethod returns the SelectedSsoMethod field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetSelectedSsoMethodOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetSelectedSsoMethodOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetService added in v1.0.3

func (o *ListApplications200ResponseInner) GetService() string

GetService returns the Service field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetServiceAppId added in v1.0.3

func (o *ListApplications200ResponseInner) GetServiceAppId() string

GetServiceAppId returns the ServiceAppId field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetServiceAppIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetServiceAppIdOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetServiceIdOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetServiceIdOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetServiceOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetServiceOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetSsoMethod added in v1.0.3

func (o *ListApplications200ResponseInner) GetSsoMethod() string

GetSsoMethod returns the SsoMethod field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetSsoMethodOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetSsoMethodOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetStatus added in v1.0.3

GetStatus returns the Status field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetStatusOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetStatusOk() (*string, 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 (*ListApplications200ResponseInner) GetStepUpAuthData added in v1.0.3

func (o *ListApplications200ResponseInner) GetStepUpAuthData() map[string]interface{}

GetStepUpAuthData returns the StepUpAuthData field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetStepUpAuthDataOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetStepUpAuthDataOk() (map[string]interface{}, bool)

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

func (*ListApplications200ResponseInner) GetStepUpAuthType added in v1.0.3

func (o *ListApplications200ResponseInner) GetStepUpAuthType() string

GetStepUpAuthType returns the StepUpAuthType field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetStepUpAuthTypeOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetStepUpAuthTypeOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetSupportedOffNetwork added in v1.0.3

func (o *ListApplications200ResponseInner) GetSupportedOffNetwork() string

GetSupportedOffNetwork returns the SupportedOffNetwork field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetSupportedOffNetworkOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetSupportedOffNetworkOk() (*string, bool)

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

func (*ListApplications200ResponseInner) GetSupportedSsoMethods added in v1.0.3

func (o *ListApplications200ResponseInner) GetSupportedSsoMethods() float32

GetSupportedSsoMethods returns the SupportedSsoMethods field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetSupportedSsoMethodsOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetSupportedSsoMethodsOk() (*float32, bool)

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

func (*ListApplications200ResponseInner) GetUsageAnalytics added in v1.0.3

func (o *ListApplications200ResponseInner) GetUsageAnalytics() bool

GetUsageAnalytics returns the UsageAnalytics field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetUsageAnalyticsOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetUsageAnalyticsOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetUsageCertRequired added in v1.0.3

func (o *ListApplications200ResponseInner) GetUsageCertRequired() bool

GetUsageCertRequired returns the UsageCertRequired field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetUsageCertRequiredOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetUsageCertRequiredOk() (*bool, bool)

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

func (*ListApplications200ResponseInner) GetUsageCertText added in v1.0.3

func (o *ListApplications200ResponseInner) GetUsageCertText() map[string]interface{}

GetUsageCertText returns the UsageCertText field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetUsageCertTextOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetUsageCertTextOk() (map[string]interface{}, bool)

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

func (*ListApplications200ResponseInner) GetXsdVersion added in v1.0.3

func (o *ListApplications200ResponseInner) GetXsdVersion() string

GetXsdVersion returns the XsdVersion field value if set, zero value otherwise.

func (*ListApplications200ResponseInner) GetXsdVersionOk added in v1.0.3

func (o *ListApplications200ResponseInner) GetXsdVersionOk() (*string, bool)

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

func (*ListApplications200ResponseInner) HasAccessProfileIds added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccessProfileIds() bool

HasAccessProfileIds returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAccountServiceExternalId added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccountServiceExternalId() bool

HasAccountServiceExternalId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAccountServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccountServiceId() bool

HasAccountServiceId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAccountServiceMatchAllAccounts added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccountServiceMatchAllAccounts() bool

HasAccountServiceMatchAllAccounts returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAccountServiceName added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccountServiceName() bool

HasAccountServiceName returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAccountServicePolicies added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccountServicePolicies() bool

HasAccountServicePolicies returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAccountServicePolicyId added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccountServicePolicyId() bool

HasAccountServicePolicyId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAccountServicePolicyName added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccountServicePolicyName() bool

HasAccountServicePolicyName returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAccountServiceUseForPasswordManagement added in v1.0.3

func (o *ListApplications200ResponseInner) HasAccountServiceUseForPasswordManagement() bool

HasAccountServiceUseForPasswordManagement returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAppCenterEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) HasAppCenterEnabled() bool

HasAppCenterEnabled returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAppId added in v1.0.3

func (o *ListApplications200ResponseInner) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasAppProfiles added in v1.0.3

func (o *ListApplications200ResponseInner) HasAppProfiles() bool

HasAppProfiles returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasControlType added in v1.0.3

func (o *ListApplications200ResponseInner) HasControlType() bool

HasControlType returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasDateCreated added in v1.0.3

func (o *ListApplications200ResponseInner) HasDateCreated() bool

HasDateCreated returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasDefaultAccessProfile added in v1.0.3

func (o *ListApplications200ResponseInner) HasDefaultAccessProfile() bool

HasDefaultAccessProfile returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasDescription added in v1.0.3

func (o *ListApplications200ResponseInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasEnableSso added in v1.0.3

func (o *ListApplications200ResponseInner) HasEnableSso() bool

HasEnableSso returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasExternalId added in v1.0.3

func (o *ListApplications200ResponseInner) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasHasAutomations added in v1.0.3

func (o *ListApplications200ResponseInner) HasHasAutomations() bool

HasHasAutomations returns a boolean if a field has been set.

func (o *ListApplications200ResponseInner) HasHasLinks() bool

HasHasLinks returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasHealth added in v1.0.3

func (o *ListApplications200ResponseInner) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasIcon added in v1.0.3

HasIcon returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasId added in v1.0.3

HasId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasLastUpdated added in v1.0.3

func (o *ListApplications200ResponseInner) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasLauncherCount added in v1.0.3

func (o *ListApplications200ResponseInner) HasLauncherCount() bool

HasLauncherCount returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasLaunchpadEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) HasLaunchpadEnabled() bool

HasLaunchpadEnabled returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasMobile added in v1.0.3

func (o *ListApplications200ResponseInner) HasMobile() bool

HasMobile returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasName added in v1.0.3

HasName returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasOffNetworkBlockedRoles added in v1.0.3

func (o *ListApplications200ResponseInner) HasOffNetworkBlockedRoles() bool

HasOffNetworkBlockedRoles returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasOwner added in v1.0.3

func (o *ListApplications200ResponseInner) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasPasswordManaged added in v1.0.3

func (o *ListApplications200ResponseInner) HasPasswordManaged() bool

HasPasswordManaged returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasPasswordServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) HasPasswordServiceId() bool

HasPasswordServiceId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasPrivateApp added in v1.0.3

func (o *ListApplications200ResponseInner) HasPrivateApp() bool

HasPrivateApp returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasProvisionRequestEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) HasProvisionRequestEnabled() bool

HasProvisionRequestEnabled returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasRequireStrongAuthn added in v1.0.3

func (o *ListApplications200ResponseInner) HasRequireStrongAuthn() bool

HasRequireStrongAuthn returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasScriptName added in v1.0.3

func (o *ListApplications200ResponseInner) HasScriptName() bool

HasScriptName returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasSelectedSsoMethod added in v1.0.3

func (o *ListApplications200ResponseInner) HasSelectedSsoMethod() bool

HasSelectedSsoMethod returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasService added in v1.0.3

func (o *ListApplications200ResponseInner) HasService() bool

HasService returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasServiceAppId added in v1.0.3

func (o *ListApplications200ResponseInner) HasServiceAppId() bool

HasServiceAppId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasSsoMethod added in v1.0.3

func (o *ListApplications200ResponseInner) HasSsoMethod() bool

HasSsoMethod returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasStatus added in v1.0.3

func (o *ListApplications200ResponseInner) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasStepUpAuthData added in v1.0.3

func (o *ListApplications200ResponseInner) HasStepUpAuthData() bool

HasStepUpAuthData returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasStepUpAuthType added in v1.0.3

func (o *ListApplications200ResponseInner) HasStepUpAuthType() bool

HasStepUpAuthType returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasSupportedOffNetwork added in v1.0.3

func (o *ListApplications200ResponseInner) HasSupportedOffNetwork() bool

HasSupportedOffNetwork returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasSupportedSsoMethods added in v1.0.3

func (o *ListApplications200ResponseInner) HasSupportedSsoMethods() bool

HasSupportedSsoMethods returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasUsageAnalytics added in v1.0.3

func (o *ListApplications200ResponseInner) HasUsageAnalytics() bool

HasUsageAnalytics returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasUsageCertRequired added in v1.0.3

func (o *ListApplications200ResponseInner) HasUsageCertRequired() bool

HasUsageCertRequired returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasUsageCertText added in v1.0.3

func (o *ListApplications200ResponseInner) HasUsageCertText() bool

HasUsageCertText returns a boolean if a field has been set.

func (*ListApplications200ResponseInner) HasXsdVersion added in v1.0.3

func (o *ListApplications200ResponseInner) HasXsdVersion() bool

HasXsdVersion returns a boolean if a field has been set.

func (ListApplications200ResponseInner) MarshalJSON added in v1.0.3

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

func (*ListApplications200ResponseInner) SetAccessProfileIds added in v1.0.3

func (o *ListApplications200ResponseInner) SetAccessProfileIds(v []string)

SetAccessProfileIds gets a reference to the given []string and assigns it to the AccessProfileIds field.

func (*ListApplications200ResponseInner) SetAccountServiceExternalId added in v1.0.3

func (o *ListApplications200ResponseInner) SetAccountServiceExternalId(v string)

SetAccountServiceExternalId gets a reference to the given string and assigns it to the AccountServiceExternalId field.

func (*ListApplications200ResponseInner) SetAccountServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) SetAccountServiceId(v float32)

SetAccountServiceId gets a reference to the given float32 and assigns it to the AccountServiceId field.

func (*ListApplications200ResponseInner) SetAccountServiceMatchAllAccounts added in v1.0.3

func (o *ListApplications200ResponseInner) SetAccountServiceMatchAllAccounts(v bool)

SetAccountServiceMatchAllAccounts gets a reference to the given bool and assigns it to the AccountServiceMatchAllAccounts field.

func (*ListApplications200ResponseInner) SetAccountServiceName added in v1.0.3

func (o *ListApplications200ResponseInner) SetAccountServiceName(v string)

SetAccountServiceName gets a reference to the given string and assigns it to the AccountServiceName field.

func (*ListApplications200ResponseInner) SetAccountServicePolicies added in v1.0.3

SetAccountServicePolicies gets a reference to the given []ListApplications200ResponseInnerAccountServicePoliciesInner and assigns it to the AccountServicePolicies field.

func (*ListApplications200ResponseInner) SetAccountServicePolicyId added in v1.0.3

func (o *ListApplications200ResponseInner) SetAccountServicePolicyId(v string)

SetAccountServicePolicyId gets a reference to the given string and assigns it to the AccountServicePolicyId field.

func (*ListApplications200ResponseInner) SetAccountServicePolicyName added in v1.0.3

func (o *ListApplications200ResponseInner) SetAccountServicePolicyName(v string)

SetAccountServicePolicyName gets a reference to the given string and assigns it to the AccountServicePolicyName field.

func (*ListApplications200ResponseInner) SetAccountServiceUseForPasswordManagement added in v1.0.3

func (o *ListApplications200ResponseInner) SetAccountServiceUseForPasswordManagement(v bool)

SetAccountServiceUseForPasswordManagement gets a reference to the given bool and assigns it to the AccountServiceUseForPasswordManagement field.

func (*ListApplications200ResponseInner) SetAppCenterEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) SetAppCenterEnabled(v bool)

SetAppCenterEnabled gets a reference to the given bool and assigns it to the AppCenterEnabled field.

func (*ListApplications200ResponseInner) SetAppId added in v1.0.3

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*ListApplications200ResponseInner) SetAppProfiles added in v1.0.3

SetAppProfiles gets a reference to the given []ListApplications200ResponseInnerAppProfilesInner and assigns it to the AppProfiles field.

func (*ListApplications200ResponseInner) SetControlType added in v1.0.3

func (o *ListApplications200ResponseInner) SetControlType(v string)

SetControlType gets a reference to the given string and assigns it to the ControlType field.

func (*ListApplications200ResponseInner) SetDateCreated added in v1.0.3

func (o *ListApplications200ResponseInner) SetDateCreated(v float32)

SetDateCreated gets a reference to the given float32 and assigns it to the DateCreated field.

func (*ListApplications200ResponseInner) SetDefaultAccessProfile added in v1.0.3

func (o *ListApplications200ResponseInner) SetDefaultAccessProfile(v map[string]interface{})

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

func (*ListApplications200ResponseInner) SetDescription added in v1.0.3

func (o *ListApplications200ResponseInner) SetDescription(v string)

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

func (*ListApplications200ResponseInner) SetEnableSso added in v1.0.3

func (o *ListApplications200ResponseInner) SetEnableSso(v bool)

SetEnableSso gets a reference to the given bool and assigns it to the EnableSso field.

func (*ListApplications200ResponseInner) SetExternalId added in v1.0.3

func (o *ListApplications200ResponseInner) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ListApplications200ResponseInner) SetHasAutomations added in v1.0.3

func (o *ListApplications200ResponseInner) SetHasAutomations(v bool)

SetHasAutomations gets a reference to the given bool and assigns it to the HasAutomations field.

func (o *ListApplications200ResponseInner) SetHasLinks(v bool)

SetHasLinks gets a reference to the given bool and assigns it to the HasLinks field.

func (*ListApplications200ResponseInner) SetHealth added in v1.0.3

SetHealth gets a reference to the given ListApplications200ResponseInnerHealth and assigns it to the Health field.

func (*ListApplications200ResponseInner) SetIcon added in v1.0.3

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*ListApplications200ResponseInner) SetId added in v1.0.3

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

func (*ListApplications200ResponseInner) SetLastUpdated added in v1.0.3

func (o *ListApplications200ResponseInner) SetLastUpdated(v float32)

SetLastUpdated gets a reference to the given float32 and assigns it to the LastUpdated field.

func (*ListApplications200ResponseInner) SetLauncherCount added in v1.0.3

func (o *ListApplications200ResponseInner) SetLauncherCount(v float32)

SetLauncherCount gets a reference to the given float32 and assigns it to the LauncherCount field.

func (*ListApplications200ResponseInner) SetLaunchpadEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) SetLaunchpadEnabled(v bool)

SetLaunchpadEnabled gets a reference to the given bool and assigns it to the LaunchpadEnabled field.

func (*ListApplications200ResponseInner) SetMobile added in v1.0.3

func (o *ListApplications200ResponseInner) SetMobile(v bool)

SetMobile gets a reference to the given bool and assigns it to the Mobile field.

func (*ListApplications200ResponseInner) SetName added in v1.0.3

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

func (*ListApplications200ResponseInner) SetOffNetworkBlockedRoles added in v1.0.3

func (o *ListApplications200ResponseInner) SetOffNetworkBlockedRoles(v map[string]interface{})

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

func (*ListApplications200ResponseInner) SetOwner added in v1.0.3

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

func (*ListApplications200ResponseInner) SetPasswordManaged added in v1.0.3

func (o *ListApplications200ResponseInner) SetPasswordManaged(v bool)

SetPasswordManaged gets a reference to the given bool and assigns it to the PasswordManaged field.

func (*ListApplications200ResponseInner) SetPasswordServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) SetPasswordServiceId(v float32)

SetPasswordServiceId gets a reference to the given float32 and assigns it to the PasswordServiceId field.

func (*ListApplications200ResponseInner) SetPrivateApp added in v1.0.3

func (o *ListApplications200ResponseInner) SetPrivateApp(v bool)

SetPrivateApp gets a reference to the given bool and assigns it to the PrivateApp field.

func (*ListApplications200ResponseInner) SetProvisionRequestEnabled added in v1.0.3

func (o *ListApplications200ResponseInner) SetProvisionRequestEnabled(v bool)

SetProvisionRequestEnabled gets a reference to the given bool and assigns it to the ProvisionRequestEnabled field.

func (*ListApplications200ResponseInner) SetRequireStrongAuthn added in v1.0.3

func (o *ListApplications200ResponseInner) SetRequireStrongAuthn(v bool)

SetRequireStrongAuthn gets a reference to the given bool and assigns it to the RequireStrongAuthn field.

func (*ListApplications200ResponseInner) SetScriptName added in v1.0.3

func (o *ListApplications200ResponseInner) SetScriptName(v string)

SetScriptName gets a reference to the given string and assigns it to the ScriptName field.

func (*ListApplications200ResponseInner) SetSelectedSsoMethod added in v1.0.3

func (o *ListApplications200ResponseInner) SetSelectedSsoMethod(v string)

SetSelectedSsoMethod gets a reference to the given string and assigns it to the SelectedSsoMethod field.

func (*ListApplications200ResponseInner) SetService added in v1.0.3

func (o *ListApplications200ResponseInner) SetService(v string)

SetService gets a reference to the given string and assigns it to the Service field.

func (*ListApplications200ResponseInner) SetServiceAppId added in v1.0.3

func (o *ListApplications200ResponseInner) SetServiceAppId(v string)

SetServiceAppId gets a reference to the given string and assigns it to the ServiceAppId field.

func (*ListApplications200ResponseInner) SetServiceId added in v1.0.3

func (o *ListApplications200ResponseInner) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*ListApplications200ResponseInner) SetSsoMethod added in v1.0.3

func (o *ListApplications200ResponseInner) SetSsoMethod(v string)

SetSsoMethod gets a reference to the given string and assigns it to the SsoMethod field.

func (*ListApplications200ResponseInner) SetStatus added in v1.0.3

func (o *ListApplications200ResponseInner) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*ListApplications200ResponseInner) SetStepUpAuthData added in v1.0.3

func (o *ListApplications200ResponseInner) SetStepUpAuthData(v map[string]interface{})

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

func (*ListApplications200ResponseInner) SetStepUpAuthType added in v1.0.3

func (o *ListApplications200ResponseInner) SetStepUpAuthType(v string)

SetStepUpAuthType gets a reference to the given string and assigns it to the StepUpAuthType field.

func (*ListApplications200ResponseInner) SetSupportedOffNetwork added in v1.0.3

func (o *ListApplications200ResponseInner) SetSupportedOffNetwork(v string)

SetSupportedOffNetwork gets a reference to the given string and assigns it to the SupportedOffNetwork field.

func (*ListApplications200ResponseInner) SetSupportedSsoMethods added in v1.0.3

func (o *ListApplications200ResponseInner) SetSupportedSsoMethods(v float32)

SetSupportedSsoMethods gets a reference to the given float32 and assigns it to the SupportedSsoMethods field.

func (*ListApplications200ResponseInner) SetUsageAnalytics added in v1.0.3

func (o *ListApplications200ResponseInner) SetUsageAnalytics(v bool)

SetUsageAnalytics gets a reference to the given bool and assigns it to the UsageAnalytics field.

func (*ListApplications200ResponseInner) SetUsageCertRequired added in v1.0.3

func (o *ListApplications200ResponseInner) SetUsageCertRequired(v bool)

SetUsageCertRequired gets a reference to the given bool and assigns it to the UsageCertRequired field.

func (*ListApplications200ResponseInner) SetUsageCertText added in v1.0.3

func (o *ListApplications200ResponseInner) SetUsageCertText(v map[string]interface{})

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

func (*ListApplications200ResponseInner) SetXsdVersion added in v1.0.3

func (o *ListApplications200ResponseInner) SetXsdVersion(v string)

SetXsdVersion gets a reference to the given string and assigns it to the XsdVersion field.

func (ListApplications200ResponseInner) ToMap added in v1.0.3

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

func (*ListApplications200ResponseInner) UnmarshalJSON added in v1.0.3

func (o *ListApplications200ResponseInner) UnmarshalJSON(bytes []byte) (err error)

type ListApplications200ResponseInnerAccountServicePoliciesInner added in v1.0.3

type ListApplications200ResponseInnerAccountServicePoliciesInner struct {
	PolicyId             *string                `json:"policyId,omitempty"`
	PolicyName           *string                `json:"policyName,omitempty"`
	Selectors            map[string]interface{} `json:"selectors,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListApplications200ResponseInnerAccountServicePoliciesInner struct for ListApplications200ResponseInnerAccountServicePoliciesInner

func NewListApplications200ResponseInnerAccountServicePoliciesInner added in v1.0.3

func NewListApplications200ResponseInnerAccountServicePoliciesInner() *ListApplications200ResponseInnerAccountServicePoliciesInner

NewListApplications200ResponseInnerAccountServicePoliciesInner instantiates a new ListApplications200ResponseInnerAccountServicePoliciesInner 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 NewListApplications200ResponseInnerAccountServicePoliciesInnerWithDefaults added in v1.0.3

func NewListApplications200ResponseInnerAccountServicePoliciesInnerWithDefaults() *ListApplications200ResponseInnerAccountServicePoliciesInner

NewListApplications200ResponseInnerAccountServicePoliciesInnerWithDefaults instantiates a new ListApplications200ResponseInnerAccountServicePoliciesInner 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 (*ListApplications200ResponseInnerAccountServicePoliciesInner) GetPolicyId added in v1.0.3

GetPolicyId returns the PolicyId field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) GetPolicyIdOk added in v1.0.3

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

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) GetPolicyName added in v1.0.3

GetPolicyName returns the PolicyName field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) GetPolicyNameOk added in v1.0.3

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

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) GetSelectors added in v1.0.3

func (o *ListApplications200ResponseInnerAccountServicePoliciesInner) GetSelectors() map[string]interface{}

GetSelectors returns the Selectors field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) GetSelectorsOk added in v1.0.3

func (o *ListApplications200ResponseInnerAccountServicePoliciesInner) GetSelectorsOk() (map[string]interface{}, bool)

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

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) HasPolicyId added in v1.0.3

HasPolicyId returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) HasPolicyName added in v1.0.3

HasPolicyName returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) HasSelectors added in v1.0.3

HasSelectors returns a boolean if a field has been set.

func (ListApplications200ResponseInnerAccountServicePoliciesInner) MarshalJSON added in v1.0.3

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) SetPolicyId added in v1.0.3

SetPolicyId gets a reference to the given string and assigns it to the PolicyId field.

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) SetPolicyName added in v1.0.3

SetPolicyName gets a reference to the given string and assigns it to the PolicyName field.

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) SetSelectors added in v1.0.3

func (o *ListApplications200ResponseInnerAccountServicePoliciesInner) SetSelectors(v map[string]interface{})

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

func (ListApplications200ResponseInnerAccountServicePoliciesInner) ToMap added in v1.0.3

func (*ListApplications200ResponseInnerAccountServicePoliciesInner) UnmarshalJSON added in v1.0.3

type ListApplications200ResponseInnerAppProfilesInner added in v1.0.3

type ListApplications200ResponseInnerAppProfilesInner struct {
	Id                   *float32 `json:"id,omitempty"`
	Filename             *string  `json:"filename,omitempty"`
	CreatedBy            *string  `json:"createdBy,omitempty"`
	DateCreated          *string  `json:"dateCreated,omitempty"`
	XsdVersion           *string  `json:"xsdVersion,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListApplications200ResponseInnerAppProfilesInner struct for ListApplications200ResponseInnerAppProfilesInner

func NewListApplications200ResponseInnerAppProfilesInner added in v1.0.3

func NewListApplications200ResponseInnerAppProfilesInner() *ListApplications200ResponseInnerAppProfilesInner

NewListApplications200ResponseInnerAppProfilesInner instantiates a new ListApplications200ResponseInnerAppProfilesInner 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 NewListApplications200ResponseInnerAppProfilesInnerWithDefaults added in v1.0.3

func NewListApplications200ResponseInnerAppProfilesInnerWithDefaults() *ListApplications200ResponseInnerAppProfilesInner

NewListApplications200ResponseInnerAppProfilesInnerWithDefaults instantiates a new ListApplications200ResponseInnerAppProfilesInner 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 (*ListApplications200ResponseInnerAppProfilesInner) GetCreatedBy added in v1.0.3

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

func (*ListApplications200ResponseInnerAppProfilesInner) GetCreatedByOk added in v1.0.3

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

func (*ListApplications200ResponseInnerAppProfilesInner) GetDateCreated added in v1.0.3

GetDateCreated returns the DateCreated field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerAppProfilesInner) GetDateCreatedOk added in v1.0.3

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

func (*ListApplications200ResponseInnerAppProfilesInner) GetFilename added in v1.0.3

GetFilename returns the Filename field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerAppProfilesInner) GetFilenameOk added in v1.0.3

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

func (*ListApplications200ResponseInnerAppProfilesInner) GetId added in v1.0.3

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

func (*ListApplications200ResponseInnerAppProfilesInner) GetIdOk added in v1.0.3

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 (*ListApplications200ResponseInnerAppProfilesInner) GetXsdVersion added in v1.0.3

GetXsdVersion returns the XsdVersion field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerAppProfilesInner) GetXsdVersionOk added in v1.0.3

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

func (*ListApplications200ResponseInnerAppProfilesInner) HasCreatedBy added in v1.0.3

HasCreatedBy returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerAppProfilesInner) HasDateCreated added in v1.0.3

HasDateCreated returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerAppProfilesInner) HasFilename added in v1.0.3

HasFilename returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerAppProfilesInner) HasId added in v1.0.3

HasId returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerAppProfilesInner) HasXsdVersion added in v1.0.3

HasXsdVersion returns a boolean if a field has been set.

func (ListApplications200ResponseInnerAppProfilesInner) MarshalJSON added in v1.0.3

func (*ListApplications200ResponseInnerAppProfilesInner) SetCreatedBy added in v1.0.3

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*ListApplications200ResponseInnerAppProfilesInner) SetDateCreated added in v1.0.3

SetDateCreated gets a reference to the given string and assigns it to the DateCreated field.

func (*ListApplications200ResponseInnerAppProfilesInner) SetFilename added in v1.0.3

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (*ListApplications200ResponseInnerAppProfilesInner) SetId added in v1.0.3

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

func (*ListApplications200ResponseInnerAppProfilesInner) SetXsdVersion added in v1.0.3

SetXsdVersion gets a reference to the given string and assigns it to the XsdVersion field.

func (ListApplications200ResponseInnerAppProfilesInner) ToMap added in v1.0.3

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

func (*ListApplications200ResponseInnerAppProfilesInner) UnmarshalJSON added in v1.0.3

func (o *ListApplications200ResponseInnerAppProfilesInner) UnmarshalJSON(bytes []byte) (err error)

type ListApplications200ResponseInnerHealth added in v1.0.3

type ListApplications200ResponseInnerHealth struct {
	Status               *string  `json:"status,omitempty"`
	LastChanged          *string  `json:"lastChanged,omitempty"`
	Since                *float32 `json:"since,omitempty"`
	Healthy              *bool    `json:"healthy,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListApplications200ResponseInnerHealth struct for ListApplications200ResponseInnerHealth

func NewListApplications200ResponseInnerHealth added in v1.0.3

func NewListApplications200ResponseInnerHealth() *ListApplications200ResponseInnerHealth

NewListApplications200ResponseInnerHealth instantiates a new ListApplications200ResponseInnerHealth 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 NewListApplications200ResponseInnerHealthWithDefaults added in v1.0.3

func NewListApplications200ResponseInnerHealthWithDefaults() *ListApplications200ResponseInnerHealth

NewListApplications200ResponseInnerHealthWithDefaults instantiates a new ListApplications200ResponseInnerHealth 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 (*ListApplications200ResponseInnerHealth) GetHealthy added in v1.0.3

GetHealthy returns the Healthy field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerHealth) GetHealthyOk added in v1.0.3

func (o *ListApplications200ResponseInnerHealth) GetHealthyOk() (*bool, bool)

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

func (*ListApplications200ResponseInnerHealth) GetLastChanged added in v1.0.3

func (o *ListApplications200ResponseInnerHealth) GetLastChanged() string

GetLastChanged returns the LastChanged field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerHealth) GetLastChangedOk added in v1.0.3

func (o *ListApplications200ResponseInnerHealth) GetLastChangedOk() (*string, bool)

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

func (*ListApplications200ResponseInnerHealth) GetSince added in v1.0.3

GetSince returns the Since field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerHealth) GetSinceOk added in v1.0.3

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

func (*ListApplications200ResponseInnerHealth) GetStatus added in v1.0.3

GetStatus returns the Status field value if set, zero value otherwise.

func (*ListApplications200ResponseInnerHealth) GetStatusOk added in v1.0.3

func (o *ListApplications200ResponseInnerHealth) GetStatusOk() (*string, 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 (*ListApplications200ResponseInnerHealth) HasHealthy added in v1.0.3

HasHealthy returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerHealth) HasLastChanged added in v1.0.3

func (o *ListApplications200ResponseInnerHealth) HasLastChanged() bool

HasLastChanged returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerHealth) HasSince added in v1.0.3

HasSince returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerHealth) HasStatus added in v1.0.3

HasStatus returns a boolean if a field has been set.

func (ListApplications200ResponseInnerHealth) MarshalJSON added in v1.0.3

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

func (*ListApplications200ResponseInnerHealth) SetHealthy added in v1.0.3

SetHealthy gets a reference to the given bool and assigns it to the Healthy field.

func (*ListApplications200ResponseInnerHealth) SetLastChanged added in v1.0.3

func (o *ListApplications200ResponseInnerHealth) SetLastChanged(v string)

SetLastChanged gets a reference to the given string and assigns it to the LastChanged field.

func (*ListApplications200ResponseInnerHealth) SetSince added in v1.0.3

SetSince gets a reference to the given float32 and assigns it to the Since field.

func (*ListApplications200ResponseInnerHealth) SetStatus added in v1.0.3

SetStatus gets a reference to the given string and assigns it to the Status field.

func (ListApplications200ResponseInnerHealth) ToMap added in v1.0.3

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

func (*ListApplications200ResponseInnerHealth) UnmarshalJSON added in v1.0.3

func (o *ListApplications200ResponseInnerHealth) UnmarshalJSON(bytes []byte) (err error)

type ListApplications200ResponseInnerOwner added in v1.0.3

type ListApplications200ResponseInnerOwner struct {
	Id                   *string `json:"id,omitempty"`
	Name                 *string `json:"name,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListApplications200ResponseInnerOwner struct for ListApplications200ResponseInnerOwner

func NewListApplications200ResponseInnerOwner added in v1.0.3

func NewListApplications200ResponseInnerOwner() *ListApplications200ResponseInnerOwner

NewListApplications200ResponseInnerOwner instantiates a new ListApplications200ResponseInnerOwner 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 NewListApplications200ResponseInnerOwnerWithDefaults added in v1.0.3

func NewListApplications200ResponseInnerOwnerWithDefaults() *ListApplications200ResponseInnerOwner

NewListApplications200ResponseInnerOwnerWithDefaults instantiates a new ListApplications200ResponseInnerOwner 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 (*ListApplications200ResponseInnerOwner) GetId added in v1.0.3

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

func (*ListApplications200ResponseInnerOwner) GetIdOk added in v1.0.3

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 (*ListApplications200ResponseInnerOwner) GetName added in v1.0.3

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

func (*ListApplications200ResponseInnerOwner) GetNameOk added in v1.0.3

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

func (*ListApplications200ResponseInnerOwner) HasId added in v1.0.3

HasId returns a boolean if a field has been set.

func (*ListApplications200ResponseInnerOwner) HasName added in v1.0.3

HasName returns a boolean if a field has been set.

func (ListApplications200ResponseInnerOwner) MarshalJSON added in v1.0.3

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

func (*ListApplications200ResponseInnerOwner) SetId added in v1.0.3

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

func (*ListApplications200ResponseInnerOwner) SetName added in v1.0.3

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

func (ListApplications200ResponseInnerOwner) ToMap added in v1.0.3

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

func (*ListApplications200ResponseInnerOwner) UnmarshalJSON added in v1.0.3

func (o *ListApplications200ResponseInnerOwner) UnmarshalJSON(bytes []byte) (err error)

type ListConnectors200Response added in v1.2.0

type ListConnectors200Response struct {
	Total                *float32                              `json:"total,omitempty"`
	Items                []ListConnectors200ResponseItemsInner `json:"items,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListConnectors200Response struct for ListConnectors200Response

func NewListConnectors200Response added in v1.2.0

func NewListConnectors200Response() *ListConnectors200Response

NewListConnectors200Response instantiates a new ListConnectors200Response 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 NewListConnectors200ResponseWithDefaults added in v1.2.0

func NewListConnectors200ResponseWithDefaults() *ListConnectors200Response

NewListConnectors200ResponseWithDefaults instantiates a new ListConnectors200Response 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 (*ListConnectors200Response) GetItems added in v1.2.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ListConnectors200Response) GetItemsOk added in v1.2.0

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

func (*ListConnectors200Response) GetTotal added in v1.2.0

func (o *ListConnectors200Response) GetTotal() float32

GetTotal returns the Total field value if set, zero value otherwise.

func (*ListConnectors200Response) GetTotalOk added in v1.2.0

func (o *ListConnectors200Response) GetTotalOk() (*float32, 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.

func (*ListConnectors200Response) HasItems added in v1.2.0

func (o *ListConnectors200Response) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListConnectors200Response) HasTotal added in v1.2.0

func (o *ListConnectors200Response) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ListConnectors200Response) MarshalJSON added in v1.2.0

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

func (*ListConnectors200Response) SetItems added in v1.2.0

SetItems gets a reference to the given []ListConnectors200ResponseItemsInner and assigns it to the Items field.

func (*ListConnectors200Response) SetTotal added in v1.2.0

func (o *ListConnectors200Response) SetTotal(v float32)

SetTotal gets a reference to the given float32 and assigns it to the Total field.

func (ListConnectors200Response) ToMap added in v1.2.0

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

func (*ListConnectors200Response) UnmarshalJSON added in v1.2.0

func (o *ListConnectors200Response) UnmarshalJSON(bytes []byte) (err error)

type ListConnectors200ResponseItemsInner added in v1.2.0

type ListConnectors200ResponseItemsInner struct {
	ApplicationXml        NullableString           `json:"applicationXml,omitempty"`
	ClassName             NullableString           `json:"className,omitempty"`
	ConnectorMetadata     map[string]interface{}   `json:"connectorMetadata,omitempty"`
	CorrelationConfigXml  NullableString           `json:"correlationConfigXml,omitempty"`
	DirectConnect         *bool                    `json:"directConnect,omitempty"`
	FileUpload            *bool                    `json:"fileUpload,omitempty"`
	Id                    *int32                   `json:"id,omitempty"`
	Name                  *string                  `json:"name,omitempty"`
	S3Location            NullableString           `json:"s3Location,omitempty"`
	Scope                 *string                  `json:"scope,omitempty"`
	ScriptName            *string                  `json:"scriptName,omitempty"`
	SourceConfig          NullableString           `json:"sourceConfig,omitempty"`
	SourceConfigFrom      NullableString           `json:"sourceConfigFrom,omitempty"`
	SourceConfigXml       NullableString           `json:"sourceConfigXml,omitempty"`
	Status                *string                  `json:"status,omitempty"`
	TranslationProperties map[string]interface{}   `json:"translationProperties,omitempty"`
	Type                  *string                  `json:"type,omitempty"`
	UploadedFiles         []map[string]interface{} `json:"uploadedFiles,omitempty"`
	AdditionalProperties  map[string]interface{}
}

ListConnectors200ResponseItemsInner struct for ListConnectors200ResponseItemsInner

func NewListConnectors200ResponseItemsInner added in v1.2.0

func NewListConnectors200ResponseItemsInner() *ListConnectors200ResponseItemsInner

NewListConnectors200ResponseItemsInner instantiates a new ListConnectors200ResponseItemsInner 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 NewListConnectors200ResponseItemsInnerWithDefaults added in v1.2.0

func NewListConnectors200ResponseItemsInnerWithDefaults() *ListConnectors200ResponseItemsInner

NewListConnectors200ResponseItemsInnerWithDefaults instantiates a new ListConnectors200ResponseItemsInner 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 (*ListConnectors200ResponseItemsInner) GetApplicationXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetApplicationXml() string

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

func (*ListConnectors200ResponseItemsInner) GetApplicationXmlOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetApplicationXmlOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetClassName added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetClassName() string

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

func (*ListConnectors200ResponseItemsInner) GetClassNameOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetClassNameOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetConnectorMetadata added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetConnectorMetadata() map[string]interface{}

GetConnectorMetadata returns the ConnectorMetadata field value if set, zero value otherwise.

func (*ListConnectors200ResponseItemsInner) GetConnectorMetadataOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetConnectorMetadataOk() (map[string]interface{}, bool)

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

func (*ListConnectors200ResponseItemsInner) GetCorrelationConfigXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetCorrelationConfigXml() string

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

func (*ListConnectors200ResponseItemsInner) GetCorrelationConfigXmlOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetCorrelationConfigXmlOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetDirectConnect added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetDirectConnect() bool

GetDirectConnect returns the DirectConnect field value if set, zero value otherwise.

func (*ListConnectors200ResponseItemsInner) GetDirectConnectOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetDirectConnectOk() (*bool, bool)

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

func (*ListConnectors200ResponseItemsInner) GetFileUpload added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetFileUpload() bool

GetFileUpload returns the FileUpload field value if set, zero value otherwise.

func (*ListConnectors200ResponseItemsInner) GetFileUploadOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetFileUploadOk() (*bool, bool)

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

func (*ListConnectors200ResponseItemsInner) GetId added in v1.2.0

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

func (*ListConnectors200ResponseItemsInner) GetIdOk added in v1.2.0

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 (*ListConnectors200ResponseItemsInner) GetName added in v1.2.0

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

func (*ListConnectors200ResponseItemsInner) GetNameOk added in v1.2.0

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

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

func (*ListConnectors200ResponseItemsInner) GetS3Location added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetS3Location() string

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

func (*ListConnectors200ResponseItemsInner) GetS3LocationOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetS3LocationOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetScope added in v1.2.0

GetScope returns the Scope field value if set, zero value otherwise.

func (*ListConnectors200ResponseItemsInner) GetScopeOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetScopeOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetScriptName added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetScriptName() string

GetScriptName returns the ScriptName field value if set, zero value otherwise.

func (*ListConnectors200ResponseItemsInner) GetScriptNameOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetScriptNameOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetSourceConfig added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetSourceConfig() string

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

func (*ListConnectors200ResponseItemsInner) GetSourceConfigFrom added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetSourceConfigFrom() string

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

func (*ListConnectors200ResponseItemsInner) GetSourceConfigFromOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetSourceConfigFromOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetSourceConfigOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetSourceConfigOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetSourceConfigXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetSourceConfigXml() string

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

func (*ListConnectors200ResponseItemsInner) GetSourceConfigXmlOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetSourceConfigXmlOk() (*string, bool)

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

func (*ListConnectors200ResponseItemsInner) GetStatus added in v1.2.0

GetStatus returns the Status field value if set, zero value otherwise.

func (*ListConnectors200ResponseItemsInner) GetStatusOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetStatusOk() (*string, 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 (*ListConnectors200ResponseItemsInner) GetTranslationProperties added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetTranslationProperties() map[string]interface{}

GetTranslationProperties returns the TranslationProperties field value if set, zero value otherwise.

func (*ListConnectors200ResponseItemsInner) GetTranslationPropertiesOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetTranslationPropertiesOk() (map[string]interface{}, bool)

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

func (*ListConnectors200ResponseItemsInner) GetType added in v1.2.0

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

func (*ListConnectors200ResponseItemsInner) GetTypeOk added in v1.2.0

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

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

func (*ListConnectors200ResponseItemsInner) GetUploadedFiles added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetUploadedFiles() []map[string]interface{}

GetUploadedFiles returns the UploadedFiles field value if set, zero value otherwise.

func (*ListConnectors200ResponseItemsInner) GetUploadedFilesOk added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) GetUploadedFilesOk() ([]map[string]interface{}, bool)

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

func (*ListConnectors200ResponseItemsInner) HasApplicationXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasApplicationXml() bool

HasApplicationXml returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasClassName added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasClassName() bool

HasClassName returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasConnectorMetadata added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasConnectorMetadata() bool

HasConnectorMetadata returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasCorrelationConfigXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasCorrelationConfigXml() bool

HasCorrelationConfigXml returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasDirectConnect added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasDirectConnect() bool

HasDirectConnect returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasFileUpload added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasFileUpload() bool

HasFileUpload returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasId added in v1.2.0

HasId returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasName added in v1.2.0

HasName returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasS3Location added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasS3Location() bool

HasS3Location returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasScope added in v1.2.0

HasScope returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasScriptName added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasScriptName() bool

HasScriptName returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasSourceConfig added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasSourceConfig() bool

HasSourceConfig returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasSourceConfigFrom added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasSourceConfigFrom() bool

HasSourceConfigFrom returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasSourceConfigXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasSourceConfigXml() bool

HasSourceConfigXml returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasStatus added in v1.2.0

HasStatus returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasTranslationProperties added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasTranslationProperties() bool

HasTranslationProperties returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasType added in v1.2.0

HasType returns a boolean if a field has been set.

func (*ListConnectors200ResponseItemsInner) HasUploadedFiles added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) HasUploadedFiles() bool

HasUploadedFiles returns a boolean if a field has been set.

func (ListConnectors200ResponseItemsInner) MarshalJSON added in v1.2.0

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

func (*ListConnectors200ResponseItemsInner) SetApplicationXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetApplicationXml(v string)

SetApplicationXml gets a reference to the given NullableString and assigns it to the ApplicationXml field.

func (*ListConnectors200ResponseItemsInner) SetApplicationXmlNil added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetApplicationXmlNil()

SetApplicationXmlNil sets the value for ApplicationXml to be an explicit nil

func (*ListConnectors200ResponseItemsInner) SetClassName added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetClassName(v string)

SetClassName gets a reference to the given NullableString and assigns it to the ClassName field.

func (*ListConnectors200ResponseItemsInner) SetClassNameNil added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetClassNameNil()

SetClassNameNil sets the value for ClassName to be an explicit nil

func (*ListConnectors200ResponseItemsInner) SetConnectorMetadata added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetConnectorMetadata(v map[string]interface{})

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

func (*ListConnectors200ResponseItemsInner) SetCorrelationConfigXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetCorrelationConfigXml(v string)

SetCorrelationConfigXml gets a reference to the given NullableString and assigns it to the CorrelationConfigXml field.

func (*ListConnectors200ResponseItemsInner) SetCorrelationConfigXmlNil added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetCorrelationConfigXmlNil()

SetCorrelationConfigXmlNil sets the value for CorrelationConfigXml to be an explicit nil

func (*ListConnectors200ResponseItemsInner) SetDirectConnect added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetDirectConnect(v bool)

SetDirectConnect gets a reference to the given bool and assigns it to the DirectConnect field.

func (*ListConnectors200ResponseItemsInner) SetFileUpload added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetFileUpload(v bool)

SetFileUpload gets a reference to the given bool and assigns it to the FileUpload field.

func (*ListConnectors200ResponseItemsInner) SetId added in v1.2.0

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

func (*ListConnectors200ResponseItemsInner) SetName added in v1.2.0

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

func (*ListConnectors200ResponseItemsInner) SetS3Location added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetS3Location(v string)

SetS3Location gets a reference to the given NullableString and assigns it to the S3Location field.

func (*ListConnectors200ResponseItemsInner) SetS3LocationNil added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetS3LocationNil()

SetS3LocationNil sets the value for S3Location to be an explicit nil

func (*ListConnectors200ResponseItemsInner) SetScope added in v1.2.0

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*ListConnectors200ResponseItemsInner) SetScriptName added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetScriptName(v string)

SetScriptName gets a reference to the given string and assigns it to the ScriptName field.

func (*ListConnectors200ResponseItemsInner) SetSourceConfig added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetSourceConfig(v string)

SetSourceConfig gets a reference to the given NullableString and assigns it to the SourceConfig field.

func (*ListConnectors200ResponseItemsInner) SetSourceConfigFrom added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetSourceConfigFrom(v string)

SetSourceConfigFrom gets a reference to the given NullableString and assigns it to the SourceConfigFrom field.

func (*ListConnectors200ResponseItemsInner) SetSourceConfigFromNil added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetSourceConfigFromNil()

SetSourceConfigFromNil sets the value for SourceConfigFrom to be an explicit nil

func (*ListConnectors200ResponseItemsInner) SetSourceConfigNil added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetSourceConfigNil()

SetSourceConfigNil sets the value for SourceConfig to be an explicit nil

func (*ListConnectors200ResponseItemsInner) SetSourceConfigXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetSourceConfigXml(v string)

SetSourceConfigXml gets a reference to the given NullableString and assigns it to the SourceConfigXml field.

func (*ListConnectors200ResponseItemsInner) SetSourceConfigXmlNil added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetSourceConfigXmlNil()

SetSourceConfigXmlNil sets the value for SourceConfigXml to be an explicit nil

func (*ListConnectors200ResponseItemsInner) SetStatus added in v1.2.0

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*ListConnectors200ResponseItemsInner) SetTranslationProperties added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetTranslationProperties(v map[string]interface{})

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

func (*ListConnectors200ResponseItemsInner) SetType added in v1.2.0

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

func (*ListConnectors200ResponseItemsInner) SetUploadedFiles added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) SetUploadedFiles(v []map[string]interface{})

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

func (ListConnectors200ResponseItemsInner) ToMap added in v1.2.0

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

func (*ListConnectors200ResponseItemsInner) UnmarshalJSON added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) UnmarshalJSON(bytes []byte) (err error)

func (*ListConnectors200ResponseItemsInner) UnsetApplicationXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) UnsetApplicationXml()

UnsetApplicationXml ensures that no value is present for ApplicationXml, not even an explicit nil

func (*ListConnectors200ResponseItemsInner) UnsetClassName added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) UnsetClassName()

UnsetClassName ensures that no value is present for ClassName, not even an explicit nil

func (*ListConnectors200ResponseItemsInner) UnsetCorrelationConfigXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) UnsetCorrelationConfigXml()

UnsetCorrelationConfigXml ensures that no value is present for CorrelationConfigXml, not even an explicit nil

func (*ListConnectors200ResponseItemsInner) UnsetS3Location added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) UnsetS3Location()

UnsetS3Location ensures that no value is present for S3Location, not even an explicit nil

func (*ListConnectors200ResponseItemsInner) UnsetSourceConfig added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) UnsetSourceConfig()

UnsetSourceConfig ensures that no value is present for SourceConfig, not even an explicit nil

func (*ListConnectors200ResponseItemsInner) UnsetSourceConfigFrom added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) UnsetSourceConfigFrom()

UnsetSourceConfigFrom ensures that no value is present for SourceConfigFrom, not even an explicit nil

func (*ListConnectors200ResponseItemsInner) UnsetSourceConfigXml added in v1.2.0

func (o *ListConnectors200ResponseItemsInner) UnsetSourceConfigXml()

UnsetSourceConfigXml ensures that no value is present for SourceConfigXml, not even an explicit nil

type LoadAccountsRequest

type LoadAccountsRequest struct {
	DisableOptimization  *bool     `json:"disableOptimization,omitempty"`
	File                 **os.File `json:"file,omitempty"`
	AdditionalProperties map[string]interface{}
}

LoadAccountsRequest struct for LoadAccountsRequest

func NewLoadAccountsRequest

func NewLoadAccountsRequest() *LoadAccountsRequest

NewLoadAccountsRequest instantiates a new LoadAccountsRequest 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 NewLoadAccountsRequestWithDefaults

func NewLoadAccountsRequestWithDefaults() *LoadAccountsRequest

NewLoadAccountsRequestWithDefaults instantiates a new LoadAccountsRequest 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 (*LoadAccountsRequest) GetDisableOptimization

func (o *LoadAccountsRequest) GetDisableOptimization() bool

GetDisableOptimization returns the DisableOptimization field value if set, zero value otherwise.

func (*LoadAccountsRequest) GetDisableOptimizationOk

func (o *LoadAccountsRequest) GetDisableOptimizationOk() (*bool, bool)

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

func (*LoadAccountsRequest) GetFile

func (o *LoadAccountsRequest) GetFile() *os.File

GetFile returns the File field value if set, zero value otherwise.

func (*LoadAccountsRequest) GetFileOk

func (o *LoadAccountsRequest) GetFileOk() (**os.File, bool)

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

func (*LoadAccountsRequest) HasDisableOptimization

func (o *LoadAccountsRequest) HasDisableOptimization() bool

HasDisableOptimization returns a boolean if a field has been set.

func (*LoadAccountsRequest) HasFile

func (o *LoadAccountsRequest) HasFile() bool

HasFile returns a boolean if a field has been set.

func (LoadAccountsRequest) MarshalJSON

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

func (*LoadAccountsRequest) SetDisableOptimization

func (o *LoadAccountsRequest) SetDisableOptimization(v bool)

SetDisableOptimization gets a reference to the given bool and assigns it to the DisableOptimization field.

func (*LoadAccountsRequest) SetFile

func (o *LoadAccountsRequest) SetFile(v *os.File)

SetFile gets a reference to the given *os.File and assigns it to the File field.

func (LoadAccountsRequest) ToMap added in v1.0.3

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

func (*LoadAccountsRequest) UnmarshalJSON

func (o *LoadAccountsRequest) UnmarshalJSON(bytes []byte) (err error)

type LoadEntitlementsRequest added in v1.2.0

type LoadEntitlementsRequest struct {
	File                 **os.File `json:"file,omitempty"`
	AdditionalProperties map[string]interface{}
}

LoadEntitlementsRequest struct for LoadEntitlementsRequest

func NewLoadEntitlementsRequest added in v1.2.0

func NewLoadEntitlementsRequest() *LoadEntitlementsRequest

NewLoadEntitlementsRequest instantiates a new LoadEntitlementsRequest 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 NewLoadEntitlementsRequestWithDefaults added in v1.2.0

func NewLoadEntitlementsRequestWithDefaults() *LoadEntitlementsRequest

NewLoadEntitlementsRequestWithDefaults instantiates a new LoadEntitlementsRequest 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 (*LoadEntitlementsRequest) GetFile added in v1.2.0

func (o *LoadEntitlementsRequest) GetFile() *os.File

GetFile returns the File field value if set, zero value otherwise.

func (*LoadEntitlementsRequest) GetFileOk added in v1.2.0

func (o *LoadEntitlementsRequest) GetFileOk() (**os.File, bool)

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

func (*LoadEntitlementsRequest) HasFile added in v1.2.0

func (o *LoadEntitlementsRequest) HasFile() bool

HasFile returns a boolean if a field has been set.

func (LoadEntitlementsRequest) MarshalJSON added in v1.2.0

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

func (*LoadEntitlementsRequest) SetFile added in v1.2.0

func (o *LoadEntitlementsRequest) SetFile(v *os.File)

SetFile gets a reference to the given *os.File and assigns it to the File field.

func (LoadEntitlementsRequest) ToMap added in v1.2.0

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

func (*LoadEntitlementsRequest) UnmarshalJSON added in v1.2.0

func (o *LoadEntitlementsRequest) UnmarshalJSON(bytes []byte) (err error)

type MappedNullable added in v1.0.3

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

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 NullableCreateApplicationRequest

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

func (NullableCreateApplicationRequest) Get

func (NullableCreateApplicationRequest) IsSet

func (NullableCreateApplicationRequest) MarshalJSON

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

func (*NullableCreateApplicationRequest) Set

func (*NullableCreateApplicationRequest) UnmarshalJSON

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

func (*NullableCreateApplicationRequest) Unset

type NullableCreateConnectorRequest

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

func (NullableCreateConnectorRequest) Get

func (NullableCreateConnectorRequest) IsSet

func (NullableCreateConnectorRequest) MarshalJSON

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

func (*NullableCreateConnectorRequest) Set

func (*NullableCreateConnectorRequest) UnmarshalJSON

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

func (*NullableCreateConnectorRequest) Unset

func (v *NullableCreateConnectorRequest) 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 NullableGetApplication200Response added in v1.2.0

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

func NewNullableGetApplication200Response added in v1.2.0

func NewNullableGetApplication200Response(val *GetApplication200Response) *NullableGetApplication200Response

func (NullableGetApplication200Response) Get added in v1.2.0

func (NullableGetApplication200Response) IsSet added in v1.2.0

func (NullableGetApplication200Response) MarshalJSON added in v1.2.0

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

func (*NullableGetApplication200Response) Set added in v1.2.0

func (*NullableGetApplication200Response) UnmarshalJSON added in v1.2.0

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

func (*NullableGetApplication200Response) Unset added in v1.2.0

type NullableGetIdentity200Response added in v1.0.3

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

func NewNullableGetIdentity200Response added in v1.0.3

func NewNullableGetIdentity200Response(val *GetIdentity200Response) *NullableGetIdentity200Response

func (NullableGetIdentity200Response) Get added in v1.0.3

func (NullableGetIdentity200Response) IsSet added in v1.0.3

func (NullableGetIdentity200Response) MarshalJSON added in v1.0.3

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

func (*NullableGetIdentity200Response) Set added in v1.0.3

func (*NullableGetIdentity200Response) UnmarshalJSON added in v1.0.3

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

func (*NullableGetIdentity200Response) Unset added in v1.0.3

func (v *NullableGetIdentity200Response) Unset()

type NullableGetIdentity200ResponseAuth added in v1.0.3

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

func NewNullableGetIdentity200ResponseAuth added in v1.0.3

func NewNullableGetIdentity200ResponseAuth(val *GetIdentity200ResponseAuth) *NullableGetIdentity200ResponseAuth

func (NullableGetIdentity200ResponseAuth) Get added in v1.0.3

func (NullableGetIdentity200ResponseAuth) IsSet added in v1.0.3

func (NullableGetIdentity200ResponseAuth) MarshalJSON added in v1.0.3

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

func (*NullableGetIdentity200ResponseAuth) Set added in v1.0.3

func (*NullableGetIdentity200ResponseAuth) UnmarshalJSON added in v1.0.3

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

func (*NullableGetIdentity200ResponseAuth) Unset added in v1.0.3

type NullableGetIdentity200ResponseOrg added in v1.0.3

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

func NewNullableGetIdentity200ResponseOrg added in v1.0.3

func NewNullableGetIdentity200ResponseOrg(val *GetIdentity200ResponseOrg) *NullableGetIdentity200ResponseOrg

func (NullableGetIdentity200ResponseOrg) Get added in v1.0.3

func (NullableGetIdentity200ResponseOrg) IsSet added in v1.0.3

func (NullableGetIdentity200ResponseOrg) MarshalJSON added in v1.0.3

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

func (*NullableGetIdentity200ResponseOrg) Set added in v1.0.3

func (*NullableGetIdentity200ResponseOrg) UnmarshalJSON added in v1.0.3

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

func (*NullableGetIdentity200ResponseOrg) Unset added in v1.0.3

type NullableImportConnectorConfigRequest

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

func (NullableImportConnectorConfigRequest) Get

func (NullableImportConnectorConfigRequest) IsSet

func (NullableImportConnectorConfigRequest) MarshalJSON

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

func (*NullableImportConnectorConfigRequest) Set

func (*NullableImportConnectorConfigRequest) UnmarshalJSON

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

func (*NullableImportConnectorConfigRequest) 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 NullableListAccounts200ResponseInner added in v1.2.0

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

func NewNullableListAccounts200ResponseInner added in v1.2.0

func NewNullableListAccounts200ResponseInner(val *ListAccounts200ResponseInner) *NullableListAccounts200ResponseInner

func (NullableListAccounts200ResponseInner) Get added in v1.2.0

func (NullableListAccounts200ResponseInner) IsSet added in v1.2.0

func (NullableListAccounts200ResponseInner) MarshalJSON added in v1.2.0

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

func (*NullableListAccounts200ResponseInner) Set added in v1.2.0

func (*NullableListAccounts200ResponseInner) UnmarshalJSON added in v1.2.0

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

func (*NullableListAccounts200ResponseInner) Unset added in v1.2.0

type NullableListAccounts200ResponseInnerPasswordChangeResult added in v1.2.0

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

func (NullableListAccounts200ResponseInnerPasswordChangeResult) Get added in v1.2.0

func (NullableListAccounts200ResponseInnerPasswordChangeResult) IsSet added in v1.2.0

func (NullableListAccounts200ResponseInnerPasswordChangeResult) MarshalJSON added in v1.2.0

func (*NullableListAccounts200ResponseInnerPasswordChangeResult) Set added in v1.2.0

func (*NullableListAccounts200ResponseInnerPasswordChangeResult) UnmarshalJSON added in v1.2.0

func (*NullableListAccounts200ResponseInnerPasswordChangeResult) Unset added in v1.2.0

type NullableListApplications200ResponseInner added in v1.0.3

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

func NewNullableListApplications200ResponseInner added in v1.0.3

func NewNullableListApplications200ResponseInner(val *ListApplications200ResponseInner) *NullableListApplications200ResponseInner

func (NullableListApplications200ResponseInner) Get added in v1.0.3

func (NullableListApplications200ResponseInner) IsSet added in v1.0.3

func (NullableListApplications200ResponseInner) MarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInner) Set added in v1.0.3

func (*NullableListApplications200ResponseInner) UnmarshalJSON added in v1.0.3

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

func (*NullableListApplications200ResponseInner) Unset added in v1.0.3

type NullableListApplications200ResponseInnerAccountServicePoliciesInner added in v1.0.3

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

func (NullableListApplications200ResponseInnerAccountServicePoliciesInner) Get added in v1.0.3

func (NullableListApplications200ResponseInnerAccountServicePoliciesInner) IsSet added in v1.0.3

func (NullableListApplications200ResponseInnerAccountServicePoliciesInner) MarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInnerAccountServicePoliciesInner) Set added in v1.0.3

func (*NullableListApplications200ResponseInnerAccountServicePoliciesInner) UnmarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInnerAccountServicePoliciesInner) Unset added in v1.0.3

type NullableListApplications200ResponseInnerAppProfilesInner added in v1.0.3

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

func (NullableListApplications200ResponseInnerAppProfilesInner) Get added in v1.0.3

func (NullableListApplications200ResponseInnerAppProfilesInner) IsSet added in v1.0.3

func (NullableListApplications200ResponseInnerAppProfilesInner) MarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInnerAppProfilesInner) Set added in v1.0.3

func (*NullableListApplications200ResponseInnerAppProfilesInner) UnmarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInnerAppProfilesInner) Unset added in v1.0.3

type NullableListApplications200ResponseInnerHealth added in v1.0.3

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

func (NullableListApplications200ResponseInnerHealth) Get added in v1.0.3

func (NullableListApplications200ResponseInnerHealth) IsSet added in v1.0.3

func (NullableListApplications200ResponseInnerHealth) MarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInnerHealth) Set added in v1.0.3

func (*NullableListApplications200ResponseInnerHealth) UnmarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInnerHealth) Unset added in v1.0.3

type NullableListApplications200ResponseInnerOwner added in v1.0.3

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

func (NullableListApplications200ResponseInnerOwner) Get added in v1.0.3

func (NullableListApplications200ResponseInnerOwner) IsSet added in v1.0.3

func (NullableListApplications200ResponseInnerOwner) MarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInnerOwner) Set added in v1.0.3

func (*NullableListApplications200ResponseInnerOwner) UnmarshalJSON added in v1.0.3

func (*NullableListApplications200ResponseInnerOwner) Unset added in v1.0.3

type NullableListConnectors200Response added in v1.2.0

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

func NewNullableListConnectors200Response added in v1.2.0

func NewNullableListConnectors200Response(val *ListConnectors200Response) *NullableListConnectors200Response

func (NullableListConnectors200Response) Get added in v1.2.0

func (NullableListConnectors200Response) IsSet added in v1.2.0

func (NullableListConnectors200Response) MarshalJSON added in v1.2.0

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

func (*NullableListConnectors200Response) Set added in v1.2.0

func (*NullableListConnectors200Response) UnmarshalJSON added in v1.2.0

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

func (*NullableListConnectors200Response) Unset added in v1.2.0

type NullableListConnectors200ResponseItemsInner added in v1.2.0

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

func NewNullableListConnectors200ResponseItemsInner added in v1.2.0

func NewNullableListConnectors200ResponseItemsInner(val *ListConnectors200ResponseItemsInner) *NullableListConnectors200ResponseItemsInner

func (NullableListConnectors200ResponseItemsInner) Get added in v1.2.0

func (NullableListConnectors200ResponseItemsInner) IsSet added in v1.2.0

func (NullableListConnectors200ResponseItemsInner) MarshalJSON added in v1.2.0

func (*NullableListConnectors200ResponseItemsInner) Set added in v1.2.0

func (*NullableListConnectors200ResponseItemsInner) UnmarshalJSON added in v1.2.0

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

func (*NullableListConnectors200ResponseItemsInner) Unset added in v1.2.0

type NullableLoadAccountsRequest

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

func NewNullableLoadAccountsRequest

func NewNullableLoadAccountsRequest(val *LoadAccountsRequest) *NullableLoadAccountsRequest

func (NullableLoadAccountsRequest) Get

func (NullableLoadAccountsRequest) IsSet

func (NullableLoadAccountsRequest) MarshalJSON

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

func (*NullableLoadAccountsRequest) Set

func (*NullableLoadAccountsRequest) UnmarshalJSON

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

func (*NullableLoadAccountsRequest) Unset

func (v *NullableLoadAccountsRequest) Unset()

type NullableLoadEntitlementsRequest added in v1.2.0

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

func NewNullableLoadEntitlementsRequest added in v1.2.0

func NewNullableLoadEntitlementsRequest(val *LoadEntitlementsRequest) *NullableLoadEntitlementsRequest

func (NullableLoadEntitlementsRequest) Get added in v1.2.0

func (NullableLoadEntitlementsRequest) IsSet added in v1.2.0

func (NullableLoadEntitlementsRequest) MarshalJSON added in v1.2.0

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

func (*NullableLoadEntitlementsRequest) Set added in v1.2.0

func (*NullableLoadEntitlementsRequest) UnmarshalJSON added in v1.2.0

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

func (*NullableLoadEntitlementsRequest) Unset added in v1.2.0

type NullableRefreshIdentitiesRequest added in v1.1.1

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

func NewNullableRefreshIdentitiesRequest added in v1.1.1

func NewNullableRefreshIdentitiesRequest(val *RefreshIdentitiesRequest) *NullableRefreshIdentitiesRequest

func (NullableRefreshIdentitiesRequest) Get added in v1.1.1

func (NullableRefreshIdentitiesRequest) IsSet added in v1.1.1

func (NullableRefreshIdentitiesRequest) MarshalJSON added in v1.1.1

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

func (*NullableRefreshIdentitiesRequest) Set added in v1.1.1

func (*NullableRefreshIdentitiesRequest) UnmarshalJSON added in v1.1.1

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

func (*NullableRefreshIdentitiesRequest) Unset added in v1.1.1

type NullableRefreshIdentitiesRequestRefreshArgs added in v1.1.1

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

func NewNullableRefreshIdentitiesRequestRefreshArgs added in v1.1.1

func NewNullableRefreshIdentitiesRequestRefreshArgs(val *RefreshIdentitiesRequestRefreshArgs) *NullableRefreshIdentitiesRequestRefreshArgs

func (NullableRefreshIdentitiesRequestRefreshArgs) Get added in v1.1.1

func (NullableRefreshIdentitiesRequestRefreshArgs) IsSet added in v1.1.1

func (NullableRefreshIdentitiesRequestRefreshArgs) MarshalJSON added in v1.1.1

func (*NullableRefreshIdentitiesRequestRefreshArgs) Set added in v1.1.1

func (*NullableRefreshIdentitiesRequestRefreshArgs) UnmarshalJSON added in v1.1.1

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

func (*NullableRefreshIdentitiesRequestRefreshArgs) Unset added in v1.1.1

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpdateUserPermissionsRequest

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

func (NullableUpdateUserPermissionsRequest) Get

func (NullableUpdateUserPermissionsRequest) IsSet

func (NullableUpdateUserPermissionsRequest) MarshalJSON

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

func (*NullableUpdateUserPermissionsRequest) Set

func (*NullableUpdateUserPermissionsRequest) UnmarshalJSON

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

func (*NullableUpdateUserPermissionsRequest) Unset

type RefreshIdentitiesRequest added in v1.1.1

type RefreshIdentitiesRequest struct {
	// Defines the identity or identities which this refresh applies to. The filter must use searchable identity attributes. If the filter cannot be understood or parsed, all identities will be refreshed.
	Filter               *string                              `json:"filter,omitempty"`
	RefreshArgs          *RefreshIdentitiesRequestRefreshArgs `json:"refreshArgs,omitempty"`
	AdditionalProperties map[string]interface{}
}

RefreshIdentitiesRequest struct for RefreshIdentitiesRequest

func NewRefreshIdentitiesRequest added in v1.1.1

func NewRefreshIdentitiesRequest() *RefreshIdentitiesRequest

NewRefreshIdentitiesRequest instantiates a new RefreshIdentitiesRequest 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 NewRefreshIdentitiesRequestWithDefaults added in v1.1.1

func NewRefreshIdentitiesRequestWithDefaults() *RefreshIdentitiesRequest

NewRefreshIdentitiesRequestWithDefaults instantiates a new RefreshIdentitiesRequest 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 (*RefreshIdentitiesRequest) GetFilter added in v1.1.1

func (o *RefreshIdentitiesRequest) GetFilter() string

GetFilter returns the Filter field value if set, zero value otherwise.

func (*RefreshIdentitiesRequest) GetFilterOk added in v1.1.1

func (o *RefreshIdentitiesRequest) GetFilterOk() (*string, bool)

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

func (*RefreshIdentitiesRequest) GetRefreshArgs added in v1.1.1

GetRefreshArgs returns the RefreshArgs field value if set, zero value otherwise.

func (*RefreshIdentitiesRequest) GetRefreshArgsOk added in v1.1.1

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

func (*RefreshIdentitiesRequest) HasFilter added in v1.1.1

func (o *RefreshIdentitiesRequest) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*RefreshIdentitiesRequest) HasRefreshArgs added in v1.1.1

func (o *RefreshIdentitiesRequest) HasRefreshArgs() bool

HasRefreshArgs returns a boolean if a field has been set.

func (RefreshIdentitiesRequest) MarshalJSON added in v1.1.1

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

func (*RefreshIdentitiesRequest) SetFilter added in v1.1.1

func (o *RefreshIdentitiesRequest) SetFilter(v string)

SetFilter gets a reference to the given string and assigns it to the Filter field.

func (*RefreshIdentitiesRequest) SetRefreshArgs added in v1.1.1

SetRefreshArgs gets a reference to the given RefreshIdentitiesRequestRefreshArgs and assigns it to the RefreshArgs field.

func (RefreshIdentitiesRequest) ToMap added in v1.1.1

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

func (*RefreshIdentitiesRequest) UnmarshalJSON added in v1.1.1

func (o *RefreshIdentitiesRequest) UnmarshalJSON(bytes []byte) (err error)

type RefreshIdentitiesRequestRefreshArgs added in v1.1.1

type RefreshIdentitiesRequestRefreshArgs struct {
	// This will refresh entitlement, role, and access profile calculations.
	CorrelateEntitlements *bool `json:"correlateEntitlements,omitempty"`
	// This will calculate identity attributes.
	PromoteAttributes *bool `json:"promoteAttributes,omitempty"`
	// This recalculates manager correlation and manager status. Note: This is computationally expensive to run.
	RefreshManagerStatus *bool `json:"refreshManagerStatus,omitempty"`
	// Enables attribute synchronization.
	SynchronizeAttributes *bool `json:"synchronizeAttributes,omitempty"`
	// Option that will enable deletion of an identity objects if there are no account objects. Note: This is not typically used in IdentityNow, except by guidance from SailPoint.
	PruneIdentities *bool `json:"pruneIdentities,omitempty"`
	// Enables provisioning of role assignments with entitlements that are not currently fulfilled.
	Provision            *bool `json:"provision,omitempty"`
	AdditionalProperties map[string]interface{}
}

RefreshIdentitiesRequestRefreshArgs struct for RefreshIdentitiesRequestRefreshArgs

func NewRefreshIdentitiesRequestRefreshArgs added in v1.1.1

func NewRefreshIdentitiesRequestRefreshArgs() *RefreshIdentitiesRequestRefreshArgs

NewRefreshIdentitiesRequestRefreshArgs instantiates a new RefreshIdentitiesRequestRefreshArgs 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 NewRefreshIdentitiesRequestRefreshArgsWithDefaults added in v1.1.1

func NewRefreshIdentitiesRequestRefreshArgsWithDefaults() *RefreshIdentitiesRequestRefreshArgs

NewRefreshIdentitiesRequestRefreshArgsWithDefaults instantiates a new RefreshIdentitiesRequestRefreshArgs 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 (*RefreshIdentitiesRequestRefreshArgs) GetCorrelateEntitlements added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetCorrelateEntitlements() bool

GetCorrelateEntitlements returns the CorrelateEntitlements field value if set, zero value otherwise.

func (*RefreshIdentitiesRequestRefreshArgs) GetCorrelateEntitlementsOk added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetCorrelateEntitlementsOk() (*bool, bool)

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

func (*RefreshIdentitiesRequestRefreshArgs) GetPromoteAttributes added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetPromoteAttributes() bool

GetPromoteAttributes returns the PromoteAttributes field value if set, zero value otherwise.

func (*RefreshIdentitiesRequestRefreshArgs) GetPromoteAttributesOk added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetPromoteAttributesOk() (*bool, bool)

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

func (*RefreshIdentitiesRequestRefreshArgs) GetProvision added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetProvision() bool

GetProvision returns the Provision field value if set, zero value otherwise.

func (*RefreshIdentitiesRequestRefreshArgs) GetProvisionOk added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetProvisionOk() (*bool, bool)

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

func (*RefreshIdentitiesRequestRefreshArgs) GetPruneIdentities added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetPruneIdentities() bool

GetPruneIdentities returns the PruneIdentities field value if set, zero value otherwise.

func (*RefreshIdentitiesRequestRefreshArgs) GetPruneIdentitiesOk added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetPruneIdentitiesOk() (*bool, bool)

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

func (*RefreshIdentitiesRequestRefreshArgs) GetRefreshManagerStatus added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetRefreshManagerStatus() bool

GetRefreshManagerStatus returns the RefreshManagerStatus field value if set, zero value otherwise.

func (*RefreshIdentitiesRequestRefreshArgs) GetRefreshManagerStatusOk added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetRefreshManagerStatusOk() (*bool, bool)

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

func (*RefreshIdentitiesRequestRefreshArgs) GetSynchronizeAttributes added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetSynchronizeAttributes() bool

GetSynchronizeAttributes returns the SynchronizeAttributes field value if set, zero value otherwise.

func (*RefreshIdentitiesRequestRefreshArgs) GetSynchronizeAttributesOk added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) GetSynchronizeAttributesOk() (*bool, bool)

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

func (*RefreshIdentitiesRequestRefreshArgs) HasCorrelateEntitlements added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) HasCorrelateEntitlements() bool

HasCorrelateEntitlements returns a boolean if a field has been set.

func (*RefreshIdentitiesRequestRefreshArgs) HasPromoteAttributes added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) HasPromoteAttributes() bool

HasPromoteAttributes returns a boolean if a field has been set.

func (*RefreshIdentitiesRequestRefreshArgs) HasProvision added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) HasProvision() bool

HasProvision returns a boolean if a field has been set.

func (*RefreshIdentitiesRequestRefreshArgs) HasPruneIdentities added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) HasPruneIdentities() bool

HasPruneIdentities returns a boolean if a field has been set.

func (*RefreshIdentitiesRequestRefreshArgs) HasRefreshManagerStatus added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) HasRefreshManagerStatus() bool

HasRefreshManagerStatus returns a boolean if a field has been set.

func (*RefreshIdentitiesRequestRefreshArgs) HasSynchronizeAttributes added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) HasSynchronizeAttributes() bool

HasSynchronizeAttributes returns a boolean if a field has been set.

func (RefreshIdentitiesRequestRefreshArgs) MarshalJSON added in v1.1.1

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

func (*RefreshIdentitiesRequestRefreshArgs) SetCorrelateEntitlements added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) SetCorrelateEntitlements(v bool)

SetCorrelateEntitlements gets a reference to the given bool and assigns it to the CorrelateEntitlements field.

func (*RefreshIdentitiesRequestRefreshArgs) SetPromoteAttributes added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) SetPromoteAttributes(v bool)

SetPromoteAttributes gets a reference to the given bool and assigns it to the PromoteAttributes field.

func (*RefreshIdentitiesRequestRefreshArgs) SetProvision added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) SetProvision(v bool)

SetProvision gets a reference to the given bool and assigns it to the Provision field.

func (*RefreshIdentitiesRequestRefreshArgs) SetPruneIdentities added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) SetPruneIdentities(v bool)

SetPruneIdentities gets a reference to the given bool and assigns it to the PruneIdentities field.

func (*RefreshIdentitiesRequestRefreshArgs) SetRefreshManagerStatus added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) SetRefreshManagerStatus(v bool)

SetRefreshManagerStatus gets a reference to the given bool and assigns it to the RefreshManagerStatus field.

func (*RefreshIdentitiesRequestRefreshArgs) SetSynchronizeAttributes added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) SetSynchronizeAttributes(v bool)

SetSynchronizeAttributes gets a reference to the given bool and assigns it to the SynchronizeAttributes field.

func (RefreshIdentitiesRequestRefreshArgs) ToMap added in v1.1.1

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

func (*RefreshIdentitiesRequestRefreshArgs) UnmarshalJSON added in v1.1.1

func (o *RefreshIdentitiesRequestRefreshArgs) UnmarshalJSON(bytes []byte) (err 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 SourcesAccountsApiService

type SourcesAccountsApiService service

SourcesAccountsApiService SourcesAccountsApi service

func (*SourcesAccountsApiService) ExportAccountFeed

ExportAccountFeed Export Account Feed

Exports a CSV of the accounts for a particular source.

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

func (*SourcesAccountsApiService) ExportAccountFeedExecute

func (a *SourcesAccountsApiService) ExportAccountFeedExecute(r ApiExportAccountFeedRequest) (*http.Response, error)

Execute executes the request

type SourcesAggregationApiService

type SourcesAggregationApiService service

SourcesAggregationApiService SourcesAggregationApi service

func (*SourcesAggregationApiService) LoadAccounts

LoadAccounts Account Aggregation (File)

Aggregates a delimited file for the given source. This only works for file-based sources.

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

func (*SourcesAggregationApiService) LoadAccountsExecute

func (a *SourcesAggregationApiService) LoadAccountsExecute(r ApiLoadAccountsRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*SourcesAggregationApiService) LoadEntitlements added in v1.2.0

LoadEntitlements Account Aggregation (File)

Aggregates a delimited file for the given source. This only works for file-based sources.

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

func (*SourcesAggregationApiService) LoadEntitlementsExecute added in v1.2.0

func (a *SourcesAggregationApiService) LoadEntitlementsExecute(r ApiLoadEntitlementsRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type SystemApiService

type SystemApiService service

SystemApiService SystemApi service

func (*SystemApiService) RefreshIdentities

func (a *SystemApiService) RefreshIdentities(ctx context.Context) ApiRefreshIdentitiesRequest

RefreshIdentities Refresh Identities

This kicks off an identity refresh for a specified set of identity attributes. This can be a long running process. IdentityNow has pre-scheduled versions of this task at set intervals and events already, so only run this when directed by SailPoint.

_Note: If the identities specified by the filter do not exist, a full identity refresh will be run. Use with caution._

Refresh Arguments:

| Key | Description | |-----------------------|----------------------------------------------------| | correlateEntitlements | Analyzes entitlements, access profiles, and roles. | | promoteAttributes | Calculates identity attributes. | | refreshManagerStatus | Calculates manager correlation and manager status. | | synchronizeAttributes | Performs attribute sync provisioning. | | pruneIdentities | Removes any identities which don't have accounts. | | provision | Provisions any assigned roles or access profiles. |

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

func (*SystemApiService) RefreshIdentitiesExecute

func (a *SystemApiService) RefreshIdentitiesExecute(r ApiRefreshIdentitiesRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type UpdateUserPermissionsRequest

type UpdateUserPermissionsRequest struct {
	Ids *string `json:"ids,omitempty"`
	// Indicates if user should be an IDN Admin.  \"0\" for false, \"1\" for true.
	IsAdmin              *string `json:"isAdmin,omitempty"`
	AdminType            *string `json:"adminType,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateUserPermissionsRequest struct for UpdateUserPermissionsRequest

func NewUpdateUserPermissionsRequest

func NewUpdateUserPermissionsRequest() *UpdateUserPermissionsRequest

NewUpdateUserPermissionsRequest instantiates a new UpdateUserPermissionsRequest 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 NewUpdateUserPermissionsRequestWithDefaults

func NewUpdateUserPermissionsRequestWithDefaults() *UpdateUserPermissionsRequest

NewUpdateUserPermissionsRequestWithDefaults instantiates a new UpdateUserPermissionsRequest 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 (*UpdateUserPermissionsRequest) GetAdminType

func (o *UpdateUserPermissionsRequest) GetAdminType() string

GetAdminType returns the AdminType field value if set, zero value otherwise.

func (*UpdateUserPermissionsRequest) GetAdminTypeOk

func (o *UpdateUserPermissionsRequest) GetAdminTypeOk() (*string, bool)

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

func (*UpdateUserPermissionsRequest) GetIds

GetIds returns the Ids field value if set, zero value otherwise.

func (*UpdateUserPermissionsRequest) GetIdsOk

func (o *UpdateUserPermissionsRequest) GetIdsOk() (*string, bool)

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

func (*UpdateUserPermissionsRequest) GetIsAdmin

func (o *UpdateUserPermissionsRequest) GetIsAdmin() string

GetIsAdmin returns the IsAdmin field value if set, zero value otherwise.

func (*UpdateUserPermissionsRequest) GetIsAdminOk

func (o *UpdateUserPermissionsRequest) GetIsAdminOk() (*string, 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 (*UpdateUserPermissionsRequest) HasAdminType

func (o *UpdateUserPermissionsRequest) HasAdminType() bool

HasAdminType returns a boolean if a field has been set.

func (*UpdateUserPermissionsRequest) HasIds

func (o *UpdateUserPermissionsRequest) HasIds() bool

HasIds returns a boolean if a field has been set.

func (*UpdateUserPermissionsRequest) HasIsAdmin

func (o *UpdateUserPermissionsRequest) HasIsAdmin() bool

HasIsAdmin returns a boolean if a field has been set.

func (UpdateUserPermissionsRequest) MarshalJSON

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

func (*UpdateUserPermissionsRequest) SetAdminType

func (o *UpdateUserPermissionsRequest) SetAdminType(v string)

SetAdminType gets a reference to the given string and assigns it to the AdminType field.

func (*UpdateUserPermissionsRequest) SetIds

func (o *UpdateUserPermissionsRequest) SetIds(v string)

SetIds gets a reference to the given string and assigns it to the Ids field.

func (*UpdateUserPermissionsRequest) SetIsAdmin

func (o *UpdateUserPermissionsRequest) SetIsAdmin(v string)

SetIsAdmin gets a reference to the given string and assigns it to the IsAdmin field.

func (UpdateUserPermissionsRequest) ToMap added in v1.0.3

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

func (*UpdateUserPermissionsRequest) UnmarshalJSON

func (o *UpdateUserPermissionsRequest) UnmarshalJSON(bytes []byte) (err error)

type UserApiService

type UserApiService service

UserApiService UserApi service

func (*UserApiService) GetIdentity added in v1.0.3

func (a *UserApiService) GetIdentity(ctx context.Context, id string) ApiGetIdentityRequest

GetIdentity Get Single Identity

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

func (*UserApiService) GetIdentityExecute added in v1.0.3

Execute executes the request

@return GetIdentity200Response

func (*UserApiService) UpdateUserPermissions

func (a *UserApiService) UpdateUserPermissions(ctx context.Context) ApiUpdateUserPermissionsRequest

UpdateUserPermissions Update User Permissions

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

func (*UserApiService) UpdateUserPermissionsExecute

func (a *UserApiService) UpdateUserPermissionsExecute(r ApiUpdateUserPermissionsRequest) (*http.Response, error)

Execute executes the request

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL