v2

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Mar 3, 2023 License: MIT Imports: 23 Imported by: 0

README

Go API client for v2

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: 2.0.0
  • Package version: 1.0.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 v2 "github.com/GIT_USER_ID/GIT_REPO_ID"

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(), v2.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(), v2.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(), v2.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), v2.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/v2

Class Method HTTP request Description
GovernanceGroupsApi BulkDeleteWorkGroups Post /workgroups/bulk-delete Bulk delete work groups
GovernanceGroupsApi CreateWorkgroup Post /workgroups Create Work Group
GovernanceGroupsApi DeleteWorkgroup Delete /workgroups/{workgroupId} Delete Work Group By Id
GovernanceGroupsApi GetWorkgroup Get /workgroups/{workgroupId} Get Work Group By Id
GovernanceGroupsApi ListWorkgroupConnections Get /workgroups/{workgroupId}/connections List Work Group Connections
GovernanceGroupsApi ListWorkgroupMembers Get /workgroups/{workgroupId}/members List Work Group Members
GovernanceGroupsApi ListWorkgroups Get /workgroups List Work Groups
GovernanceGroupsApi ModifyWorkgroupMembers Post /workgroups/{workgroupId}/members Modify Work Group Members
GovernanceGroupsApi UpdateWorkgroup Patch /workgroups/{workgroupId} Update Work Group By Id
OrgApi GetOrgSettings Get /org Retrieves your org settings.
OrgApi UpdateOrgSettings Patch /org Updates one or more org attributes.

Documentation For Models

Documentation For Authorization

oauth2
  • 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)
oauth2

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

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	ContextClientCredentials = contextKey("clientCredentials")

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

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// 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 {
	GovernanceGroupsApi *GovernanceGroupsApiService

	OrgApi *OrgApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the SailPoint SaaS API API v2.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 ApiBulkDeleteWorkGroupsRequest

type ApiBulkDeleteWorkGroupsRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiBulkDeleteWorkGroupsRequest) BulkDeleteWorkGroupsRequest

func (r ApiBulkDeleteWorkGroupsRequest) BulkDeleteWorkGroupsRequest(bulkDeleteWorkGroupsRequest BulkDeleteWorkGroupsRequest) ApiBulkDeleteWorkGroupsRequest

Work group ids to delete

func (ApiBulkDeleteWorkGroupsRequest) Execute

type ApiCreateWorkgroupRequest

type ApiCreateWorkgroupRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiCreateWorkgroupRequest) CreateWorkgroupRequest

func (r ApiCreateWorkgroupRequest) CreateWorkgroupRequest(createWorkgroupRequest CreateWorkgroupRequest) ApiCreateWorkgroupRequest

Work group to create.

func (ApiCreateWorkgroupRequest) Execute

type ApiDeleteWorkgroupRequest

type ApiDeleteWorkgroupRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkgroupRequest) Execute

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

type ApiGetOrgSettingsRequest

type ApiGetOrgSettingsRequest struct {
	ApiService *OrgApiService
	// contains filtered or unexported fields
}

func (ApiGetOrgSettingsRequest) Execute

type ApiGetWorkgroupRequest

type ApiGetWorkgroupRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkgroupRequest) Execute

type ApiListWorkgroupConnectionsRequest

type ApiListWorkgroupConnectionsRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiListWorkgroupConnectionsRequest) Execute

type ApiListWorkgroupMembersRequest

type ApiListWorkgroupMembersRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiListWorkgroupMembersRequest) Execute

func (ApiListWorkgroupMembersRequest) Filters

Filter results using the following syntax. [{property:name, value: \"Tyler\", operation: EQ}]

func (ApiListWorkgroupMembersRequest) Limit

Max number of results to return

func (ApiListWorkgroupMembersRequest) Offset

Offset into the full result set. Usually specified with *limit* to paginate through the results.

type ApiListWorkgroupsRequest

type ApiListWorkgroupsRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiListWorkgroupsRequest) Execute

func (ApiListWorkgroupsRequest) Filters

Filter results using the following syntax. [{property:name, value: \"Tyler\", operation: EQ}]

func (ApiListWorkgroupsRequest) Limit

Max number of results to return

func (ApiListWorkgroupsRequest) Offset

Offset into the full result set. Usually specified with *limit* to paginate through the results.

type ApiModifyWorkgroupMembersRequest

type ApiModifyWorkgroupMembersRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiModifyWorkgroupMembersRequest) Execute

func (ApiModifyWorkgroupMembersRequest) ModifyWorkgroupMembersRequest

func (r ApiModifyWorkgroupMembersRequest) ModifyWorkgroupMembersRequest(modifyWorkgroupMembersRequest ModifyWorkgroupMembersRequest) ApiModifyWorkgroupMembersRequest

Add/Remove workgroup member ids.

type ApiUpdateOrgSettingsRequest

type ApiUpdateOrgSettingsRequest struct {
	ApiService *OrgApiService
	// contains filtered or unexported fields
}

func (ApiUpdateOrgSettingsRequest) Execute

func (ApiUpdateOrgSettingsRequest) UpdateOrgSettingsRequest

func (r ApiUpdateOrgSettingsRequest) UpdateOrgSettingsRequest(updateOrgSettingsRequest UpdateOrgSettingsRequest) ApiUpdateOrgSettingsRequest

Org settings to update.

type ApiUpdateWorkgroupRequest

type ApiUpdateWorkgroupRequest struct {
	ApiService *GovernanceGroupsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkgroupRequest) CreateWorkgroupRequest

func (r ApiUpdateWorkgroupRequest) CreateWorkgroupRequest(createWorkgroupRequest CreateWorkgroupRequest) ApiUpdateWorkgroupRequest

Work group to modify.

func (ApiUpdateWorkgroupRequest) Execute

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 BulkDeleteWorkGroups200Response

type BulkDeleteWorkGroups200Response struct {
	Deleted              []string `json:"deleted,omitempty"`
	InUse                []string `json:"inUse,omitempty"`
	NotFound             []string `json:"notFound,omitempty"`
	AdditionalProperties map[string]interface{}
}

BulkDeleteWorkGroups200Response struct for BulkDeleteWorkGroups200Response

func NewBulkDeleteWorkGroups200Response

func NewBulkDeleteWorkGroups200Response() *BulkDeleteWorkGroups200Response

NewBulkDeleteWorkGroups200Response instantiates a new BulkDeleteWorkGroups200Response 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 NewBulkDeleteWorkGroups200ResponseWithDefaults

func NewBulkDeleteWorkGroups200ResponseWithDefaults() *BulkDeleteWorkGroups200Response

NewBulkDeleteWorkGroups200ResponseWithDefaults instantiates a new BulkDeleteWorkGroups200Response 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 (*BulkDeleteWorkGroups200Response) GetDeleted

func (o *BulkDeleteWorkGroups200Response) GetDeleted() []string

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*BulkDeleteWorkGroups200Response) GetDeletedOk

func (o *BulkDeleteWorkGroups200Response) GetDeletedOk() ([]string, bool)

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

func (*BulkDeleteWorkGroups200Response) GetInUse

func (o *BulkDeleteWorkGroups200Response) GetInUse() []string

GetInUse returns the InUse field value if set, zero value otherwise.

func (*BulkDeleteWorkGroups200Response) GetInUseOk

func (o *BulkDeleteWorkGroups200Response) GetInUseOk() ([]string, bool)

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

func (*BulkDeleteWorkGroups200Response) GetNotFound

func (o *BulkDeleteWorkGroups200Response) GetNotFound() []string

GetNotFound returns the NotFound field value if set, zero value otherwise.

func (*BulkDeleteWorkGroups200Response) GetNotFoundOk

func (o *BulkDeleteWorkGroups200Response) GetNotFoundOk() ([]string, bool)

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

func (*BulkDeleteWorkGroups200Response) HasDeleted

func (o *BulkDeleteWorkGroups200Response) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*BulkDeleteWorkGroups200Response) HasInUse

func (o *BulkDeleteWorkGroups200Response) HasInUse() bool

HasInUse returns a boolean if a field has been set.

func (*BulkDeleteWorkGroups200Response) HasNotFound

func (o *BulkDeleteWorkGroups200Response) HasNotFound() bool

HasNotFound returns a boolean if a field has been set.

func (BulkDeleteWorkGroups200Response) MarshalJSON

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

func (*BulkDeleteWorkGroups200Response) SetDeleted

func (o *BulkDeleteWorkGroups200Response) SetDeleted(v []string)

SetDeleted gets a reference to the given []string and assigns it to the Deleted field.

func (*BulkDeleteWorkGroups200Response) SetInUse

func (o *BulkDeleteWorkGroups200Response) SetInUse(v []string)

SetInUse gets a reference to the given []string and assigns it to the InUse field.

func (*BulkDeleteWorkGroups200Response) SetNotFound

func (o *BulkDeleteWorkGroups200Response) SetNotFound(v []string)

SetNotFound gets a reference to the given []string and assigns it to the NotFound field.

func (*BulkDeleteWorkGroups200Response) UnmarshalJSON

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

type BulkDeleteWorkGroupsRequest

type BulkDeleteWorkGroupsRequest struct {
	Ids                  []string `json:"ids,omitempty"`
	AdditionalProperties map[string]interface{}
}

BulkDeleteWorkGroupsRequest struct for BulkDeleteWorkGroupsRequest

func NewBulkDeleteWorkGroupsRequest

func NewBulkDeleteWorkGroupsRequest() *BulkDeleteWorkGroupsRequest

NewBulkDeleteWorkGroupsRequest instantiates a new BulkDeleteWorkGroupsRequest 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 NewBulkDeleteWorkGroupsRequestWithDefaults

func NewBulkDeleteWorkGroupsRequestWithDefaults() *BulkDeleteWorkGroupsRequest

NewBulkDeleteWorkGroupsRequestWithDefaults instantiates a new BulkDeleteWorkGroupsRequest 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 (*BulkDeleteWorkGroupsRequest) GetIds

func (o *BulkDeleteWorkGroupsRequest) GetIds() []string

GetIds returns the Ids field value if set, zero value otherwise.

func (*BulkDeleteWorkGroupsRequest) GetIdsOk

func (o *BulkDeleteWorkGroupsRequest) 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 (*BulkDeleteWorkGroupsRequest) HasIds

func (o *BulkDeleteWorkGroupsRequest) HasIds() bool

HasIds returns a boolean if a field has been set.

func (BulkDeleteWorkGroupsRequest) MarshalJSON

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

func (*BulkDeleteWorkGroupsRequest) SetIds

func (o *BulkDeleteWorkGroupsRequest) SetIds(v []string)

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*BulkDeleteWorkGroupsRequest) UnmarshalJSON

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

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 CreateWorkgroupRequest

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

CreateWorkgroupRequest struct for CreateWorkgroupRequest

func NewCreateWorkgroupRequest

func NewCreateWorkgroupRequest() *CreateWorkgroupRequest

NewCreateWorkgroupRequest instantiates a new CreateWorkgroupRequest 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 NewCreateWorkgroupRequestWithDefaults

func NewCreateWorkgroupRequestWithDefaults() *CreateWorkgroupRequest

NewCreateWorkgroupRequestWithDefaults instantiates a new CreateWorkgroupRequest 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 (*CreateWorkgroupRequest) GetDescription

func (o *CreateWorkgroupRequest) GetDescription() string

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

func (*CreateWorkgroupRequest) GetDescriptionOk

func (o *CreateWorkgroupRequest) 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 (*CreateWorkgroupRequest) GetName

func (o *CreateWorkgroupRequest) GetName() string

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

func (*CreateWorkgroupRequest) GetNameOk

func (o *CreateWorkgroupRequest) 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 (*CreateWorkgroupRequest) GetOwner

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

