verify

package module
v0.11.0 Latest Latest
Warning

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

Go to latest
Published: Feb 13, 2026 License: BSD-3-Clause Imports: 23 Imported by: 0

README

Go API client for verify

The PingOne Platform API covering the PingOne Verify service

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: 2023-07-20
  • Package version: 0.11.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/net/context

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

import verify "github.com/patrickcping/pingone-go-sdk-v2/verify"

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

Documentation for API Endpoints

All URIs are relative to https://api.pingone.com/v1

Class Method HTTP request Description
EnvironmentsApi ReadOneEnvironment Get /environments/{environmentID} READ One Environment
VerifyPoliciesApi CreateVerifyPolicy Post /environments/{environmentID}/verifyPolicies CREATE Verify Policy
VerifyPoliciesApi DeleteVerifyPolicy Delete /environments/{environmentID}/verifyPolicies/{verifyPolicyID} Delete Verify Policy
VerifyPoliciesApi ReadAllVerifyPolicies Get /environments/{environmentID}/verifyPolicies READ All Verify Policies
VerifyPoliciesApi ReadOneVerifyPolicy Get /environments/{environmentID}/verifyPolicies/{verifyPolicyID} READ One Verify Policy
VerifyPoliciesApi UpdateVerifyPolicy Put /environments/{environmentID}/verifyPolicies/{verifyPolicyID} UPDATE Verify Policy
VoicePhraseContentsApi CreateVoicePhraseContent Post /environments/{environmentID}/voicePhrases/{voicePhraseID}/contents CREATE Voice Phrase Content
VoicePhraseContentsApi DeleteVoicePhraseContent Delete /environments/{environmentID}/voicePhrases/{voicePhraseID}/contents/{voiceContentsID} Delete Voice Phrase Content
VoicePhraseContentsApi ReadAllVoicePhraseContents Get /environments/{environmentID}/voicePhrases/{voicePhraseID}/contents READ All Voice Phrase Contents
VoicePhraseContentsApi ReadOneVoicePhraseContent Get /environments/{environmentID}/voicePhrases/{voicePhraseID}/contents/{voiceContentsID} READ One Voice Phrase Content
VoicePhraseContentsApi UpdateVoicePhraseContent Put /environments/{environmentID}/voicePhrases/{voicePhraseID}/contents/{voiceContentsID} UPDATE Voice Phrase Content
VoicePhrasesApi CreateVoicePhrase Post /environments/{environmentID}/voicePhrases CREATE Voice Phrase
VoicePhrasesApi DeleteVoicePhrase Delete /environments/{environmentID}/voicePhrases/{voicePhraseID} Delete Voice Phrase
VoicePhrasesApi ReadAllVoicePhrases Get /environments/{environmentID}/voicePhrases READ All Voice Phrases
VoicePhrasesApi ReadOneVoicePhrase Get /environments/{environmentID}/voicePhrases/{voicePhraseID} READ One Voice Phrase
VoicePhrasesApi UpdateVoicePhrase Put /environments/{environmentID}/voicePhrases/{voicePhraseID} UPDATE Voice Phrase

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

bearer
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARER_TOKEN_STRING")
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

View Source
const (
	PAGINATION_HAL_LINK_INDEX_SELF = "self"
	PAGINATION_HAL_LINK_INDEX_NEXT = "next"
	PAGINATION_HAL_LINK_INDEX_PREV = "prev"
)

Variables

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

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedEnumInspectionTypeEnumValues = []EnumInspectionType{
	"AUTOMATIC",
	"MANUAL",
	"STEP_UP",
}

All allowed values of EnumInspectionType enum

View Source
var AllowedEnumProviderAutoEnumValues = []EnumProviderAuto{
	"MITEK",
	"VERIFF",
}

All allowed values of EnumProviderAuto enum

View Source
var AllowedEnumProviderManualEnumValues = []EnumProviderManual{
	"MITEK",
}

All allowed values of EnumProviderManual enum

View Source
var AllowedEnumThresholdEnumValues = []EnumThreshold{
	"LOW",
	"MEDIUM",
	"HIGH",
}

All allowed values of EnumThreshold enum

View Source
var AllowedEnumTimeUnitEnumValues = []EnumTimeUnit{
	"SECONDS",
	"MINUTES",
}

All allowed values of EnumTimeUnit enum

View Source
var AllowedEnumVerifyEnumValues = []EnumVerify{
	"REQUIRED",
	"DISABLED",
}

All allowed values of EnumVerify enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	EnvironmentsApi *EnvironmentsApiService

	HALApi *HALApiService

	VerifyPoliciesApi *VerifyPoliciesApiService

	VoicePhrasesApi *VoicePhrasesApiService

	VoicePhraseContentsApi *VoicePhraseContentsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the PingOne Platform API - PingOne Verify API v2023-05-26 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiCreateVerifyPolicyRequest

type ApiCreateVerifyPolicyRequest struct {
	ApiService *VerifyPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiCreateVerifyPolicyRequest) Execute

func (ApiCreateVerifyPolicyRequest) VerifyPolicy

func (ApiCreateVerifyPolicyRequest) XPingExternalSessionID added in v0.9.0

func (r ApiCreateVerifyPolicyRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiCreateVerifyPolicyRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiCreateVerifyPolicyRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiCreateVerifyPolicyRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateVerifyPolicyRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiCreateVoicePhraseContentRequest added in v0.3.0

type ApiCreateVoicePhraseContentRequest struct {
	ApiService *VoicePhraseContentsApiService
	// contains filtered or unexported fields
}

func (ApiCreateVoicePhraseContentRequest) Execute added in v0.3.0

func (ApiCreateVoicePhraseContentRequest) VoicePhraseContents added in v0.3.0

func (ApiCreateVoicePhraseContentRequest) XPingExternalSessionID added in v0.9.0

func (r ApiCreateVoicePhraseContentRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiCreateVoicePhraseContentRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiCreateVoicePhraseContentRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiCreateVoicePhraseContentRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateVoicePhraseContentRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiCreateVoicePhraseRequest added in v0.3.0

type ApiCreateVoicePhraseRequest struct {
	ApiService *VoicePhrasesApiService
	// contains filtered or unexported fields
}

func (ApiCreateVoicePhraseRequest) Execute added in v0.3.0

func (ApiCreateVoicePhraseRequest) VoicePhrase added in v0.3.0

func (ApiCreateVoicePhraseRequest) XPingExternalSessionID added in v0.9.0

func (r ApiCreateVoicePhraseRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiCreateVoicePhraseRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiCreateVoicePhraseRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiCreateVoicePhraseRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiCreateVoicePhraseRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiDeleteVerifyPolicyRequest

type ApiDeleteVerifyPolicyRequest struct {
	ApiService *VerifyPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVerifyPolicyRequest) Execute

func (ApiDeleteVerifyPolicyRequest) XPingExternalSessionID added in v0.9.0

func (r ApiDeleteVerifyPolicyRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiDeleteVerifyPolicyRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiDeleteVerifyPolicyRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiDeleteVerifyPolicyRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiDeleteVerifyPolicyRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiDeleteVoicePhraseContentRequest added in v0.3.0

type ApiDeleteVoicePhraseContentRequest struct {
	ApiService *VoicePhraseContentsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVoicePhraseContentRequest) Execute added in v0.3.0

func (ApiDeleteVoicePhraseContentRequest) XPingExternalSessionID added in v0.9.0

func (r ApiDeleteVoicePhraseContentRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiDeleteVoicePhraseContentRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiDeleteVoicePhraseContentRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiDeleteVoicePhraseContentRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiDeleteVoicePhraseContentRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiDeleteVoicePhraseRequest added in v0.3.0

type ApiDeleteVoicePhraseRequest struct {
	ApiService *VoicePhrasesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVoicePhraseRequest) Execute added in v0.3.0

func (ApiDeleteVoicePhraseRequest) XPingExternalSessionID added in v0.9.0

func (r ApiDeleteVoicePhraseRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiDeleteVoicePhraseRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiDeleteVoicePhraseRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiDeleteVoicePhraseRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiDeleteVoicePhraseRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiReadAllVerifyPoliciesRequest

type ApiReadAllVerifyPoliciesRequest struct {
	ApiService *VerifyPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiReadAllVerifyPoliciesRequest) Execute

func (ApiReadAllVerifyPoliciesRequest) ExecuteInitialPage added in v0.8.0

func (r ApiReadAllVerifyPoliciesRequest) ExecuteInitialPage() (*EntityArray, *http.Response, error)

func (ApiReadAllVerifyPoliciesRequest) XPingExternalSessionID added in v0.9.0

func (r ApiReadAllVerifyPoliciesRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReadAllVerifyPoliciesRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiReadAllVerifyPoliciesRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiReadAllVerifyPoliciesRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReadAllVerifyPoliciesRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiReadAllVoicePhraseContentsRequest added in v0.3.0

type ApiReadAllVoicePhraseContentsRequest struct {
	ApiService *VoicePhraseContentsApiService
	// contains filtered or unexported fields
}

func (ApiReadAllVoicePhraseContentsRequest) Execute added in v0.3.0

func (ApiReadAllVoicePhraseContentsRequest) ExecuteInitialPage added in v0.8.0

func (ApiReadAllVoicePhraseContentsRequest) XPingExternalSessionID added in v0.9.0

func (r ApiReadAllVoicePhraseContentsRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReadAllVoicePhraseContentsRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiReadAllVoicePhraseContentsRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiReadAllVoicePhraseContentsRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReadAllVoicePhraseContentsRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiReadAllVoicePhrasesRequest added in v0.3.0

type ApiReadAllVoicePhrasesRequest struct {
	ApiService *VoicePhrasesApiService
	// contains filtered or unexported fields
}

func (ApiReadAllVoicePhrasesRequest) Execute added in v0.3.0

func (ApiReadAllVoicePhrasesRequest) ExecuteInitialPage added in v0.8.0

func (r ApiReadAllVoicePhrasesRequest) ExecuteInitialPage() (*EntityArray, *http.Response, error)

func (ApiReadAllVoicePhrasesRequest) XPingExternalSessionID added in v0.9.0

func (r ApiReadAllVoicePhrasesRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReadAllVoicePhrasesRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiReadAllVoicePhrasesRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiReadAllVoicePhrasesRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReadAllVoicePhrasesRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiReadHALLinkRequest added in v0.6.0

type ApiReadHALLinkRequest struct {
	ApiService *HALApiService
	// contains filtered or unexported fields
}

func (ApiReadHALLinkRequest) Execute added in v0.6.0

func (r ApiReadHALLinkRequest) Execute() (interface{}, *http.Response, error)

func (ApiReadHALLinkRequest) XPingExternalSessionID added in v0.9.0

func (r ApiReadHALLinkRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReadHALLinkRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiReadHALLinkRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiReadHALLinkRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReadHALLinkRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiReadOneEnvironmentRequest added in v0.9.1

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

func (ApiReadOneEnvironmentRequest) Execute added in v0.9.1

func (ApiReadOneEnvironmentRequest) XPingExternalSessionID added in v0.9.1

func (r ApiReadOneEnvironmentRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReadOneEnvironmentRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiReadOneEnvironmentRequest) XPingExternalTransactionID added in v0.9.1

func (r ApiReadOneEnvironmentRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReadOneEnvironmentRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiReadOneVerifyPolicyRequest

type ApiReadOneVerifyPolicyRequest struct {
	ApiService *VerifyPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiReadOneVerifyPolicyRequest) Execute

func (ApiReadOneVerifyPolicyRequest) XPingExternalSessionID added in v0.9.0

func (r ApiReadOneVerifyPolicyRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReadOneVerifyPolicyRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiReadOneVerifyPolicyRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiReadOneVerifyPolicyRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReadOneVerifyPolicyRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiReadOneVoicePhraseContentRequest added in v0.3.0

type ApiReadOneVoicePhraseContentRequest struct {
	ApiService *VoicePhraseContentsApiService
	// contains filtered or unexported fields
}

func (ApiReadOneVoicePhraseContentRequest) Execute added in v0.3.0

func (ApiReadOneVoicePhraseContentRequest) XPingExternalSessionID added in v0.9.0

func (r ApiReadOneVoicePhraseContentRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReadOneVoicePhraseContentRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiReadOneVoicePhraseContentRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiReadOneVoicePhraseContentRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReadOneVoicePhraseContentRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiReadOneVoicePhraseRequest added in v0.3.0

type ApiReadOneVoicePhraseRequest struct {
	ApiService *VoicePhrasesApiService
	// contains filtered or unexported fields
}

func (ApiReadOneVoicePhraseRequest) Execute added in v0.3.0

func (ApiReadOneVoicePhraseRequest) XPingExternalSessionID added in v0.9.0

func (r ApiReadOneVoicePhraseRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiReadOneVoicePhraseRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiReadOneVoicePhraseRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiReadOneVoicePhraseRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiReadOneVoicePhraseRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiUpdateVerifyPolicyRequest

type ApiUpdateVerifyPolicyRequest struct {
	ApiService *VerifyPoliciesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateVerifyPolicyRequest) Execute

func (ApiUpdateVerifyPolicyRequest) VerifyPolicy

func (ApiUpdateVerifyPolicyRequest) XPingExternalSessionID added in v0.9.0

func (r ApiUpdateVerifyPolicyRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiUpdateVerifyPolicyRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiUpdateVerifyPolicyRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiUpdateVerifyPolicyRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiUpdateVerifyPolicyRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiUpdateVoicePhraseContentRequest added in v0.3.0

type ApiUpdateVoicePhraseContentRequest struct {
	ApiService *VoicePhraseContentsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateVoicePhraseContentRequest) Execute added in v0.3.0

func (ApiUpdateVoicePhraseContentRequest) VoicePhraseContents added in v0.3.0

func (ApiUpdateVoicePhraseContentRequest) XPingExternalSessionID added in v0.9.0

func (r ApiUpdateVoicePhraseContentRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiUpdateVoicePhraseContentRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiUpdateVoicePhraseContentRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiUpdateVoicePhraseContentRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiUpdateVoicePhraseContentRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type ApiUpdateVoicePhraseRequest added in v0.3.0

type ApiUpdateVoicePhraseRequest struct {
	ApiService *VoicePhrasesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateVoicePhraseRequest) Execute added in v0.3.0

func (ApiUpdateVoicePhraseRequest) VoicePhrase added in v0.3.0

func (ApiUpdateVoicePhraseRequest) XPingExternalSessionID added in v0.9.0

func (r ApiUpdateVoicePhraseRequest) XPingExternalSessionID(xPingExternalSessionID string) ApiUpdateVoicePhraseRequest

An ID for telemetry purposes to correlate sessions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

func (ApiUpdateVoicePhraseRequest) XPingExternalTransactionID added in v0.9.0

func (r ApiUpdateVoicePhraseRequest) XPingExternalTransactionID(xPingExternalTransactionID string) ApiUpdateVoicePhraseRequest

An ID for telemetry purposes to correlate transactions with client systems through PingOne products. This may be a user defined value. If a value isn't provided on the API request, a unique value will be generated in the API response. See [External transaction and session IDs](https://apidocs.pingidentity.com/pingone/platform/v1/api/#external-transaction-and-session-ids) for more information. Any invalid characters will be converted to underscores. The following characters are allowed: Unicode letters, combining marks, numeric characters, dots, underscores, dashes `/`, `@`, `=`, `#`, `+`

type BasicAuth

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

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) AppendUserAgent added in v0.4.1

func (c *Configuration) AppendUserAgent(userAgent string)

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

func (*Configuration) SetDebug added in v0.2.0

func (c *Configuration) SetDebug(debug bool)

func (*Configuration) SetDefaultServerIndex added in v0.2.0

func (c *Configuration) SetDefaultServerIndex(defaultServerIndex int)

func (*Configuration) SetDefaultServerVariableDefaultValue added in v0.2.0

func (c *Configuration) SetDefaultServerVariableDefaultValue(variable string, value string) error

func (*Configuration) SetServerVariableDefaultValue added in v0.2.0

func (c *Configuration) SetServerVariableDefaultValue(serverIndex int, variable string, value string) error

func (*Configuration) SetUserAgent added in v0.2.1

func (c *Configuration) SetUserAgent(userAgent string)

type EntityArray

type EntityArray struct {
	Links    *map[string]LinksHATEOASValue `json:"_links,omitempty"`
	Embedded *EntityArrayEmbedded          `json:"_embedded,omitempty"`
	Size     *float32                      `json:"size,omitempty"`
}

EntityArray struct for EntityArray

func NewEntityArray

func NewEntityArray() *EntityArray

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

func NewEntityArrayWithDefaults

func NewEntityArrayWithDefaults() *EntityArray

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

func (*EntityArray) GetEmbedded

func (o *EntityArray) GetEmbedded() EntityArrayEmbedded

GetEmbedded returns the Embedded field value if set, zero value otherwise.

func (*EntityArray) GetEmbeddedOk

func (o *EntityArray) GetEmbeddedOk() (*EntityArrayEmbedded, bool)

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

func (o *EntityArray) GetLinks() map[string]LinksHATEOASValue

GetLinks returns the Links field value if set, zero value otherwise.

func (*EntityArray) GetLinksOk added in v0.3.0

func (o *EntityArray) GetLinksOk() (*map[string]LinksHATEOASValue, bool)

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

func (o *EntityArray) GetPaginationNextLink() LinksHATEOASValue

func (*EntityArray) GetPaginationNextLinkOk added in v0.8.0

func (o *EntityArray) GetPaginationNextLinkOk() (*LinksHATEOASValue, bool)
func (o *EntityArray) GetPaginationPreviousLink() LinksHATEOASValue

func (*EntityArray) GetPaginationPreviousLinkOk added in v0.8.0

func (o *EntityArray) GetPaginationPreviousLinkOk() (*LinksHATEOASValue, bool)
func (o *EntityArray) GetPaginationSelfLink() LinksHATEOASValue

func (*EntityArray) GetPaginationSelfLinkOk added in v0.8.0

func (o *EntityArray) GetPaginationSelfLinkOk() (*LinksHATEOASValue, bool)

func (*EntityArray) GetSize

func (o *EntityArray) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*EntityArray) GetSizeOk

func (o *EntityArray) GetSizeOk() (*float32, bool)

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

func (*EntityArray) HasEmbedded

func (o *EntityArray) HasEmbedded() bool

HasEmbedded returns a boolean if a field has been set.

func (o *EntityArray) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*EntityArray) HasPaginationNext added in v0.8.0

func (o *EntityArray) HasPaginationNext() bool

func (*EntityArray) HasPaginationPrevious added in v0.8.0

func (o *EntityArray) HasPaginationPrevious() bool

func (*EntityArray) HasPaginationSelf added in v0.8.0

func (o *EntityArray) HasPaginationSelf() bool

func (*EntityArray) HasSize

func (o *EntityArray) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*EntityArray) IsPaginated added in v0.8.0

func (o *EntityArray) IsPaginated() bool

func (EntityArray) MarshalJSON

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

func (*EntityArray) SetEmbedded

func (o *EntityArray) SetEmbedded(v EntityArrayEmbedded)

SetEmbedded gets a reference to the given EntityArrayEmbedded and assigns it to the Embedded field.

func (o *EntityArray) SetLinks(v map[string]LinksHATEOASValue)

SetLinks gets a reference to the given map[string]LinksHATEOASValue and assigns it to the Links field.

func (*EntityArray) SetSize

func (o *EntityArray) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (EntityArray) ToMap

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

type EntityArrayEmbedded

type EntityArrayEmbedded struct {
	VerifyPolicies []VerifyPolicy        `json:"verifyPolicies,omitempty"`
	VoicePhrases   []VoicePhrase         `json:"voicePhrases,omitempty"`
	Contents       []VoicePhraseContents `json:"contents,omitempty"`
}

EntityArrayEmbedded struct for EntityArrayEmbedded

func NewEntityArrayEmbedded

func NewEntityArrayEmbedded() *EntityArrayEmbedded

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

func NewEntityArrayEmbeddedWithDefaults

func NewEntityArrayEmbeddedWithDefaults() *EntityArrayEmbedded

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

func (*EntityArrayEmbedded) GetContents added in v0.3.0

func (o *EntityArrayEmbedded) GetContents() []VoicePhraseContents

GetContents returns the Contents field value if set, zero value otherwise.

func (*EntityArrayEmbedded) GetContentsOk added in v0.3.0

func (o *EntityArrayEmbedded) GetContentsOk() ([]VoicePhraseContents, bool)

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

func (*EntityArrayEmbedded) GetVerifyPolicies

func (o *EntityArrayEmbedded) GetVerifyPolicies() []VerifyPolicy

GetVerifyPolicies returns the VerifyPolicies field value if set, zero value otherwise.

func (*EntityArrayEmbedded) GetVerifyPoliciesOk

func (o *EntityArrayEmbedded) GetVerifyPoliciesOk() ([]VerifyPolicy, bool)

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

func (*EntityArrayEmbedded) GetVoicePhrases added in v0.3.0

func (o *EntityArrayEmbedded) GetVoicePhrases() []VoicePhrase

GetVoicePhrases returns the VoicePhrases field value if set, zero value otherwise.

func (*EntityArrayEmbedded) GetVoicePhrasesOk added in v0.3.0

func (o *EntityArrayEmbedded) GetVoicePhrasesOk() ([]VoicePhrase, bool)

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

func (*EntityArrayEmbedded) HasContents added in v0.3.0

func (o *EntityArrayEmbedded) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*EntityArrayEmbedded) HasVerifyPolicies

func (o *EntityArrayEmbedded) HasVerifyPolicies() bool

HasVerifyPolicies returns a boolean if a field has been set.

func (*EntityArrayEmbedded) HasVoicePhrases added in v0.3.0

func (o *EntityArrayEmbedded) HasVoicePhrases() bool

HasVoicePhrases returns a boolean if a field has been set.

func (EntityArrayEmbedded) MarshalJSON

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

func (*EntityArrayEmbedded) SetContents added in v0.3.0

func (o *EntityArrayEmbedded) SetContents(v []VoicePhraseContents)

SetContents gets a reference to the given []VoicePhraseContents and assigns it to the Contents field.

func (*EntityArrayEmbedded) SetVerifyPolicies

func (o *EntityArrayEmbedded) SetVerifyPolicies(v []VerifyPolicy)

SetVerifyPolicies gets a reference to the given []VerifyPolicy and assigns it to the VerifyPolicies field.

func (*EntityArrayEmbedded) SetVoicePhrases added in v0.3.0

func (o *EntityArrayEmbedded) SetVoicePhrases(v []VoicePhrase)

SetVoicePhrases gets a reference to the given []VoicePhrase and assigns it to the VoicePhrases field.

func (EntityArrayEmbedded) ToMap

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

type EntityArrayPagedIterator added in v0.8.0

type EntityArrayPagedIterator iter.Seq2[PagedCursor, error]

type EnumInspectionType added in v0.4.0

type EnumInspectionType string

EnumInspectionType A string that defines the mechanism used to authenticate a `governmentId` document. Options are `AUTOMATIC`, `MANUAL`, or `STEP_UP`.

const (
	ENUMINSPECTIONTYPE_AUTOMATIC EnumInspectionType = "AUTOMATIC"
	ENUMINSPECTIONTYPE_MANUAL    EnumInspectionType = "MANUAL"
	ENUMINSPECTIONTYPE_STEP_UP   EnumInspectionType = "STEP_UP"
)

List of EnumInspectionType

func NewEnumInspectionTypeFromValue added in v0.4.0

func NewEnumInspectionTypeFromValue(v string) (*EnumInspectionType, error)

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

func (EnumInspectionType) IsValid added in v0.4.0

func (v EnumInspectionType) IsValid() bool

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

func (EnumInspectionType) Ptr added in v0.4.0

Ptr returns reference to EnumInspectionType value

func (*EnumInspectionType) UnmarshalJSON added in v0.4.0

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

type EnumProviderAuto added in v0.7.0

type EnumProviderAuto string

EnumProviderAuto A string that defines the automatic verification subprocessor; can be `MITEK` or `VERIFF`.

const (
	ENUMPROVIDERAUTO_MITEK  EnumProviderAuto = "MITEK"
	ENUMPROVIDERAUTO_VERIFF EnumProviderAuto = "VERIFF"
)

List of EnumProviderAuto

func NewEnumProviderAutoFromValue added in v0.7.0

func NewEnumProviderAutoFromValue(v string) (*EnumProviderAuto, error)

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

func (EnumProviderAuto) IsValid added in v0.7.0

func (v EnumProviderAuto) IsValid() bool

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

func (EnumProviderAuto) Ptr added in v0.7.0

Ptr returns reference to EnumProviderAuto value

func (*EnumProviderAuto) UnmarshalJSON added in v0.7.0

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

type EnumProviderManual added in v0.7.0

type EnumProviderManual string

EnumProviderManual A string that defines the automatic verification subprocessor; can be `MITEK`.

const (
	ENUMPROVIDERMANUAL_MITEK EnumProviderManual = "MITEK"
)

List of EnumProviderManual

func NewEnumProviderManualFromValue added in v0.7.0

func NewEnumProviderManualFromValue(v string) (*EnumProviderManual, error)

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

func (EnumProviderManual) IsValid added in v0.7.0

func (v EnumProviderManual) IsValid() bool

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

func (EnumProviderManual) Ptr added in v0.7.0

Ptr returns reference to EnumProviderManual value

func (*EnumProviderManual) UnmarshalJSON added in v0.7.0

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

type EnumThreshold

type EnumThreshold string

EnumThreshold A string that defines the verification comparison threshold. Options are `LOW`, `MEDIUM` and `HIGH`.

const (
	ENUMTHRESHOLD_LOW    EnumThreshold = "LOW"
	ENUMTHRESHOLD_MEDIUM EnumThreshold = "MEDIUM"
	ENUMTHRESHOLD_HIGH   EnumThreshold = "HIGH"
)

List of EnumThreshold

func NewEnumThresholdFromValue

func NewEnumThresholdFromValue(v string) (*EnumThreshold, error)

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

func (EnumThreshold) IsValid

func (v EnumThreshold) IsValid() bool

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

func (EnumThreshold) Ptr

func (v EnumThreshold) Ptr() *EnumThreshold

Ptr returns reference to EnumThreshold value

func (*EnumThreshold) UnmarshalJSON

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

type EnumTimeUnit

type EnumTimeUnit string

EnumTimeUnit A string that defines the time unit of a specified duration in `SECONDS` or `MINUTES`.

const (
	ENUMTIMEUNIT_SECONDS EnumTimeUnit = "SECONDS"
	ENUMTIMEUNIT_MINUTES EnumTimeUnit = "MINUTES"
)

List of EnumTimeUnit

func NewEnumTimeUnitFromValue

func NewEnumTimeUnitFromValue(v string) (*EnumTimeUnit, error)

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

func (EnumTimeUnit) IsValid

func (v EnumTimeUnit) IsValid() bool

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

func (EnumTimeUnit) Ptr

func (v EnumTimeUnit) Ptr() *EnumTimeUnit

Ptr returns reference to EnumTimeUnit value

func (*EnumTimeUnit) UnmarshalJSON

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

type EnumVerify

type EnumVerify string

EnumVerify A string that defines the verification check requirements. Options are `REQUIRED` and `DISABLED`.

const (
	ENUMVERIFY_REQUIRED EnumVerify = "REQUIRED"
	ENUMVERIFY_DISABLED EnumVerify = "DISABLED"
)

List of EnumVerify

func NewEnumVerifyFromValue

func NewEnumVerifyFromValue(v string) (*EnumVerify, error)

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

func (EnumVerify) IsValid

func (v EnumVerify) IsValid() bool

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

func (EnumVerify) Ptr

func (v EnumVerify) Ptr() *EnumVerify

Ptr returns reference to EnumVerify value

func (*EnumVerify) UnmarshalJSON

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

type Environment added in v0.9.1

type Environment struct {
	// The time the resource was created.
	CreatedAt *string `json:"createdAt,omitempty"`
	// A string that specifies the resource’s unique identifier.
	Id *string `json:"id,omitempty"`
	// The time the resource was last updated.
	UpdatedAt *string `json:"updatedAt,omitempty"`
}

Environment struct for Environment

func NewEnvironment added in v0.9.1

func NewEnvironment() *Environment

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

func NewEnvironmentWithDefaults added in v0.9.1

func NewEnvironmentWithDefaults() *Environment

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

func (*Environment) GetCreatedAt added in v0.9.1

func (o *Environment) GetCreatedAt() string

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

func (*Environment) GetCreatedAtOk added in v0.9.1

func (o *Environment) GetCreatedAtOk() (*string, bool)

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

func (*Environment) GetId added in v0.9.1

func (o *Environment) GetId() string

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

func (*Environment) GetIdOk added in v0.9.1

func (o *Environment) 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 (*Environment) GetUpdatedAt added in v0.9.1

func (o *Environment) GetUpdatedAt() string

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

func (*Environment) GetUpdatedAtOk added in v0.9.1

func (o *Environment) GetUpdatedAtOk() (*string, bool)

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

func (*Environment) HasCreatedAt added in v0.9.1

func (o *Environment) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Environment) HasId added in v0.9.1

func (o *Environment) HasId() bool

HasId returns a boolean if a field has been set.

func (*Environment) HasUpdatedAt added in v0.9.1

func (o *Environment) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (Environment) MarshalJSON added in v0.9.1

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

func (*Environment) SetCreatedAt added in v0.9.1

func (o *Environment) SetCreatedAt(v string)

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

func (*Environment) SetId added in v0.9.1

func (o *Environment) SetId(v string)

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

func (*Environment) SetUpdatedAt added in v0.9.1

func (o *Environment) SetUpdatedAt(v string)

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

func (Environment) ToMap added in v0.9.1

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

type EnvironmentsApiService added in v0.9.1

type EnvironmentsApiService service

EnvironmentsApiService EnvironmentsApi service

func (*EnvironmentsApiService) ReadOneEnvironment added in v0.9.1

func (a *EnvironmentsApiService) ReadOneEnvironment(ctx context.Context, environmentID string) ApiReadOneEnvironmentRequest

ReadOneEnvironment READ One Environment

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

func (*EnvironmentsApiService) ReadOneEnvironmentExecute added in v0.9.1

func (a *EnvironmentsApiService) ReadOneEnvironmentExecute(r ApiReadOneEnvironmentRequest) (*Environment, *http.Response, error)

Execute executes the request

@return Environment

type FacialComparisonConfiguration

type FacialComparisonConfiguration struct {
	Verify    EnumVerify    `json:"verify"`
	Threshold EnumThreshold `json:"threshold"`
}

FacialComparisonConfiguration struct for FacialComparisonConfiguration

func NewFacialComparisonConfiguration

func NewFacialComparisonConfiguration(verify EnumVerify, threshold EnumThreshold) *FacialComparisonConfiguration

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

func NewFacialComparisonConfigurationWithDefaults

func NewFacialComparisonConfigurationWithDefaults() *FacialComparisonConfiguration

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

func (*FacialComparisonConfiguration) GetThreshold

func (o *FacialComparisonConfiguration) GetThreshold() EnumThreshold

GetThreshold returns the Threshold field value

func (*FacialComparisonConfiguration) GetThresholdOk

func (o *FacialComparisonConfiguration) GetThresholdOk() (*EnumThreshold, bool)

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

func (*FacialComparisonConfiguration) GetVerify

GetVerify returns the Verify field value

func (*FacialComparisonConfiguration) GetVerifyOk

func (o *FacialComparisonConfiguration) GetVerifyOk() (*EnumVerify, bool)

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

func (FacialComparisonConfiguration) MarshalJSON

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

func (*FacialComparisonConfiguration) SetThreshold

func (o *FacialComparisonConfiguration) SetThreshold(v EnumThreshold)

SetThreshold sets field value

func (*FacialComparisonConfiguration) SetVerify

func (o *FacialComparisonConfiguration) SetVerify(v EnumVerify)

SetVerify sets field value

func (FacialComparisonConfiguration) ToMap

func (o FacialComparisonConfiguration) ToMap() (map[string]interface{}, 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 GovernmentIdConfiguration

type GovernmentIdConfiguration struct {
	Aadhaar *GovernmentIdConfigurationAadhaar `json:"aadhaar,omitempty"`
	// Indicates whether verification should fail if the ID is expired.
	FailExpiredId  *bool                              `json:"failExpiredId,omitempty"`
	InspectionType *EnumInspectionType                `json:"inspectionType,omitempty"`
	Provider       *GovernmentIdConfigurationProvider `json:"provider,omitempty"`
	Retry          *ObjectRetry                       `json:"retry,omitempty"`
	Verify         EnumVerify                         `json:"verify"`
	// Whether [AAMVA DLDV](https://apidocs.pingidentity.com/pingone/platform/v1/api/#us-based-driver-licenses) verification is enabled
	VerifyAamva *bool `json:"verifyAamva,omitempty"`
}

GovernmentIdConfiguration struct for GovernmentIdConfiguration

func NewGovernmentIdConfiguration

func NewGovernmentIdConfiguration(verify EnumVerify) *GovernmentIdConfiguration

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

func NewGovernmentIdConfigurationWithDefaults

func NewGovernmentIdConfigurationWithDefaults() *GovernmentIdConfiguration

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

func (*GovernmentIdConfiguration) GetAadhaar added in v0.10.0

GetAadhaar returns the Aadhaar field value if set, zero value otherwise.

func (*GovernmentIdConfiguration) GetAadhaarOk added in v0.10.0

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

func (*GovernmentIdConfiguration) GetFailExpiredId added in v0.7.0

func (o *GovernmentIdConfiguration) GetFailExpiredId() bool

GetFailExpiredId returns the FailExpiredId field value if set, zero value otherwise.

func (*GovernmentIdConfiguration) GetFailExpiredIdOk added in v0.7.0

func (o *GovernmentIdConfiguration) GetFailExpiredIdOk() (*bool, bool)

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

func (*GovernmentIdConfiguration) GetInspectionType added in v0.4.0

func (o *GovernmentIdConfiguration) GetInspectionType() EnumInspectionType

GetInspectionType returns the InspectionType field value if set, zero value otherwise.

func (*GovernmentIdConfiguration) GetInspectionTypeOk added in v0.4.0

func (o *GovernmentIdConfiguration) GetInspectionTypeOk() (*EnumInspectionType, bool)

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

func (*GovernmentIdConfiguration) GetProvider added in v0.7.0

GetProvider returns the Provider field value if set, zero value otherwise.

func (*GovernmentIdConfiguration) GetProviderOk added in v0.7.0

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

func (*GovernmentIdConfiguration) GetRetry added in v0.7.0

func (o *GovernmentIdConfiguration) GetRetry() ObjectRetry

GetRetry returns the Retry field value if set, zero value otherwise.

func (*GovernmentIdConfiguration) GetRetryOk added in v0.7.0

func (o *GovernmentIdConfiguration) GetRetryOk() (*ObjectRetry, bool)

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

func (*GovernmentIdConfiguration) GetVerify

func (o *GovernmentIdConfiguration) GetVerify() EnumVerify

GetVerify returns the Verify field value

func (*GovernmentIdConfiguration) GetVerifyAamva added in v0.10.0

func (o *GovernmentIdConfiguration) GetVerifyAamva() bool

GetVerifyAamva returns the VerifyAamva field value if set, zero value otherwise.

func (*GovernmentIdConfiguration) GetVerifyAamvaOk added in v0.10.0

func (o *GovernmentIdConfiguration) GetVerifyAamvaOk() (*bool, bool)

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

func (*GovernmentIdConfiguration) GetVerifyOk

func (o *GovernmentIdConfiguration) GetVerifyOk() (*EnumVerify, bool)

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

func (*GovernmentIdConfiguration) HasAadhaar added in v0.10.0

func (o *GovernmentIdConfiguration) HasAadhaar() bool

HasAadhaar returns a boolean if a field has been set.

func (*GovernmentIdConfiguration) HasFailExpiredId added in v0.7.0

func (o *GovernmentIdConfiguration) HasFailExpiredId() bool

HasFailExpiredId returns a boolean if a field has been set.

func (*GovernmentIdConfiguration) HasInspectionType added in v0.4.0

func (o *GovernmentIdConfiguration) HasInspectionType() bool

HasInspectionType returns a boolean if a field has been set.

func (*GovernmentIdConfiguration) HasProvider added in v0.7.0

func (o *GovernmentIdConfiguration) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*GovernmentIdConfiguration) HasRetry added in v0.7.0

func (o *GovernmentIdConfiguration) HasRetry() bool

HasRetry returns a boolean if a field has been set.

func (*GovernmentIdConfiguration) HasVerifyAamva added in v0.10.0

func (o *GovernmentIdConfiguration) HasVerifyAamva() bool

HasVerifyAamva returns a boolean if a field has been set.

func (GovernmentIdConfiguration) MarshalJSON

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

func (*GovernmentIdConfiguration) SetAadhaar added in v0.10.0

SetAadhaar gets a reference to the given GovernmentIdConfigurationAadhaar and assigns it to the Aadhaar field.

func (*GovernmentIdConfiguration) SetFailExpiredId added in v0.7.0

func (o *GovernmentIdConfiguration) SetFailExpiredId(v bool)

SetFailExpiredId gets a reference to the given bool and assigns it to the FailExpiredId field.

func (*GovernmentIdConfiguration) SetInspectionType added in v0.4.0

func (o *GovernmentIdConfiguration) SetInspectionType(v EnumInspectionType)

SetInspectionType gets a reference to the given EnumInspectionType and assigns it to the InspectionType field.

func (*GovernmentIdConfiguration) SetProvider added in v0.7.0

SetProvider gets a reference to the given GovernmentIdConfigurationProvider and assigns it to the Provider field.

func (*GovernmentIdConfiguration) SetRetry added in v0.7.0

func (o *GovernmentIdConfiguration) SetRetry(v ObjectRetry)

SetRetry gets a reference to the given ObjectRetry and assigns it to the Retry field.

func (*GovernmentIdConfiguration) SetVerify

func (o *GovernmentIdConfiguration) SetVerify(v EnumVerify)

SetVerify sets field value

func (*GovernmentIdConfiguration) SetVerifyAamva added in v0.10.0

func (o *GovernmentIdConfiguration) SetVerifyAamva(v bool)

SetVerifyAamva gets a reference to the given bool and assigns it to the VerifyAamva field.

func (GovernmentIdConfiguration) ToMap

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

type GovernmentIdConfigurationAadhaar added in v0.10.0

type GovernmentIdConfigurationAadhaar struct {
	// Whether Aadhaar verification is enabled or not
	Enabled *bool `json:"enabled,omitempty"`
}

GovernmentIdConfigurationAadhaar Aadhaar configuration

func NewGovernmentIdConfigurationAadhaar added in v0.10.0

func NewGovernmentIdConfigurationAadhaar() *GovernmentIdConfigurationAadhaar

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

func NewGovernmentIdConfigurationAadhaarWithDefaults added in v0.10.0

func NewGovernmentIdConfigurationAadhaarWithDefaults() *GovernmentIdConfigurationAadhaar

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

func (*GovernmentIdConfigurationAadhaar) GetEnabled added in v0.10.0

func (o *GovernmentIdConfigurationAadhaar) GetEnabled() bool

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

func (*GovernmentIdConfigurationAadhaar) GetEnabledOk added in v0.10.0

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

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

func (*GovernmentIdConfigurationAadhaar) HasEnabled added in v0.10.0

func (o *GovernmentIdConfigurationAadhaar) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (GovernmentIdConfigurationAadhaar) MarshalJSON added in v0.10.0

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

func (*GovernmentIdConfigurationAadhaar) SetEnabled added in v0.10.0

func (o *GovernmentIdConfigurationAadhaar) SetEnabled(v bool)

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

func (GovernmentIdConfigurationAadhaar) ToMap added in v0.10.0

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

type GovernmentIdConfigurationAadhaarOtp added in v0.10.0

type GovernmentIdConfigurationAadhaarOtp struct {
	Deliveries *GovernmentIdConfigurationAadhaarOtpDeliveries `json:"deliveries,omitempty"`
}

GovernmentIdConfigurationAadhaarOtp Aadhaar one-time password (OTP) configuration

func NewGovernmentIdConfigurationAadhaarOtp added in v0.10.0

func NewGovernmentIdConfigurationAadhaarOtp() *GovernmentIdConfigurationAadhaarOtp

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

func NewGovernmentIdConfigurationAadhaarOtpWithDefaults added in v0.10.0

func NewGovernmentIdConfigurationAadhaarOtpWithDefaults() *GovernmentIdConfigurationAadhaarOtp

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

func (*GovernmentIdConfigurationAadhaarOtp) GetDeliveries added in v0.10.0

GetDeliveries returns the Deliveries field value if set, zero value otherwise.

func (*GovernmentIdConfigurationAadhaarOtp) GetDeliveriesOk added in v0.10.0

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

func (*GovernmentIdConfigurationAadhaarOtp) HasDeliveries added in v0.10.0

func (o *GovernmentIdConfigurationAadhaarOtp) HasDeliveries() bool

HasDeliveries returns a boolean if a field has been set.

func (GovernmentIdConfigurationAadhaarOtp) MarshalJSON added in v0.10.0

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

func (*GovernmentIdConfigurationAadhaarOtp) SetDeliveries added in v0.10.0

SetDeliveries gets a reference to the given GovernmentIdConfigurationAadhaarOtpDeliveries and assigns it to the Deliveries field.

func (GovernmentIdConfigurationAadhaarOtp) ToMap added in v0.10.0

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

type GovernmentIdConfigurationAadhaarOtpDeliveries added in v0.10.0

type GovernmentIdConfigurationAadhaarOtpDeliveries struct {
	Cooldown *GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown `json:"cooldown,omitempty"`
	// Maximum number of OTP deliveries. Must be 1 to 3.
	Count *int32 `json:"count,omitempty"`
}

GovernmentIdConfigurationAadhaarOtpDeliveries OTP delivery configuration

func NewGovernmentIdConfigurationAadhaarOtpDeliveries added in v0.10.0

func NewGovernmentIdConfigurationAadhaarOtpDeliveries() *GovernmentIdConfigurationAadhaarOtpDeliveries

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

func NewGovernmentIdConfigurationAadhaarOtpDeliveriesWithDefaults added in v0.10.0

func NewGovernmentIdConfigurationAadhaarOtpDeliveriesWithDefaults() *GovernmentIdConfigurationAadhaarOtpDeliveries

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

func (*GovernmentIdConfigurationAadhaarOtpDeliveries) GetCooldown added in v0.10.0

GetCooldown returns the Cooldown field value if set, zero value otherwise.

func (*GovernmentIdConfigurationAadhaarOtpDeliveries) GetCooldownOk added in v0.10.0

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

func (*GovernmentIdConfigurationAadhaarOtpDeliveries) GetCount added in v0.10.0

GetCount returns the Count field value if set, zero value otherwise.

func (*GovernmentIdConfigurationAadhaarOtpDeliveries) GetCountOk added in v0.10.0

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

func (*GovernmentIdConfigurationAadhaarOtpDeliveries) HasCooldown added in v0.10.0

HasCooldown returns a boolean if a field has been set.

func (*GovernmentIdConfigurationAadhaarOtpDeliveries) HasCount added in v0.10.0

HasCount returns a boolean if a field has been set.

func (GovernmentIdConfigurationAadhaarOtpDeliveries) MarshalJSON added in v0.10.0

func (*GovernmentIdConfigurationAadhaarOtpDeliveries) SetCooldown added in v0.10.0

SetCooldown gets a reference to the given GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown and assigns it to the Cooldown field.

func (*GovernmentIdConfigurationAadhaarOtpDeliveries) SetCount added in v0.10.0

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (GovernmentIdConfigurationAadhaarOtpDeliveries) ToMap added in v0.10.0

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

type GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown added in v0.10.0

type GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown struct {
	// Cooldown duration configuration; can be 60-1800 seconds (1-30 minutes)
	Duration *int32        `json:"duration,omitempty"`
	TimeUnit *EnumTimeUnit `json:"timeUnit,omitempty"`
}

GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown Cooldown (waiting period between OTP deliveries) configuration

func NewGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown added in v0.10.0

func NewGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown() *GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown

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

func NewGovernmentIdConfigurationAadhaarOtpDeliveriesCooldownWithDefaults added in v0.10.0

func NewGovernmentIdConfigurationAadhaarOtpDeliveriesCooldownWithDefaults() *GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown

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

func (*GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) GetDuration added in v0.10.0

GetDuration returns the Duration field value if set, zero value otherwise.

func (*GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) GetDurationOk added in v0.10.0

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

func (*GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) GetTimeUnit added in v0.10.0

GetTimeUnit returns the TimeUnit field value if set, zero value otherwise.

func (*GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) GetTimeUnitOk added in v0.10.0

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

func (*GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) HasDuration added in v0.10.0

HasDuration returns a boolean if a field has been set.

func (*GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) HasTimeUnit added in v0.10.0

HasTimeUnit returns a boolean if a field has been set.

func (GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) MarshalJSON added in v0.10.0

func (*GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) SetDuration added in v0.10.0

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) SetTimeUnit added in v0.10.0

SetTimeUnit gets a reference to the given EnumTimeUnit and assigns it to the TimeUnit field.

func (GovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) ToMap added in v0.10.0

type GovernmentIdConfigurationProvider added in v0.7.0

type GovernmentIdConfigurationProvider struct {
	Auto   *EnumProviderAuto   `json:"auto,omitempty"`
	Manual *EnumProviderManual `json:"manual,omitempty"`
}

GovernmentIdConfigurationProvider struct for GovernmentIdConfigurationProvider

func NewGovernmentIdConfigurationProvider added in v0.7.0

func NewGovernmentIdConfigurationProvider() *GovernmentIdConfigurationProvider

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

func NewGovernmentIdConfigurationProviderWithDefaults added in v0.7.0

func NewGovernmentIdConfigurationProviderWithDefaults() *GovernmentIdConfigurationProvider

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

func (*GovernmentIdConfigurationProvider) GetAuto added in v0.7.0

GetAuto returns the Auto field value if set, zero value otherwise.

func (*GovernmentIdConfigurationProvider) GetAutoOk added in v0.7.0

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

func (*GovernmentIdConfigurationProvider) GetManual added in v0.7.0

GetManual returns the Manual field value if set, zero value otherwise.

func (*GovernmentIdConfigurationProvider) GetManualOk added in v0.7.0

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

func (*GovernmentIdConfigurationProvider) HasAuto added in v0.7.0

HasAuto returns a boolean if a field has been set.

func (*GovernmentIdConfigurationProvider) HasManual added in v0.7.0

func (o *GovernmentIdConfigurationProvider) HasManual() bool

HasManual returns a boolean if a field has been set.

func (GovernmentIdConfigurationProvider) MarshalJSON added in v0.7.0

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

func (*GovernmentIdConfigurationProvider) SetAuto added in v0.7.0

SetAuto gets a reference to the given EnumProviderAuto and assigns it to the Auto field.

func (*GovernmentIdConfigurationProvider) SetManual added in v0.7.0

SetManual gets a reference to the given EnumProviderManual and assigns it to the Manual field.

func (GovernmentIdConfigurationProvider) ToMap added in v0.7.0

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

type HALApiService added in v0.6.0

type HALApiService service

HALApiService HALApi service

ReadHALLink READ HAL Link

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

func (*HALApiService) ReadHALLinkExecute added in v0.6.0

func (a *HALApiService) ReadHALLinkExecute(r ApiReadHALLinkRequest) (interface{}, *http.Response, error)

Execute executes the request

@return any

type IdentityRecordMatching added in v0.10.0

type IdentityRecordMatching struct {
	Address    *IdentityRecordMatchingAddress    `json:"address,omitempty"`
	BirthDate  *IdentityRecordMatchingBirthDate  `json:"birth_date,omitempty"`
	FamilyName *IdentityRecordMatchingFamilyName `json:"family_name,omitempty"`
	GivenName  *IdentityRecordMatchingGivenName  `json:"given_name,omitempty"`
	Name       *IdentityRecordMatchingName       `json:"name,omitempty"`
}

IdentityRecordMatching struct for IdentityRecordMatching

func NewIdentityRecordMatching added in v0.10.0

func NewIdentityRecordMatching() *IdentityRecordMatching

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

func NewIdentityRecordMatchingWithDefaults added in v0.10.0

func NewIdentityRecordMatchingWithDefaults() *IdentityRecordMatching

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

func (*IdentityRecordMatching) GetAddress added in v0.10.0

GetAddress returns the Address field value if set, zero value otherwise.

func (*IdentityRecordMatching) GetAddressOk added in v0.10.0

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

func (*IdentityRecordMatching) GetBirthDate added in v0.10.0

GetBirthDate returns the BirthDate field value if set, zero value otherwise.

func (*IdentityRecordMatching) GetBirthDateOk added in v0.10.0

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

func (*IdentityRecordMatching) GetFamilyName added in v0.10.0

GetFamilyName returns the FamilyName field value if set, zero value otherwise.

func (*IdentityRecordMatching) GetFamilyNameOk added in v0.10.0

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

func (*IdentityRecordMatching) GetGivenName added in v0.10.0

GetGivenName returns the GivenName field value if set, zero value otherwise.

func (*IdentityRecordMatching) GetGivenNameOk added in v0.10.0

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

func (*IdentityRecordMatching) GetName added in v0.10.0

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

func (*IdentityRecordMatching) GetNameOk added in v0.10.0

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 (*IdentityRecordMatching) HasAddress added in v0.10.0

func (o *IdentityRecordMatching) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*IdentityRecordMatching) HasBirthDate added in v0.10.0

func (o *IdentityRecordMatching) HasBirthDate() bool

HasBirthDate returns a boolean if a field has been set.

func (*IdentityRecordMatching) HasFamilyName added in v0.10.0

func (o *IdentityRecordMatching) HasFamilyName() bool

HasFamilyName returns a boolean if a field has been set.

func (*IdentityRecordMatching) HasGivenName added in v0.10.0

func (o *IdentityRecordMatching) HasGivenName() bool

HasGivenName returns a boolean if a field has been set.

func (*IdentityRecordMatching) HasName added in v0.10.0

func (o *IdentityRecordMatching) HasName() bool

HasName returns a boolean if a field has been set.

func (IdentityRecordMatching) MarshalJSON added in v0.10.0

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

func (*IdentityRecordMatching) SetAddress added in v0.10.0

SetAddress gets a reference to the given IdentityRecordMatchingAddress and assigns it to the Address field.

func (*IdentityRecordMatching) SetBirthDate added in v0.10.0

SetBirthDate gets a reference to the given IdentityRecordMatchingBirthDate and assigns it to the BirthDate field.

func (*IdentityRecordMatching) SetFamilyName added in v0.10.0

SetFamilyName gets a reference to the given IdentityRecordMatchingFamilyName and assigns it to the FamilyName field.

func (*IdentityRecordMatching) SetGivenName added in v0.10.0

SetGivenName gets a reference to the given IdentityRecordMatchingGivenName and assigns it to the GivenName field.

func (*IdentityRecordMatching) SetName added in v0.10.0

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

func (IdentityRecordMatching) ToMap added in v0.10.0

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

type IdentityRecordMatchingAddress added in v0.10.0

type IdentityRecordMatchingAddress struct {
	// Whether the field is required or not
	FieldRequired bool          `json:"fieldRequired"`
	Threshold     EnumThreshold `json:"threshold"`
}

IdentityRecordMatchingAddress Address of the user.

func NewIdentityRecordMatchingAddress added in v0.10.0

func NewIdentityRecordMatchingAddress(fieldRequired bool, threshold EnumThreshold) *IdentityRecordMatchingAddress

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

func NewIdentityRecordMatchingAddressWithDefaults added in v0.10.0

func NewIdentityRecordMatchingAddressWithDefaults() *IdentityRecordMatchingAddress

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

func (*IdentityRecordMatchingAddress) GetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingAddress) GetFieldRequired() bool

GetFieldRequired returns the FieldRequired field value

func (*IdentityRecordMatchingAddress) GetFieldRequiredOk added in v0.10.0

func (o *IdentityRecordMatchingAddress) GetFieldRequiredOk() (*bool, bool)

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

func (*IdentityRecordMatchingAddress) GetThreshold added in v0.10.0

func (o *IdentityRecordMatchingAddress) GetThreshold() EnumThreshold

GetThreshold returns the Threshold field value

func (*IdentityRecordMatchingAddress) GetThresholdOk added in v0.10.0

func (o *IdentityRecordMatchingAddress) GetThresholdOk() (*EnumThreshold, bool)

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

func (IdentityRecordMatchingAddress) MarshalJSON added in v0.10.0

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

func (*IdentityRecordMatchingAddress) SetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingAddress) SetFieldRequired(v bool)

SetFieldRequired sets field value

func (*IdentityRecordMatchingAddress) SetThreshold added in v0.10.0

func (o *IdentityRecordMatchingAddress) SetThreshold(v EnumThreshold)

SetThreshold sets field value

func (IdentityRecordMatchingAddress) ToMap added in v0.10.0

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

type IdentityRecordMatchingBirthDate added in v0.10.0

type IdentityRecordMatchingBirthDate struct {
	// Whether the field is required or not
	FieldRequired bool          `json:"fieldRequired"`
	Threshold     EnumThreshold `json:"threshold"`
}

IdentityRecordMatchingBirthDate Birth date of the user.

func NewIdentityRecordMatchingBirthDate added in v0.10.0

func NewIdentityRecordMatchingBirthDate(fieldRequired bool, threshold EnumThreshold) *IdentityRecordMatchingBirthDate

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

func NewIdentityRecordMatchingBirthDateWithDefaults added in v0.10.0

func NewIdentityRecordMatchingBirthDateWithDefaults() *IdentityRecordMatchingBirthDate

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

func (*IdentityRecordMatchingBirthDate) GetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingBirthDate) GetFieldRequired() bool

GetFieldRequired returns the FieldRequired field value

func (*IdentityRecordMatchingBirthDate) GetFieldRequiredOk added in v0.10.0

func (o *IdentityRecordMatchingBirthDate) GetFieldRequiredOk() (*bool, bool)

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

func (*IdentityRecordMatchingBirthDate) GetThreshold added in v0.10.0

GetThreshold returns the Threshold field value

func (*IdentityRecordMatchingBirthDate) GetThresholdOk added in v0.10.0

func (o *IdentityRecordMatchingBirthDate) GetThresholdOk() (*EnumThreshold, bool)

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

func (IdentityRecordMatchingBirthDate) MarshalJSON added in v0.10.0

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

func (*IdentityRecordMatchingBirthDate) SetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingBirthDate) SetFieldRequired(v bool)

SetFieldRequired sets field value

func (*IdentityRecordMatchingBirthDate) SetThreshold added in v0.10.0

SetThreshold sets field value

func (IdentityRecordMatchingBirthDate) ToMap added in v0.10.0

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

type IdentityRecordMatchingFamilyName added in v0.10.0

type IdentityRecordMatchingFamilyName struct {
	// Whether the field is required or not
	FieldRequired bool          `json:"fieldRequired"`
	Threshold     EnumThreshold `json:"threshold"`
}

IdentityRecordMatchingFamilyName Family name of the user.

func NewIdentityRecordMatchingFamilyName added in v0.10.0

func NewIdentityRecordMatchingFamilyName(fieldRequired bool, threshold EnumThreshold) *IdentityRecordMatchingFamilyName

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

func NewIdentityRecordMatchingFamilyNameWithDefaults added in v0.10.0

func NewIdentityRecordMatchingFamilyNameWithDefaults() *IdentityRecordMatchingFamilyName

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

func (*IdentityRecordMatchingFamilyName) GetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingFamilyName) GetFieldRequired() bool

GetFieldRequired returns the FieldRequired field value

func (*IdentityRecordMatchingFamilyName) GetFieldRequiredOk added in v0.10.0

func (o *IdentityRecordMatchingFamilyName) GetFieldRequiredOk() (*bool, bool)

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

func (*IdentityRecordMatchingFamilyName) GetThreshold added in v0.10.0

GetThreshold returns the Threshold field value

func (*IdentityRecordMatchingFamilyName) GetThresholdOk added in v0.10.0

func (o *IdentityRecordMatchingFamilyName) GetThresholdOk() (*EnumThreshold, bool)

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

func (IdentityRecordMatchingFamilyName) MarshalJSON added in v0.10.0

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

func (*IdentityRecordMatchingFamilyName) SetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingFamilyName) SetFieldRequired(v bool)

SetFieldRequired sets field value

func (*IdentityRecordMatchingFamilyName) SetThreshold added in v0.10.0

SetThreshold sets field value

func (IdentityRecordMatchingFamilyName) ToMap added in v0.10.0

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

type IdentityRecordMatchingGivenName added in v0.10.0

type IdentityRecordMatchingGivenName struct {
	// Whether the field is required or not
	FieldRequired bool          `json:"fieldRequired"`
	Threshold     EnumThreshold `json:"threshold"`
}

IdentityRecordMatchingGivenName Given name of the user.

func NewIdentityRecordMatchingGivenName added in v0.10.0

func NewIdentityRecordMatchingGivenName(fieldRequired bool, threshold EnumThreshold) *IdentityRecordMatchingGivenName

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

func NewIdentityRecordMatchingGivenNameWithDefaults added in v0.10.0

func NewIdentityRecordMatchingGivenNameWithDefaults() *IdentityRecordMatchingGivenName

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

func (*IdentityRecordMatchingGivenName) GetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingGivenName) GetFieldRequired() bool

GetFieldRequired returns the FieldRequired field value

func (*IdentityRecordMatchingGivenName) GetFieldRequiredOk added in v0.10.0

func (o *IdentityRecordMatchingGivenName) GetFieldRequiredOk() (*bool, bool)

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

func (*IdentityRecordMatchingGivenName) GetThreshold added in v0.10.0

GetThreshold returns the Threshold field value

func (*IdentityRecordMatchingGivenName) GetThresholdOk added in v0.10.0

func (o *IdentityRecordMatchingGivenName) GetThresholdOk() (*EnumThreshold, bool)

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

func (IdentityRecordMatchingGivenName) MarshalJSON added in v0.10.0

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

func (*IdentityRecordMatchingGivenName) SetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingGivenName) SetFieldRequired(v bool)