func (*CreateWorkgroupRequest) GetOwnerOk

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

func (*CreateWorkgroupRequest) HasDescription

func (o *CreateWorkgroupRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateWorkgroupRequest) HasName

func (o *CreateWorkgroupRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateWorkgroupRequest) HasOwner

func (o *CreateWorkgroupRequest) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (CreateWorkgroupRequest) MarshalJSON

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

func (*CreateWorkgroupRequest) SetDescription

func (o *CreateWorkgroupRequest) SetDescription(v string)

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

func (*CreateWorkgroupRequest) SetName

func (o *CreateWorkgroupRequest) SetName(v string)

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

func (*CreateWorkgroupRequest) SetOwner

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

func (*CreateWorkgroupRequest) UnmarshalJSON

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

type CreateWorkgroupRequestOwner

type CreateWorkgroupRequestOwner struct {
	Id                   *string `json:"id,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateWorkgroupRequestOwner struct for CreateWorkgroupRequestOwner

func NewCreateWorkgroupRequestOwner

func NewCreateWorkgroupRequestOwner() *CreateWorkgroupRequestOwner

NewCreateWorkgroupRequestOwner instantiates a new CreateWorkgroupRequestOwner 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 NewCreateWorkgroupRequestOwnerWithDefaults

func NewCreateWorkgroupRequestOwnerWithDefaults() *CreateWorkgroupRequestOwner

NewCreateWorkgroupRequestOwnerWithDefaults instantiates a new CreateWorkgroupRequestOwner 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 (*CreateWorkgroupRequestOwner) GetId

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

func (*CreateWorkgroupRequestOwner) GetIdOk

func (o *CreateWorkgroupRequestOwner) 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 (*CreateWorkgroupRequestOwner) HasId

func (o *CreateWorkgroupRequestOwner) HasId() bool

HasId returns a boolean if a field has been set.

func (CreateWorkgroupRequestOwner) MarshalJSON

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

func (*CreateWorkgroupRequestOwner) SetId

func (o *CreateWorkgroupRequestOwner) SetId(v string)

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

func (*CreateWorkgroupRequestOwner) UnmarshalJSON

func (o *CreateWorkgroupRequestOwner) 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 GetOrgSettings200Response

type GetOrgSettings200Response struct {
	Id                            *string                                            `json:"id,omitempty"`
	Name                          *string                                            `json:"name,omitempty"`
	Description                   *string                                            `json:"description,omitempty"`
	DateCreated                   *time.Time                                         `json:"dateCreated,omitempty"`
	LastUpdated                   *time.Time                                         `json:"lastUpdated,omitempty"`
	ScriptName                    *string                                            `json:"scriptName,omitempty"`
	SsoDomain                     *string                                            `json:"ssoDomain,omitempty"`
	Status                        *string                                            `json:"status,omitempty"`
	MaxRegisteredIdentities       *int32                                             `json:"maxRegisteredIdentities,omitempty"`
	IdentityCount                 *int32                                             `json:"identityCount,omitempty"`
	KbaReqForAuthn                *int32                                             `json:"kbaReqForAuthn,omitempty"`
	KbaReqAnswers                 *int32                                             `json:"kbaReqAnswers,omitempty"`
	LockoutAttemptThreshold       *int32                                             `json:"lockoutAttemptThreshold,omitempty"`
	LockoutTimeMinutes            *int32                                             `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"`
	Netmasks                      []string                                           `json:"netmasks,omitempty"`
	CountryCodes                  []string                                           `json:"countryCodes,omitempty"`
	WhiteList                     *bool                                              `json:"whiteList,omitempty"`
	EmailTestMode                 *bool                                              `json:"emailTestMode,omitempty"`
	EmailTestAddress              *string                                            `json:"emailTestAddress,omitempty"`
	UsernameEmptyText             *string                                            `json:"usernameEmptyText,omitempty"`
	UsernameLabel                 *string                                            `json:"usernameLabel,omitempty"`
	EnableAutomationGeneration    *bool                                              `json:"enableAutomationGeneration,omitempty"`
	PasswordReplayState           *string                                            `json:"passwordReplayState,omitempty"`
	SystemNotificationConfig      *GetOrgSettings200ResponseSystemNotificationConfig `json:"systemNotificationConfig,omitempty"`
	SystemNotificationEmails      []string                                           `json:"systemNotificationEmails,omitempty"`
	LoginUrl                      *string                                            `json:"loginUrl,omitempty"`
	RedirectPatterns              []string                                           `json:"redirectPatterns,omitempty"`
	StyleHash                     *string                                            `json:"styleHash,omitempty"`
	ApprovalConfig                *GetOrgSettings200ResponseApprovalConfig           `json:"approvalConfig,omitempty"`
	SsoPartnerSource              *string                                            `json:"ssoPartnerSource,omitempty"`
	AdditionalProperties          map[string]interface{}
}

GetOrgSettings200Response struct for GetOrgSettings200Response

func NewGetOrgSettings200Response

func NewGetOrgSettings200Response() *GetOrgSettings200Response

NewGetOrgSettings200Response instantiates a new GetOrgSettings200Response 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 NewGetOrgSettings200ResponseWithDefaults

func NewGetOrgSettings200ResponseWithDefaults() *GetOrgSettings200Response

NewGetOrgSettings200ResponseWithDefaults instantiates a new GetOrgSettings200Response 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 (*GetOrgSettings200Response) GetAdminStrongAuthRequired

func (o *GetOrgSettings200Response) GetAdminStrongAuthRequired() bool

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

func (*GetOrgSettings200Response) GetAdminStrongAuthRequiredOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetApprovalConfig

GetApprovalConfig returns the ApprovalConfig field value if set, zero value otherwise.

func (*GetOrgSettings200Response) GetApprovalConfigOk

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

func (*GetOrgSettings200Response) GetCountryCodes

func (o *GetOrgSettings200Response) GetCountryCodes() []string

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

func (*GetOrgSettings200Response) GetCountryCodesOk

func (o *GetOrgSettings200Response) GetCountryCodesOk() ([]string, 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 (*GetOrgSettings200Response) GetDateCreated

func (o *GetOrgSettings200Response) GetDateCreated() time.Time

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

func (*GetOrgSettings200Response) GetDateCreatedOk

func (o *GetOrgSettings200Response) GetDateCreatedOk() (*time.Time, 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 (*GetOrgSettings200Response) GetDescription

func (o *GetOrgSettings200Response) GetDescription() string

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

func (*GetOrgSettings200Response) GetDescriptionOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetEmailTestAddress

func (o *GetOrgSettings200Response) GetEmailTestAddress() string

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

func (*GetOrgSettings200Response) GetEmailTestAddressOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetEmailTestMode

func (o *GetOrgSettings200Response) GetEmailTestMode() bool

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

func (*GetOrgSettings200Response) GetEmailTestModeOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetEnableAutomaticPasswordReplay

func (o *GetOrgSettings200Response) GetEnableAutomaticPasswordReplay() bool

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

func (*GetOrgSettings200Response) GetEnableAutomaticPasswordReplayOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetEnableAutomationGeneration

func (o *GetOrgSettings200Response) GetEnableAutomationGeneration() bool

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

func (*GetOrgSettings200Response) GetEnableAutomationGenerationOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetEnableExternalPasswordChange

func (o *GetOrgSettings200Response) GetEnableExternalPasswordChange() bool

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

func (*GetOrgSettings200Response) GetEnableExternalPasswordChangeOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetEnablePasswordReplay

func (o *GetOrgSettings200Response) GetEnablePasswordReplay() bool

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

func (*GetOrgSettings200Response) GetEnablePasswordReplayOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetId

func (o *GetOrgSettings200Response) GetId() string

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

func (*GetOrgSettings200Response) GetIdOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetIdentityCount

func (o *GetOrgSettings200Response) GetIdentityCount() int32

GetIdentityCount returns the IdentityCount field value if set, zero value otherwise.

func (*GetOrgSettings200Response) GetIdentityCountOk

func (o *GetOrgSettings200Response) GetIdentityCountOk() (*int32, bool)

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

func (*GetOrgSettings200Response) GetKbaReqAnswers

func (o *GetOrgSettings200Response) GetKbaReqAnswers() int32

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

func (*GetOrgSettings200Response) GetKbaReqAnswersOk

func (o *GetOrgSettings200Response) GetKbaReqAnswersOk() (*int32, 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 (*GetOrgSettings200Response) GetKbaReqForAuthn

func (o *GetOrgSettings200Response) GetKbaReqForAuthn() int32

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

func (*GetOrgSettings200Response) GetKbaReqForAuthnOk

func (o *GetOrgSettings200Response) GetKbaReqForAuthnOk() (*int32, 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 (*GetOrgSettings200Response) GetLastUpdated

func (o *GetOrgSettings200Response) GetLastUpdated() time.Time

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

func (*GetOrgSettings200Response) GetLastUpdatedOk

func (o *GetOrgSettings200Response) GetLastUpdatedOk() (*time.Time, 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 (*GetOrgSettings200Response) GetLockoutAttemptThreshold

func (o *GetOrgSettings200Response) GetLockoutAttemptThreshold() int32

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

func (*GetOrgSettings200Response) GetLockoutAttemptThresholdOk

func (o *GetOrgSettings200Response) GetLockoutAttemptThresholdOk() (*int32, 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 (*GetOrgSettings200Response) GetLockoutTimeMinutes

func (o *GetOrgSettings200Response) GetLockoutTimeMinutes() int32

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

func (*GetOrgSettings200Response) GetLockoutTimeMinutesOk

func (o *GetOrgSettings200Response) GetLockoutTimeMinutesOk() (*int32, 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 (*GetOrgSettings200Response) GetLoginUrl

func (o *GetOrgSettings200Response) GetLoginUrl() string

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

func (*GetOrgSettings200Response) GetLoginUrlOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetMaxRegisteredIdentities

func (o *GetOrgSettings200Response) GetMaxRegisteredIdentities() int32

GetMaxRegisteredIdentities returns the MaxRegisteredIdentities field value if set, zero value otherwise.

func (*GetOrgSettings200Response) GetMaxRegisteredIdentitiesOk

func (o *GetOrgSettings200Response) GetMaxRegisteredIdentitiesOk() (*int32, bool)

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

func (*GetOrgSettings200Response) GetName

func (o *GetOrgSettings200Response) GetName() string

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

func (*GetOrgSettings200Response) GetNameOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetNetmasks

func (o *GetOrgSettings200Response) GetNetmasks() []string

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

func (*GetOrgSettings200Response) GetNetmasksOk

func (o *GetOrgSettings200Response) GetNetmasksOk() ([]string, 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 (*GetOrgSettings200Response) GetPasswordReplayState

func (o *GetOrgSettings200Response) GetPasswordReplayState() string

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

func (*GetOrgSettings200Response) GetPasswordReplayStateOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetRedirectPatterns

func (o *GetOrgSettings200Response) GetRedirectPatterns() []string

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

func (*GetOrgSettings200Response) GetRedirectPatternsOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetScriptName

func (o *GetOrgSettings200Response) GetScriptName() string

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

func (*GetOrgSettings200Response) GetScriptNameOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetSsoDomain

func (o *GetOrgSettings200Response) GetSsoDomain() string

GetSsoDomain returns the SsoDomain field value if set, zero value otherwise.

func (*GetOrgSettings200Response) GetSsoDomainOk

func (o *GetOrgSettings200Response) GetSsoDomainOk() (*string, bool)

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

func (*GetOrgSettings200Response) GetSsoPartnerSource

func (o *GetOrgSettings200Response) GetSsoPartnerSource() string

GetSsoPartnerSource returns the SsoPartnerSource field value if set, zero value otherwise.

func (*GetOrgSettings200Response) GetSsoPartnerSourceOk

func (o *GetOrgSettings200Response) GetSsoPartnerSourceOk() (*string, bool)

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

func (*GetOrgSettings200Response) GetStatus

func (o *GetOrgSettings200Response) GetStatus() string

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

func (*GetOrgSettings200Response) GetStatusOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetStyleHash

func (o *GetOrgSettings200Response) GetStyleHash() string

GetStyleHash returns the StyleHash field value if set, zero value otherwise.

func (*GetOrgSettings200Response) GetStyleHashOk

func (o *GetOrgSettings200Response) GetStyleHashOk() (*string, bool)

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

func (*GetOrgSettings200Response) GetSystemNotificationConfig

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

func (*GetOrgSettings200Response) GetSystemNotificationConfigOk

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 (*GetOrgSettings200Response) GetSystemNotificationEmails

func (o *GetOrgSettings200Response) GetSystemNotificationEmails() []string

GetSystemNotificationEmails returns the SystemNotificationEmails field value if set, zero value otherwise.

func (*GetOrgSettings200Response) GetSystemNotificationEmailsOk

func (o *GetOrgSettings200Response) GetSystemNotificationEmailsOk() ([]string, bool)

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

func (*GetOrgSettings200Response) GetUsageCertRequired

func (o *GetOrgSettings200Response) GetUsageCertRequired() bool

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

func (*GetOrgSettings200Response) GetUsageCertRequiredOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) GetUsernameEmptyText

func (o *GetOrgSettings200Response) GetUsernameEmptyText() string

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

func (*GetOrgSettings200Response) GetUsernameEmptyTextOk

func (o *GetOrgSettings200Response) GetUsernameEmptyTextOk() (*string, 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 (*GetOrgSettings200Response) GetUsernameLabel

func (o *GetOrgSettings200Response) GetUsernameLabel() string

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

func (*GetOrgSettings200Response) GetUsernameLabelOk

func (o *GetOrgSettings200Response) GetUsernameLabelOk() (*string, 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 (*GetOrgSettings200Response) GetWhiteList

func (o *GetOrgSettings200Response) GetWhiteList() bool

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

func (*GetOrgSettings200Response) GetWhiteListOk

func (o *GetOrgSettings200Response) 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 (*GetOrgSettings200Response) HasAdminStrongAuthRequired

func (o *GetOrgSettings200Response) HasAdminStrongAuthRequired() bool

HasAdminStrongAuthRequired returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasApprovalConfig

func (o *GetOrgSettings200Response) HasApprovalConfig() bool

HasApprovalConfig returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasCountryCodes

func (o *GetOrgSettings200Response) HasCountryCodes() bool

HasCountryCodes returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasDateCreated

func (o *GetOrgSettings200Response) HasDateCreated() bool

HasDateCreated returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasDescription

func (o *GetOrgSettings200Response) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasEmailTestAddress

func (o *GetOrgSettings200Response) HasEmailTestAddress() bool

HasEmailTestAddress returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasEmailTestMode

func (o *GetOrgSettings200Response) HasEmailTestMode() bool

HasEmailTestMode returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasEnableAutomaticPasswordReplay

func (o *GetOrgSettings200Response) HasEnableAutomaticPasswordReplay() bool

HasEnableAutomaticPasswordReplay returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasEnableAutomationGeneration

func (o *GetOrgSettings200Response) HasEnableAutomationGeneration() bool

HasEnableAutomationGeneration returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasEnableExternalPasswordChange

func (o *GetOrgSettings200Response) HasEnableExternalPasswordChange() bool

HasEnableExternalPasswordChange returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasEnablePasswordReplay

func (o *GetOrgSettings200Response) HasEnablePasswordReplay() bool

HasEnablePasswordReplay returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasId

func (o *GetOrgSettings200Response) HasId() bool

HasId returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasIdentityCount

func (o *GetOrgSettings200Response) HasIdentityCount() bool

HasIdentityCount returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasKbaReqAnswers

func (o *GetOrgSettings200Response) HasKbaReqAnswers() bool

HasKbaReqAnswers returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasKbaReqForAuthn

func (o *GetOrgSettings200Response) HasKbaReqForAuthn() bool

HasKbaReqForAuthn returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasLastUpdated

func (o *GetOrgSettings200Response) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasLockoutAttemptThreshold

func (o *GetOrgSettings200Response) HasLockoutAttemptThreshold() bool

HasLockoutAttemptThreshold returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasLockoutTimeMinutes

func (o *GetOrgSettings200Response) HasLockoutTimeMinutes() bool

HasLockoutTimeMinutes returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasLoginUrl

func (o *GetOrgSettings200Response) HasLoginUrl() bool

HasLoginUrl returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasMaxRegisteredIdentities

func (o *GetOrgSettings200Response) HasMaxRegisteredIdentities() bool

HasMaxRegisteredIdentities returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasName

func (o *GetOrgSettings200Response) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasNetmasks

func (o *GetOrgSettings200Response) HasNetmasks() bool

HasNetmasks returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasPasswordReplayState

func (o *GetOrgSettings200Response) HasPasswordReplayState() bool

HasPasswordReplayState returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasRedirectPatterns

func (o *GetOrgSettings200Response) HasRedirectPatterns() bool

HasRedirectPatterns returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasScriptName

func (o *GetOrgSettings200Response) HasScriptName() bool

HasScriptName returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasSsoDomain

func (o *GetOrgSettings200Response) HasSsoDomain() bool

HasSsoDomain returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasSsoPartnerSource

func (o *GetOrgSettings200Response) HasSsoPartnerSource() bool

HasSsoPartnerSource returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasStatus

func (o *GetOrgSettings200Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasStyleHash

func (o *GetOrgSettings200Response) HasStyleHash() bool

HasStyleHash returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasSystemNotificationConfig

func (o *GetOrgSettings200Response) HasSystemNotificationConfig() bool

HasSystemNotificationConfig returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasSystemNotificationEmails

func (o *GetOrgSettings200Response) HasSystemNotificationEmails() bool

HasSystemNotificationEmails returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasUsageCertRequired

func (o *GetOrgSettings200Response) HasUsageCertRequired() bool

HasUsageCertRequired returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasUsernameEmptyText

func (o *GetOrgSettings200Response) HasUsernameEmptyText() bool

HasUsernameEmptyText returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasUsernameLabel

func (o *GetOrgSettings200Response) HasUsernameLabel() bool

HasUsernameLabel returns a boolean if a field has been set.

func (*GetOrgSettings200Response) HasWhiteList

func (o *GetOrgSettings200Response) HasWhiteList() bool

HasWhiteList returns a boolean if a field has been set.

func (GetOrgSettings200Response) MarshalJSON

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

func (*GetOrgSettings200Response) SetAdminStrongAuthRequired

func (o *GetOrgSettings200Response) SetAdminStrongAuthRequired(v bool)

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

func (*GetOrgSettings200Response) SetApprovalConfig

SetApprovalConfig gets a reference to the given GetOrgSettings200ResponseApprovalConfig and assigns it to the ApprovalConfig field.

func (*GetOrgSettings200Response) SetCountryCodes

func (o *GetOrgSettings200Response) SetCountryCodes(v []string)

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

func (*GetOrgSettings200Response) SetDateCreated

func (o *GetOrgSettings200Response) SetDateCreated(v time.Time)

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

func (*GetOrgSettings200Response) SetDescription

func (o *GetOrgSettings200Response) SetDescription(v string)

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

func (*GetOrgSettings200Response) SetEmailTestAddress

func (o *GetOrgSettings200Response) SetEmailTestAddress(v string)

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

func (*GetOrgSettings200Response) SetEmailTestMode

func (o *GetOrgSettings200Response) SetEmailTestMode(v bool)

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

func (*GetOrgSettings200Response) SetEnableAutomaticPasswordReplay

func (o *GetOrgSettings200Response) SetEnableAutomaticPasswordReplay(v bool)

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

func (*GetOrgSettings200Response) SetEnableAutomationGeneration

func (o *GetOrgSettings200Response) SetEnableAutomationGeneration(v bool)

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

func (*GetOrgSettings200Response) SetEnableExternalPasswordChange

func (o *GetOrgSettings200Response) SetEnableExternalPasswordChange(v bool)

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

func (*GetOrgSettings200Response) SetEnablePasswordReplay

func (o *GetOrgSettings200Response) SetEnablePasswordReplay(v bool)

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

func (*GetOrgSettings200Response) SetId

func (o *GetOrgSettings200Response) SetId(v string)

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

func (*GetOrgSettings200Response) SetIdentityCount

func (o *GetOrgSettings200Response) SetIdentityCount(v int32)

SetIdentityCount gets a reference to the given int32 and assigns it to the IdentityCount field.

func (*GetOrgSettings200Response) SetKbaReqAnswers

func (o *GetOrgSettings200Response) SetKbaReqAnswers(v int32)

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

func (*GetOrgSettings200Response) SetKbaReqForAuthn

func (o *GetOrgSettings200Response) SetKbaReqForAuthn(v int32)

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

func (*GetOrgSettings200Response) SetLastUpdated

func (o *GetOrgSettings200Response) SetLastUpdated(v time.Time)

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

func (*GetOrgSettings200Response) SetLockoutAttemptThreshold

func (o *GetOrgSettings200Response) SetLockoutAttemptThreshold(v int32)

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

func (*GetOrgSettings200Response) SetLockoutTimeMinutes

func (o *GetOrgSettings200Response) SetLockoutTimeMinutes(v int32)

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

func (*GetOrgSettings200Response) SetLoginUrl

func (o *GetOrgSettings200Response) SetLoginUrl(v string)

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

func (*GetOrgSettings200Response) SetMaxRegisteredIdentities

func (o *GetOrgSettings200Response) SetMaxRegisteredIdentities(v int32)

SetMaxRegisteredIdentities gets a reference to the given int32 and assigns it to the MaxRegisteredIdentities field.

func (*GetOrgSettings200Response) SetName

func (o *GetOrgSettings200Response) SetName(v string)

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

func (*GetOrgSettings200Response) SetNetmasks

func (o *GetOrgSettings200Response) SetNetmasks(v []string)

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

func (*GetOrgSettings200Response) SetPasswordReplayState

func (o *GetOrgSettings200Response) SetPasswordReplayState(v string)

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

func (*GetOrgSettings200Response) SetRedirectPatterns

func (o *GetOrgSettings200Response) SetRedirectPatterns(v []string)

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

func (*GetOrgSettings200Response) SetScriptName

func (o *GetOrgSettings200Response) SetScriptName(v string)

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

func (*GetOrgSettings200Response) SetSsoDomain

func (o *GetOrgSettings200Response) SetSsoDomain(v string)

SetSsoDomain gets a reference to the given string and assigns it to the SsoDomain field.

func (*GetOrgSettings200Response) SetSsoPartnerSource

func (o *GetOrgSettings200Response) SetSsoPartnerSource(v string)

SetSsoPartnerSource gets a reference to the given string and assigns it to the SsoPartnerSource field.

func (*GetOrgSettings200Response) SetStatus

func (o *GetOrgSettings200Response) SetStatus(v string)

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

func (*GetOrgSettings200Response) SetStyleHash

func (o *GetOrgSettings200Response) SetStyleHash(v string)

SetStyleHash gets a reference to the given string and assigns it to the StyleHash field.

func (*GetOrgSettings200Response) SetSystemNotificationConfig

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

func (*GetOrgSettings200Response) SetSystemNotificationEmails

func (o *GetOrgSettings200Response) SetSystemNotificationEmails(v []string)

SetSystemNotificationEmails gets a reference to the given []string and assigns it to the SystemNotificationEmails field.

func (*GetOrgSettings200Response) SetUsageCertRequired

func (o *GetOrgSettings200Response) SetUsageCertRequired(v bool)

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

func (*GetOrgSettings200Response) SetUsernameEmptyText

func (o *GetOrgSettings200Response) SetUsernameEmptyText(v string)

SetUsernameEmptyText gets a reference to the given string and assigns it to the UsernameEmptyText field.

func (*GetOrgSettings200Response) SetUsernameLabel

func (o *GetOrgSettings200Response) SetUsernameLabel(v string)

SetUsernameLabel gets a reference to the given string and assigns it to the UsernameLabel field.

func (*GetOrgSettings200Response) SetWhiteList

func (o *GetOrgSettings200Response) SetWhiteList(v bool)

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

func (*GetOrgSettings200Response) UnmarshalJSON

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

type GetOrgSettings200ResponseApprovalConfig

type GetOrgSettings200ResponseApprovalConfig struct {
	DaysTillEscalation   int32  `json:"daysTillEscalation"`
	DaysBetweenReminders int32  `json:"daysBetweenReminders"`
	MaxReminders         int32  `json:"maxReminders"`
	FallbackApprover     string `json:"fallbackApprover"`
	AdditionalProperties map[string]interface{}
}

GetOrgSettings200ResponseApprovalConfig struct for GetOrgSettings200ResponseApprovalConfig

func NewGetOrgSettings200ResponseApprovalConfig

func NewGetOrgSettings200ResponseApprovalConfig(daysTillEscalation int32, daysBetweenReminders int32, maxReminders int32, fallbackApprover string) *GetOrgSettings200ResponseApprovalConfig

NewGetOrgSettings200ResponseApprovalConfig instantiates a new GetOrgSettings200ResponseApprovalConfig 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 NewGetOrgSettings200ResponseApprovalConfigWithDefaults

func NewGetOrgSettings200ResponseApprovalConfigWithDefaults() *GetOrgSettings200ResponseApprovalConfig

NewGetOrgSettings200ResponseApprovalConfigWithDefaults instantiates a new GetOrgSettings200ResponseApprovalConfig 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 (*GetOrgSettings200ResponseApprovalConfig) GetDaysBetweenReminders

func (o *GetOrgSettings200ResponseApprovalConfig) GetDaysBetweenReminders() int32

GetDaysBetweenReminders returns the DaysBetweenReminders field value

func (*GetOrgSettings200ResponseApprovalConfig) GetDaysBetweenRemindersOk

func (o *GetOrgSettings200ResponseApprovalConfig) GetDaysBetweenRemindersOk() (*int32, bool)

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

func (*GetOrgSettings200ResponseApprovalConfig) GetDaysTillEscalation

func (o *GetOrgSettings200ResponseApprovalConfig) GetDaysTillEscalation() int32

GetDaysTillEscalation returns the DaysTillEscalation field value

func (*GetOrgSettings200ResponseApprovalConfig) GetDaysTillEscalationOk

func (o *GetOrgSettings200ResponseApprovalConfig) GetDaysTillEscalationOk() (*int32, bool)

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

func (*GetOrgSettings200ResponseApprovalConfig) GetFallbackApprover

func (o *GetOrgSettings200ResponseApprovalConfig) GetFallbackApprover() string

GetFallbackApprover returns the FallbackApprover field value

func (*GetOrgSettings200ResponseApprovalConfig) GetFallbackApproverOk

func (o *GetOrgSettings200ResponseApprovalConfig) GetFallbackApproverOk() (*string, bool)

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

func (*GetOrgSettings200ResponseApprovalConfig) GetMaxReminders

func (o *GetOrgSettings200ResponseApprovalConfig) GetMaxReminders() int32

GetMaxReminders returns the MaxReminders field value

func (*GetOrgSettings200ResponseApprovalConfig) GetMaxRemindersOk

func (o *GetOrgSettings200ResponseApprovalConfig) GetMaxRemindersOk() (*int32, bool)

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

func (GetOrgSettings200ResponseApprovalConfig) MarshalJSON

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

func (*GetOrgSettings200ResponseApprovalConfig) SetDaysBetweenReminders

func (o *GetOrgSettings200ResponseApprovalConfig) SetDaysBetweenReminders(v int32)

SetDaysBetweenReminders sets field value

func (*GetOrgSettings200ResponseApprovalConfig) SetDaysTillEscalation

func (o *GetOrgSettings200ResponseApprovalConfig) SetDaysTillEscalation(v int32)

SetDaysTillEscalation sets field value

func (*GetOrgSettings200ResponseApprovalConfig) SetFallbackApprover

func (o *GetOrgSettings200ResponseApprovalConfig) SetFallbackApprover(v string)

SetFallbackApprover sets field value

func (*GetOrgSettings200ResponseApprovalConfig) SetMaxReminders

func (o *GetOrgSettings200ResponseApprovalConfig) SetMaxReminders(v int32)

SetMaxReminders sets field value

func (*GetOrgSettings200ResponseApprovalConfig) UnmarshalJSON

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

type GetOrgSettings200ResponseSystemNotificationConfig

type GetOrgSettings200ResponseSystemNotificationConfig struct {
	Notifications        []GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner `json:"notifications,omitempty"`
	RecipientType        *string                                                               `json:"recipientType,omitempty"`
	AdditionalProperties map[string]interface{}
}

GetOrgSettings200ResponseSystemNotificationConfig struct for GetOrgSettings200ResponseSystemNotificationConfig

func NewGetOrgSettings200ResponseSystemNotificationConfig

func NewGetOrgSettings200ResponseSystemNotificationConfig() *GetOrgSettings200ResponseSystemNotificationConfig

NewGetOrgSettings200ResponseSystemNotificationConfig instantiates a new GetOrgSettings200ResponseSystemNotificationConfig 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 NewGetOrgSettings200ResponseSystemNotificationConfigWithDefaults

func NewGetOrgSettings200ResponseSystemNotificationConfigWithDefaults() *GetOrgSettings200ResponseSystemNotificationConfig

NewGetOrgSettings200ResponseSystemNotificationConfigWithDefaults instantiates a new GetOrgSettings200ResponseSystemNotificationConfig 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 (*GetOrgSettings200ResponseSystemNotificationConfig) GetNotifications

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*GetOrgSettings200ResponseSystemNotificationConfig) GetNotificationsOk

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

func (*GetOrgSettings200ResponseSystemNotificationConfig) GetRecipientType

GetRecipientType returns the RecipientType field value if set, zero value otherwise.

func (*GetOrgSettings200ResponseSystemNotificationConfig) GetRecipientTypeOk

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

func (*GetOrgSettings200ResponseSystemNotificationConfig) HasNotifications

HasNotifications returns a boolean if a field has been set.

func (*GetOrgSettings200ResponseSystemNotificationConfig) HasRecipientType

HasRecipientType returns a boolean if a field has been set.

func (GetOrgSettings200ResponseSystemNotificationConfig) MarshalJSON

func (*GetOrgSettings200ResponseSystemNotificationConfig) SetNotifications

SetNotifications gets a reference to the given []GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner and assigns it to the Notifications field.

func (*GetOrgSettings200ResponseSystemNotificationConfig) SetRecipientType

SetRecipientType gets a reference to the given string and assigns it to the RecipientType field.

func (*GetOrgSettings200ResponseSystemNotificationConfig) UnmarshalJSON

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

type GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner

type GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner struct {
	Type                 *string                                                                        `json:"type,omitempty"`
	ByEmail              *bool                                                                          `json:"byEmail,omitempty"`
	Thresholds           *GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds `json:"thresholds,omitempty"`
	AdditionalProperties map[string]interface{}
}

GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner struct for GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner

func NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner

func NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner() *GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner

NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner instantiates a new GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner 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 NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerWithDefaults

func NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerWithDefaults() *GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner

NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerWithDefaults instantiates a new GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner 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 (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) GetByEmail

GetByEmail returns the ByEmail field value if set, zero value otherwise.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) GetByEmailOk

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

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) GetThresholds

GetThresholds returns the Thresholds field value if set, zero value otherwise.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) GetThresholdsOk

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

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) GetType

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

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) GetTypeOk

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

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) HasByEmail

HasByEmail returns a boolean if a field has been set.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) HasThresholds

HasThresholds returns a boolean if a field has been set.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) HasType

HasType returns a boolean if a field has been set.

func (GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) MarshalJSON

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) SetByEmail