SetFieldRequired sets field value

func (*IdentityRecordMatchingGivenName) SetThreshold added in v0.10.0

SetThreshold sets field value

func (IdentityRecordMatchingGivenName) ToMap added in v0.10.0

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

type IdentityRecordMatchingName added in v0.10.0

type IdentityRecordMatchingName struct {
	// Whether the field is required or not
	FieldRequired bool          `json:"fieldRequired"`
	Threshold     EnumThreshold `json:"threshold"`
}

IdentityRecordMatchingName Full name of the user.

func NewIdentityRecordMatchingName added in v0.10.0

func NewIdentityRecordMatchingName(fieldRequired bool, threshold EnumThreshold) *IdentityRecordMatchingName

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

func NewIdentityRecordMatchingNameWithDefaults added in v0.10.0

func NewIdentityRecordMatchingNameWithDefaults() *IdentityRecordMatchingName

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

func (*IdentityRecordMatchingName) GetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingName) GetFieldRequired() bool

GetFieldRequired returns the FieldRequired field value

func (*IdentityRecordMatchingName) GetFieldRequiredOk added in v0.10.0

func (o *IdentityRecordMatchingName) GetFieldRequiredOk() (*bool, bool)

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

func (*IdentityRecordMatchingName) GetThreshold added in v0.10.0

func (o *IdentityRecordMatchingName) GetThreshold() EnumThreshold

GetThreshold returns the Threshold field value

func (*IdentityRecordMatchingName) GetThresholdOk added in v0.10.0

func (o *IdentityRecordMatchingName) GetThresholdOk() (*EnumThreshold, bool)

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

func (IdentityRecordMatchingName) MarshalJSON added in v0.10.0

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

func (*IdentityRecordMatchingName) SetFieldRequired added in v0.10.0

func (o *IdentityRecordMatchingName) SetFieldRequired(v bool)

SetFieldRequired sets field value

func (*IdentityRecordMatchingName) SetThreshold added in v0.10.0

func (o *IdentityRecordMatchingName) SetThreshold(v EnumThreshold)

SetThreshold sets field value

func (IdentityRecordMatchingName) ToMap added in v0.10.0

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

type LinksHATEOAS added in v0.3.0

type LinksHATEOAS struct {
	Self                 *LinksHATEOASSelf `json:"self,omitempty"`
	Next                 *LinksHATEOASNext `json:"next,omitempty"`
	AdditionalProperties map[string]interface{}
}

LinksHATEOAS struct for LinksHATEOAS

func NewLinksHATEOAS added in v0.3.0

func NewLinksHATEOAS() *LinksHATEOAS

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

func NewLinksHATEOASWithDefaults added in v0.3.0

func NewLinksHATEOASWithDefaults() *LinksHATEOAS

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

func (*LinksHATEOAS) GetNext added in v0.3.0

func (o *LinksHATEOAS) GetNext() LinksHATEOASNext

GetNext returns the Next field value if set, zero value otherwise.

func (*LinksHATEOAS) GetNextOk added in v0.3.0

func (o *LinksHATEOAS) GetNextOk() (*LinksHATEOASNext, bool)

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

func (*LinksHATEOAS) GetSelf added in v0.3.0

func (o *LinksHATEOAS) GetSelf() LinksHATEOASSelf

GetSelf returns the Self field value if set, zero value otherwise.

func (*LinksHATEOAS) GetSelfOk added in v0.3.0

func (o *LinksHATEOAS) GetSelfOk() (*LinksHATEOASSelf, bool)

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

func (*LinksHATEOAS) HasNext added in v0.3.0

func (o *LinksHATEOAS) HasNext() bool

HasNext returns a boolean if a field has been set.

func (*LinksHATEOAS) HasSelf added in v0.3.0

func (o *LinksHATEOAS) HasSelf() bool

HasSelf returns a boolean if a field has been set.

func (LinksHATEOAS) MarshalJSON added in v0.3.0

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

func (*LinksHATEOAS) SetNext added in v0.3.0

func (o *LinksHATEOAS) SetNext(v LinksHATEOASNext)

SetNext gets a reference to the given LinksHATEOASNext and assigns it to the Next field.

func (*LinksHATEOAS) SetSelf added in v0.3.0

func (o *LinksHATEOAS) SetSelf(v LinksHATEOASSelf)

SetSelf gets a reference to the given LinksHATEOASSelf and assigns it to the Self field.

func (LinksHATEOAS) ToMap added in v0.3.0

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

func (*LinksHATEOAS) UnmarshalJSON added in v0.3.0

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

type LinksHATEOASNext added in v0.3.0

type LinksHATEOASNext struct {
	// The URI of the resource.
	Href *string `json:"href,omitempty"`
}

LinksHATEOASNext An object that describes the next page of results. This property is present only if there is a next page of results and the `limit` parameter is used.

func NewLinksHATEOASNext added in v0.3.0

func NewLinksHATEOASNext() *LinksHATEOASNext

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

func NewLinksHATEOASNextWithDefaults added in v0.3.0

func NewLinksHATEOASNextWithDefaults() *LinksHATEOASNext

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

func (*LinksHATEOASNext) GetHref added in v0.3.0

func (o *LinksHATEOASNext) GetHref() string

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

func (*LinksHATEOASNext) GetHrefOk added in v0.3.0

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

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

func (*LinksHATEOASNext) HasHref added in v0.3.0

func (o *LinksHATEOASNext) HasHref() bool

HasHref returns a boolean if a field has been set.

func (LinksHATEOASNext) MarshalJSON added in v0.3.0

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

func (*LinksHATEOASNext) SetHref added in v0.3.0

func (o *LinksHATEOASNext) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (LinksHATEOASNext) ToMap added in v0.3.0

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

type LinksHATEOASSelf added in v0.3.0

type LinksHATEOASSelf struct {
	// The URI of the resource.
	Href *string `json:"href,omitempty"`
}

LinksHATEOASSelf An object that describes the current resource.

func NewLinksHATEOASSelf added in v0.3.0

func NewLinksHATEOASSelf() *LinksHATEOASSelf

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

func NewLinksHATEOASSelfWithDefaults added in v0.3.0

func NewLinksHATEOASSelfWithDefaults() *LinksHATEOASSelf

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

func (*LinksHATEOASSelf) GetHref added in v0.3.0

func (o *LinksHATEOASSelf) GetHref() string

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

func (*LinksHATEOASSelf) GetHrefOk added in v0.3.0

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

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

func (*LinksHATEOASSelf) HasHref added in v0.3.0

func (o *LinksHATEOASSelf) HasHref() bool

HasHref returns a boolean if a field has been set.

func (LinksHATEOASSelf) MarshalJSON added in v0.3.0

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

func (*LinksHATEOASSelf) SetHref added in v0.3.0

func (o *LinksHATEOASSelf) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (LinksHATEOASSelf) ToMap added in v0.3.0

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

type LinksHATEOASValue added in v0.6.0

type LinksHATEOASValue struct {
	// The HREF of the link.
	Href string `json:"href"`
}

LinksHATEOASValue struct for LinksHATEOASValue

func NewLinksHATEOASValue added in v0.6.0

func NewLinksHATEOASValue(href string) *LinksHATEOASValue

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

func NewLinksHATEOASValueWithDefaults added in v0.6.0

func NewLinksHATEOASValueWithDefaults() *LinksHATEOASValue

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

func (*LinksHATEOASValue) GetHref added in v0.6.0

func (o *LinksHATEOASValue) GetHref() string

GetHref returns the Href field value

func (*LinksHATEOASValue) GetHrefOk added in v0.6.0

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

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

func (LinksHATEOASValue) MarshalJSON added in v0.6.0

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

func (*LinksHATEOASValue) SetHref added in v0.6.0

func (o *LinksHATEOASValue) SetHref(v string)

SetHref sets field value

func (LinksHATEOASValue) ToMap added in v0.6.0

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

type LivenessConfiguration

type LivenessConfiguration struct {
	Retry     *ObjectRetry  `json:"retry,omitempty"`
	Threshold EnumThreshold `json:"threshold"`
	Verify    EnumVerify    `json:"verify"`
}

LivenessConfiguration struct for LivenessConfiguration

func NewLivenessConfiguration

func NewLivenessConfiguration(threshold EnumThreshold, verify EnumVerify) *LivenessConfiguration

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

func NewLivenessConfigurationWithDefaults

func NewLivenessConfigurationWithDefaults() *LivenessConfiguration

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

func (*LivenessConfiguration) GetRetry added in v0.7.0

func (o *LivenessConfiguration) GetRetry() ObjectRetry

GetRetry returns the Retry field value if set, zero value otherwise.

func (*LivenessConfiguration) GetRetryOk added in v0.7.0

func (o *LivenessConfiguration) GetRetryOk() (*ObjectRetry, bool)

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

func (*LivenessConfiguration) GetThreshold

func (o *LivenessConfiguration) GetThreshold() EnumThreshold

GetThreshold returns the Threshold field value

func (*LivenessConfiguration) GetThresholdOk

func (o *LivenessConfiguration) GetThresholdOk() (*EnumThreshold, bool)

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

func (*LivenessConfiguration) GetVerify

func (o *LivenessConfiguration) GetVerify() EnumVerify

GetVerify returns the Verify field value

func (*LivenessConfiguration) GetVerifyOk

func (o *LivenessConfiguration) GetVerifyOk() (*EnumVerify, bool)

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

func (*LivenessConfiguration) HasRetry added in v0.7.0

func (o *LivenessConfiguration) HasRetry() bool

HasRetry returns a boolean if a field has been set.

func (LivenessConfiguration) MarshalJSON

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

func (*LivenessConfiguration) SetRetry added in v0.7.0

func (o *LivenessConfiguration) SetRetry(v ObjectRetry)

SetRetry gets a reference to the given ObjectRetry and assigns it to the Retry field.

func (*LivenessConfiguration) SetThreshold

func (o *LivenessConfiguration) SetThreshold(v EnumThreshold)

SetThreshold sets field value

func (*LivenessConfiguration) SetVerify

func (o *LivenessConfiguration) SetVerify(v EnumVerify)

SetVerify sets field value

func (LivenessConfiguration) ToMap

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

type MappedNullable

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

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableEntityArray

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

func NewNullableEntityArray

func NewNullableEntityArray(val *EntityArray) *NullableEntityArray

func (NullableEntityArray) Get

func (NullableEntityArray) IsSet

func (v NullableEntityArray) IsSet() bool

func (NullableEntityArray) MarshalJSON

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

func (*NullableEntityArray) Set

func (v *NullableEntityArray) Set(val *EntityArray)

func (*NullableEntityArray) UnmarshalJSON

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

func (*NullableEntityArray) Unset

func (v *NullableEntityArray) Unset()

type NullableEntityArrayEmbedded

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

func NewNullableEntityArrayEmbedded

func NewNullableEntityArrayEmbedded(val *EntityArrayEmbedded) *NullableEntityArrayEmbedded

func (NullableEntityArrayEmbedded) Get

func (NullableEntityArrayEmbedded) IsSet

func (NullableEntityArrayEmbedded) MarshalJSON

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

func (*NullableEntityArrayEmbedded) Set

func (*NullableEntityArrayEmbedded) UnmarshalJSON

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

func (*NullableEntityArrayEmbedded) Unset

func (v *NullableEntityArrayEmbedded) Unset()

type NullableEnumInspectionType added in v0.4.0

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

func NewNullableEnumInspectionType added in v0.4.0

func NewNullableEnumInspectionType(val *EnumInspectionType) *NullableEnumInspectionType

func (NullableEnumInspectionType) Get added in v0.4.0

func (NullableEnumInspectionType) IsSet added in v0.4.0

func (v NullableEnumInspectionType) IsSet() bool

func (NullableEnumInspectionType) MarshalJSON added in v0.4.0

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

func (*NullableEnumInspectionType) Set added in v0.4.0

func (*NullableEnumInspectionType) UnmarshalJSON added in v0.4.0

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

func (*NullableEnumInspectionType) Unset added in v0.4.0

func (v *NullableEnumInspectionType) Unset()

type NullableEnumProviderAuto added in v0.7.0

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

func NewNullableEnumProviderAuto added in v0.7.0

func NewNullableEnumProviderAuto(val *EnumProviderAuto) *NullableEnumProviderAuto

func (NullableEnumProviderAuto) Get added in v0.7.0

func (NullableEnumProviderAuto) IsSet added in v0.7.0

func (v NullableEnumProviderAuto) IsSet() bool

func (NullableEnumProviderAuto) MarshalJSON added in v0.7.0

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

func (*NullableEnumProviderAuto) Set added in v0.7.0

func (*NullableEnumProviderAuto) UnmarshalJSON added in v0.7.0

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

func (*NullableEnumProviderAuto) Unset added in v0.7.0

func (v *NullableEnumProviderAuto) Unset()

type NullableEnumProviderManual added in v0.7.0

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

func NewNullableEnumProviderManual added in v0.7.0

func NewNullableEnumProviderManual(val *EnumProviderManual) *NullableEnumProviderManual

func (NullableEnumProviderManual) Get added in v0.7.0

func (NullableEnumProviderManual) IsSet added in v0.7.0

func (v NullableEnumProviderManual) IsSet() bool

func (NullableEnumProviderManual) MarshalJSON added in v0.7.0

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

func (*NullableEnumProviderManual) Set added in v0.7.0

func (*NullableEnumProviderManual) UnmarshalJSON added in v0.7.0

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

func (*NullableEnumProviderManual) Unset added in v0.7.0

func (v *NullableEnumProviderManual) Unset()

type NullableEnumThreshold

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

func NewNullableEnumThreshold

func NewNullableEnumThreshold(val *EnumThreshold) *NullableEnumThreshold

func (NullableEnumThreshold) Get

func (NullableEnumThreshold) IsSet

func (v NullableEnumThreshold) IsSet() bool

func (NullableEnumThreshold) MarshalJSON

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

func (*NullableEnumThreshold) Set

func (v *NullableEnumThreshold) Set(val *EnumThreshold)

func (*NullableEnumThreshold) UnmarshalJSON

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

func (*NullableEnumThreshold) Unset

func (v *NullableEnumThreshold) Unset()

type NullableEnumTimeUnit

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

func NewNullableEnumTimeUnit

func NewNullableEnumTimeUnit(val *EnumTimeUnit) *NullableEnumTimeUnit

func (NullableEnumTimeUnit) Get

func (NullableEnumTimeUnit) IsSet

func (v NullableEnumTimeUnit) IsSet() bool

func (NullableEnumTimeUnit) MarshalJSON

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

func (*NullableEnumTimeUnit) Set

func (v *NullableEnumTimeUnit) Set(val *EnumTimeUnit)

func (*NullableEnumTimeUnit) UnmarshalJSON

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

func (*NullableEnumTimeUnit) Unset

func (v *NullableEnumTimeUnit) Unset()

type NullableEnumVerify

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

func NewNullableEnumVerify

func NewNullableEnumVerify(val *EnumVerify) *NullableEnumVerify

func (NullableEnumVerify) Get

func (v NullableEnumVerify) Get() *EnumVerify

func (NullableEnumVerify) IsSet

func (v NullableEnumVerify) IsSet() bool

func (NullableEnumVerify) MarshalJSON

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

func (*NullableEnumVerify) Set

func (v *NullableEnumVerify) Set(val *EnumVerify)

func (*NullableEnumVerify) UnmarshalJSON

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

func (*NullableEnumVerify) Unset

func (v *NullableEnumVerify) Unset()

type NullableEnvironment added in v0.9.1

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

func NewNullableEnvironment added in v0.9.1

func NewNullableEnvironment(val *Environment) *NullableEnvironment

func (NullableEnvironment) Get added in v0.9.1

func (NullableEnvironment) IsSet added in v0.9.1

func (v NullableEnvironment) IsSet() bool

func (NullableEnvironment) MarshalJSON added in v0.9.1

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

func (*NullableEnvironment) Set added in v0.9.1

func (v *NullableEnvironment) Set(val *Environment)

func (*NullableEnvironment) UnmarshalJSON added in v0.9.1

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

func (*NullableEnvironment) Unset added in v0.9.1

func (v *NullableEnvironment) Unset()

type NullableFacialComparisonConfiguration

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

func (NullableFacialComparisonConfiguration) Get

func (NullableFacialComparisonConfiguration) IsSet

func (NullableFacialComparisonConfiguration) MarshalJSON

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

func (*NullableFacialComparisonConfiguration) Set

func (*NullableFacialComparisonConfiguration) UnmarshalJSON

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

func (*NullableFacialComparisonConfiguration) 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 NullableGovernmentIdConfiguration

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

func (NullableGovernmentIdConfiguration) Get

func (NullableGovernmentIdConfiguration) IsSet

func (NullableGovernmentIdConfiguration) MarshalJSON

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

func (*NullableGovernmentIdConfiguration) Set

func (*NullableGovernmentIdConfiguration) UnmarshalJSON

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

func (*NullableGovernmentIdConfiguration) Unset

type NullableGovernmentIdConfigurationAadhaar added in v0.10.0

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

func NewNullableGovernmentIdConfigurationAadhaar added in v0.10.0

func NewNullableGovernmentIdConfigurationAadhaar(val *GovernmentIdConfigurationAadhaar) *NullableGovernmentIdConfigurationAadhaar

func (NullableGovernmentIdConfigurationAadhaar) Get added in v0.10.0

func (NullableGovernmentIdConfigurationAadhaar) IsSet added in v0.10.0

func (NullableGovernmentIdConfigurationAadhaar) MarshalJSON added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaar) Set added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaar) UnmarshalJSON added in v0.10.0

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

func (*NullableGovernmentIdConfigurationAadhaar) Unset added in v0.10.0

type NullableGovernmentIdConfigurationAadhaarOtp added in v0.10.0

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

func NewNullableGovernmentIdConfigurationAadhaarOtp added in v0.10.0

func NewNullableGovernmentIdConfigurationAadhaarOtp(val *GovernmentIdConfigurationAadhaarOtp) *NullableGovernmentIdConfigurationAadhaarOtp

func (NullableGovernmentIdConfigurationAadhaarOtp) Get added in v0.10.0

func (NullableGovernmentIdConfigurationAadhaarOtp) IsSet added in v0.10.0

func (NullableGovernmentIdConfigurationAadhaarOtp) MarshalJSON added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaarOtp) Set added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaarOtp) UnmarshalJSON added in v0.10.0

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

func (*NullableGovernmentIdConfigurationAadhaarOtp) Unset added in v0.10.0

type NullableGovernmentIdConfigurationAadhaarOtpDeliveries added in v0.10.0

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

func (NullableGovernmentIdConfigurationAadhaarOtpDeliveries) Get added in v0.10.0

func (NullableGovernmentIdConfigurationAadhaarOtpDeliveries) IsSet added in v0.10.0

func (NullableGovernmentIdConfigurationAadhaarOtpDeliveries) MarshalJSON added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaarOtpDeliveries) Set added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaarOtpDeliveries) UnmarshalJSON added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaarOtpDeliveries) Unset added in v0.10.0

type NullableGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown added in v0.10.0

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

func (NullableGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) Get added in v0.10.0

func (NullableGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) IsSet added in v0.10.0

func (NullableGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) MarshalJSON added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) Set added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) UnmarshalJSON added in v0.10.0

func (*NullableGovernmentIdConfigurationAadhaarOtpDeliveriesCooldown) Unset added in v0.10.0

type NullableGovernmentIdConfigurationProvider added in v0.7.0

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

func NewNullableGovernmentIdConfigurationProvider added in v0.7.0

func NewNullableGovernmentIdConfigurationProvider(val *GovernmentIdConfigurationProvider) *NullableGovernmentIdConfigurationProvider

func (NullableGovernmentIdConfigurationProvider) Get added in v0.7.0

func (NullableGovernmentIdConfigurationProvider) IsSet added in v0.7.0

func (NullableGovernmentIdConfigurationProvider) MarshalJSON added in v0.7.0

func (*NullableGovernmentIdConfigurationProvider) Set added in v0.7.0

func (*NullableGovernmentIdConfigurationProvider) UnmarshalJSON added in v0.7.0

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

func (*NullableGovernmentIdConfigurationProvider) Unset added in v0.7.0

type NullableIdentityRecordMatching added in v0.10.0

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

func NewNullableIdentityRecordMatching added in v0.10.0

func NewNullableIdentityRecordMatching(val *IdentityRecordMatching) *NullableIdentityRecordMatching

func (NullableIdentityRecordMatching) Get added in v0.10.0

func (NullableIdentityRecordMatching) IsSet added in v0.10.0

func (NullableIdentityRecordMatching) MarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatching) Set added in v0.10.0

func (*NullableIdentityRecordMatching) UnmarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatching) Unset added in v0.10.0

func (v *NullableIdentityRecordMatching) Unset()

type NullableIdentityRecordMatchingAddress added in v0.10.0

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

func NewNullableIdentityRecordMatchingAddress added in v0.10.0

func NewNullableIdentityRecordMatchingAddress(val *IdentityRecordMatchingAddress) *NullableIdentityRecordMatchingAddress

func (NullableIdentityRecordMatchingAddress) Get added in v0.10.0

func (NullableIdentityRecordMatchingAddress) IsSet added in v0.10.0

func (NullableIdentityRecordMatchingAddress) MarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingAddress) Set added in v0.10.0

func (*NullableIdentityRecordMatchingAddress) UnmarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingAddress) Unset added in v0.10.0

type NullableIdentityRecordMatchingBirthDate added in v0.10.0

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

func NewNullableIdentityRecordMatchingBirthDate added in v0.10.0

func NewNullableIdentityRecordMatchingBirthDate(val *IdentityRecordMatchingBirthDate) *NullableIdentityRecordMatchingBirthDate

func (NullableIdentityRecordMatchingBirthDate) Get added in v0.10.0

func (NullableIdentityRecordMatchingBirthDate) IsSet added in v0.10.0

func (NullableIdentityRecordMatchingBirthDate) MarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingBirthDate) Set added in v0.10.0

func (*NullableIdentityRecordMatchingBirthDate) UnmarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingBirthDate) Unset added in v0.10.0

type NullableIdentityRecordMatchingFamilyName added in v0.10.0

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

func NewNullableIdentityRecordMatchingFamilyName added in v0.10.0

func NewNullableIdentityRecordMatchingFamilyName(val *IdentityRecordMatchingFamilyName) *NullableIdentityRecordMatchingFamilyName

func (NullableIdentityRecordMatchingFamilyName) Get added in v0.10.0

func (NullableIdentityRecordMatchingFamilyName) IsSet added in v0.10.0

func (NullableIdentityRecordMatchingFamilyName) MarshalJSON added in v0.10.0

func (*NullableIdentityRecordMatchingFamilyName) Set added in v0.10.0

func (*NullableIdentityRecordMatchingFamilyName) UnmarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingFamilyName) Unset added in v0.10.0

type NullableIdentityRecordMatchingGivenName added in v0.10.0

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

func NewNullableIdentityRecordMatchingGivenName added in v0.10.0

func NewNullableIdentityRecordMatchingGivenName(val *IdentityRecordMatchingGivenName) *NullableIdentityRecordMatchingGivenName

func (NullableIdentityRecordMatchingGivenName) Get added in v0.10.0

func (NullableIdentityRecordMatchingGivenName) IsSet added in v0.10.0

func (NullableIdentityRecordMatchingGivenName) MarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingGivenName) Set added in v0.10.0

func (*NullableIdentityRecordMatchingGivenName) UnmarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingGivenName) Unset added in v0.10.0

type NullableIdentityRecordMatchingName added in v0.10.0

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

func NewNullableIdentityRecordMatchingName added in v0.10.0

func NewNullableIdentityRecordMatchingName(val *IdentityRecordMatchingName) *NullableIdentityRecordMatchingName

func (NullableIdentityRecordMatchingName) Get added in v0.10.0

func (NullableIdentityRecordMatchingName) IsSet added in v0.10.0

func (NullableIdentityRecordMatchingName) MarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingName) Set added in v0.10.0

func (*NullableIdentityRecordMatchingName) UnmarshalJSON added in v0.10.0

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

func (*NullableIdentityRecordMatchingName) Unset added in v0.10.0

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 NullableLinksHATEOAS added in v0.3.0

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

func NewNullableLinksHATEOAS added in v0.3.0

func NewNullableLinksHATEOAS(val *LinksHATEOAS) *NullableLinksHATEOAS

func (NullableLinksHATEOAS) Get added in v0.3.0

func (NullableLinksHATEOAS) IsSet added in v0.3.0

func (v NullableLinksHATEOAS) IsSet() bool

func (NullableLinksHATEOAS) MarshalJSON added in v0.3.0

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

func (*NullableLinksHATEOAS) Set added in v0.3.0

func (v *NullableLinksHATEOAS) Set(val *LinksHATEOAS)

func (*NullableLinksHATEOAS) UnmarshalJSON added in v0.3.0

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

func (*NullableLinksHATEOAS) Unset added in v0.3.0

func (v *NullableLinksHATEOAS) Unset()

type NullableLinksHATEOASNext added in v0.3.0

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

func NewNullableLinksHATEOASNext added in v0.3.0

func NewNullableLinksHATEOASNext(val *LinksHATEOASNext) *NullableLinksHATEOASNext

func (NullableLinksHATEOASNext) Get added in v0.3.0

func (NullableLinksHATEOASNext) IsSet added in v0.3.0

func (v NullableLinksHATEOASNext) IsSet() bool

func (NullableLinksHATEOASNext) MarshalJSON added in v0.3.0

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

func (*NullableLinksHATEOASNext) Set added in v0.3.0

func (*NullableLinksHATEOASNext) UnmarshalJSON added in v0.3.0

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

func (*NullableLinksHATEOASNext) Unset added in v0.3.0

func (v *NullableLinksHATEOASNext) Unset()

type NullableLinksHATEOASSelf added in v0.3.0

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

func NewNullableLinksHATEOASSelf added in v0.3.0

func NewNullableLinksHATEOASSelf(val *LinksHATEOASSelf) *NullableLinksHATEOASSelf

func (NullableLinksHATEOASSelf) Get added in v0.3.0

func (NullableLinksHATEOASSelf) IsSet added in v0.3.0

func (v NullableLinksHATEOASSelf) IsSet() bool

func (NullableLinksHATEOASSelf) MarshalJSON added in v0.3.0

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

func (*NullableLinksHATEOASSelf) Set added in v0.3.0

func (*NullableLinksHATEOASSelf) UnmarshalJSON added in v0.3.0

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

func (*NullableLinksHATEOASSelf) Unset added in v0.3.0

func (v *NullableLinksHATEOASSelf) Unset()

type NullableLinksHATEOASValue added in v0.6.0

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

func NewNullableLinksHATEOASValue added in v0.6.0

func NewNullableLinksHATEOASValue(val *LinksHATEOASValue) *NullableLinksHATEOASValue

func (NullableLinksHATEOASValue) Get added in v0.6.0

func (NullableLinksHATEOASValue) IsSet added in v0.6.0

func (v NullableLinksHATEOASValue) IsSet() bool

func (NullableLinksHATEOASValue) MarshalJSON added in v0.6.0

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

func (*NullableLinksHATEOASValue) Set added in v0.6.0

func (*NullableLinksHATEOASValue) UnmarshalJSON added in v0.6.0

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

func (*NullableLinksHATEOASValue) Unset added in v0.6.0

func (v *NullableLinksHATEOASValue) Unset()

type NullableLivenessConfiguration

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

func (NullableLivenessConfiguration) Get

func (NullableLivenessConfiguration) IsSet

func (NullableLivenessConfiguration) MarshalJSON

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

func (*NullableLivenessConfiguration) Set

func (*NullableLivenessConfiguration) UnmarshalJSON

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

func (*NullableLivenessConfiguration) Unset

func (v *NullableLivenessConfiguration) Unset()

type NullableOTPDeviceConfiguration

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

func (NullableOTPDeviceConfiguration) Get

func (NullableOTPDeviceConfiguration) IsSet

func (NullableOTPDeviceConfiguration) MarshalJSON

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

func (*NullableOTPDeviceConfiguration) Set

func (*NullableOTPDeviceConfiguration) UnmarshalJSON

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

func (*NullableOTPDeviceConfiguration) Unset

func (v *NullableOTPDeviceConfiguration) Unset()

type NullableOTPDeviceConfigurationOtp

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

func (NullableOTPDeviceConfigurationOtp) Get

func (NullableOTPDeviceConfigurationOtp) IsSet

func (NullableOTPDeviceConfigurationOtp) MarshalJSON

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

func (*NullableOTPDeviceConfigurationOtp) Set

func (*NullableOTPDeviceConfigurationOtp) UnmarshalJSON

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

func (*NullableOTPDeviceConfigurationOtp) Unset

type NullableOTPDeviceConfigurationOtpAttempts

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

func (NullableOTPDeviceConfigurationOtpAttempts) Get

func (NullableOTPDeviceConfigurationOtpAttempts) IsSet

func (NullableOTPDeviceConfigurationOtpAttempts) MarshalJSON

func (*NullableOTPDeviceConfigurationOtpAttempts) Set

func (*NullableOTPDeviceConfigurationOtpAttempts) UnmarshalJSON

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

func (*NullableOTPDeviceConfigurationOtpAttempts) Unset

type NullableOTPDeviceConfigurationOtpDeliveries

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

func (NullableOTPDeviceConfigurationOtpDeliveries) Get

func (NullableOTPDeviceConfigurationOtpDeliveries) IsSet

func (NullableOTPDeviceConfigurationOtpDeliveries) MarshalJSON

func (*NullableOTPDeviceConfigurationOtpDeliveries) Set

func (*NullableOTPDeviceConfigurationOtpDeliveries) UnmarshalJSON

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

func (*NullableOTPDeviceConfigurationOtpDeliveries) Unset

type NullableOTPDeviceConfigurationOtpDeliveriesCooldown

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

func (NullableOTPDeviceConfigurationOtpDeliveriesCooldown) Get

func (NullableOTPDeviceConfigurationOtpDeliveriesCooldown) IsSet

func (NullableOTPDeviceConfigurationOtpDeliveriesCooldown) MarshalJSON

func (*NullableOTPDeviceConfigurationOtpDeliveriesCooldown) Set

func (*NullableOTPDeviceConfigurationOtpDeliveriesCooldown) UnmarshalJSON

func (*NullableOTPDeviceConfigurationOtpDeliveriesCooldown) Unset

type NullableOTPDeviceConfigurationOtpLifeTime

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

func (NullableOTPDeviceConfigurationOtpLifeTime) Get

func (NullableOTPDeviceConfigurationOtpLifeTime) IsSet

func (NullableOTPDeviceConfigurationOtpLifeTime) MarshalJSON

func (*NullableOTPDeviceConfigurationOtpLifeTime) Set

func (*NullableOTPDeviceConfigurationOtpLifeTime) UnmarshalJSON

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

func (*NullableOTPDeviceConfigurationOtpLifeTime) Unset

type NullableOTPDeviceConfigurationOtpNotification

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

func (NullableOTPDeviceConfigurationOtpNotification) Get

func (NullableOTPDeviceConfigurationOtpNotification) IsSet