SetByEmail gets a reference to the given bool and assigns it to the ByEmail field.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) SetThresholds

SetThresholds gets a reference to the given GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds and assigns it to the Thresholds field.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) SetType

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

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) UnmarshalJSON

type GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds

type GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds struct {
	Healthy              *string `json:"healthy,omitempty"`
	Unhealthy            *string `json:"unhealthy,omitempty"`
	AdditionalProperties map[string]interface{}
}

GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds struct for GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds

func NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds

func NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds() *GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds

NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds instantiates a new GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds 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 NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholdsWithDefaults

func NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholdsWithDefaults() *GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds

NewGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholdsWithDefaults instantiates a new GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds 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 (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) GetHealthy

GetHealthy returns the Healthy field value if set, zero value otherwise.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) GetHealthyOk

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 (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) GetUnhealthy

GetUnhealthy returns the Unhealthy field value if set, zero value otherwise.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) GetUnhealthyOk

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

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) HasHealthy

HasHealthy returns a boolean if a field has been set.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) HasUnhealthy

HasUnhealthy returns a boolean if a field has been set.

func (GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) MarshalJSON

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) SetHealthy

SetHealthy gets a reference to the given string and assigns it to the Healthy field.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) SetUnhealthy

SetUnhealthy gets a reference to the given string and assigns it to the Unhealthy field.

func (*GetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) UnmarshalJSON

type GovernanceGroupsApiService

type GovernanceGroupsApiService service

GovernanceGroupsApiService GovernanceGroupsApi service

func (*GovernanceGroupsApiService) BulkDeleteWorkGroups

BulkDeleteWorkGroups Bulk delete work groups

This API allows you to bulk-delete work groups

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

func (*GovernanceGroupsApiService) BulkDeleteWorkGroupsExecute

Execute executes the request

@return BulkDeleteWorkGroups200Response

func (*GovernanceGroupsApiService) CreateWorkgroup

CreateWorkgroup Create Work Group

This API allows you to create a work group

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

func (*GovernanceGroupsApiService) CreateWorkgroupExecute

Execute executes the request

@return []ListWorkgroups200ResponseInner

func (*GovernanceGroupsApiService) DeleteWorkgroup

func (a *GovernanceGroupsApiService) DeleteWorkgroup(ctx context.Context, workgroupId string) ApiDeleteWorkgroupRequest

DeleteWorkgroup Delete Work Group By Id

This API deletes a single workgroup based on the ID

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

func (*GovernanceGroupsApiService) DeleteWorkgroupExecute

func (a *GovernanceGroupsApiService) DeleteWorkgroupExecute(r ApiDeleteWorkgroupRequest) (*http.Response, error)

Execute executes the request

func (*GovernanceGroupsApiService) GetWorkgroup

func (a *GovernanceGroupsApiService) GetWorkgroup(ctx context.Context, workgroupId string) ApiGetWorkgroupRequest

GetWorkgroup Get Work Group By Id

This API returns the details for a single workgroup based on the ID

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

func (*GovernanceGroupsApiService) GetWorkgroupExecute

Execute executes the request

@return ListWorkgroups200ResponseInner

func (*GovernanceGroupsApiService) ListWorkgroupConnections

func (a *GovernanceGroupsApiService) ListWorkgroupConnections(ctx context.Context, workgroupId string) ApiListWorkgroupConnectionsRequest