func (NullableOTPDeviceConfigurationOtpNotification) MarshalJSON

func (*NullableOTPDeviceConfigurationOtpNotification) Set

func (*NullableOTPDeviceConfigurationOtpNotification) UnmarshalJSON

func (*NullableOTPDeviceConfigurationOtpNotification) Unset

type NullableObjectEnvironment

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

func NewNullableObjectEnvironment

func NewNullableObjectEnvironment(val *ObjectEnvironment) *NullableObjectEnvironment

func (NullableObjectEnvironment) Get

func (NullableObjectEnvironment) IsSet

func (v NullableObjectEnvironment) IsSet() bool

func (NullableObjectEnvironment) MarshalJSON

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

func (*NullableObjectEnvironment) Set

func (*NullableObjectEnvironment) UnmarshalJSON

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

func (*NullableObjectEnvironment) Unset

func (v *NullableObjectEnvironment) Unset()

type NullableObjectRetry added in v0.7.0

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

func NewNullableObjectRetry added in v0.7.0

func NewNullableObjectRetry(val *ObjectRetry) *NullableObjectRetry

func (NullableObjectRetry) Get added in v0.7.0

func (NullableObjectRetry) IsSet added in v0.7.0

func (v NullableObjectRetry) IsSet() bool

func (NullableObjectRetry) MarshalJSON added in v0.7.0

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

func (*NullableObjectRetry) Set added in v0.7.0

func (v *NullableObjectRetry) Set(val *ObjectRetry)

func (*NullableObjectRetry) UnmarshalJSON added in v0.7.0

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

func (*NullableObjectRetry) Unset added in v0.7.0

func (v *NullableObjectRetry) Unset()

type NullableP1Error

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

func NewNullableP1Error

func NewNullableP1Error(val *P1Error) *NullableP1Error

func (NullableP1Error) Get

func (v NullableP1Error) Get() *P1Error

func (NullableP1Error) IsSet

func (v NullableP1Error) IsSet() bool

func (NullableP1Error) MarshalJSON

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

func (*NullableP1Error) Set

func (v *NullableP1Error) Set(val *P1Error)

func (*NullableP1Error) UnmarshalJSON

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

func (*NullableP1Error) Unset

func (v *NullableP1Error) Unset()

type NullableP1ErrorDetailsInner

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

func NewNullableP1ErrorDetailsInner

func NewNullableP1ErrorDetailsInner(val *P1ErrorDetailsInner) *NullableP1ErrorDetailsInner

func (NullableP1ErrorDetailsInner) Get

func (NullableP1ErrorDetailsInner) IsSet

func (NullableP1ErrorDetailsInner) MarshalJSON

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

func (*NullableP1ErrorDetailsInner) Set

func (*NullableP1ErrorDetailsInner) UnmarshalJSON

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

func (*NullableP1ErrorDetailsInner) Unset

func (v *NullableP1ErrorDetailsInner) Unset()

type NullableP1ErrorDetailsInnerInnerError

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

func (NullableP1ErrorDetailsInnerInnerError) Get

func (NullableP1ErrorDetailsInnerInnerError) IsSet

func (NullableP1ErrorDetailsInnerInnerError) MarshalJSON

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

func (*NullableP1ErrorDetailsInnerInnerError) Set

func (*NullableP1ErrorDetailsInnerInnerError) UnmarshalJSON

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

func (*NullableP1ErrorDetailsInnerInnerError) 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 NullableTransactionConfiguration

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

func (NullableTransactionConfiguration) Get

func (NullableTransactionConfiguration) IsSet

func (NullableTransactionConfiguration) MarshalJSON

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

func (*NullableTransactionConfiguration) Set

func (*NullableTransactionConfiguration) UnmarshalJSON

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

func (*NullableTransactionConfiguration) Unset

type NullableTransactionConfigurationDataCollection

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

func (NullableTransactionConfigurationDataCollection) Get

func (NullableTransactionConfigurationDataCollection) IsSet

func (NullableTransactionConfigurationDataCollection) MarshalJSON

func (*NullableTransactionConfigurationDataCollection) Set

func (*NullableTransactionConfigurationDataCollection) UnmarshalJSON

func (*NullableTransactionConfigurationDataCollection) Unset

type NullableTransactionConfigurationDataCollectionTimeout

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

func (NullableTransactionConfigurationDataCollectionTimeout) Get

func (NullableTransactionConfigurationDataCollectionTimeout) IsSet

func (NullableTransactionConfigurationDataCollectionTimeout) MarshalJSON

func (*NullableTransactionConfigurationDataCollectionTimeout) Set

func (*NullableTransactionConfigurationDataCollectionTimeout) UnmarshalJSON

func (*NullableTransactionConfigurationDataCollectionTimeout) Unset

type NullableTransactionConfigurationTimeout

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

func (NullableTransactionConfigurationTimeout) Get

func (NullableTransactionConfigurationTimeout) IsSet

func (NullableTransactionConfigurationTimeout) MarshalJSON

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

func (*NullableTransactionConfigurationTimeout) Set

func (*NullableTransactionConfigurationTimeout) UnmarshalJSON

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

func (*NullableTransactionConfigurationTimeout) Unset

type NullableVerifyPolicy

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

func NewNullableVerifyPolicy

func NewNullableVerifyPolicy(val *VerifyPolicy) *NullableVerifyPolicy

func (NullableVerifyPolicy) Get

func (NullableVerifyPolicy) IsSet

func (v NullableVerifyPolicy) IsSet() bool

func (NullableVerifyPolicy) MarshalJSON

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

func (*NullableVerifyPolicy) Set

func (v *NullableVerifyPolicy) Set(val *VerifyPolicy)

func (*NullableVerifyPolicy) UnmarshalJSON

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

func (*NullableVerifyPolicy) Unset

func (v *NullableVerifyPolicy) Unset()

type NullableVoiceConfiguration added in v0.3.0

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

func NewNullableVoiceConfiguration added in v0.3.0

func NewNullableVoiceConfiguration(val *VoiceConfiguration) *NullableVoiceConfiguration

func (NullableVoiceConfiguration) Get added in v0.3.0

func (NullableVoiceConfiguration) IsSet added in v0.3.0

func (v NullableVoiceConfiguration) IsSet() bool

func (NullableVoiceConfiguration) MarshalJSON added in v0.3.0

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

func (*NullableVoiceConfiguration) Set added in v0.3.0

func (*NullableVoiceConfiguration) UnmarshalJSON added in v0.3.0

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

func (*NullableVoiceConfiguration) Unset added in v0.3.0

func (v *NullableVoiceConfiguration) Unset()

type NullableVoiceConfigurationReferenceData added in v0.3.0

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

func NewNullableVoiceConfigurationReferenceData added in v0.3.0

func NewNullableVoiceConfigurationReferenceData(val *VoiceConfigurationReferenceData) *NullableVoiceConfigurationReferenceData

func (NullableVoiceConfigurationReferenceData) Get added in v0.3.0

func (NullableVoiceConfigurationReferenceData) IsSet added in v0.3.0

func (NullableVoiceConfigurationReferenceData) MarshalJSON added in v0.3.0

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

func (*NullableVoiceConfigurationReferenceData) Set added in v0.3.0

func (*NullableVoiceConfigurationReferenceData) UnmarshalJSON added in v0.3.0

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

func (*NullableVoiceConfigurationReferenceData) Unset added in v0.3.0

type NullableVoiceConfigurationTextDependent added in v0.3.0

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

func NewNullableVoiceConfigurationTextDependent added in v0.3.0

func NewNullableVoiceConfigurationTextDependent(val *VoiceConfigurationTextDependent) *NullableVoiceConfigurationTextDependent

func (NullableVoiceConfigurationTextDependent) Get added in v0.3.0

func (NullableVoiceConfigurationTextDependent) IsSet added in v0.3.0

func (NullableVoiceConfigurationTextDependent) MarshalJSON added in v0.3.0

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

func (*NullableVoiceConfigurationTextDependent) Set added in v0.3.0

func (*NullableVoiceConfigurationTextDependent) UnmarshalJSON added in v0.3.0

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

func (*NullableVoiceConfigurationTextDependent) Unset added in v0.3.0

type NullableVoiceConfigurationTextDependentPhrase added in v0.3.0

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

func (NullableVoiceConfigurationTextDependentPhrase) Get added in v0.3.0

func (NullableVoiceConfigurationTextDependentPhrase) IsSet added in v0.3.0

func (NullableVoiceConfigurationTextDependentPhrase) MarshalJSON added in v0.3.0

func (*NullableVoiceConfigurationTextDependentPhrase) Set added in v0.3.0

func (*NullableVoiceConfigurationTextDependentPhrase) UnmarshalJSON added in v0.3.0

func (*NullableVoiceConfigurationTextDependentPhrase) Unset added in v0.3.0

type NullableVoiceConfigurationThreshold added in v0.3.0

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

func NewNullableVoiceConfigurationThreshold added in v0.3.0

func NewNullableVoiceConfigurationThreshold(val *VoiceConfigurationThreshold) *NullableVoiceConfigurationThreshold

func (NullableVoiceConfigurationThreshold) Get added in v0.3.0

func (NullableVoiceConfigurationThreshold) IsSet added in v0.3.0

func (NullableVoiceConfigurationThreshold) MarshalJSON added in v0.3.0

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

func (*NullableVoiceConfigurationThreshold) Set added in v0.3.0

func (*NullableVoiceConfigurationThreshold) UnmarshalJSON added in v0.3.0

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

func (*NullableVoiceConfigurationThreshold) Unset added in v0.3.0

type NullableVoicePhrase added in v0.3.0

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

func NewNullableVoicePhrase added in v0.3.0

func NewNullableVoicePhrase(val *VoicePhrase) *NullableVoicePhrase

func (NullableVoicePhrase) Get added in v0.3.0

func (NullableVoicePhrase) IsSet added in v0.3.0

func (v NullableVoicePhrase) IsSet() bool

func (NullableVoicePhrase) MarshalJSON added in v0.3.0

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

func (*NullableVoicePhrase) Set added in v0.3.0

func (v *NullableVoicePhrase) Set(val *VoicePhrase)

func (*NullableVoicePhrase) UnmarshalJSON added in v0.3.0

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

func (*NullableVoicePhrase) Unset added in v0.3.0

func (v *NullableVoicePhrase) Unset()

type NullableVoicePhraseContents added in v0.3.0

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

func NewNullableVoicePhraseContents added in v0.3.0

func NewNullableVoicePhraseContents(val *VoicePhraseContents) *NullableVoicePhraseContents

func (NullableVoicePhraseContents) Get added in v0.3.0

func (NullableVoicePhraseContents) IsSet added in v0.3.0

func (NullableVoicePhraseContents) MarshalJSON added in v0.3.0

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

func (*NullableVoicePhraseContents) Set added in v0.3.0

func (*NullableVoicePhraseContents) UnmarshalJSON added in v0.3.0

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

func (*NullableVoicePhraseContents) Unset added in v0.3.0

func (v *NullableVoicePhraseContents) Unset()

type NullableVoicePhraseContentsVoicePhrase added in v0.3.0

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

func NewNullableVoicePhraseContentsVoicePhrase added in v0.3.0

func NewNullableVoicePhraseContentsVoicePhrase(val *VoicePhraseContentsVoicePhrase) *NullableVoicePhraseContentsVoicePhrase

func (NullableVoicePhraseContentsVoicePhrase) Get added in v0.3.0

func (NullableVoicePhraseContentsVoicePhrase) IsSet added in v0.3.0

func (NullableVoicePhraseContentsVoicePhrase) MarshalJSON added in v0.3.0

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

func (*NullableVoicePhraseContentsVoicePhrase) Set added in v0.3.0

func (*NullableVoicePhraseContentsVoicePhrase) UnmarshalJSON added in v0.3.0

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

func (*NullableVoicePhraseContentsVoicePhrase) Unset added in v0.3.0

type OTPDeviceConfiguration

type OTPDeviceConfiguration struct {
	Verify EnumVerify `json:"verify"`
	// When enabled, PingOne Verify registers the email address or phone number with PingOne MFA as a verified MFA device.
	CreateMfaDevice *bool                      `json:"createMfaDevice,omitempty"`
	Otp             *OTPDeviceConfigurationOtp `json:"otp,omitempty"`
}

OTPDeviceConfiguration struct for OTPDeviceConfiguration

func NewOTPDeviceConfiguration

func NewOTPDeviceConfiguration(verify EnumVerify) *OTPDeviceConfiguration

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

func NewOTPDeviceConfigurationWithDefaults

func NewOTPDeviceConfigurationWithDefaults() *OTPDeviceConfiguration

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

func (*OTPDeviceConfiguration) GetCreateMfaDevice

func (o *OTPDeviceConfiguration) GetCreateMfaDevice() bool

GetCreateMfaDevice returns the CreateMfaDevice field value if set, zero value otherwise.

func (*OTPDeviceConfiguration) GetCreateMfaDeviceOk

func (o *OTPDeviceConfiguration) GetCreateMfaDeviceOk() (*bool, bool)

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

func (*OTPDeviceConfiguration) GetOtp

GetOtp returns the Otp field value if set, zero value otherwise.

func (*OTPDeviceConfiguration) GetOtpOk

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

func (*OTPDeviceConfiguration) GetVerify

func (o *OTPDeviceConfiguration) GetVerify() EnumVerify

GetVerify returns the Verify field value

func (*OTPDeviceConfiguration) GetVerifyOk

func (o *OTPDeviceConfiguration) GetVerifyOk() (*EnumVerify, bool)

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

func (*OTPDeviceConfiguration) HasCreateMfaDevice

func (o *OTPDeviceConfiguration) HasCreateMfaDevice() bool

HasCreateMfaDevice returns a boolean if a field has been set.

func (*OTPDeviceConfiguration) HasOtp

func (o *OTPDeviceConfiguration) HasOtp() bool

HasOtp returns a boolean if a field has been set.

func (OTPDeviceConfiguration) MarshalJSON

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

func (*OTPDeviceConfiguration) SetCreateMfaDevice

func (o *OTPDeviceConfiguration) SetCreateMfaDevice(v bool)

SetCreateMfaDevice gets a reference to the given bool and assigns it to the CreateMfaDevice field.

func (*OTPDeviceConfiguration) SetOtp

SetOtp gets a reference to the given OTPDeviceConfigurationOtp and assigns it to the Otp field.

func (*OTPDeviceConfiguration) SetVerify

func (o *OTPDeviceConfiguration) SetVerify(v EnumVerify)

SetVerify sets field value

func (OTPDeviceConfiguration) ToMap

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

type OTPDeviceConfigurationOtp

type OTPDeviceConfigurationOtp struct {
	Attempts     OTPDeviceConfigurationOtpAttempts     `json:"attempts"`
	Deliveries   OTPDeviceConfigurationOtpDeliveries   `json:"deliveries"`
	LifeTime     OTPDeviceConfigurationOtpLifeTime     `json:"lifeTime"`
	Notification OTPDeviceConfigurationOtpNotification `json:"notification"`
}

OTPDeviceConfigurationOtp struct for OTPDeviceConfigurationOtp

func NewOTPDeviceConfigurationOtp

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

func NewOTPDeviceConfigurationOtpWithDefaults

func NewOTPDeviceConfigurationOtpWithDefaults() *OTPDeviceConfigurationOtp

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

func (*OTPDeviceConfigurationOtp) GetAttempts

GetAttempts returns the Attempts field value

func (*OTPDeviceConfigurationOtp) GetAttemptsOk

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

func (*OTPDeviceConfigurationOtp) GetDeliveries

GetDeliveries returns the Deliveries field value

func (*OTPDeviceConfigurationOtp) GetDeliveriesOk

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

func (*OTPDeviceConfigurationOtp) GetLifeTime

GetLifeTime returns the LifeTime field value

func (*OTPDeviceConfigurationOtp) GetLifeTimeOk

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

func (*OTPDeviceConfigurationOtp) GetNotification

GetNotification returns the Notification field value

func (*OTPDeviceConfigurationOtp) GetNotificationOk

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

func (OTPDeviceConfigurationOtp) MarshalJSON

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

func (*OTPDeviceConfigurationOtp) SetAttempts

SetAttempts sets field value

func (*OTPDeviceConfigurationOtp) SetDeliveries

SetDeliveries sets field value

func (*OTPDeviceConfigurationOtp) SetLifeTime

SetLifeTime sets field value

func (*OTPDeviceConfigurationOtp) SetNotification

SetNotification sets field value

func (OTPDeviceConfigurationOtp) ToMap

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

type OTPDeviceConfigurationOtpAttempts

type OTPDeviceConfigurationOtpAttempts struct {
	// Count of OTP failures.
	Count int32 `json:"count"`
}

OTPDeviceConfigurationOtpAttempts OTP attempts configuration.

func NewOTPDeviceConfigurationOtpAttempts

func NewOTPDeviceConfigurationOtpAttempts(count int32) *OTPDeviceConfigurationOtpAttempts

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

func NewOTPDeviceConfigurationOtpAttemptsWithDefaults

func NewOTPDeviceConfigurationOtpAttemptsWithDefaults() *OTPDeviceConfigurationOtpAttempts

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

func (*OTPDeviceConfigurationOtpAttempts) GetCount

GetCount returns the Count field value

func (*OTPDeviceConfigurationOtpAttempts) GetCountOk

func (o *OTPDeviceConfigurationOtpAttempts) GetCountOk() (*int32, bool)

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

func (OTPDeviceConfigurationOtpAttempts) MarshalJSON

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

func (*OTPDeviceConfigurationOtpAttempts) SetCount

SetCount sets field value

func (OTPDeviceConfigurationOtpAttempts) ToMap

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

type OTPDeviceConfigurationOtpDeliveries

type OTPDeviceConfigurationOtpDeliveries struct {
	// Count of OTP deliveries.
	Count    int32                                       `json:"count"`
	Cooldown OTPDeviceConfigurationOtpDeliveriesCooldown `json:"cooldown"`
}

OTPDeviceConfigurationOtpDeliveries OTP delivery configuration.

func NewOTPDeviceConfigurationOtpDeliveries

func NewOTPDeviceConfigurationOtpDeliveries(count int32, cooldown OTPDeviceConfigurationOtpDeliveriesCooldown) *OTPDeviceConfigurationOtpDeliveries

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

func NewOTPDeviceConfigurationOtpDeliveriesWithDefaults

func NewOTPDeviceConfigurationOtpDeliveriesWithDefaults() *OTPDeviceConfigurationOtpDeliveries

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

func (*OTPDeviceConfigurationOtpDeliveries) GetCooldown

GetCooldown returns the Cooldown field value

func (*OTPDeviceConfigurationOtpDeliveries) GetCooldownOk

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

func (*OTPDeviceConfigurationOtpDeliveries) GetCount

GetCount returns the Count field value

func (*OTPDeviceConfigurationOtpDeliveries) GetCountOk

func (o *OTPDeviceConfigurationOtpDeliveries) GetCountOk() (*int32, bool)

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

func (OTPDeviceConfigurationOtpDeliveries) MarshalJSON

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

func (*OTPDeviceConfigurationOtpDeliveries) SetCooldown

SetCooldown sets field value

func (*OTPDeviceConfigurationOtpDeliveries) SetCount

SetCount sets field value

func (OTPDeviceConfigurationOtpDeliveries) ToMap

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

type OTPDeviceConfigurationOtpDeliveriesCooldown

type OTPDeviceConfigurationOtpDeliveriesCooldown struct {
	// Cooldown duration configuration.
	Duration int32        `json:"duration"`
	TimeUnit EnumTimeUnit `json:"timeUnit"`
}

OTPDeviceConfigurationOtpDeliveriesCooldown Cooldown (waiting period between OTP attempts) configuration.

func NewOTPDeviceConfigurationOtpDeliveriesCooldown

func NewOTPDeviceConfigurationOtpDeliveriesCooldown(duration int32, timeUnit EnumTimeUnit) *OTPDeviceConfigurationOtpDeliveriesCooldown

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

func NewOTPDeviceConfigurationOtpDeliveriesCooldownWithDefaults

func NewOTPDeviceConfigurationOtpDeliveriesCooldownWithDefaults() *OTPDeviceConfigurationOtpDeliveriesCooldown

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

func (*OTPDeviceConfigurationOtpDeliveriesCooldown) GetDuration

GetDuration returns the Duration field value

func (*OTPDeviceConfigurationOtpDeliveriesCooldown) GetDurationOk

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

func (*OTPDeviceConfigurationOtpDeliveriesCooldown) GetTimeUnit

GetTimeUnit returns the TimeUnit field value

func (*OTPDeviceConfigurationOtpDeliveriesCooldown) GetTimeUnitOk

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

func (OTPDeviceConfigurationOtpDeliveriesCooldown) MarshalJSON

func (*OTPDeviceConfigurationOtpDeliveriesCooldown) SetDuration

SetDuration sets field value

func (*OTPDeviceConfigurationOtpDeliveriesCooldown) SetTimeUnit

SetTimeUnit sets field value

func (OTPDeviceConfigurationOtpDeliveriesCooldown) ToMap

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

type OTPDeviceConfigurationOtpLifeTime

type OTPDeviceConfigurationOtpLifeTime struct {
	// OTP duration configuration.
	Duration int32        `json:"duration"`
	TimeUnit EnumTimeUnit `json:"timeUnit"`
}

OTPDeviceConfigurationOtpLifeTime The length of time for which the OTP is valid.

func NewOTPDeviceConfigurationOtpLifeTime

func NewOTPDeviceConfigurationOtpLifeTime(duration int32, timeUnit EnumTimeUnit) *OTPDeviceConfigurationOtpLifeTime

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

func NewOTPDeviceConfigurationOtpLifeTimeWithDefaults

func NewOTPDeviceConfigurationOtpLifeTimeWithDefaults() *OTPDeviceConfigurationOtpLifeTime

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

func (*OTPDeviceConfigurationOtpLifeTime) GetDuration

func (o *OTPDeviceConfigurationOtpLifeTime) GetDuration() int32

GetDuration returns the Duration field value

func (*OTPDeviceConfigurationOtpLifeTime) GetDurationOk

func (o *OTPDeviceConfigurationOtpLifeTime) GetDurationOk() (*int32, bool)

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

func (*OTPDeviceConfigurationOtpLifeTime) GetTimeUnit

GetTimeUnit returns the TimeUnit field value

func (*OTPDeviceConfigurationOtpLifeTime) GetTimeUnitOk