ListWorkgroupConnections List Work Group Connections

This API returns the connections of a work group

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

func (*GovernanceGroupsApiService) ListWorkgroupConnectionsExecute

Execute executes the request

@return []ListWorkgroupConnections200ResponseInner

func (*GovernanceGroupsApiService) ListWorkgroupMembers

func (a *GovernanceGroupsApiService) ListWorkgroupMembers(ctx context.Context, workgroupId string) ApiListWorkgroupMembersRequest

ListWorkgroupMembers List Work Group Members

This API returns the members of a work group

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

func (*GovernanceGroupsApiService) ListWorkgroupMembersExecute

Execute executes the request

@return []ListWorkgroupMembers200ResponseInner

func (*GovernanceGroupsApiService) ListWorkgroups

ListWorkgroups List Work Groups

This API returns a list of work groups

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

func (*GovernanceGroupsApiService) ListWorkgroupsExecute

Execute executes the request

@return []ListWorkgroups200ResponseInner

func (*GovernanceGroupsApiService) ModifyWorkgroupMembers

func (a *GovernanceGroupsApiService) ModifyWorkgroupMembers(ctx context.Context, workgroupId string) ApiModifyWorkgroupMembersRequest

ModifyWorkgroupMembers Modify Work Group Members

This API allows you to modify the members of a work group

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

func (*GovernanceGroupsApiService) ModifyWorkgroupMembersExecute

func (a *GovernanceGroupsApiService) ModifyWorkgroupMembersExecute(r ApiModifyWorkgroupMembersRequest) (*http.Response, error)

Execute executes the request

func (*GovernanceGroupsApiService) UpdateWorkgroup

func (a *GovernanceGroupsApiService) UpdateWorkgroup(ctx context.Context, workgroupId string) ApiUpdateWorkgroupRequest

UpdateWorkgroup Update Work Group By Id

This API updates and returns the details for a single workgroup based on the ID

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

func (*GovernanceGroupsApiService) UpdateWorkgroupExecute

Execute executes the request

@return ListWorkgroups200ResponseInner

type ListWorkgroupConnections200ResponseInner

type ListWorkgroupConnections200ResponseInner struct {
	ConnectionType       *string `json:"connectionType,omitempty"`
	Description          *string `json:"description,omitempty"`
	Name                 *string `json:"name,omitempty"`
	ObjectId             *string `json:"objectId,omitempty"`
	ObjectType           *string `json:"objectType,omitempty"`
	WorkgroupId          *string `json:"workgroupId,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListWorkgroupConnections200ResponseInner struct for ListWorkgroupConnections200ResponseInner

func NewListWorkgroupConnections200ResponseInner

func NewListWorkgroupConnections200ResponseInner() *ListWorkgroupConnections200ResponseInner

NewListWorkgroupConnections200ResponseInner instantiates a new ListWorkgroupConnections200ResponseInner 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 NewListWorkgroupConnections200ResponseInnerWithDefaults

func NewListWorkgroupConnections200ResponseInnerWithDefaults() *ListWorkgroupConnections200ResponseInner

NewListWorkgroupConnections200ResponseInnerWithDefaults instantiates a new ListWorkgroupConnections200ResponseInner 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 (*ListWorkgroupConnections200ResponseInner) GetConnectionType

func (o *ListWorkgroupConnections200ResponseInner) GetConnectionType() string

GetConnectionType returns the ConnectionType field value if set, zero value otherwise.

func (*ListWorkgroupConnections200ResponseInner) GetConnectionTypeOk

func (o *ListWorkgroupConnections200ResponseInner) GetConnectionTypeOk() (*string, bool)

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

func (*ListWorkgroupConnections200ResponseInner) GetDescription

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

func (*ListWorkgroupConnections200ResponseInner) GetDescriptionOk

func (o *ListWorkgroupConnections200ResponseInner) 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 (*ListWorkgroupConnections200ResponseInner) GetName

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

func (*ListWorkgroupConnections200ResponseInner) GetNameOk

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

func (*ListWorkgroupConnections200ResponseInner) GetObjectId

GetObjectId returns the ObjectId field value if set, zero value otherwise.

func (*ListWorkgroupConnections200ResponseInner) GetObjectIdOk

func (o *ListWorkgroupConnections200ResponseInner) GetObjectIdOk() (*string, bool)

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

func (*ListWorkgroupConnections200ResponseInner) GetObjectType

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*ListWorkgroupConnections200ResponseInner) GetObjectTypeOk

func (o *ListWorkgroupConnections200ResponseInner) GetObjectTypeOk() (*string, bool)

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

func (*ListWorkgroupConnections200ResponseInner) GetWorkgroupId

GetWorkgroupId returns the WorkgroupId field value if set, zero value otherwise.

func (*ListWorkgroupConnections200ResponseInner) GetWorkgroupIdOk

func (o *ListWorkgroupConnections200ResponseInner) GetWorkgroupIdOk() (*string, bool)

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

func (*ListWorkgroupConnections200ResponseInner) HasConnectionType

func (o *ListWorkgroupConnections200ResponseInner) HasConnectionType() bool

HasConnectionType returns a boolean if a field has been set.

func (*ListWorkgroupConnections200ResponseInner) HasDescription

func (o *ListWorkgroupConnections200ResponseInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ListWorkgroupConnections200ResponseInner) HasName

HasName returns a boolean if a field has been set.

func (*ListWorkgroupConnections200ResponseInner) HasObjectId

HasObjectId returns a boolean if a field has been set.

func (*ListWorkgroupConnections200ResponseInner) HasObjectType

HasObjectType returns a boolean if a field has been set.

func (*ListWorkgroupConnections200ResponseInner) HasWorkgroupId

func (o *ListWorkgroupConnections200ResponseInner) HasWorkgroupId() bool

HasWorkgroupId returns a boolean if a field has been set.

func (ListWorkgroupConnections200ResponseInner) MarshalJSON

func (*ListWorkgroupConnections200ResponseInner) SetConnectionType

func (o *ListWorkgroupConnections200ResponseInner) SetConnectionType(v string)

SetConnectionType gets a reference to the given string and assigns it to the ConnectionType field.

func (*ListWorkgroupConnections200ResponseInner) SetDescription

func (o *ListWorkgroupConnections200ResponseInner) SetDescription(v string)

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

func (*ListWorkgroupConnections200ResponseInner) SetName

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

func (*ListWorkgroupConnections200ResponseInner) SetObjectId

SetObjectId gets a reference to the given string and assigns it to the ObjectId field.

func (*ListWorkgroupConnections200ResponseInner) SetObjectType

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*ListWorkgroupConnections200ResponseInner) SetWorkgroupId

func (o *ListWorkgroupConnections200ResponseInner) SetWorkgroupId(v string)

SetWorkgroupId gets a reference to the given string and assigns it to the WorkgroupId field.

func (*ListWorkgroupConnections200ResponseInner) UnmarshalJSON

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

type ListWorkgroupMembers200ResponseInner

type ListWorkgroupMembers200ResponseInner struct {
	Alias                *string `json:"alias,omitempty"`
	Email                *string `json:"email,omitempty"`
	ExternalId           *string `json:"externalId,omitempty"`
	Id                   *int32  `json:"id,omitempty"`
	Name                 *string `json:"name,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListWorkgroupMembers200ResponseInner struct for ListWorkgroupMembers200ResponseInner

func NewListWorkgroupMembers200ResponseInner

func NewListWorkgroupMembers200ResponseInner() *ListWorkgroupMembers200ResponseInner

NewListWorkgroupMembers200ResponseInner instantiates a new ListWorkgroupMembers200ResponseInner 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 NewListWorkgroupMembers200ResponseInnerWithDefaults

func NewListWorkgroupMembers200ResponseInnerWithDefaults() *ListWorkgroupMembers200ResponseInner

NewListWorkgroupMembers200ResponseInnerWithDefaults instantiates a new ListWorkgroupMembers200ResponseInner 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 (*ListWorkgroupMembers200ResponseInner) GetAlias

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

func (*ListWorkgroupMembers200ResponseInner) GetAliasOk

func (o *ListWorkgroupMembers200ResponseInner) 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 (*ListWorkgroupMembers200ResponseInner) GetEmail

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

func (*ListWorkgroupMembers200ResponseInner) GetEmailOk

func (o *ListWorkgroupMembers200ResponseInner) 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 (*ListWorkgroupMembers200ResponseInner) GetExternalId

func (o *ListWorkgroupMembers200ResponseInner) GetExternalId() string

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

func (*ListWorkgroupMembers200ResponseInner) GetExternalIdOk

func (o *ListWorkgroupMembers200ResponseInner) 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 (*ListWorkgroupMembers200ResponseInner) GetId

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

func (*ListWorkgroupMembers200ResponseInner) GetIdOk

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

func (*ListWorkgroupMembers200ResponseInner) GetName

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

func (*ListWorkgroupMembers200ResponseInner) GetNameOk

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

func (*ListWorkgroupMembers200ResponseInner) HasAlias

HasAlias returns a boolean if a field has been set.

func (*ListWorkgroupMembers200ResponseInner) HasEmail

HasEmail returns a boolean if a field has been set.

func (*ListWorkgroupMembers200ResponseInner) HasExternalId

func (o *ListWorkgroupMembers200ResponseInner) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ListWorkgroupMembers200ResponseInner) HasId

HasId returns a boolean if a field has been set.

func (*ListWorkgroupMembers200ResponseInner) HasName

HasName returns a boolean if a field has been set.

func (ListWorkgroupMembers200ResponseInner) MarshalJSON

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

func (*ListWorkgroupMembers200ResponseInner) SetAlias

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

func (*ListWorkgroupMembers200ResponseInner) SetEmail

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

func (*ListWorkgroupMembers200ResponseInner) SetExternalId

func (o *ListWorkgroupMembers200ResponseInner) SetExternalId(v string)

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

func (*ListWorkgroupMembers200ResponseInner) SetId

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

func (*ListWorkgroupMembers200ResponseInner) SetName

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

func (*ListWorkgroupMembers200ResponseInner) UnmarshalJSON

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

type ListWorkgroups200ResponseInner