func (o *OTPDeviceConfigurationOtpLifeTime) GetTimeUnitOk() (*EnumTimeUnit, bool)

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

func (OTPDeviceConfigurationOtpLifeTime) MarshalJSON

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

func (*OTPDeviceConfigurationOtpLifeTime) SetDuration

func (o *OTPDeviceConfigurationOtpLifeTime) SetDuration(v int32)

SetDuration sets field value

func (*OTPDeviceConfigurationOtpLifeTime) SetTimeUnit

SetTimeUnit sets field value

func (OTPDeviceConfigurationOtpLifeTime) ToMap

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

type OTPDeviceConfigurationOtpNotification

type OTPDeviceConfigurationOtpNotification struct {
	TemplateName string  `json:"templateName"`
	VariantName  *string `json:"variantName,omitempty"`
}

OTPDeviceConfigurationOtpNotification OTP notification template configuration.

func NewOTPDeviceConfigurationOtpNotification

func NewOTPDeviceConfigurationOtpNotification(templateName string) *OTPDeviceConfigurationOtpNotification

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

func NewOTPDeviceConfigurationOtpNotificationWithDefaults

func NewOTPDeviceConfigurationOtpNotificationWithDefaults() *OTPDeviceConfigurationOtpNotification

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

func (*OTPDeviceConfigurationOtpNotification) GetTemplateName

func (o *OTPDeviceConfigurationOtpNotification) GetTemplateName() string

GetTemplateName returns the TemplateName field value

func (*OTPDeviceConfigurationOtpNotification) GetTemplateNameOk

func (o *OTPDeviceConfigurationOtpNotification) GetTemplateNameOk() (*string, bool)

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

func (*OTPDeviceConfigurationOtpNotification) GetVariantName

func (o *OTPDeviceConfigurationOtpNotification) GetVariantName() string

GetVariantName returns the VariantName field value if set, zero value otherwise.

func (*OTPDeviceConfigurationOtpNotification) GetVariantNameOk

func (o *OTPDeviceConfigurationOtpNotification) GetVariantNameOk() (*string, bool)

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

func (*OTPDeviceConfigurationOtpNotification) HasVariantName

func (o *OTPDeviceConfigurationOtpNotification) HasVariantName() bool

HasVariantName returns a boolean if a field has been set.

func (OTPDeviceConfigurationOtpNotification) MarshalJSON

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

func (*OTPDeviceConfigurationOtpNotification) SetTemplateName

func (o *OTPDeviceConfigurationOtpNotification) SetTemplateName(v string)

SetTemplateName sets field value

func (*OTPDeviceConfigurationOtpNotification) SetVariantName

func (o *OTPDeviceConfigurationOtpNotification) SetVariantName(v string)

SetVariantName gets a reference to the given string and assigns it to the VariantName field.

func (OTPDeviceConfigurationOtpNotification) ToMap

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

type ObjectEnvironment

type ObjectEnvironment struct {
	// A string that specifies the environment associated with the object.
	Id *string `json:"id,omitempty"`
}

ObjectEnvironment struct for ObjectEnvironment

func NewObjectEnvironment

func NewObjectEnvironment() *ObjectEnvironment

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

func NewObjectEnvironmentWithDefaults

func NewObjectEnvironmentWithDefaults() *ObjectEnvironment

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

func (*ObjectEnvironment) GetId

func (o *ObjectEnvironment) GetId() string

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

func (*ObjectEnvironment) GetIdOk

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

func (o *ObjectEnvironment) HasId() bool

HasId returns a boolean if a field has been set.

func (ObjectEnvironment) MarshalJSON

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

func (*ObjectEnvironment) SetId

func (o *ObjectEnvironment) SetId(v string)

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

func (ObjectEnvironment) ToMap

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

type ObjectRetry added in v0.7.0

type ObjectRetry struct {
	// The number of retries permitted.
	Attempts *int32 `json:"attempts,omitempty"`
}

ObjectRetry struct for ObjectRetry

func NewObjectRetry added in v0.7.0

func NewObjectRetry() *ObjectRetry

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

func NewObjectRetryWithDefaults added in v0.7.0

func NewObjectRetryWithDefaults() *ObjectRetry

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

func (*ObjectRetry) GetAttempts added in v0.7.0

func (o *ObjectRetry) GetAttempts() int32

GetAttempts returns the Attempts field value if set, zero value otherwise.

func (*ObjectRetry) GetAttemptsOk added in v0.7.0

func (o *ObjectRetry) GetAttemptsOk() (*int32, bool)

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

func (*ObjectRetry) HasAttempts added in v0.7.0

func (o *ObjectRetry) HasAttempts() bool

HasAttempts returns a boolean if a field has been set.

func (ObjectRetry) MarshalJSON added in v0.7.0

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

func (*ObjectRetry) SetAttempts added in v0.7.0

func (o *ObjectRetry) SetAttempts(v int32)

SetAttempts gets a reference to the given int32 and assigns it to the Attempts field.

func (ObjectRetry) ToMap added in v0.7.0

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

type P1Error

type P1Error struct {
	// A unique identifier that is stored in log files and always included in an error response. This value can be used to track the error received by the client, with server-side activity included for troubleshooting purposes.
	Id *string `json:"id,omitempty"`
	// A general fault code which the client must handle to provide all exception handling routines and to localize messages for users. This code is common across all PingOne services and is human readable (such as a defined constant rather than a number).
	Code *string `json:"code,omitempty"`
	// A short description of the error. This message is intended to assist with debugging and is returned in English only.
	Message *string `json:"message,omitempty"`
	// Additional details about the error. Optional information to help resolve the error and to display to users.
	Details []P1ErrorDetailsInner `json:"details,omitempty"`
}

P1Error struct for P1Error

func NewP1Error

func NewP1Error() *P1Error

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

func NewP1ErrorWithDefaults

func NewP1ErrorWithDefaults() *P1Error

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

func (*P1Error) GetCode

func (o *P1Error) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*P1Error) GetCodeOk

func (o *P1Error) GetCodeOk() (*string, bool)

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

func (*P1Error) GetDetails

func (o *P1Error) GetDetails() []P1ErrorDetailsInner

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

func (*P1Error) GetDetailsOk

func (o *P1Error) GetDetailsOk() ([]P1ErrorDetailsInner, bool)

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

func (*P1Error) GetId

func (o *P1Error) GetId() string

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

func (*P1Error) GetIdOk

func (o *P1Error) 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 (*P1Error) GetMessage

func (o *P1Error) GetMessage() string

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

func (*P1Error) GetMessageOk

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

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

func (*P1Error) HasCode

func (o *P1Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*P1Error) HasDetails

func (o *P1Error) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*P1Error) HasId

func (o *P1Error) HasId() bool

HasId returns a boolean if a field has been set.

func (*P1Error) HasMessage

func (o *P1Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (P1Error) MarshalJSON

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

func (*P1Error) SetCode

func (o *P1Error) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*P1Error) SetDetails

func (o *P1Error) SetDetails(v []P1ErrorDetailsInner)

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

func (*P1Error) SetId

func (o *P1Error) SetId(v string)

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

func (*P1Error) SetMessage

func (o *P1Error) SetMessage(v string)

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

func (P1Error) ToMap

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

type P1ErrorDetailsInner

type P1ErrorDetailsInner struct {
	// A general fault code which the client must handle to provide all exception handling routines and to localize messages for users. This code is common across all PingOne services and is human readable (such as a defined constant rather than a number).
	Code *string `json:"code,omitempty"`
	// The item that caused the error (such as a form field ID or an attribute inside a JSON object).
	Target *string `json:"target,omitempty"`
	// A short description of the error. This message is intended to assist with debugging and is returned in English only.
	Message    *string                        `json:"message,omitempty"`
	InnerError *P1ErrorDetailsInnerInnerError `json:"innerError,omitempty"`
}

P1ErrorDetailsInner struct for P1ErrorDetailsInner

func NewP1ErrorDetailsInner

func NewP1ErrorDetailsInner() *P1ErrorDetailsInner

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

func NewP1ErrorDetailsInnerWithDefaults

func NewP1ErrorDetailsInnerWithDefaults() *P1ErrorDetailsInner

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

func (*P1ErrorDetailsInner) GetCode

func (o *P1ErrorDetailsInner) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*P1ErrorDetailsInner) GetCodeOk

func (o *P1ErrorDetailsInner) GetCodeOk() (*string, bool)

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

func (*P1ErrorDetailsInner) GetInnerError

GetInnerError returns the InnerError field value if set, zero value otherwise.

func (*P1ErrorDetailsInner) GetInnerErrorOk

func (o *P1ErrorDetailsInner) GetInnerErrorOk() (*P1ErrorDetailsInnerInnerError, bool)

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

func (*P1ErrorDetailsInner) GetMessage

func (o *P1ErrorDetailsInner) GetMessage() string

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

func (*P1ErrorDetailsInner) GetMessageOk

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

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

func (*P1ErrorDetailsInner) GetTarget

func (o *P1ErrorDetailsInner) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*P1ErrorDetailsInner) GetTargetOk

func (o *P1ErrorDetailsInner) GetTargetOk() (*string, bool)

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

func (*P1ErrorDetailsInner) HasCode

func (o *P1ErrorDetailsInner) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*P1ErrorDetailsInner) HasInnerError

func (o *P1ErrorDetailsInner) HasInnerError() bool

HasInnerError returns a boolean if a field has been set.

func (*P1ErrorDetailsInner) HasMessage

func (o *P1ErrorDetailsInner) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*P1ErrorDetailsInner) HasTarget

func (o *P1ErrorDetailsInner) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (P1ErrorDetailsInner) MarshalJSON

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

func (*P1ErrorDetailsInner) SetCode

func (o *P1ErrorDetailsInner) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*P1ErrorDetailsInner) SetInnerError

SetInnerError gets a reference to the given P1ErrorDetailsInnerInnerError and assigns it to the InnerError field.

func (*P1ErrorDetailsInner) SetMessage

func (o *P1ErrorDetailsInner) SetMessage(v string)

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

func (*P1ErrorDetailsInner) SetTarget

func (o *P1ErrorDetailsInner) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (P1ErrorDetailsInner) ToMap

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

type P1ErrorDetailsInnerInnerError

type P1ErrorDetailsInnerInnerError struct {
	// Errors that failed due to range violation. This attribute represents the minimum value of the range.
	RangeMinimumValue *int32 `json:"rangeMinimumValue,omitempty"`
	// The maximum range or value of an attribute.
	RangeMaximumValue *int32 `json:"rangeMaximumValue,omitempty"`
	// A regex pattern describing an acceptable input pattern.
	AllowedPattern *string `json:"allowedPattern,omitempty"`
	// A list describing acceptable values.
	AllowedValues []string `json:"allowedValues,omitempty"`
	// The maximum value allowed for the request.
	MaximumValue     *int32   `json:"maximumValue,omitempty"`
	ReferencedValues []string `json:"referencedValues,omitempty"`
}

P1ErrorDetailsInnerInnerError Additional details to help the client developer resolve the fault (primarily for UI validation reasons).

func NewP1ErrorDetailsInnerInnerError

func NewP1ErrorDetailsInnerInnerError() *P1ErrorDetailsInnerInnerError

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

func NewP1ErrorDetailsInnerInnerErrorWithDefaults

func NewP1ErrorDetailsInnerInnerErrorWithDefaults() *P1ErrorDetailsInnerInnerError

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

func (*P1ErrorDetailsInnerInnerError) GetAllowedPattern

func (o *P1ErrorDetailsInnerInnerError) GetAllowedPattern() string

GetAllowedPattern returns the AllowedPattern field value if set, zero value otherwise.

func (*P1ErrorDetailsInnerInnerError) GetAllowedPatternOk

func (o *P1ErrorDetailsInnerInnerError) GetAllowedPatternOk() (*string, bool)

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

func (*P1ErrorDetailsInnerInnerError) GetAllowedValues

func (o *P1ErrorDetailsInnerInnerError) GetAllowedValues() []string

GetAllowedValues returns the AllowedValues field value if set, zero value otherwise.

func (*P1ErrorDetailsInnerInnerError) GetAllowedValuesOk

func (o *P1ErrorDetailsInnerInnerError) GetAllowedValuesOk() ([]string, bool)

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

func (*P1ErrorDetailsInnerInnerError) GetMaximumValue

func (o *P1ErrorDetailsInnerInnerError) GetMaximumValue() int32

GetMaximumValue returns the MaximumValue field value if set, zero value otherwise.

func (*P1ErrorDetailsInnerInnerError) GetMaximumValueOk

func (o *P1ErrorDetailsInnerInnerError) GetMaximumValueOk() (*int32, bool)

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

func (*P1ErrorDetailsInnerInnerError) GetRangeMaximumValue

func (o *P1ErrorDetailsInnerInnerError) GetRangeMaximumValue() int32

GetRangeMaximumValue returns the RangeMaximumValue field value if set, zero value otherwise.

func (*P1ErrorDetailsInnerInnerError) GetRangeMaximumValueOk

func (o *P1ErrorDetailsInnerInnerError) GetRangeMaximumValueOk() (*int32, bool)

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

func (*P1ErrorDetailsInnerInnerError) GetRangeMinimumValue

func (o *P1ErrorDetailsInnerInnerError) GetRangeMinimumValue() int32

GetRangeMinimumValue returns the RangeMinimumValue field value if set, zero value otherwise.

func (*P1ErrorDetailsInnerInnerError) GetRangeMinimumValueOk

func (o *P1ErrorDetailsInnerInnerError) GetRangeMinimumValueOk() (*int32, bool)

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

func (*P1ErrorDetailsInnerInnerError) GetReferencedValues added in v0.4.0

func (o *P1ErrorDetailsInnerInnerError) GetReferencedValues() []string

GetReferencedValues returns the ReferencedValues field value if set, zero value otherwise.

func (*P1ErrorDetailsInnerInnerError) GetReferencedValuesOk added in v0.4.0

func (o *P1ErrorDetailsInnerInnerError) GetReferencedValuesOk() ([]string, bool)

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

func (*P1ErrorDetailsInnerInnerError) HasAllowedPattern

func (o *P1ErrorDetailsInnerInnerError) HasAllowedPattern() bool

HasAllowedPattern returns a boolean if a field has been set.

func (*P1ErrorDetailsInnerInnerError) HasAllowedValues

func (o *P1ErrorDetailsInnerInnerError) HasAllowedValues() bool

HasAllowedValues returns a boolean if a field has been set.

func (*P1ErrorDetailsInnerInnerError) HasMaximumValue

func (o *P1ErrorDetailsInnerInnerError) HasMaximumValue() bool

HasMaximumValue returns a boolean if a field has been set.

func (*P1ErrorDetailsInnerInnerError) HasRangeMaximumValue

func (o *P1ErrorDetailsInnerInnerError) HasRangeMaximumValue() bool

HasRangeMaximumValue returns a boolean if a field has been set.

func (*P1ErrorDetailsInnerInnerError) HasRangeMinimumValue

func (o *P1ErrorDetailsInnerInnerError) HasRangeMinimumValue() bool

HasRangeMinimumValue returns a boolean if a field has been set.

func (*P1ErrorDetailsInnerInnerError) HasReferencedValues added in v0.4.0

func (o *P1ErrorDetailsInnerInnerError) HasReferencedValues() bool

HasReferencedValues returns a boolean if a field has been set.

func (P1ErrorDetailsInnerInnerError) MarshalJSON

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

func (*P1ErrorDetailsInnerInnerError) SetAllowedPattern

func (o *P1ErrorDetailsInnerInnerError) SetAllowedPattern(v string)

SetAllowedPattern gets a reference to the given string and assigns it to the AllowedPattern field.

func (*P1ErrorDetailsInnerInnerError) SetAllowedValues

func (o *P1ErrorDetailsInnerInnerError) SetAllowedValues(v []string)

SetAllowedValues gets a reference to the given []string and assigns it to the AllowedValues field.

func (*P1ErrorDetailsInnerInnerError) SetMaximumValue

func (o *P1ErrorDetailsInnerInnerError) SetMaximumValue(v int32)

SetMaximumValue gets a reference to the given int32 and assigns it to the MaximumValue field.

func (*P1ErrorDetailsInnerInnerError) SetRangeMaximumValue

func (o *P1ErrorDetailsInnerInnerError) SetRangeMaximumValue(v int32)

SetRangeMaximumValue gets a reference to the given int32 and assigns it to the RangeMaximumValue field.

func (*P1ErrorDetailsInnerInnerError) SetRangeMinimumValue

func (o *P1ErrorDetailsInnerInnerError) SetRangeMinimumValue(v int32)

SetRangeMinimumValue gets a reference to the given int32 and assigns it to the RangeMinimumValue field.

func (*P1ErrorDetailsInnerInnerError) SetReferencedValues added in v0.4.0

func (o *P1ErrorDetailsInnerInnerError) SetReferencedValues(v []string)

SetReferencedValues gets a reference to the given []string and assigns it to the ReferencedValues field.

func (P1ErrorDetailsInnerInnerError) ToMap

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

type PagedCursor added in v0.8.0

type PagedCursor struct {
	EntityArray  *EntityArray
	HTTPResponse *http.Response
}
func (o *PagedCursor) GetPaginationNextLink() LinksHATEOASValue

func (*PagedCursor) GetPaginationNextLinkOk added in v0.8.0

func (o *PagedCursor) GetPaginationNextLinkOk() (*LinksHATEOASValue, bool)
func (o *PagedCursor) GetPaginationPreviousLink() LinksHATEOASValue

func (*PagedCursor) GetPaginationPreviousLinkOk added in v0.8.0

func (o *PagedCursor) GetPaginationPreviousLinkOk() (*LinksHATEOASValue, bool)
func (o *PagedCursor) GetPaginationSelfLink() LinksHATEOASValue

func (*PagedCursor) GetPaginationSelfLinkOk added in v0.8.0

func (o *PagedCursor) GetPaginationSelfLinkOk() (*LinksHATEOASValue, bool)

func (*PagedCursor) HasPaginationNext added in v0.8.0

func (o *PagedCursor) HasPaginationNext() bool

func (*PagedCursor) HasPaginationPrevious added in v0.8.0

func (o *PagedCursor) HasPaginationPrevious() bool

func (*PagedCursor) HasPaginationSelf added in v0.8.0

func (o *PagedCursor) HasPaginationSelf() bool

func (*PagedCursor) IsPaginated added in v0.8.0

func (o *PagedCursor) IsPaginated() bool

type SDKInterfaceFunc

type SDKInterfaceFunc func() (any, *http.Response, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type TransactionConfiguration

type TransactionConfiguration struct {
	Timeout            *TransactionConfigurationTimeout        `json:"timeout,omitempty"`
	DataCollection     *TransactionConfigurationDataCollection `json:"dataCollection,omitempty"`
	DataCollectionOnly *bool                                   `json:"dataCollectionOnly,omitempty"`
}

TransactionConfiguration struct for TransactionConfiguration

func NewTransactionConfiguration

func NewTransactionConfiguration() *TransactionConfiguration

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

func NewTransactionConfigurationWithDefaults

func NewTransactionConfigurationWithDefaults() *TransactionConfiguration

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

func (*TransactionConfiguration) GetDataCollection

GetDataCollection returns the DataCollection field value if set, zero value otherwise.

func (*TransactionConfiguration) GetDataCollectionOk

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

func (*TransactionConfiguration) GetDataCollectionOnly

func (o *TransactionConfiguration) GetDataCollectionOnly() bool

GetDataCollectionOnly returns the DataCollectionOnly field value if set, zero value otherwise.

func (*TransactionConfiguration) GetDataCollectionOnlyOk

func (o *TransactionConfiguration) GetDataCollectionOnlyOk() (*bool, bool)

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

func (*TransactionConfiguration) GetTimeout

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*TransactionConfiguration) GetTimeoutOk

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

func (*TransactionConfiguration) HasDataCollection

func (o *TransactionConfiguration) HasDataCollection() bool

HasDataCollection returns a boolean if a field has been set.

func (*TransactionConfiguration) HasDataCollectionOnly

func (o *TransactionConfiguration) HasDataCollectionOnly() bool

HasDataCollectionOnly returns a boolean if a field has been set.

func (*TransactionConfiguration) HasTimeout

func (o *TransactionConfiguration) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (TransactionConfiguration) MarshalJSON

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

func (*TransactionConfiguration) SetDataCollection

SetDataCollection gets a reference to the given TransactionConfigurationDataCollection and assigns it to the DataCollection field.

func (*TransactionConfiguration) SetDataCollectionOnly

func (o *TransactionConfiguration) SetDataCollectionOnly(v bool)

SetDataCollectionOnly gets a reference to the given bool and assigns it to the DataCollectionOnly field.

func (*TransactionConfiguration) SetTimeout

SetTimeout gets a reference to the given TransactionConfigurationTimeout and assigns it to the Timeout field.

func (TransactionConfiguration) ToMap

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

type TransactionConfigurationDataCollection

type TransactionConfigurationDataCollection struct {
	Timeout TransactionConfigurationDataCollectionTimeout `json:"timeout"`
}

TransactionConfigurationDataCollection struct for TransactionConfigurationDataCollection

func NewTransactionConfigurationDataCollection

func NewTransactionConfigurationDataCollection(timeout TransactionConfigurationDataCollectionTimeout) *TransactionConfigurationDataCollection

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

func NewTransactionConfigurationDataCollectionWithDefaults

func NewTransactionConfigurationDataCollectionWithDefaults() *TransactionConfigurationDataCollection

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

func (*TransactionConfigurationDataCollection) GetTimeout

GetTimeout returns the Timeout field value

func (*TransactionConfigurationDataCollection) GetTimeoutOk

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

func (TransactionConfigurationDataCollection) MarshalJSON

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

func (*TransactionConfigurationDataCollection) SetTimeout

SetTimeout sets field value

func (TransactionConfigurationDataCollection) ToMap

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

type TransactionConfigurationDataCollectionTimeout

type TransactionConfigurationDataCollectionTimeout struct {
	// Length of time before data collection timeout expires; range is 0-30 minutes or 0-1800 seconds.
	Duration int32        `json:"duration"`
	TimeUnit EnumTimeUnit `json:"timeUnit"`
}

TransactionConfigurationDataCollectionTimeout struct for TransactionConfigurationDataCollectionTimeout

func NewTransactionConfigurationDataCollectionTimeout

func NewTransactionConfigurationDataCollectionTimeout(duration int32, timeUnit EnumTimeUnit) *TransactionConfigurationDataCollectionTimeout

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

func NewTransactionConfigurationDataCollectionTimeoutWithDefaults

func NewTransactionConfigurationDataCollectionTimeoutWithDefaults() *TransactionConfigurationDataCollectionTimeout

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

func (*TransactionConfigurationDataCollectionTimeout) GetDuration

GetDuration returns the Duration field value

func (*TransactionConfigurationDataCollectionTimeout) GetDurationOk

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

func (*TransactionConfigurationDataCollectionTimeout) GetTimeUnit

GetTimeUnit returns the TimeUnit field value

func (*TransactionConfigurationDataCollectionTimeout) GetTimeUnitOk

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

func (TransactionConfigurationDataCollectionTimeout) MarshalJSON

func (*TransactionConfigurationDataCollectionTimeout) SetDuration

SetDuration sets field value

func (*TransactionConfigurationDataCollectionTimeout) SetTimeUnit

SetTimeUnit sets field value

func (TransactionConfigurationDataCollectionTimeout) ToMap

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

type TransactionConfigurationTimeout

type TransactionConfigurationTimeout struct {
	// Length of time before transaction timeout expires; range is 0-30 minutes or 0-1800 seconds.
	Duration int32        `json:"duration"`
	TimeUnit EnumTimeUnit `json:"timeUnit"`
}

TransactionConfigurationTimeout struct for TransactionConfigurationTimeout

func NewTransactionConfigurationTimeout

func NewTransactionConfigurationTimeout(duration int32, timeUnit EnumTimeUnit) *TransactionConfigurationTimeout

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

func NewTransactionConfigurationTimeoutWithDefaults

func NewTransactionConfigurationTimeoutWithDefaults() *TransactionConfigurationTimeout

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

func (*TransactionConfigurationTimeout) GetDuration

func (o *TransactionConfigurationTimeout) GetDuration() int32

GetDuration returns the Duration field value

func (*TransactionConfigurationTimeout) GetDurationOk

func (o *TransactionConfigurationTimeout) GetDurationOk() (*int32, bool)

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

func (*TransactionConfigurationTimeout) GetTimeUnit

GetTimeUnit returns the TimeUnit field value

func (*TransactionConfigurationTimeout) GetTimeUnitOk

func (o *TransactionConfigurationTimeout) GetTimeUnitOk() (*EnumTimeUnit, bool)

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

func (TransactionConfigurationTimeout) MarshalJSON

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

func (*TransactionConfigurationTimeout) SetDuration

func (o *TransactionConfigurationTimeout) SetDuration(v int32)

SetDuration sets field value

func (*TransactionConfigurationTimeout) SetTimeUnit

SetTimeUnit sets field value

func (TransactionConfigurationTimeout) ToMap

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

type VerifyPoliciesApiService

type VerifyPoliciesApiService service

VerifyPoliciesApiService VerifyPoliciesApi service

func (*VerifyPoliciesApiService) CreateVerifyPolicy

func (a *VerifyPoliciesApiService) CreateVerifyPolicy(ctx context.Context, environmentID string) ApiCreateVerifyPolicyRequest

CreateVerifyPolicy CREATE Verify Policy

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

func (*VerifyPoliciesApiService) CreateVerifyPolicyExecute

Execute executes the request

@return VerifyPolicy

func (*VerifyPoliciesApiService) DeleteVerifyPolicy

func (a *VerifyPoliciesApiService) DeleteVerifyPolicy(ctx context.Context, environmentID string, verifyPolicyID string) ApiDeleteVerifyPolicyRequest

DeleteVerifyPolicy Delete Verify Policy

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

func (*VerifyPoliciesApiService) DeleteVerifyPolicyExecute

func (a *VerifyPoliciesApiService) DeleteVerifyPolicyExecute(r ApiDeleteVerifyPolicyRequest) (*http.Response, error)

Execute executes the request

func (*VerifyPoliciesApiService) ReadAllVerifyPolicies

func (a *VerifyPoliciesApiService) ReadAllVerifyPolicies(ctx context.Context, environmentID string) ApiReadAllVerifyPoliciesRequest

ReadAllVerifyPolicies READ All Verify Policies

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

func (*VerifyPoliciesApiService) ReadAllVerifyPoliciesExecute

Execute executes the request

@return EntityArray

func (*VerifyPoliciesApiService) ReadAllVerifyPoliciesExecuteInitialPage added in v0.8.0

func (a *VerifyPoliciesApiService) ReadAllVerifyPoliciesExecuteInitialPage(r ApiReadAllVerifyPoliciesRequest) (*EntityArray, *http.Response, error)

func (*VerifyPoliciesApiService) ReadOneVerifyPolicy

func (a *VerifyPoliciesApiService) ReadOneVerifyPolicy(ctx context.Context, environmentID string, verifyPolicyID string) ApiReadOneVerifyPolicyRequest

ReadOneVerifyPolicy READ One Verify Policy

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

func (*VerifyPoliciesApiService) ReadOneVerifyPolicyExecute

Execute executes the request

@return VerifyPolicy

func (*VerifyPoliciesApiService) UpdateVerifyPolicy

func (a *VerifyPoliciesApiService) UpdateVerifyPolicy(ctx context.Context, environmentID string, verifyPolicyID string) ApiUpdateVerifyPolicyRequest

UpdateVerifyPolicy UPDATE Verify Policy

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

func (*VerifyPoliciesApiService) UpdateVerifyPolicyExecute

Execute executes the request

@return VerifyPolicy

type VerifyPolicy

type VerifyPolicy struct {
	Links       *map[string]LinksHATEOASValue `json:"_links,omitempty"`
	Id          *string                       `json:"id,omitempty"`
	Environment *ObjectEnvironment            `json:"environment,omitempty"`
	// Name displayed in PingOne Admin UI.
	Name string `json:"name"`
	// Description displayed in PingOne Admin UI, 1-1024 characters.
	Description *string `json:"description,omitempty"`
	// Required as true to set this verify policy as the default policy for the environment; otherwise optional and defaults to false.
	Default                *bool                          `json:"default,omitempty"`
	GovernmentId           *GovernmentIdConfiguration     `json:"governmentId,omitempty"`
	FacialComparison       *FacialComparisonConfiguration `json:"facialComparison,omitempty"`
	IdentityRecordMatching *IdentityRecordMatching        `json:"identityRecordMatching,omitempty"`
	Liveness               *LivenessConfiguration         `json:"liveness,omitempty"`
	Email                  *OTPDeviceConfiguration        `json:"email,omitempty"`
	Phone                  *OTPDeviceConfiguration        `json:"phone,omitempty"`
	Transaction            *TransactionConfiguration      `json:"transaction,omitempty"`
	// Deprecated
	Voice     *VoiceConfiguration `json:"voice,omitempty"`
	CreatedAt *time.Time          `json:"createdAt,omitempty"`
	UpdatedAt *time.Time          `json:"updatedAt,omitempty"`
}

VerifyPolicy struct for VerifyPolicy

func NewVerifyPolicy

func NewVerifyPolicy(name string) *VerifyPolicy

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

func NewVerifyPolicyWithDefaults

func NewVerifyPolicyWithDefaults() *VerifyPolicy

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

func (*VerifyPolicy) GetCreatedAt

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

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

func (*VerifyPolicy) GetCreatedAtOk

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

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

func (*VerifyPolicy) GetDefault

func (o *VerifyPolicy) GetDefault() bool

GetDefault returns the Default field value if set, zero value otherwise.

func (*VerifyPolicy) GetDefaultOk

func (o *VerifyPolicy) GetDefaultOk() (*bool, bool)

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

func (*VerifyPolicy) GetDescription

func (o *VerifyPolicy) GetDescription() string

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

func (*VerifyPolicy) GetDescriptionOk

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

func (o *VerifyPolicy) GetEmail() OTPDeviceConfiguration

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

func (*VerifyPolicy) GetEmailOk

func (o *VerifyPolicy) GetEmailOk() (*OTPDeviceConfiguration, 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 (*VerifyPolicy) GetEnvironment

func (o *VerifyPolicy) GetEnvironment() ObjectEnvironment

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

func (*VerifyPolicy) GetEnvironmentOk

func (o *VerifyPolicy) GetEnvironmentOk() (*ObjectEnvironment, bool)

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

func (*VerifyPolicy) GetFacialComparison

func (o *VerifyPolicy) GetFacialComparison() FacialComparisonConfiguration

GetFacialComparison returns the FacialComparison field value if set, zero value otherwise.

func (*VerifyPolicy) GetFacialComparisonOk

func (o *VerifyPolicy) GetFacialComparisonOk() (*FacialComparisonConfiguration, bool)

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

func (*VerifyPolicy) GetGovernmentId

func (o *VerifyPolicy) GetGovernmentId() GovernmentIdConfiguration

GetGovernmentId returns the GovernmentId field value if set, zero value otherwise.

func (*VerifyPolicy) GetGovernmentIdOk

func (o *VerifyPolicy) GetGovernmentIdOk() (*GovernmentIdConfiguration, bool)

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

func (*VerifyPolicy) GetId

func (o *VerifyPolicy) GetId() string

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

func (*VerifyPolicy) GetIdOk

func (o *VerifyPolicy) 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 (*VerifyPolicy) GetIdentityRecordMatching added in v0.10.0

func (o *VerifyPolicy) GetIdentityRecordMatching() IdentityRecordMatching

GetIdentityRecordMatching returns the IdentityRecordMatching field value if set, zero value otherwise.

func (*VerifyPolicy) GetIdentityRecordMatchingOk added in v0.10.0

func (o *VerifyPolicy) GetIdentityRecordMatchingOk() (*IdentityRecordMatching, bool)

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

func (o *VerifyPolicy) GetLinks() map[string]LinksHATEOASValue

GetLinks returns the Links field value if set, zero value otherwise.

func (*VerifyPolicy) GetLinksOk added in v0.3.0

func (o *VerifyPolicy) GetLinksOk() (*map[string]LinksHATEOASValue, bool)

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

func (*VerifyPolicy) GetLiveness

func (o *VerifyPolicy) GetLiveness() LivenessConfiguration

GetLiveness returns the Liveness field value if set, zero value otherwise.

func (*VerifyPolicy) GetLivenessOk

func (o *VerifyPolicy) GetLivenessOk() (*LivenessConfiguration, bool)

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

func (*VerifyPolicy) GetName

func (o *VerifyPolicy) GetName() string

GetName returns the Name field value

func (*VerifyPolicy) GetNameOk

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

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

func (*VerifyPolicy) GetPhone

func (o *VerifyPolicy) GetPhone() OTPDeviceConfiguration

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

func (*VerifyPolicy) GetPhoneOk

func (o *VerifyPolicy) GetPhoneOk() (*OTPDeviceConfiguration, bool)

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

func (*VerifyPolicy) GetTransaction

func (o *VerifyPolicy) GetTransaction() TransactionConfiguration

GetTransaction returns the Transaction field value if set, zero value otherwise.

func (*VerifyPolicy) GetTransactionOk

func (o *VerifyPolicy) GetTransactionOk() (*TransactionConfiguration, bool)

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

func (*VerifyPolicy) GetUpdatedAt

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

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

func (*VerifyPolicy) GetUpdatedAtOk

func (o *VerifyPolicy) GetUpdatedAtOk() (*time.Time, bool)

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

func (*VerifyPolicy) GetVoice added in v0.3.0

func (o *VerifyPolicy) GetVoice() VoiceConfiguration

GetVoice returns the Voice field value if set, zero value otherwise. Deprecated

func (*VerifyPolicy) GetVoiceOk added in v0.3.0

func (o *VerifyPolicy) GetVoiceOk() (*VoiceConfiguration, bool)

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

func (*VerifyPolicy) HasCreatedAt

func (o *VerifyPolicy) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*VerifyPolicy) HasDefault

func (o *VerifyPolicy) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*VerifyPolicy) HasDescription

func (o *VerifyPolicy) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*VerifyPolicy) HasEmail

func (o *VerifyPolicy) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*VerifyPolicy) HasEnvironment

func (o *VerifyPolicy) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*VerifyPolicy) HasFacialComparison

func (o *VerifyPolicy) HasFacialComparison() bool

HasFacialComparison returns a boolean if a field has been set.

func (*VerifyPolicy) HasGovernmentId

func (o *VerifyPolicy) HasGovernmentId() bool

HasGovernmentId returns a boolean if a field has been set.

func (*VerifyPolicy) HasId

func (o *VerifyPolicy) HasId() bool

HasId returns a boolean if a field has been set.

func (*VerifyPolicy) HasIdentityRecordMatching added in v0.10.0

func (o *VerifyPolicy) HasIdentityRecordMatching() bool

HasIdentityRecordMatching returns a boolean if a field has been set.

func (o *VerifyPolicy) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*VerifyPolicy) HasLiveness

func (o *VerifyPolicy) HasLiveness() bool

HasLiveness returns a boolean if a field has been set.

func (*VerifyPolicy) HasPhone

func (o *VerifyPolicy) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*VerifyPolicy) HasTransaction

func (o *VerifyPolicy) HasTransaction() bool

HasTransaction returns a boolean if a field has been set.

func (*VerifyPolicy) HasUpdatedAt

func (o *VerifyPolicy) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*VerifyPolicy) HasVoice added in v0.3.0

func (o *VerifyPolicy) HasVoice() bool

HasVoice returns a boolean if a field has been set.

func (VerifyPolicy) MarshalJSON

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

func (*VerifyPolicy) SetCreatedAt

func (o *VerifyPolicy) SetCreatedAt(v time.Time)

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

func (*VerifyPolicy) SetDefault

func (o *VerifyPolicy) SetDefault(v bool)

SetDefault gets a reference to the given bool and assigns it to the Default field.

func (*VerifyPolicy) SetDescription

func (o *VerifyPolicy) SetDescription(v string)

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

func (*VerifyPolicy) SetEmail

func (o *VerifyPolicy) SetEmail(v OTPDeviceConfiguration)

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

func (*VerifyPolicy) SetEnvironment

func (o *VerifyPolicy) SetEnvironment(v ObjectEnvironment)

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

func (*VerifyPolicy) SetFacialComparison

func (o *VerifyPolicy) SetFacialComparison(v FacialComparisonConfiguration)

SetFacialComparison gets a reference to the given FacialComparisonConfiguration and assigns it to the FacialComparison field.

func (*VerifyPolicy) SetGovernmentId

func (o *VerifyPolicy) SetGovernmentId(v GovernmentIdConfiguration)

SetGovernmentId gets a reference to the given GovernmentIdConfiguration and assigns it to the GovernmentId field.

func (*VerifyPolicy) SetId

func (o *VerifyPolicy) SetId(v string)

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

func (*VerifyPolicy) SetIdentityRecordMatching added in v0.10.0

func (o *VerifyPolicy) SetIdentityRecordMatching(v IdentityRecordMatching)

SetIdentityRecordMatching gets a reference to the given IdentityRecordMatching and assigns it to the IdentityRecordMatching field.

func (o *VerifyPolicy) SetLinks(v map[string]LinksHATEOASValue)

SetLinks gets a reference to the given map[string]LinksHATEOASValue and assigns it to the Links field.

func (*VerifyPolicy) SetLiveness

func (o *VerifyPolicy) SetLiveness(v LivenessConfiguration)

SetLiveness gets a reference to the given LivenessConfiguration and assigns it to the Liveness field.

func (*VerifyPolicy) SetName

func (o *VerifyPolicy) SetName(v string)

SetName sets field value

func (*VerifyPolicy) SetPhone

func (o *VerifyPolicy) SetPhone(v OTPDeviceConfiguration)

SetPhone gets a reference to the given OTPDeviceConfiguration and assigns it to the Phone field.

func (*VerifyPolicy) SetTransaction

func (o *VerifyPolicy) SetTransaction(v TransactionConfiguration)

SetTransaction gets a reference to the given TransactionConfiguration and assigns it to the Transaction field.

func (*VerifyPolicy) SetUpdatedAt

func (o *VerifyPolicy) SetUpdatedAt(v time.Time)

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

func (*VerifyPolicy) SetVoice added in v0.3.0

func (o *VerifyPolicy) SetVoice(v VoiceConfiguration)

SetVoice gets a reference to the given VoiceConfiguration and assigns it to the Voice field. Deprecated

func (VerifyPolicy) ToMap

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

type VoiceConfiguration added in v0.3.0

type VoiceConfiguration struct {
	Verify EnumVerify `json:"verify"`
	// Deprecated
	Enrollment bool `json:"enrollment"`
	// Deprecated
	TextDependent *VoiceConfigurationTextDependent `json:"textDependent,omitempty"`
	// Deprecated
	Comparison VoiceConfigurationThreshold `json:"comparison"`
	// Deprecated
	Liveness VoiceConfigurationThreshold `json:"liveness"`
	// Deprecated
	ReferenceData *VoiceConfigurationReferenceData `json:"referenceData,omitempty"`
}

VoiceConfiguration struct for VoiceConfiguration

func NewVoiceConfiguration added in v0.3.0

func NewVoiceConfiguration(verify EnumVerify, enrollment bool, comparison VoiceConfigurationThreshold, liveness VoiceConfigurationThreshold) *VoiceConfiguration

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

func NewVoiceConfigurationWithDefaults added in v0.3.0

func NewVoiceConfigurationWithDefaults() *VoiceConfiguration

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

func (*VoiceConfiguration) GetComparison added in v0.3.0

GetComparison returns the Comparison field value Deprecated

func (*VoiceConfiguration) GetComparisonOk added in v0.3.0

func (o *VoiceConfiguration) GetComparisonOk() (*VoiceConfigurationThreshold, bool)

GetComparisonOk returns a tuple with the Comparison field value and a boolean to check if the value has been set. Deprecated

func (*VoiceConfiguration) GetEnrollment added in v0.3.0

func (o *VoiceConfiguration) GetEnrollment() bool

GetEnrollment returns the Enrollment field value Deprecated

func (*VoiceConfiguration) GetEnrollmentOk added in v0.3.0

func (o *VoiceConfiguration) GetEnrollmentOk() (*bool, bool)

GetEnrollmentOk returns a tuple with the Enrollment field value and a boolean to check if the value has been set. Deprecated

func (*VoiceConfiguration) GetLiveness added in v0.3.0

GetLiveness returns the Liveness field value Deprecated

func (*VoiceConfiguration) GetLivenessOk added in v0.3.0

func (o *VoiceConfiguration) GetLivenessOk() (*VoiceConfigurationThreshold, bool)

GetLivenessOk returns a tuple with the Liveness field value and a boolean to check if the value has been set. Deprecated

func (*VoiceConfiguration) GetReferenceData added in v0.3.0

GetReferenceData returns the ReferenceData field value if set, zero value otherwise. Deprecated

func (*VoiceConfiguration) GetReferenceDataOk added in v0.3.0

func (o *VoiceConfiguration) GetReferenceDataOk() (*VoiceConfigurationReferenceData, bool)

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

func (*VoiceConfiguration) GetTextDependent added in v0.3.0

GetTextDependent returns the TextDependent field value if set, zero value otherwise. Deprecated

func (*VoiceConfiguration) GetTextDependentOk added in v0.3.0

func (o *VoiceConfiguration) GetTextDependentOk() (*VoiceConfigurationTextDependent, bool)

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

func (*VoiceConfiguration) GetVerify added in v0.3.0

func (o *VoiceConfiguration) GetVerify() EnumVerify

GetVerify returns the Verify field value

func (*VoiceConfiguration) GetVerifyOk added in v0.3.0

func (o *VoiceConfiguration) GetVerifyOk() (*EnumVerify, bool)

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

func (*VoiceConfiguration) HasReferenceData added in v0.3.0

func (o *VoiceConfiguration) HasReferenceData() bool

HasReferenceData returns a boolean if a field has been set.

func (*VoiceConfiguration) HasTextDependent added in v0.3.0

func (o *VoiceConfiguration) HasTextDependent() bool

HasTextDependent returns a boolean if a field has been set.

func (VoiceConfiguration) MarshalJSON added in v0.3.0

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

func (*VoiceConfiguration) SetComparison added in v0.3.0

func (o *VoiceConfiguration) SetComparison(v VoiceConfigurationThreshold)

SetComparison sets field value Deprecated

func (*VoiceConfiguration) SetEnrollment added in v0.3.0

func (o *VoiceConfiguration) SetEnrollment(v bool)

SetEnrollment sets field value Deprecated

func (*VoiceConfiguration) SetLiveness added in v0.3.0

SetLiveness sets field value Deprecated

func (*VoiceConfiguration) SetReferenceData added in v0.3.0

func (o *VoiceConfiguration) SetReferenceData(v VoiceConfigurationReferenceData)

SetReferenceData gets a reference to the given VoiceConfigurationReferenceData and assigns it to the ReferenceData field. Deprecated

func (*VoiceConfiguration) SetTextDependent added in v0.3.0

func (o *VoiceConfiguration) SetTextDependent(v VoiceConfigurationTextDependent)

SetTextDependent gets a reference to the given VoiceConfigurationTextDependent and assigns it to the TextDependent field. Deprecated

func (*VoiceConfiguration) SetVerify added in v0.3.0

func (o *VoiceConfiguration) SetVerify(v EnumVerify)

SetVerify sets field value

func (VoiceConfiguration) ToMap added in v0.3.0

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

type VoiceConfigurationReferenceData added in v0.3.0

type VoiceConfigurationReferenceData struct {
	// Deprecated
	RetainOriginalRecordings *bool `json:"retainOriginalRecordings,omitempty"`
	// Deprecated
	UpdateOnReenrollment *bool `json:"updateOnReenrollment,omitempty"`
	// Deprecated
	UpdateOnVerification *bool `json:"updateOnVerification,omitempty"`
}

VoiceConfigurationReferenceData struct for VoiceConfigurationReferenceData

func NewVoiceConfigurationReferenceData added in v0.3.0

func NewVoiceConfigurationReferenceData() *VoiceConfigurationReferenceData

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

func NewVoiceConfigurationReferenceDataWithDefaults added in v0.3.0

func NewVoiceConfigurationReferenceDataWithDefaults() *VoiceConfigurationReferenceData

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

func (*VoiceConfigurationReferenceData) GetRetainOriginalRecordings added in v0.3.0

func (o *VoiceConfigurationReferenceData) GetRetainOriginalRecordings() bool

GetRetainOriginalRecordings returns the RetainOriginalRecordings field value if set, zero value otherwise. Deprecated

func (*VoiceConfigurationReferenceData) GetRetainOriginalRecordingsOk added in v0.3.0

func (o *VoiceConfigurationReferenceData) GetRetainOriginalRecordingsOk() (*bool, bool)

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

func (*VoiceConfigurationReferenceData) GetUpdateOnReenrollment added in v0.3.0

func (o *VoiceConfigurationReferenceData) GetUpdateOnReenrollment() bool

GetUpdateOnReenrollment returns the UpdateOnReenrollment field value if set, zero value otherwise. Deprecated

func (*VoiceConfigurationReferenceData) GetUpdateOnReenrollmentOk added in v0.3.0

func (o *VoiceConfigurationReferenceData) GetUpdateOnReenrollmentOk() (*bool, bool)

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

func (*VoiceConfigurationReferenceData) GetUpdateOnVerification added in v0.3.0

func (o *VoiceConfigurationReferenceData) GetUpdateOnVerification() bool

GetUpdateOnVerification returns the UpdateOnVerification field value if set, zero value otherwise. Deprecated

func (*VoiceConfigurationReferenceData) GetUpdateOnVerificationOk added in v0.3.0

func (o *VoiceConfigurationReferenceData) GetUpdateOnVerificationOk() (*bool, bool)

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

func (*VoiceConfigurationReferenceData) HasRetainOriginalRecordings added in v0.3.0

func (o *VoiceConfigurationReferenceData) HasRetainOriginalRecordings() bool

HasRetainOriginalRecordings returns a boolean if a field has been set.

func (*VoiceConfigurationReferenceData) HasUpdateOnReenrollment added in v0.3.0

func (o *VoiceConfigurationReferenceData) HasUpdateOnReenrollment() bool

HasUpdateOnReenrollment returns a boolean if a field has been set.

func (*VoiceConfigurationReferenceData) HasUpdateOnVerification added in v0.3.0

func (o *VoiceConfigurationReferenceData) HasUpdateOnVerification() bool

HasUpdateOnVerification returns a boolean if a field has been set.

func (VoiceConfigurationReferenceData) MarshalJSON added in v0.3.0

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

func (*VoiceConfigurationReferenceData) SetRetainOriginalRecordings added in v0.3.0

func (o *VoiceConfigurationReferenceData) SetRetainOriginalRecordings(v bool)

SetRetainOriginalRecordings gets a reference to the given bool and assigns it to the RetainOriginalRecordings field. Deprecated

func (*VoiceConfigurationReferenceData) SetUpdateOnReenrollment added in v0.3.0

func (o *VoiceConfigurationReferenceData) SetUpdateOnReenrollment(v bool)

SetUpdateOnReenrollment gets a reference to the given bool and assigns it to the UpdateOnReenrollment field. Deprecated

func (*VoiceConfigurationReferenceData) SetUpdateOnVerification added in v0.3.0

func (o *VoiceConfigurationReferenceData) SetUpdateOnVerification(v bool)

SetUpdateOnVerification gets a reference to the given bool and assigns it to the UpdateOnVerification field. Deprecated

func (VoiceConfigurationReferenceData) ToMap added in v0.3.0

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

type VoiceConfigurationTextDependent added in v0.3.0

type VoiceConfigurationTextDependent struct {
	// Deprecated
	Samples int32 `json:"samples"`
	// Deprecated
	Phrase VoiceConfigurationTextDependentPhrase `json:"phrase"`
}

VoiceConfigurationTextDependent struct for VoiceConfigurationTextDependent

func NewVoiceConfigurationTextDependent added in v0.3.0

func NewVoiceConfigurationTextDependent(samples int32, phrase VoiceConfigurationTextDependentPhrase) *VoiceConfigurationTextDependent

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

func NewVoiceConfigurationTextDependentWithDefaults added in v0.3.0

func NewVoiceConfigurationTextDependentWithDefaults() *VoiceConfigurationTextDependent

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

func (*VoiceConfigurationTextDependent) GetPhrase added in v0.3.0

GetPhrase returns the Phrase field value Deprecated

func (*VoiceConfigurationTextDependent) GetPhraseOk added in v0.3.0

GetPhraseOk returns a tuple with the Phrase field value and a boolean to check if the value has been set. Deprecated

func (*VoiceConfigurationTextDependent) GetSamples added in v0.3.0

func (o *VoiceConfigurationTextDependent) GetSamples() int32

GetSamples returns the Samples field value Deprecated

func (*VoiceConfigurationTextDependent) GetSamplesOk added in v0.3.0

func (o *VoiceConfigurationTextDependent) GetSamplesOk() (*int32, bool)

GetSamplesOk returns a tuple with the Samples field value and a boolean to check if the value has been set. Deprecated

func (VoiceConfigurationTextDependent) MarshalJSON added in v0.3.0

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

func (*VoiceConfigurationTextDependent) SetPhrase added in v0.3.0

SetPhrase sets field value Deprecated

func (*VoiceConfigurationTextDependent) SetSamples added in v0.3.0

func (o *VoiceConfigurationTextDependent) SetSamples(v int32)

SetSamples sets field value Deprecated

func (VoiceConfigurationTextDependent) ToMap added in v0.3.0

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

type VoiceConfigurationTextDependentPhrase added in v0.3.0

type VoiceConfigurationTextDependentPhrase struct {
	// Deprecated
	Id string `json:"id"`
}

VoiceConfigurationTextDependentPhrase struct for VoiceConfigurationTextDependentPhrase

func NewVoiceConfigurationTextDependentPhrase added in v0.3.0

func NewVoiceConfigurationTextDependentPhrase(id string) *VoiceConfigurationTextDependentPhrase

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

func NewVoiceConfigurationTextDependentPhraseWithDefaults added in v0.3.0

func NewVoiceConfigurationTextDependentPhraseWithDefaults() *VoiceConfigurationTextDependentPhrase

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

func (*VoiceConfigurationTextDependentPhrase) GetId added in v0.3.0

GetId returns the Id field value Deprecated

func (*VoiceConfigurationTextDependentPhrase) GetIdOk added in v0.3.0

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

func (VoiceConfigurationTextDependentPhrase) MarshalJSON added in v0.3.0

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

func (*VoiceConfigurationTextDependentPhrase) SetId added in v0.3.0

SetId sets field value Deprecated

func (VoiceConfigurationTextDependentPhrase) ToMap added in v0.3.0

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

type VoiceConfigurationThreshold added in v0.3.0

type VoiceConfigurationThreshold struct {
	Threshold EnumThreshold `json:"threshold"`
}

VoiceConfigurationThreshold struct for VoiceConfigurationThreshold

func NewVoiceConfigurationThreshold added in v0.3.0

func NewVoiceConfigurationThreshold(threshold EnumThreshold) *VoiceConfigurationThreshold

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

func NewVoiceConfigurationThresholdWithDefaults added in v0.3.0

func NewVoiceConfigurationThresholdWithDefaults() *VoiceConfigurationThreshold

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

func (*VoiceConfigurationThreshold) GetThreshold added in v0.3.0

func (o *VoiceConfigurationThreshold) GetThreshold() EnumThreshold

GetThreshold returns the Threshold field value

func (*VoiceConfigurationThreshold) GetThresholdOk added in v0.3.0

func (o *VoiceConfigurationThreshold) GetThresholdOk() (*EnumThreshold, bool)

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

func (VoiceConfigurationThreshold) MarshalJSON added in v0.3.0

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

func (*VoiceConfigurationThreshold) SetThreshold added in v0.3.0

func (o *VoiceConfigurationThreshold) SetThreshold(v EnumThreshold)

SetThreshold sets field value

func (VoiceConfigurationThreshold) ToMap added in v0.3.0

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

type VoicePhrase added in v0.3.0

type VoicePhrase struct {
	// Deprecated
	Id          *string            `json:"id,omitempty"`
	Environment *ObjectEnvironment `json:"environment,omitempty"`
	// Deprecated
	DisplayName string     `json:"displayName"`
	CreatedAt   *time.Time `json:"createdAt,omitempty"`
	UpdatedAt   *time.Time `json:"updatedAt,omitempty"`
}

VoicePhrase struct for VoicePhrase

func NewVoicePhrase added in v0.3.0

func NewVoicePhrase(displayName string) *VoicePhrase

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

func NewVoicePhraseWithDefaults added in v0.3.0

func NewVoicePhraseWithDefaults() *VoicePhrase

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

func (*VoicePhrase) GetCreatedAt added in v0.3.0

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

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

func (*VoicePhrase) GetCreatedAtOk added in v0.3.0

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

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

func (*VoicePhrase) GetDisplayName added in v0.3.0

func (o *VoicePhrase) GetDisplayName() string

GetDisplayName returns the DisplayName field value Deprecated

func (*VoicePhrase) GetDisplayNameOk added in v0.3.0

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

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

func (*VoicePhrase) GetEnvironment added in v0.3.0

func (o *VoicePhrase) GetEnvironment() ObjectEnvironment

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

func (*VoicePhrase) GetEnvironmentOk added in v0.3.0

func (o *VoicePhrase) GetEnvironmentOk() (*ObjectEnvironment, bool)

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

func (*VoicePhrase) GetId added in v0.3.0

func (o *VoicePhrase) GetId() string

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

func (*VoicePhrase) GetIdOk added in v0.3.0

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

func (*VoicePhrase) GetUpdatedAt added in v0.3.0

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

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

func (*VoicePhrase) GetUpdatedAtOk added in v0.3.0

func (o *VoicePhrase) GetUpdatedAtOk() (*time.Time, bool)

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

func (*VoicePhrase) HasCreatedAt added in v0.3.0

func (o *VoicePhrase) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*VoicePhrase) HasEnvironment added in v0.3.0

func (o *VoicePhrase) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*VoicePhrase) HasId added in v0.3.0

func (o *VoicePhrase) HasId() bool

HasId returns a boolean if a field has been set.

func (*VoicePhrase) HasUpdatedAt added in v0.3.0

func (o *VoicePhrase) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (VoicePhrase) MarshalJSON added in v0.3.0

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

func (*VoicePhrase) SetCreatedAt added in v0.3.0

func (o *VoicePhrase) SetCreatedAt(v time.Time)

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

func (*VoicePhrase) SetDisplayName added in v0.3.0

func (o *VoicePhrase) SetDisplayName(v string)

SetDisplayName sets field value Deprecated

func (*VoicePhrase) SetEnvironment added in v0.3.0

func (o *VoicePhrase) SetEnvironment(v ObjectEnvironment)

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

func (*VoicePhrase) SetId added in v0.3.0

func (o *VoicePhrase) SetId(v string)

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

func (*VoicePhrase) SetUpdatedAt added in v0.3.0

func (o *VoicePhrase) SetUpdatedAt(v time.Time)

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

func (VoicePhrase) ToMap added in v0.3.0

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

type VoicePhraseContents added in v0.3.0

type VoicePhraseContents struct {
	// Deprecated
	Id          *string                        `json:"id,omitempty"`
	Environment *ObjectEnvironment             `json:"environment,omitempty"`
	VoicePhrase VoicePhraseContentsVoicePhrase `json:"voicePhrase"`
	// Deprecated
	Locale string `json:"locale"`
	// Deprecated
	Content   string     `json:"content"`
	CreatedAt *time.Time `json:"createdAt,omitempty"`
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
}

VoicePhraseContents struct for VoicePhraseContents

func NewVoicePhraseContents added in v0.3.0

func NewVoicePhraseContents(voicePhrase VoicePhraseContentsVoicePhrase, locale string, content string) *VoicePhraseContents

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

func NewVoicePhraseContentsWithDefaults added in v0.3.0

func NewVoicePhraseContentsWithDefaults() *VoicePhraseContents

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

func (*VoicePhraseContents) GetContent added in v0.3.0

func (o *VoicePhraseContents) GetContent() string

GetContent returns the Content field value Deprecated

func (*VoicePhraseContents) GetContentOk added in v0.3.0

func (o *VoicePhraseContents) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value and a boolean to check if the value has been set. Deprecated

func (*VoicePhraseContents) GetCreatedAt added in v0.3.0

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

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

func (*VoicePhraseContents) GetCreatedAtOk added in v0.3.0

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

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

func (*VoicePhraseContents) GetEnvironment added in v0.3.0

func (o *VoicePhraseContents) GetEnvironment() ObjectEnvironment

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

func (*VoicePhraseContents) GetEnvironmentOk added in v0.3.0

func (o *VoicePhraseContents) GetEnvironmentOk() (*ObjectEnvironment, bool)

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

func (*VoicePhraseContents) GetId added in v0.3.0

func (o *VoicePhraseContents) GetId() string

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

func (*VoicePhraseContents) GetIdOk added in v0.3.0

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

func (*VoicePhraseContents) GetLocale added in v0.3.0

func (o *VoicePhraseContents) GetLocale() string

GetLocale returns the Locale field value Deprecated

func (*VoicePhraseContents) GetLocaleOk added in v0.3.0

func (o *VoicePhraseContents) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value and a boolean to check if the value has been set. Deprecated

func (*VoicePhraseContents) GetUpdatedAt added in v0.3.0

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

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

func (*VoicePhraseContents) GetUpdatedAtOk added in v0.3.0

func (o *VoicePhraseContents) GetUpdatedAtOk() (*time.Time, bool)

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

func (*VoicePhraseContents) GetVoicePhrase added in v0.3.0

GetVoicePhrase returns the VoicePhrase field value

func (*VoicePhraseContents) GetVoicePhraseOk added in v0.3.0

func (o *VoicePhraseContents) GetVoicePhraseOk() (*VoicePhraseContentsVoicePhrase, bool)

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

func (*VoicePhraseContents) HasCreatedAt added in v0.3.0

func (o *VoicePhraseContents) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*VoicePhraseContents) HasEnvironment added in v0.3.0

func (o *VoicePhraseContents) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*VoicePhraseContents) HasId added in v0.3.0

func (o *VoicePhraseContents) HasId() bool

HasId returns a boolean if a field has been set.

func (*VoicePhraseContents) HasUpdatedAt added in v0.3.0

func (o *VoicePhraseContents) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (VoicePhraseContents) MarshalJSON added in v0.3.0

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

func (*VoicePhraseContents) SetContent added in v0.3.0

func (o *VoicePhraseContents) SetContent(v string)

SetContent sets field value Deprecated

func (*VoicePhraseContents) SetCreatedAt added in v0.3.0

func (o *VoicePhraseContents) SetCreatedAt(v time.Time)

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

func (*VoicePhraseContents) SetEnvironment added in v0.3.0

func (o *VoicePhraseContents) SetEnvironment(v ObjectEnvironment)

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

func (*VoicePhraseContents) SetId added in v0.3.0

func (o *VoicePhraseContents) SetId(v string)

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

func (*VoicePhraseContents) SetLocale added in v0.3.0

func (o *VoicePhraseContents) SetLocale(v string)

SetLocale sets field value Deprecated

func (*VoicePhraseContents) SetUpdatedAt added in v0.3.0

func (o *VoicePhraseContents) SetUpdatedAt(v time.Time)

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

func (*VoicePhraseContents) SetVoicePhrase added in v0.3.0

SetVoicePhrase sets field value

func (VoicePhraseContents) ToMap added in v0.3.0

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

type VoicePhraseContentsApiService added in v0.3.0

type VoicePhraseContentsApiService service

VoicePhraseContentsApiService VoicePhraseContentsApi service

func (*VoicePhraseContentsApiService) CreateVoicePhraseContent added in v0.3.0

func (a *VoicePhraseContentsApiService) CreateVoicePhraseContent(ctx context.Context, environmentID string, voicePhraseID string) ApiCreateVoicePhraseContentRequest

CreateVoicePhraseContent CREATE Voice Phrase Content

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

func (*VoicePhraseContentsApiService) CreateVoicePhraseContentExecute added in v0.3.0

Execute executes the request

@return VoicePhraseContents

func (*VoicePhraseContentsApiService) DeleteVoicePhraseContent added in v0.3.0

func (a *VoicePhraseContentsApiService) DeleteVoicePhraseContent(ctx context.Context, environmentID string, voicePhraseID string, voiceContentsID string) ApiDeleteVoicePhraseContentRequest

DeleteVoicePhraseContent Delete Voice Phrase Content

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

func (*VoicePhraseContentsApiService) DeleteVoicePhraseContentExecute added in v0.3.0

func (a *VoicePhraseContentsApiService) DeleteVoicePhraseContentExecute(r ApiDeleteVoicePhraseContentRequest) (*http.Response, error)

Execute executes the request

func (*VoicePhraseContentsApiService) ReadAllVoicePhraseContents added in v0.3.0

func (a *VoicePhraseContentsApiService) ReadAllVoicePhraseContents(ctx context.Context, environmentID string, voicePhraseID string) ApiReadAllVoicePhraseContentsRequest

ReadAllVoicePhraseContents READ All Voice Phrase Contents

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

func (*VoicePhraseContentsApiService) ReadAllVoicePhraseContentsExecute added in v0.3.0

Execute executes the request

@return EntityArray

func (*VoicePhraseContentsApiService) ReadAllVoicePhraseContentsExecuteInitialPage added in v0.8.0

func (a *VoicePhraseContentsApiService) ReadAllVoicePhraseContentsExecuteInitialPage(r ApiReadAllVoicePhraseContentsRequest) (*EntityArray, *http.Response, error)

func (*VoicePhraseContentsApiService) ReadOneVoicePhraseContent added in v0.3.0

func (a *VoicePhraseContentsApiService) ReadOneVoicePhraseContent(ctx context.Context, environmentID string, voicePhraseID string, voiceContentsID string) ApiReadOneVoicePhraseContentRequest

ReadOneVoicePhraseContent READ One Voice Phrase Content

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

func (*VoicePhraseContentsApiService) ReadOneVoicePhraseContentExecute added in v0.3.0

Execute executes the request

@return VoicePhraseContents

func (*VoicePhraseContentsApiService) UpdateVoicePhraseContent added in v0.3.0

func (a *VoicePhraseContentsApiService) UpdateVoicePhraseContent(ctx context.Context, environmentID string, voicePhraseID string, voiceContentsID string) ApiUpdateVoicePhraseContentRequest

UpdateVoicePhraseContent UPDATE Voice Phrase Content

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

func (*VoicePhraseContentsApiService) UpdateVoicePhraseContentExecute added in v0.3.0

Execute executes the request

@return VoicePhraseContents

type VoicePhraseContentsVoicePhrase added in v0.3.0

type VoicePhraseContentsVoicePhrase struct {
	// Deprecated
	Id string `json:"id"`
}

VoicePhraseContentsVoicePhrase struct for VoicePhraseContentsVoicePhrase

func NewVoicePhraseContentsVoicePhrase added in v0.3.0

func NewVoicePhraseContentsVoicePhrase(id string) *VoicePhraseContentsVoicePhrase

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

func NewVoicePhraseContentsVoicePhraseWithDefaults added in v0.3.0

func NewVoicePhraseContentsVoicePhraseWithDefaults() *VoicePhraseContentsVoicePhrase

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

func (*VoicePhraseContentsVoicePhrase) GetId added in v0.3.0

GetId returns the Id field value Deprecated

func (*VoicePhraseContentsVoicePhrase) GetIdOk added in v0.3.0

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

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

func (VoicePhraseContentsVoicePhrase) MarshalJSON added in v0.3.0

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

func (*VoicePhraseContentsVoicePhrase) SetId added in v0.3.0

SetId sets field value Deprecated

func (VoicePhraseContentsVoicePhrase) ToMap added in v0.3.0

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

type VoicePhrasesApiService added in v0.3.0

type VoicePhrasesApiService service

VoicePhrasesApiService VoicePhrasesApi service

func (*VoicePhrasesApiService) CreateVoicePhrase added in v0.3.0

func (a *VoicePhrasesApiService) CreateVoicePhrase(ctx context.Context, environmentID string) ApiCreateVoicePhraseRequest

CreateVoicePhrase CREATE Voice Phrase

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

func (*VoicePhrasesApiService) CreateVoicePhraseExecute added in v0.3.0

Execute executes the request

@return VoicePhrase

func (*VoicePhrasesApiService) DeleteVoicePhrase added in v0.3.0

func (a *VoicePhrasesApiService) DeleteVoicePhrase(ctx context.Context, environmentID string, voicePhraseID string) ApiDeleteVoicePhraseRequest

DeleteVoicePhrase Delete Voice Phrase

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

func (*VoicePhrasesApiService) DeleteVoicePhraseExecute added in v0.3.0

func (a *VoicePhrasesApiService) DeleteVoicePhraseExecute(r ApiDeleteVoicePhraseRequest) (*http.Response, error)

Execute executes the request

func (*VoicePhrasesApiService) ReadAllVoicePhrases added in v0.3.0

func (a *VoicePhrasesApiService) ReadAllVoicePhrases(ctx context.Context, environmentID string) ApiReadAllVoicePhrasesRequest

ReadAllVoicePhrases READ All Voice Phrases

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

func (*VoicePhrasesApiService) ReadAllVoicePhrasesExecute added in v0.3.0

Execute executes the request

@return EntityArray

func (*VoicePhrasesApiService) ReadAllVoicePhrasesExecuteInitialPage added in v0.8.0

func (a *VoicePhrasesApiService) ReadAllVoicePhrasesExecuteInitialPage(r ApiReadAllVoicePhrasesRequest) (*EntityArray, *http.Response, error)

func (*VoicePhrasesApiService) ReadOneVoicePhrase added in v0.3.0

func (a *VoicePhrasesApiService) ReadOneVoicePhrase(ctx context.Context, environmentID string, voicePhraseID string) ApiReadOneVoicePhraseRequest

ReadOneVoicePhrase READ One Voice Phrase

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

func (*VoicePhrasesApiService) ReadOneVoicePhraseExecute added in v0.3.0

func (a *VoicePhrasesApiService) ReadOneVoicePhraseExecute(r ApiReadOneVoicePhraseRequest) (*VoicePhrase, *http.Response, error)

Execute executes the request

@return VoicePhrase

func (*VoicePhrasesApiService) UpdateVoicePhrase added in v0.3.0

func (a *VoicePhrasesApiService) UpdateVoicePhrase(ctx context.Context, environmentID string, voicePhraseID string) ApiUpdateVoicePhraseRequest

UpdateVoicePhrase UPDATE Voice Phrase

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

func (*VoicePhrasesApiService) UpdateVoicePhraseExecute added in v0.3.0

Execute executes the request

@return VoicePhrase

Source Files

Directories

Path Synopsis
generate
postprocessing command

Jump to

Keyboard shortcuts

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