type ListWorkgroups200ResponseInner struct {
	ConnectionCount      *int32                               `json:"connectionCount,omitempty"`
	Created              *int64                               `json:"created,omitempty"`
	Description          *string                              `json:"description,omitempty"`
	Id                   *string                              `json:"id,omitempty"`
	MemberCount          *int32                               `json:"memberCount,omitempty"`
	Modified             *int64                               `json:"modified,omitempty"`
	Name                 *string                              `json:"name,omitempty"`
	Owner                *ListWorkgroups200ResponseInnerOwner `json:"owner,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListWorkgroups200ResponseInner struct for ListWorkgroups200ResponseInner

func NewListWorkgroups200ResponseInner

func NewListWorkgroups200ResponseInner() *ListWorkgroups200ResponseInner

NewListWorkgroups200ResponseInner instantiates a new ListWorkgroups200ResponseInner 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 NewListWorkgroups200ResponseInnerWithDefaults

func NewListWorkgroups200ResponseInnerWithDefaults() *ListWorkgroups200ResponseInner

NewListWorkgroups200ResponseInnerWithDefaults instantiates a new ListWorkgroups200ResponseInner 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 (*ListWorkgroups200ResponseInner) GetConnectionCount

func (o *ListWorkgroups200ResponseInner) GetConnectionCount() int32

GetConnectionCount returns the ConnectionCount field value if set, zero value otherwise.

func (*ListWorkgroups200ResponseInner) GetConnectionCountOk

func (o *ListWorkgroups200ResponseInner) GetConnectionCountOk() (*int32, bool)

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

func (*ListWorkgroups200ResponseInner) GetCreated

func (o *ListWorkgroups200ResponseInner) GetCreated() int64

GetCreated returns the Created field value if set, zero value otherwise.

func (*ListWorkgroups200ResponseInner) GetCreatedOk

func (o *ListWorkgroups200ResponseInner) GetCreatedOk() (*int64, bool)

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

func (*ListWorkgroups200ResponseInner) GetDescription

func (o *ListWorkgroups200ResponseInner) GetDescription() string

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

func (*ListWorkgroups200ResponseInner) GetDescriptionOk

func (o *ListWorkgroups200ResponseInner) 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 (*ListWorkgroups200ResponseInner) GetId

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

func (*ListWorkgroups200ResponseInner) GetIdOk

func (o *ListWorkgroups200ResponseInner) 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 (*ListWorkgroups200ResponseInner) GetMemberCount

func (o *ListWorkgroups200ResponseInner) GetMemberCount() int32

GetMemberCount returns the MemberCount field value if set, zero value otherwise.

func (*ListWorkgroups200ResponseInner) GetMemberCountOk

func (o *ListWorkgroups200ResponseInner) GetMemberCountOk() (*int32, bool)

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

func (*ListWorkgroups200ResponseInner) GetModified

func (o *ListWorkgroups200ResponseInner) GetModified() int64

GetModified returns the Modified field value if set, zero value otherwise.

func (*ListWorkgroups200ResponseInner) GetModifiedOk

func (o *ListWorkgroups200ResponseInner) GetModifiedOk() (*int64, bool)

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

func (*ListWorkgroups200ResponseInner) GetName

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

func (*ListWorkgroups200ResponseInner) GetNameOk

func (o *ListWorkgroups200ResponseInner) 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 (*ListWorkgroups200ResponseInner) GetOwner

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

func (*ListWorkgroups200ResponseInner) GetOwnerOk

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

func (*ListWorkgroups200ResponseInner) HasConnectionCount

func (o *ListWorkgroups200ResponseInner) HasConnectionCount() bool

HasConnectionCount returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInner) HasCreated

func (o *ListWorkgroups200ResponseInner) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInner) HasDescription

func (o *ListWorkgroups200ResponseInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInner) HasId

HasId returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInner) HasMemberCount

func (o *ListWorkgroups200ResponseInner) HasMemberCount() bool

HasMemberCount returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInner) HasModified

func (o *ListWorkgroups200ResponseInner) HasModified() bool

HasModified returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInner) HasName

func (o *ListWorkgroups200ResponseInner) HasName() bool

HasName returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInner) HasOwner

func (o *ListWorkgroups200ResponseInner) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (ListWorkgroups200ResponseInner) MarshalJSON

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

func (*ListWorkgroups200ResponseInner) SetConnectionCount

func (o *ListWorkgroups200ResponseInner) SetConnectionCount(v int32)

SetConnectionCount gets a reference to the given int32 and assigns it to the ConnectionCount field.

func (*ListWorkgroups200ResponseInner) SetCreated

func (o *ListWorkgroups200ResponseInner) SetCreated(v int64)

SetCreated gets a reference to the given int64 and assigns it to the Created field.

func (*ListWorkgroups200ResponseInner) SetDescription

func (o *ListWorkgroups200ResponseInner) SetDescription(v string)

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

func (*ListWorkgroups200ResponseInner) SetId

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

func (*ListWorkgroups200ResponseInner) SetMemberCount

func (o *ListWorkgroups200ResponseInner) SetMemberCount(v int32)

SetMemberCount gets a reference to the given int32 and assigns it to the MemberCount field.

func (*ListWorkgroups200ResponseInner) SetModified

func (o *ListWorkgroups200ResponseInner) SetModified(v int64)

SetModified gets a reference to the given int64 and assigns it to the Modified field.

func (*ListWorkgroups200ResponseInner) SetName

func (o *ListWorkgroups200ResponseInner) SetName(v string)

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

func (*ListWorkgroups200ResponseInner) SetOwner

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

func (*ListWorkgroups200ResponseInner) UnmarshalJSON

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

type ListWorkgroups200ResponseInnerOwner

type ListWorkgroups200ResponseInnerOwner struct {
	DisplayName          *string `json:"displayName,omitempty"`
	EmailAddress         *string `json:"emailAddress,omitempty"`
	Id                   *string `json:"id,omitempty"`
	Name                 *string `json:"name,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListWorkgroups200ResponseInnerOwner struct for ListWorkgroups200ResponseInnerOwner

func NewListWorkgroups200ResponseInnerOwner

func NewListWorkgroups200ResponseInnerOwner() *ListWorkgroups200ResponseInnerOwner

NewListWorkgroups200ResponseInnerOwner instantiates a new ListWorkgroups200ResponseInnerOwner 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 NewListWorkgroups200ResponseInnerOwnerWithDefaults

func NewListWorkgroups200ResponseInnerOwnerWithDefaults() *ListWorkgroups200ResponseInnerOwner

NewListWorkgroups200ResponseInnerOwnerWithDefaults instantiates a new ListWorkgroups200ResponseInnerOwner 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 (*ListWorkgroups200ResponseInnerOwner) GetDisplayName

func (o *ListWorkgroups200ResponseInnerOwner) GetDisplayName() string

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

func (*ListWorkgroups200ResponseInnerOwner) GetDisplayNameOk

func (o *ListWorkgroups200ResponseInnerOwner) 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 (*ListWorkgroups200ResponseInnerOwner) GetEmailAddress

func (o *ListWorkgroups200ResponseInnerOwner) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*ListWorkgroups200ResponseInnerOwner) GetEmailAddressOk

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

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

func (*ListWorkgroups200ResponseInnerOwner) GetId

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

func (*ListWorkgroups200ResponseInnerOwner) GetIdOk

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

func (*ListWorkgroups200ResponseInnerOwner) GetName

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

func (*ListWorkgroups200ResponseInnerOwner) GetNameOk

func (o *ListWorkgroups200ResponseInnerOwner) 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 (*ListWorkgroups200ResponseInnerOwner) HasDisplayName

func (o *ListWorkgroups200ResponseInnerOwner) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInnerOwner) HasEmailAddress

func (o *ListWorkgroups200ResponseInnerOwner) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInnerOwner) HasId

HasId returns a boolean if a field has been set.

func (*ListWorkgroups200ResponseInnerOwner) HasName

HasName returns a boolean if a field has been set.

func (ListWorkgroups200ResponseInnerOwner) MarshalJSON

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

func (*ListWorkgroups200ResponseInnerOwner) SetDisplayName

func (o *ListWorkgroups200ResponseInnerOwner) SetDisplayName(v string)

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

func (*ListWorkgroups200ResponseInnerOwner) SetEmailAddress

func (o *ListWorkgroups200ResponseInnerOwner) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*ListWorkgroups200ResponseInnerOwner) SetId

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

func (*ListWorkgroups200ResponseInnerOwner) SetName

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

func (*ListWorkgroups200ResponseInnerOwner) UnmarshalJSON

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

type ModifyWorkgroupMembersRequest

type ModifyWorkgroupMembersRequest struct {
	Add                  []string `json:"add,omitempty"`
	Remove               []string `json:"remove,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModifyWorkgroupMembersRequest struct for ModifyWorkgroupMembersRequest

func NewModifyWorkgroupMembersRequest

func NewModifyWorkgroupMembersRequest() *ModifyWorkgroupMembersRequest

NewModifyWorkgroupMembersRequest instantiates a new ModifyWorkgroupMembersRequest 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 NewModifyWorkgroupMembersRequestWithDefaults

func NewModifyWorkgroupMembersRequestWithDefaults() *ModifyWorkgroupMembersRequest

NewModifyWorkgroupMembersRequestWithDefaults instantiates a new ModifyWorkgroupMembersRequest 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 (*ModifyWorkgroupMembersRequest) GetAdd

func (o *ModifyWorkgroupMembersRequest) GetAdd() []string

GetAdd returns the Add field value if set, zero value otherwise.

func (*ModifyWorkgroupMembersRequest) GetAddOk

func (o *ModifyWorkgroupMembersRequest) GetAddOk() ([]string, bool)

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

func (*ModifyWorkgroupMembersRequest) GetRemove

func (o *ModifyWorkgroupMembersRequest) GetRemove() []string

GetRemove returns the Remove field value if set, zero value otherwise.

func (*ModifyWorkgroupMembersRequest) GetRemoveOk

func (o *ModifyWorkgroupMembersRequest) GetRemoveOk() ([]string, bool)

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

func (*ModifyWorkgroupMembersRequest) HasAdd

func (o *ModifyWorkgroupMembersRequest) HasAdd() bool

HasAdd returns a boolean if a field has been set.

func (*ModifyWorkgroupMembersRequest) HasRemove

func (o *ModifyWorkgroupMembersRequest) HasRemove() bool

HasRemove returns a boolean if a field has been set.

func (ModifyWorkgroupMembersRequest) MarshalJSON

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

func (*ModifyWorkgroupMembersRequest) SetAdd

func (o *ModifyWorkgroupMembersRequest) SetAdd(v []string)

SetAdd gets a reference to the given []string and assigns it to the Add field.

func (*ModifyWorkgroupMembersRequest) SetRemove

func (o *ModifyWorkgroupMembersRequest) SetRemove(v []string)

SetRemove gets a reference to the given []string and assigns it to the Remove field.

func (*ModifyWorkgroupMembersRequest) UnmarshalJSON

func (o *ModifyWorkgroupMembersRequest) UnmarshalJSON(bytes []byte) (err 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 NullableBulkDeleteWorkGroups200Response

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

func (NullableBulkDeleteWorkGroups200Response) Get

func (NullableBulkDeleteWorkGroups200Response) IsSet

func (NullableBulkDeleteWorkGroups200Response) MarshalJSON

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

func (*NullableBulkDeleteWorkGroups200Response) Set

func (*NullableBulkDeleteWorkGroups200Response) UnmarshalJSON

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

func (*NullableBulkDeleteWorkGroups200Response) Unset

type NullableBulkDeleteWorkGroupsRequest

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

func (NullableBulkDeleteWorkGroupsRequest) Get

func (NullableBulkDeleteWorkGroupsRequest) IsSet

func (NullableBulkDeleteWorkGroupsRequest) MarshalJSON

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

func (*NullableBulkDeleteWorkGroupsRequest) Set

func (*NullableBulkDeleteWorkGroupsRequest) UnmarshalJSON

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

func (*NullableBulkDeleteWorkGroupsRequest) Unset

type NullableCreateWorkgroupRequest

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

func (NullableCreateWorkgroupRequest) Get

func (NullableCreateWorkgroupRequest) IsSet

func (NullableCreateWorkgroupRequest) MarshalJSON

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

func (*NullableCreateWorkgroupRequest) Set

func (*NullableCreateWorkgroupRequest) UnmarshalJSON

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

func (*NullableCreateWorkgroupRequest) Unset

func (v *NullableCreateWorkgroupRequest) Unset()

type NullableCreateWorkgroupRequestOwner

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

func (NullableCreateWorkgroupRequestOwner) Get

func (NullableCreateWorkgroupRequestOwner) IsSet

func (NullableCreateWorkgroupRequestOwner) MarshalJSON

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

func (*NullableCreateWorkgroupRequestOwner) Set

func (*NullableCreateWorkgroupRequestOwner) UnmarshalJSON

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

func (*NullableCreateWorkgroupRequestOwner) 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 NullableGetOrgSettings200Response

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

func (NullableGetOrgSettings200Response) Get

func (NullableGetOrgSettings200Response) IsSet

func (NullableGetOrgSettings200Response) MarshalJSON

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

func (*NullableGetOrgSettings200Response) Set

func (*NullableGetOrgSettings200Response) UnmarshalJSON

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

func (*NullableGetOrgSettings200Response) Unset

type NullableGetOrgSettings200ResponseApprovalConfig

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

func (NullableGetOrgSettings200ResponseApprovalConfig) Get

func (NullableGetOrgSettings200ResponseApprovalConfig) IsSet

func (NullableGetOrgSettings200ResponseApprovalConfig) MarshalJSON

func (*NullableGetOrgSettings200ResponseApprovalConfig) Set

func (*NullableGetOrgSettings200ResponseApprovalConfig) UnmarshalJSON

func (*NullableGetOrgSettings200ResponseApprovalConfig) Unset

type NullableGetOrgSettings200ResponseSystemNotificationConfig

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

func (NullableGetOrgSettings200ResponseSystemNotificationConfig) Get

func (NullableGetOrgSettings200ResponseSystemNotificationConfig) IsSet

func (NullableGetOrgSettings200ResponseSystemNotificationConfig) MarshalJSON

func (*NullableGetOrgSettings200ResponseSystemNotificationConfig) Set

func (*NullableGetOrgSettings200ResponseSystemNotificationConfig) UnmarshalJSON

func (*NullableGetOrgSettings200ResponseSystemNotificationConfig) Unset

type NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner

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

func (NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) Get

func (NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) IsSet

func (NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) MarshalJSON

func (*NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) Set

func (*NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) UnmarshalJSON

func (*NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInner) Unset

type NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds

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

func (NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) Get

func (NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) IsSet

func (NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) MarshalJSON

func (*NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) Set

func (*NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) UnmarshalJSON

func (*NullableGetOrgSettings200ResponseSystemNotificationConfigNotificationsInnerThresholds) 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 NullableListWorkgroupConnections200ResponseInner

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

func (NullableListWorkgroupConnections200ResponseInner) Get

func (NullableListWorkgroupConnections200ResponseInner) IsSet

func (NullableListWorkgroupConnections200ResponseInner) MarshalJSON

func (*NullableListWorkgroupConnections200ResponseInner) Set

func (*NullableListWorkgroupConnections200ResponseInner) UnmarshalJSON

func (*NullableListWorkgroupConnections200ResponseInner) Unset

type NullableListWorkgroupMembers200ResponseInner

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

func (NullableListWorkgroupMembers200ResponseInner) Get

func (NullableListWorkgroupMembers200ResponseInner) IsSet

func (NullableListWorkgroupMembers200ResponseInner) MarshalJSON

func (*NullableListWorkgroupMembers200ResponseInner) Set

func (*NullableListWorkgroupMembers200ResponseInner) UnmarshalJSON

func (*NullableListWorkgroupMembers200ResponseInner) Unset

type NullableListWorkgroups200ResponseInner

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

func (NullableListWorkgroups200ResponseInner) Get

func (NullableListWorkgroups200ResponseInner) IsSet

func (NullableListWorkgroups200ResponseInner) MarshalJSON

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

func (*NullableListWorkgroups200ResponseInner) Set

func (*NullableListWorkgroups200ResponseInner) UnmarshalJSON

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

func (*NullableListWorkgroups200ResponseInner) Unset

type NullableListWorkgroups200ResponseInnerOwner

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

func (NullableListWorkgroups200ResponseInnerOwner) Get

func (NullableListWorkgroups200ResponseInnerOwner) IsSet

func (NullableListWorkgroups200ResponseInnerOwner) MarshalJSON

func (*NullableListWorkgroups200ResponseInnerOwner) Set

func (*NullableListWorkgroups200ResponseInnerOwner) UnmarshalJSON

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

func (*NullableListWorkgroups200ResponseInnerOwner) Unset

type NullableModifyWorkgroupMembersRequest

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

func (NullableModifyWorkgroupMembersRequest) Get

func (NullableModifyWorkgroupMembersRequest) IsSet

func (NullableModifyWorkgroupMembersRequest) MarshalJSON

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

func (*NullableModifyWorkgroupMembersRequest) Set

func (*NullableModifyWorkgroupMembersRequest) UnmarshalJSON

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

func (*NullableModifyWorkgroupMembersRequest) Unset

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpdateOrgSettingsRequest

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

func (NullableUpdateOrgSettingsRequest) Get

func (NullableUpdateOrgSettingsRequest) IsSet

func (NullableUpdateOrgSettingsRequest) MarshalJSON

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

func (*NullableUpdateOrgSettingsRequest) Set

func (*NullableUpdateOrgSettingsRequest) UnmarshalJSON

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

func (*NullableUpdateOrgSettingsRequest) Unset

type OrgApiService

type OrgApiService service

OrgApiService OrgApi service

func (*OrgApiService) GetOrgSettings

func (a *OrgApiService) GetOrgSettings(ctx context.Context) ApiGetOrgSettingsRequest

GetOrgSettings Retrieves your org settings.

Retrieves information and operational settings for your org (as determined by the URL domain).

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

func (*OrgApiService) GetOrgSettingsExecute

Execute executes the request

@return GetOrgSettings200Response

func (*OrgApiService) UpdateOrgSettings

func (a *OrgApiService) UpdateOrgSettings(ctx context.Context) ApiUpdateOrgSettingsRequest

UpdateOrgSettings Updates one or more org attributes.

Updates one or more attributes for your org.

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

func (*OrgApiService) UpdateOrgSettingsExecute

Execute executes the request

@return GetOrgSettings200Response

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 UpdateOrgSettingsRequest

type UpdateOrgSettingsRequest struct {
	CountryCodes                      []string                                 `json:"countryCodes,omitempty"`
	EnableExternalPasswordChange      *bool                                    `json:"enableExternalPasswordChange,omitempty"`
	EnableAutomaticPasswordReplay     *bool                                    `json:"enableAutomaticPasswordReplay,omitempty"`
	EnableAutomationGeneration        *bool                                    `json:"enableAutomationGeneration,omitempty"`
	KbaReqAnswers                     *int32                                   `json:"kbaReqAnswers,omitempty"`
	KbaReqForAuthn                    *int32                                   `json:"kbaReqForAuthn,omitempty"`
	LockoutAttemptThreshold           *int32                                   `json:"lockoutAttemptThreshold,omitempty"`
	LockoutTimeMinutes                *int32                                   `json:"lockoutTimeMinutes,omitempty"`
	LoginUrl                          *string                                  `json:"loginUrl,omitempty"`
	Netmasks                          []string                                 `json:"netmasks,omitempty"`
	NotifyAuthenticationSettingChange *bool                                    `json:"notifyAuthenticationSettingChange,omitempty"`
	PasswordReplayState               *string                                  `json:"passwordReplayState,omitempty"`
	PreferredIdentityInviteTemplate   *string                                  `json:"preferredIdentityInviteTemplate,omitempty"`
	RedirectPatterns                  []string                                 `json:"redirectPatterns,omitempty"`
	SsoPartnerSource                  *string                                  `json:"ssoPartnerSource,omitempty"`
	SystemNotificationEmails          []string                                 `json:"systemNotificationEmails,omitempty"`
	TrackAnalytics                    *bool                                    `json:"trackAnalytics,omitempty"`
	UsageCertRequired                 *bool                                    `json:"usageCertRequired,omitempty"`
	UsageCertText                     *string                                  `json:"usageCertText,omitempty"`
	UsernameEmptyText                 *string                                  `json:"usernameEmptyText,omitempty"`
	UsernameLabel                     *string                                  `json:"usernameLabel,omitempty"`
	WhiteList                         *bool                                    `json:"whiteList,omitempty"`
	ApprovalConfig                    *GetOrgSettings200ResponseApprovalConfig `json:"approvalConfig,omitempty"`
	AdditionalProperties              map[string]interface{}
}

UpdateOrgSettingsRequest struct for UpdateOrgSettingsRequest

func NewUpdateOrgSettingsRequest

func NewUpdateOrgSettingsRequest() *UpdateOrgSettingsRequest

NewUpdateOrgSettingsRequest instantiates a new UpdateOrgSettingsRequest 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 NewUpdateOrgSettingsRequestWithDefaults

func NewUpdateOrgSettingsRequestWithDefaults() *UpdateOrgSettingsRequest

NewUpdateOrgSettingsRequestWithDefaults instantiates a new UpdateOrgSettingsRequest 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 (*UpdateOrgSettingsRequest) GetApprovalConfig

GetApprovalConfig returns the ApprovalConfig field value if set, zero value otherwise.

func (*UpdateOrgSettingsRequest) GetApprovalConfigOk

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

func (*UpdateOrgSettingsRequest) GetCountryCodes

func (o *UpdateOrgSettingsRequest) GetCountryCodes() []string

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

func (*UpdateOrgSettingsRequest) GetCountryCodesOk

func (o *UpdateOrgSettingsRequest) GetCountryCodesOk() ([]string, 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 (*UpdateOrgSettingsRequest) GetEnableAutomaticPasswordReplay

func (o *UpdateOrgSettingsRequest) GetEnableAutomaticPasswordReplay() bool

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

func (*UpdateOrgSettingsRequest) GetEnableAutomaticPasswordReplayOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) GetEnableAutomationGeneration

func (o *UpdateOrgSettingsRequest) GetEnableAutomationGeneration() bool

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

func (*UpdateOrgSettingsRequest) GetEnableAutomationGenerationOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) GetEnableExternalPasswordChange

func (o *UpdateOrgSettingsRequest) GetEnableExternalPasswordChange() bool

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

func (*UpdateOrgSettingsRequest) GetEnableExternalPasswordChangeOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) GetKbaReqAnswers

func (o *UpdateOrgSettingsRequest) GetKbaReqAnswers() int32

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

func (*UpdateOrgSettingsRequest) GetKbaReqAnswersOk

func (o *UpdateOrgSettingsRequest) GetKbaReqAnswersOk() (*int32, 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 (*UpdateOrgSettingsRequest) GetKbaReqForAuthn

func (o *UpdateOrgSettingsRequest) GetKbaReqForAuthn() int32

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

func (*UpdateOrgSettingsRequest) GetKbaReqForAuthnOk

func (o *UpdateOrgSettingsRequest) GetKbaReqForAuthnOk() (*int32, 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 (*UpdateOrgSettingsRequest) GetLockoutAttemptThreshold

func (o *UpdateOrgSettingsRequest) GetLockoutAttemptThreshold() int32

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

func (*UpdateOrgSettingsRequest) GetLockoutAttemptThresholdOk

func (o *UpdateOrgSettingsRequest) GetLockoutAttemptThresholdOk() (*int32, 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 (*UpdateOrgSettingsRequest) GetLockoutTimeMinutes

func (o *UpdateOrgSettingsRequest) GetLockoutTimeMinutes() int32

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

func (*UpdateOrgSettingsRequest) GetLockoutTimeMinutesOk

func (o *UpdateOrgSettingsRequest) GetLockoutTimeMinutesOk() (*int32, 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 (*UpdateOrgSettingsRequest) GetLoginUrl

func (o *UpdateOrgSettingsRequest) GetLoginUrl() string

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

func (*UpdateOrgSettingsRequest) GetLoginUrlOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) GetNetmasks

func (o *UpdateOrgSettingsRequest) GetNetmasks() []string

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

func (*UpdateOrgSettingsRequest) GetNetmasksOk

func (o *UpdateOrgSettingsRequest) GetNetmasksOk() ([]string, 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 (*UpdateOrgSettingsRequest) GetNotifyAuthenticationSettingChange

func (o *UpdateOrgSettingsRequest) GetNotifyAuthenticationSettingChange() bool

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

func (*UpdateOrgSettingsRequest) GetNotifyAuthenticationSettingChangeOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) GetPasswordReplayState

func (o *UpdateOrgSettingsRequest) GetPasswordReplayState() string

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

func (*UpdateOrgSettingsRequest) GetPasswordReplayStateOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) GetPreferredIdentityInviteTemplate

func (o *UpdateOrgSettingsRequest) GetPreferredIdentityInviteTemplate() string

GetPreferredIdentityInviteTemplate returns the PreferredIdentityInviteTemplate field value if set, zero value otherwise.

func (*UpdateOrgSettingsRequest) GetPreferredIdentityInviteTemplateOk

func (o *UpdateOrgSettingsRequest) GetPreferredIdentityInviteTemplateOk() (*string, bool)

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

func (*UpdateOrgSettingsRequest) GetRedirectPatterns

func (o *UpdateOrgSettingsRequest) GetRedirectPatterns() []string

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

func (*UpdateOrgSettingsRequest) GetRedirectPatternsOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) GetSsoPartnerSource

func (o *UpdateOrgSettingsRequest) GetSsoPartnerSource() string

GetSsoPartnerSource returns the SsoPartnerSource field value if set, zero value otherwise.

func (*UpdateOrgSettingsRequest) GetSsoPartnerSourceOk

func (o *UpdateOrgSettingsRequest) GetSsoPartnerSourceOk() (*string, bool)

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

func (*UpdateOrgSettingsRequest) GetSystemNotificationEmails

func (o *UpdateOrgSettingsRequest) GetSystemNotificationEmails() []string

GetSystemNotificationEmails returns the SystemNotificationEmails field value if set, zero value otherwise.

func (*UpdateOrgSettingsRequest) GetSystemNotificationEmailsOk

func (o *UpdateOrgSettingsRequest) GetSystemNotificationEmailsOk() ([]string, bool)

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

func (*UpdateOrgSettingsRequest) GetTrackAnalytics

func (o *UpdateOrgSettingsRequest) GetTrackAnalytics() bool

GetTrackAnalytics returns the TrackAnalytics field value if set, zero value otherwise.

func (*UpdateOrgSettingsRequest) GetTrackAnalyticsOk

func (o *UpdateOrgSettingsRequest) GetTrackAnalyticsOk() (*bool, bool)

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

func (*UpdateOrgSettingsRequest) GetUsageCertRequired

func (o *UpdateOrgSettingsRequest) GetUsageCertRequired() bool

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

func (*UpdateOrgSettingsRequest) GetUsageCertRequiredOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) GetUsageCertText

func (o *UpdateOrgSettingsRequest) GetUsageCertText() string

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

func (*UpdateOrgSettingsRequest) GetUsageCertTextOk

func (o *UpdateOrgSettingsRequest) GetUsageCertTextOk() (*string, 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 (*UpdateOrgSettingsRequest) GetUsernameEmptyText

func (o *UpdateOrgSettingsRequest) GetUsernameEmptyText() string

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

func (*UpdateOrgSettingsRequest) GetUsernameEmptyTextOk

func (o *UpdateOrgSettingsRequest) GetUsernameEmptyTextOk() (*string, 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 (*UpdateOrgSettingsRequest) GetUsernameLabel

func (o *UpdateOrgSettingsRequest) GetUsernameLabel() string

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

func (*UpdateOrgSettingsRequest) GetUsernameLabelOk

func (o *UpdateOrgSettingsRequest) GetUsernameLabelOk() (*string, 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 (*UpdateOrgSettingsRequest) GetWhiteList

func (o *UpdateOrgSettingsRequest) GetWhiteList() bool

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

func (*UpdateOrgSettingsRequest) GetWhiteListOk

func (o *UpdateOrgSettingsRequest) 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 (*UpdateOrgSettingsRequest) HasApprovalConfig

func (o *UpdateOrgSettingsRequest) HasApprovalConfig() bool

HasApprovalConfig returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasCountryCodes

func (o *UpdateOrgSettingsRequest) HasCountryCodes() bool

HasCountryCodes returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasEnableAutomaticPasswordReplay

func (o *UpdateOrgSettingsRequest) HasEnableAutomaticPasswordReplay() bool

HasEnableAutomaticPasswordReplay returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasEnableAutomationGeneration

func (o *UpdateOrgSettingsRequest) HasEnableAutomationGeneration() bool

HasEnableAutomationGeneration returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasEnableExternalPasswordChange

func (o *UpdateOrgSettingsRequest) HasEnableExternalPasswordChange() bool

HasEnableExternalPasswordChange returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasKbaReqAnswers

func (o *UpdateOrgSettingsRequest) HasKbaReqAnswers() bool

HasKbaReqAnswers returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasKbaReqForAuthn

func (o *UpdateOrgSettingsRequest) HasKbaReqForAuthn() bool

HasKbaReqForAuthn returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasLockoutAttemptThreshold

func (o *UpdateOrgSettingsRequest) HasLockoutAttemptThreshold() bool

HasLockoutAttemptThreshold returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasLockoutTimeMinutes

func (o *UpdateOrgSettingsRequest) HasLockoutTimeMinutes() bool

HasLockoutTimeMinutes returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasLoginUrl

func (o *UpdateOrgSettingsRequest) HasLoginUrl() bool

HasLoginUrl returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasNetmasks

func (o *UpdateOrgSettingsRequest) HasNetmasks() bool

HasNetmasks returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasNotifyAuthenticationSettingChange

func (o *UpdateOrgSettingsRequest) HasNotifyAuthenticationSettingChange() bool

HasNotifyAuthenticationSettingChange returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasPasswordReplayState

func (o *UpdateOrgSettingsRequest) HasPasswordReplayState() bool

HasPasswordReplayState returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasPreferredIdentityInviteTemplate

func (o *UpdateOrgSettingsRequest) HasPreferredIdentityInviteTemplate() bool

HasPreferredIdentityInviteTemplate returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasRedirectPatterns

func (o *UpdateOrgSettingsRequest) HasRedirectPatterns() bool

HasRedirectPatterns returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasSsoPartnerSource

func (o *UpdateOrgSettingsRequest) HasSsoPartnerSource() bool

HasSsoPartnerSource returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasSystemNotificationEmails

func (o *UpdateOrgSettingsRequest) HasSystemNotificationEmails() bool

HasSystemNotificationEmails returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasTrackAnalytics

func (o *UpdateOrgSettingsRequest) HasTrackAnalytics() bool

HasTrackAnalytics returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasUsageCertRequired

func (o *UpdateOrgSettingsRequest) HasUsageCertRequired() bool

HasUsageCertRequired returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasUsageCertText

func (o *UpdateOrgSettingsRequest) HasUsageCertText() bool

HasUsageCertText returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasUsernameEmptyText

func (o *UpdateOrgSettingsRequest) HasUsernameEmptyText() bool

HasUsernameEmptyText returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasUsernameLabel

func (o *UpdateOrgSettingsRequest) HasUsernameLabel() bool

HasUsernameLabel returns a boolean if a field has been set.

func (*UpdateOrgSettingsRequest) HasWhiteList

func (o *UpdateOrgSettingsRequest) HasWhiteList() bool

HasWhiteList returns a boolean if a field has been set.

func (UpdateOrgSettingsRequest) MarshalJSON

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

func (*UpdateOrgSettingsRequest) SetApprovalConfig

SetApprovalConfig gets a reference to the given GetOrgSettings200ResponseApprovalConfig and assigns it to the ApprovalConfig field.

func (*UpdateOrgSettingsRequest) SetCountryCodes

func (o *UpdateOrgSettingsRequest) SetCountryCodes(v []string)

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

func (*UpdateOrgSettingsRequest) SetEnableAutomaticPasswordReplay

func (o *UpdateOrgSettingsRequest) SetEnableAutomaticPasswordReplay(v bool)

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

func (*UpdateOrgSettingsRequest) SetEnableAutomationGeneration

func (o *UpdateOrgSettingsRequest) SetEnableAutomationGeneration(v bool)

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

func (*UpdateOrgSettingsRequest) SetEnableExternalPasswordChange

func (o *UpdateOrgSettingsRequest) SetEnableExternalPasswordChange(v bool)

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

func (*UpdateOrgSettingsRequest) SetKbaReqAnswers

func (o *UpdateOrgSettingsRequest) SetKbaReqAnswers(v int32)

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

func (*UpdateOrgSettingsRequest) SetKbaReqForAuthn

func (o *UpdateOrgSettingsRequest) SetKbaReqForAuthn(v int32)

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

func (*UpdateOrgSettingsRequest) SetLockoutAttemptThreshold

func (o *UpdateOrgSettingsRequest) SetLockoutAttemptThreshold(v int32)

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

func (*UpdateOrgSettingsRequest) SetLockoutTimeMinutes

func (o *UpdateOrgSettingsRequest) SetLockoutTimeMinutes(v int32)

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

func (*UpdateOrgSettingsRequest) SetLoginUrl

func (o *UpdateOrgSettingsRequest) SetLoginUrl(v string)

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

func (*UpdateOrgSettingsRequest) SetNetmasks

func (o *UpdateOrgSettingsRequest) SetNetmasks(v []string)

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

func (*UpdateOrgSettingsRequest) SetNotifyAuthenticationSettingChange

func (o *UpdateOrgSettingsRequest) SetNotifyAuthenticationSettingChange(v bool)

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

func (*UpdateOrgSettingsRequest) SetPasswordReplayState

func (o *UpdateOrgSettingsRequest) SetPasswordReplayState(v string)

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

func (*UpdateOrgSettingsRequest) SetPreferredIdentityInviteTemplate

func (o *UpdateOrgSettingsRequest) SetPreferredIdentityInviteTemplate(v string)

SetPreferredIdentityInviteTemplate gets a reference to the given string and assigns it to the PreferredIdentityInviteTemplate field.

func (*UpdateOrgSettingsRequest) SetRedirectPatterns

func (o *UpdateOrgSettingsRequest) SetRedirectPatterns(v []string)

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

func (*UpdateOrgSettingsRequest) SetSsoPartnerSource

func (o *UpdateOrgSettingsRequest) SetSsoPartnerSource(v string)

SetSsoPartnerSource gets a reference to the given string and assigns it to the SsoPartnerSource field.

func (*UpdateOrgSettingsRequest) SetSystemNotificationEmails

func (o *UpdateOrgSettingsRequest) SetSystemNotificationEmails(v []string)

SetSystemNotificationEmails gets a reference to the given []string and assigns it to the SystemNotificationEmails field.

func (*UpdateOrgSettingsRequest) SetTrackAnalytics

func (o *UpdateOrgSettingsRequest) SetTrackAnalytics(v bool)

SetTrackAnalytics gets a reference to the given bool and assigns it to the TrackAnalytics field.

func (*UpdateOrgSettingsRequest) SetUsageCertRequired

func (o *UpdateOrgSettingsRequest) SetUsageCertRequired(v bool)

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

func (*UpdateOrgSettingsRequest) SetUsageCertText

func (o *UpdateOrgSettingsRequest) SetUsageCertText(v string)

SetUsageCertText gets a reference to the given string and assigns it to the UsageCertText field.

func (*UpdateOrgSettingsRequest) SetUsernameEmptyText

func (o *UpdateOrgSettingsRequest) SetUsernameEmptyText(v string)

SetUsernameEmptyText gets a reference to the given string and assigns it to the UsernameEmptyText field.

func (*UpdateOrgSettingsRequest) SetUsernameLabel

func (o *UpdateOrgSettingsRequest) SetUsernameLabel(v string)

SetUsernameLabel gets a reference to the given string and assigns it to the UsernameLabel field.

func (*UpdateOrgSettingsRequest) SetWhiteList

func (o *UpdateOrgSettingsRequest) SetWhiteList(v bool)

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

func (*UpdateOrgSettingsRequest) UnmarshalJSON

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL