Versions in this module Expand all Collapse all v2 v2.0.1 Nov 7, 2022 v2.0.0 Nov 7, 2022 Changes in this version + var ContextAPIKeys = contextKey("apiKeys") + var ContextAccessToken = contextKey("accesstoken") + var ContextBasicAuth = contextKey("basic") + var ContextHttpSignatureAuth = contextKey("httpsignature") + var ContextOAuth2 = contextKey("token") + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + func CacheExpires(r *http.Response) time.Time + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + CardsApi *CardsApiService + SampleResponseApi *SampleResponseApiService + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) GetConfig() *Configuration + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ActionConfirmationBody struct + CancelButtonLabel string + ConfirmButtonLabel string + Prompt string + func NewActionConfirmationBody(prompt string, confirmButtonLabel string, cancelButtonLabel string) *ActionConfirmationBody + func NewActionConfirmationBodyWithDefaults() *ActionConfirmationBody + func (o *ActionConfirmationBody) GetCancelButtonLabel() string + func (o *ActionConfirmationBody) GetCancelButtonLabelOk() (*string, bool) + func (o *ActionConfirmationBody) GetConfirmButtonLabel() string + func (o *ActionConfirmationBody) GetConfirmButtonLabelOk() (*string, bool) + func (o *ActionConfirmationBody) GetPrompt() string + func (o *ActionConfirmationBody) GetPromptOk() (*string, bool) + func (o *ActionConfirmationBody) SetCancelButtonLabel(v string) + func (o *ActionConfirmationBody) SetConfirmButtonLabel(v string) + func (o *ActionConfirmationBody) SetPrompt(v string) + func (o ActionConfirmationBody) MarshalJSON() ([]byte, error) + type ActionHookActionBody struct + Confirmation *ActionConfirmationBody + HttpMethod string + Label *string + PropertyNamesIncluded []string + Type string + Url string + func NewActionHookActionBody(type_ string, httpMethod string, url string, propertyNamesIncluded []string) *ActionHookActionBody + func NewActionHookActionBodyWithDefaults() *ActionHookActionBody + func (o *ActionHookActionBody) GetConfirmation() ActionConfirmationBody + func (o *ActionHookActionBody) GetConfirmationOk() (*ActionConfirmationBody, bool) + func (o *ActionHookActionBody) GetHttpMethod() string + func (o *ActionHookActionBody) GetHttpMethodOk() (*string, bool) + func (o *ActionHookActionBody) GetLabel() string + func (o *ActionHookActionBody) GetLabelOk() (*string, bool) + func (o *ActionHookActionBody) GetPropertyNamesIncluded() []string + func (o *ActionHookActionBody) GetPropertyNamesIncludedOk() ([]string, bool) + func (o *ActionHookActionBody) GetType() string + func (o *ActionHookActionBody) GetTypeOk() (*string, bool) + func (o *ActionHookActionBody) GetUrl() string + func (o *ActionHookActionBody) GetUrlOk() (*string, bool) + func (o *ActionHookActionBody) HasConfirmation() bool + func (o *ActionHookActionBody) HasLabel() bool + func (o *ActionHookActionBody) SetConfirmation(v ActionConfirmationBody) + func (o *ActionHookActionBody) SetHttpMethod(v string) + func (o *ActionHookActionBody) SetLabel(v string) + func (o *ActionHookActionBody) SetPropertyNamesIncluded(v []string) + func (o *ActionHookActionBody) SetType(v string) + func (o *ActionHookActionBody) SetUrl(v string) + func (o ActionHookActionBody) MarshalJSON() ([]byte, error) + type ApiCardsArchiveRequest struct + ApiService *CardsApiService + func (r ApiCardsArchiveRequest) Execute() (*http.Response, error) + type ApiCardsCreateRequest struct + ApiService *CardsApiService + func (r ApiCardsCreateRequest) CardCreateRequest(cardCreateRequest CardCreateRequest) ApiCardsCreateRequest + func (r ApiCardsCreateRequest) Execute() (*CardResponse, *http.Response, error) + type ApiCardsGetAllRequest struct + ApiService *CardsApiService + func (r ApiCardsGetAllRequest) Execute() (*CardListResponse, *http.Response, error) + type ApiCardsGetByIDRequest struct + ApiService *CardsApiService + func (r ApiCardsGetByIDRequest) Execute() (*CardResponse, *http.Response, error) + type ApiCardsGetSampleRequest struct + ApiService *SampleResponseApiService + func (r ApiCardsGetSampleRequest) Execute() (*IntegratorCardPayloadResponse, *http.Response, error) + type ApiCardsUpdateRequest struct + ApiService *CardsApiService + func (r ApiCardsUpdateRequest) CardPatchRequest(cardPatchRequest CardPatchRequest) ApiCardsUpdateRequest + func (r ApiCardsUpdateRequest) Execute() (*CardResponse, *http.Response, error) + type BasicAuth struct + Password string + UserName string + type CardActions struct + BaseUrls []string + func NewCardActions(baseUrls []string) *CardActions + func NewCardActionsWithDefaults() *CardActions + func (o *CardActions) GetBaseUrls() []string + func (o *CardActions) GetBaseUrlsOk() ([]string, bool) + func (o *CardActions) SetBaseUrls(v []string) + func (o CardActions) MarshalJSON() ([]byte, error) + type CardCreateRequest struct + Actions CardActions + Display CardDisplayBody + Fetch CardFetchBody + Title string + func NewCardCreateRequest(title string, fetch CardFetchBody, display CardDisplayBody, ...) *CardCreateRequest + func NewCardCreateRequestWithDefaults() *CardCreateRequest + func (o *CardCreateRequest) GetActions() CardActions + func (o *CardCreateRequest) GetActionsOk() (*CardActions, bool) + func (o *CardCreateRequest) GetDisplay() CardDisplayBody + func (o *CardCreateRequest) GetDisplayOk() (*CardDisplayBody, bool) + func (o *CardCreateRequest) GetFetch() CardFetchBody + func (o *CardCreateRequest) GetFetchOk() (*CardFetchBody, bool) + func (o *CardCreateRequest) GetTitle() string + func (o *CardCreateRequest) GetTitleOk() (*string, bool) + func (o *CardCreateRequest) SetActions(v CardActions) + func (o *CardCreateRequest) SetDisplay(v CardDisplayBody) + func (o *CardCreateRequest) SetFetch(v CardFetchBody) + func (o *CardCreateRequest) SetTitle(v string) + func (o CardCreateRequest) MarshalJSON() ([]byte, error) + type CardDisplayBody struct + Properties []CardDisplayProperty + func NewCardDisplayBody(properties []CardDisplayProperty) *CardDisplayBody + func NewCardDisplayBodyWithDefaults() *CardDisplayBody + func (o *CardDisplayBody) GetProperties() []CardDisplayProperty + func (o *CardDisplayBody) GetPropertiesOk() ([]CardDisplayProperty, bool) + func (o *CardDisplayBody) SetProperties(v []CardDisplayProperty) + func (o CardDisplayBody) MarshalJSON() ([]byte, error) + type CardDisplayProperty struct + DataType string + Label string + Name string + Options []DisplayOption + func NewCardDisplayProperty(name string, label string, dataType string, options []DisplayOption) *CardDisplayProperty + func NewCardDisplayPropertyWithDefaults() *CardDisplayProperty + func (o *CardDisplayProperty) GetDataType() string + func (o *CardDisplayProperty) GetDataTypeOk() (*string, bool) + func (o *CardDisplayProperty) GetLabel() string + func (o *CardDisplayProperty) GetLabelOk() (*string, bool) + func (o *CardDisplayProperty) GetName() string + func (o *CardDisplayProperty) GetNameOk() (*string, bool) + func (o *CardDisplayProperty) GetOptions() []DisplayOption + func (o *CardDisplayProperty) GetOptionsOk() ([]DisplayOption, bool) + func (o *CardDisplayProperty) SetDataType(v string) + func (o *CardDisplayProperty) SetLabel(v string) + func (o *CardDisplayProperty) SetName(v string) + func (o *CardDisplayProperty) SetOptions(v []DisplayOption) + func (o CardDisplayProperty) MarshalJSON() ([]byte, error) + type CardFetchBody struct + ObjectTypes []CardObjectTypeBody + TargetUrl string + func NewCardFetchBody(targetUrl string, objectTypes []CardObjectTypeBody) *CardFetchBody + func NewCardFetchBodyWithDefaults() *CardFetchBody + func (o *CardFetchBody) GetObjectTypes() []CardObjectTypeBody + func (o *CardFetchBody) GetObjectTypesOk() ([]CardObjectTypeBody, bool) + func (o *CardFetchBody) GetTargetUrl() string + func (o *CardFetchBody) GetTargetUrlOk() (*string, bool) + func (o *CardFetchBody) SetObjectTypes(v []CardObjectTypeBody) + func (o *CardFetchBody) SetTargetUrl(v string) + func (o CardFetchBody) MarshalJSON() ([]byte, error) + type CardFetchBodyPatch struct + ObjectTypes []CardObjectTypeBody + TargetUrl *string + func NewCardFetchBodyPatch(objectTypes []CardObjectTypeBody) *CardFetchBodyPatch + func NewCardFetchBodyPatchWithDefaults() *CardFetchBodyPatch + func (o *CardFetchBodyPatch) GetObjectTypes() []CardObjectTypeBody + func (o *CardFetchBodyPatch) GetObjectTypesOk() ([]CardObjectTypeBody, bool) + func (o *CardFetchBodyPatch) GetTargetUrl() string + func (o *CardFetchBodyPatch) GetTargetUrlOk() (*string, bool) + func (o *CardFetchBodyPatch) HasTargetUrl() bool + func (o *CardFetchBodyPatch) SetObjectTypes(v []CardObjectTypeBody) + func (o *CardFetchBodyPatch) SetTargetUrl(v string) + func (o CardFetchBodyPatch) MarshalJSON() ([]byte, error) + type CardListResponse struct + Results []CardResponse + func NewCardListResponse(results []CardResponse) *CardListResponse + func NewCardListResponseWithDefaults() *CardListResponse + func (o *CardListResponse) GetResults() []CardResponse + func (o *CardListResponse) GetResultsOk() ([]CardResponse, bool) + func (o *CardListResponse) SetResults(v []CardResponse) + func (o CardListResponse) MarshalJSON() ([]byte, error) + type CardObjectTypeBody struct + Name string + PropertiesToSend []string + func NewCardObjectTypeBody(name string, propertiesToSend []string) *CardObjectTypeBody + func NewCardObjectTypeBodyWithDefaults() *CardObjectTypeBody + func (o *CardObjectTypeBody) GetName() string + func (o *CardObjectTypeBody) GetNameOk() (*string, bool) + func (o *CardObjectTypeBody) GetPropertiesToSend() []string + func (o *CardObjectTypeBody) GetPropertiesToSendOk() ([]string, bool) + func (o *CardObjectTypeBody) SetName(v string) + func (o *CardObjectTypeBody) SetPropertiesToSend(v []string) + func (o CardObjectTypeBody) MarshalJSON() ([]byte, error) + type CardPatchRequest struct + Actions *CardActions + Display *CardDisplayBody + Fetch *CardFetchBodyPatch + Title *string + func NewCardPatchRequest() *CardPatchRequest + func NewCardPatchRequestWithDefaults() *CardPatchRequest + func (o *CardPatchRequest) GetActions() CardActions + func (o *CardPatchRequest) GetActionsOk() (*CardActions, bool) + func (o *CardPatchRequest) GetDisplay() CardDisplayBody + func (o *CardPatchRequest) GetDisplayOk() (*CardDisplayBody, bool) + func (o *CardPatchRequest) GetFetch() CardFetchBodyPatch + func (o *CardPatchRequest) GetFetchOk() (*CardFetchBodyPatch, bool) + func (o *CardPatchRequest) GetTitle() string + func (o *CardPatchRequest) GetTitleOk() (*string, bool) + func (o *CardPatchRequest) HasActions() bool + func (o *CardPatchRequest) HasDisplay() bool + func (o *CardPatchRequest) HasFetch() bool + func (o *CardPatchRequest) HasTitle() bool + func (o *CardPatchRequest) SetActions(v CardActions) + func (o *CardPatchRequest) SetDisplay(v CardDisplayBody) + func (o *CardPatchRequest) SetFetch(v CardFetchBodyPatch) + func (o *CardPatchRequest) SetTitle(v string) + func (o CardPatchRequest) MarshalJSON() ([]byte, error) + type CardResponse struct + Actions CardActions + CreatedAt *time.Time + Display CardDisplayBody + Fetch CardFetchBody + Id string + Title string + UpdatedAt *time.Time + func NewCardResponse(id string, title string, fetch CardFetchBody, display CardDisplayBody, ...) *CardResponse + func NewCardResponseWithDefaults() *CardResponse + func (o *CardResponse) GetActions() CardActions + func (o *CardResponse) GetActionsOk() (*CardActions, bool) + func (o *CardResponse) GetCreatedAt() time.Time + func (o *CardResponse) GetCreatedAtOk() (*time.Time, bool) + func (o *CardResponse) GetDisplay() CardDisplayBody + func (o *CardResponse) GetDisplayOk() (*CardDisplayBody, bool) + func (o *CardResponse) GetFetch() CardFetchBody + func (o *CardResponse) GetFetchOk() (*CardFetchBody, bool) + func (o *CardResponse) GetId() string + func (o *CardResponse) GetIdOk() (*string, bool) + func (o *CardResponse) GetTitle() string + func (o *CardResponse) GetTitleOk() (*string, bool) + func (o *CardResponse) GetUpdatedAt() time.Time + func (o *CardResponse) GetUpdatedAtOk() (*time.Time, bool) + func (o *CardResponse) HasCreatedAt() bool + func (o *CardResponse) HasUpdatedAt() bool + func (o *CardResponse) SetActions(v CardActions) + func (o *CardResponse) SetCreatedAt(v time.Time) + func (o *CardResponse) SetDisplay(v CardDisplayBody) + func (o *CardResponse) SetFetch(v CardFetchBody) + func (o *CardResponse) SetId(v string) + func (o *CardResponse) SetTitle(v string) + func (o *CardResponse) SetUpdatedAt(v time.Time) + func (o CardResponse) MarshalJSON() ([]byte, error) + type CardsApiService service + func (a *CardsApiService) CardsArchive(ctx context.Context, appId int32, cardId string) ApiCardsArchiveRequest + func (a *CardsApiService) CardsArchiveExecute(r ApiCardsArchiveRequest) (*http.Response, error) + func (a *CardsApiService) CardsCreate(ctx context.Context, appId int32) ApiCardsCreateRequest + func (a *CardsApiService) CardsCreateExecute(r ApiCardsCreateRequest) (*CardResponse, *http.Response, error) + func (a *CardsApiService) CardsGetAll(ctx context.Context, appId int32) ApiCardsGetAllRequest + func (a *CardsApiService) CardsGetAllExecute(r ApiCardsGetAllRequest) (*CardListResponse, *http.Response, error) + func (a *CardsApiService) CardsGetByID(ctx context.Context, appId int32, cardId string) ApiCardsGetByIDRequest + func (a *CardsApiService) CardsGetByIDExecute(r ApiCardsGetByIDRequest) (*CardResponse, *http.Response, error) + func (a *CardsApiService) CardsUpdate(ctx context.Context, appId int32, cardId string) ApiCardsUpdateRequest + func (a *CardsApiService) CardsUpdateExecute(r ApiCardsUpdateRequest) (*CardResponse, *http.Response, error) + type Configuration struct + Debug bool + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + OperationServers map[string]ServerConfigurations + Scheme string + Servers ServerConfigurations + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error) + func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error) + type DisplayOption struct + Label string + Name string + Type string + func NewDisplayOption(name string, label string, type_ string) *DisplayOption + func NewDisplayOptionWithDefaults() *DisplayOption + func (o *DisplayOption) GetLabel() string + func (o *DisplayOption) GetLabelOk() (*string, bool) + func (o *DisplayOption) GetName() string + func (o *DisplayOption) GetNameOk() (*string, bool) + func (o *DisplayOption) GetType() string + func (o *DisplayOption) GetTypeOk() (*string, bool) + func (o *DisplayOption) SetLabel(v string) + func (o *DisplayOption) SetName(v string) + func (o *DisplayOption) SetType(v string) + func (o DisplayOption) MarshalJSON() ([]byte, error) + type Error struct + Category string + Context *map[string][]string + CorrelationId string + Errors []ErrorDetail + Links *map[string]string + Message string + SubCategory *string + func NewError(message string, correlationId string, category string) *Error + func NewErrorWithDefaults() *Error + func (o *Error) GetCategory() string + func (o *Error) GetCategoryOk() (*string, bool) + func (o *Error) GetContext() map[string][]string + func (o *Error) GetContextOk() (*map[string][]string, bool) + func (o *Error) GetCorrelationId() string + func (o *Error) GetCorrelationIdOk() (*string, bool) + func (o *Error) GetErrors() []ErrorDetail + func (o *Error) GetErrorsOk() ([]ErrorDetail, bool) + func (o *Error) GetLinks() map[string]string + func (o *Error) GetLinksOk() (*map[string]string, bool) + func (o *Error) GetMessage() string + func (o *Error) GetMessageOk() (*string, bool) + func (o *Error) GetSubCategory() string + func (o *Error) GetSubCategoryOk() (*string, bool) + func (o *Error) HasContext() bool + func (o *Error) HasErrors() bool + func (o *Error) HasLinks() bool + func (o *Error) HasSubCategory() bool + func (o *Error) SetCategory(v string) + func (o *Error) SetContext(v map[string][]string) + func (o *Error) SetCorrelationId(v string) + func (o *Error) SetErrors(v []ErrorDetail) + func (o *Error) SetLinks(v map[string]string) + func (o *Error) SetMessage(v string) + func (o *Error) SetSubCategory(v string) + func (o Error) MarshalJSON() ([]byte, error) + type ErrorDetail struct + Code *string + Context *map[string][]string + In *string + Message string + SubCategory *string + func NewErrorDetail(message string) *ErrorDetail + func NewErrorDetailWithDefaults() *ErrorDetail + func (o *ErrorDetail) GetCode() string + func (o *ErrorDetail) GetCodeOk() (*string, bool) + func (o *ErrorDetail) GetContext() map[string][]string + func (o *ErrorDetail) GetContextOk() (*map[string][]string, bool) + func (o *ErrorDetail) GetIn() string + func (o *ErrorDetail) GetInOk() (*string, bool) + func (o *ErrorDetail) GetMessage() string + func (o *ErrorDetail) GetMessageOk() (*string, bool) + func (o *ErrorDetail) GetSubCategory() string + func (o *ErrorDetail) GetSubCategoryOk() (*string, bool) + func (o *ErrorDetail) HasCode() bool + func (o *ErrorDetail) HasContext() bool + func (o *ErrorDetail) HasIn() bool + func (o *ErrorDetail) HasSubCategory() bool + func (o *ErrorDetail) SetCode(v string) + func (o *ErrorDetail) SetContext(v map[string][]string) + func (o *ErrorDetail) SetIn(v string) + func (o *ErrorDetail) SetMessage(v string) + func (o *ErrorDetail) SetSubCategory(v string) + func (o ErrorDetail) MarshalJSON() ([]byte, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type IFrameActionBody struct + Height int32 + Label *string + PropertyNamesIncluded []string + Type string + Url string + Width int32 + func NewIFrameActionBody(type_ string, width int32, height int32, url string, ...) *IFrameActionBody + func NewIFrameActionBodyWithDefaults() *IFrameActionBody + func (o *IFrameActionBody) GetHeight() int32 + func (o *IFrameActionBody) GetHeightOk() (*int32, bool) + func (o *IFrameActionBody) GetLabel() string + func (o *IFrameActionBody) GetLabelOk() (*string, bool) + func (o *IFrameActionBody) GetPropertyNamesIncluded() []string + func (o *IFrameActionBody) GetPropertyNamesIncludedOk() ([]string, bool) + func (o *IFrameActionBody) GetType() string + func (o *IFrameActionBody) GetTypeOk() (*string, bool) + func (o *IFrameActionBody) GetUrl() string + func (o *IFrameActionBody) GetUrlOk() (*string, bool) + func (o *IFrameActionBody) GetWidth() int32 + func (o *IFrameActionBody) GetWidthOk() (*int32, bool) + func (o *IFrameActionBody) HasLabel() bool + func (o *IFrameActionBody) SetHeight(v int32) + func (o *IFrameActionBody) SetLabel(v string) + func (o *IFrameActionBody) SetPropertyNamesIncluded(v []string) + func (o *IFrameActionBody) SetType(v string) + func (o *IFrameActionBody) SetUrl(v string) + func (o *IFrameActionBody) SetWidth(v int32) + func (o IFrameActionBody) MarshalJSON() ([]byte, error) + type IntegratorCardPayloadResponse struct + AllItemsLinkUrl *string + CardLabel *string + ResponseVersion *string + Sections []IntegratorObjectResult + TopLevelActions *TopLevelActions + TotalCount int32 + func NewIntegratorCardPayloadResponse(totalCount int32) *IntegratorCardPayloadResponse + func NewIntegratorCardPayloadResponseWithDefaults() *IntegratorCardPayloadResponse + func (o *IntegratorCardPayloadResponse) GetAllItemsLinkUrl() string + func (o *IntegratorCardPayloadResponse) GetAllItemsLinkUrlOk() (*string, bool) + func (o *IntegratorCardPayloadResponse) GetCardLabel() string + func (o *IntegratorCardPayloadResponse) GetCardLabelOk() (*string, bool) + func (o *IntegratorCardPayloadResponse) GetResponseVersion() string + func (o *IntegratorCardPayloadResponse) GetResponseVersionOk() (*string, bool) + func (o *IntegratorCardPayloadResponse) GetSections() []IntegratorObjectResult + func (o *IntegratorCardPayloadResponse) GetSectionsOk() ([]IntegratorObjectResult, bool) + func (o *IntegratorCardPayloadResponse) GetTopLevelActions() TopLevelActions + func (o *IntegratorCardPayloadResponse) GetTopLevelActionsOk() (*TopLevelActions, bool) + func (o *IntegratorCardPayloadResponse) GetTotalCount() int32 + func (o *IntegratorCardPayloadResponse) GetTotalCountOk() (*int32, bool) + func (o *IntegratorCardPayloadResponse) HasAllItemsLinkUrl() bool + func (o *IntegratorCardPayloadResponse) HasCardLabel() bool + func (o *IntegratorCardPayloadResponse) HasResponseVersion() bool + func (o *IntegratorCardPayloadResponse) HasSections() bool + func (o *IntegratorCardPayloadResponse) HasTopLevelActions() bool + func (o *IntegratorCardPayloadResponse) SetAllItemsLinkUrl(v string) + func (o *IntegratorCardPayloadResponse) SetCardLabel(v string) + func (o *IntegratorCardPayloadResponse) SetResponseVersion(v string) + func (o *IntegratorCardPayloadResponse) SetSections(v []IntegratorObjectResult) + func (o *IntegratorCardPayloadResponse) SetTopLevelActions(v TopLevelActions) + func (o *IntegratorCardPayloadResponse) SetTotalCount(v int32) + func (o IntegratorCardPayloadResponse) MarshalJSON() ([]byte, error) + type IntegratorObjectResult struct + Actions []IntegratorObjectResultActionsInner + Id string + LinkUrl *string + Title string + Tokens []ObjectToken + func NewIntegratorObjectResult(id string, title string, tokens []ObjectToken, ...) *IntegratorObjectResult + func NewIntegratorObjectResultWithDefaults() *IntegratorObjectResult + func (o *IntegratorObjectResult) GetActions() []IntegratorObjectResultActionsInner + func (o *IntegratorObjectResult) GetActionsOk() ([]IntegratorObjectResultActionsInner, bool) + func (o *IntegratorObjectResult) GetId() string + func (o *IntegratorObjectResult) GetIdOk() (*string, bool) + func (o *IntegratorObjectResult) GetLinkUrl() string + func (o *IntegratorObjectResult) GetLinkUrlOk() (*string, bool) + func (o *IntegratorObjectResult) GetTitle() string + func (o *IntegratorObjectResult) GetTitleOk() (*string, bool) + func (o *IntegratorObjectResult) GetTokens() []ObjectToken + func (o *IntegratorObjectResult) GetTokensOk() ([]ObjectToken, bool) + func (o *IntegratorObjectResult) HasLinkUrl() bool + func (o *IntegratorObjectResult) SetActions(v []IntegratorObjectResultActionsInner) + func (o *IntegratorObjectResult) SetId(v string) + func (o *IntegratorObjectResult) SetLinkUrl(v string) + func (o *IntegratorObjectResult) SetTitle(v string) + func (o *IntegratorObjectResult) SetTokens(v []ObjectToken) + func (o IntegratorObjectResult) MarshalJSON() ([]byte, error) + type IntegratorObjectResultActionsInner struct + ActionHookActionBody *ActionHookActionBody + IFrameActionBody *IFrameActionBody + func ActionHookActionBodyAsIntegratorObjectResultActionsInner(v *ActionHookActionBody) IntegratorObjectResultActionsInner + func IFrameActionBodyAsIntegratorObjectResultActionsInner(v *IFrameActionBody) IntegratorObjectResultActionsInner + func (dst *IntegratorObjectResultActionsInner) UnmarshalJSON(data []byte) error + func (obj *IntegratorObjectResultActionsInner) GetActualInstance() interface{} + func (src IntegratorObjectResultActionsInner) MarshalJSON() ([]byte, error) + type NullableActionConfirmationBody struct + func NewNullableActionConfirmationBody(val *ActionConfirmationBody) *NullableActionConfirmationBody + func (v *NullableActionConfirmationBody) Set(val *ActionConfirmationBody) + func (v *NullableActionConfirmationBody) UnmarshalJSON(src []byte) error + func (v *NullableActionConfirmationBody) Unset() + func (v NullableActionConfirmationBody) Get() *ActionConfirmationBody + func (v NullableActionConfirmationBody) IsSet() bool + func (v NullableActionConfirmationBody) MarshalJSON() ([]byte, error) + type NullableActionHookActionBody struct + func NewNullableActionHookActionBody(val *ActionHookActionBody) *NullableActionHookActionBody + func (v *NullableActionHookActionBody) Set(val *ActionHookActionBody) + func (v *NullableActionHookActionBody) UnmarshalJSON(src []byte) error + func (v *NullableActionHookActionBody) Unset() + func (v NullableActionHookActionBody) Get() *ActionHookActionBody + func (v NullableActionHookActionBody) IsSet() bool + func (v NullableActionHookActionBody) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCardActions struct + func NewNullableCardActions(val *CardActions) *NullableCardActions + func (v *NullableCardActions) Set(val *CardActions) + func (v *NullableCardActions) UnmarshalJSON(src []byte) error + func (v *NullableCardActions) Unset() + func (v NullableCardActions) Get() *CardActions + func (v NullableCardActions) IsSet() bool + func (v NullableCardActions) MarshalJSON() ([]byte, error) + type NullableCardCreateRequest struct + func NewNullableCardCreateRequest(val *CardCreateRequest) *NullableCardCreateRequest + func (v *NullableCardCreateRequest) Set(val *CardCreateRequest) + func (v *NullableCardCreateRequest) UnmarshalJSON(src []byte) error + func (v *NullableCardCreateRequest) Unset() + func (v NullableCardCreateRequest) Get() *CardCreateRequest + func (v NullableCardCreateRequest) IsSet() bool + func (v NullableCardCreateRequest) MarshalJSON() ([]byte, error) + type NullableCardDisplayBody struct + func NewNullableCardDisplayBody(val *CardDisplayBody) *NullableCardDisplayBody + func (v *NullableCardDisplayBody) Set(val *CardDisplayBody) + func (v *NullableCardDisplayBody) UnmarshalJSON(src []byte) error + func (v *NullableCardDisplayBody) Unset() + func (v NullableCardDisplayBody) Get() *CardDisplayBody + func (v NullableCardDisplayBody) IsSet() bool + func (v NullableCardDisplayBody) MarshalJSON() ([]byte, error) + type NullableCardDisplayProperty struct + func NewNullableCardDisplayProperty(val *CardDisplayProperty) *NullableCardDisplayProperty + func (v *NullableCardDisplayProperty) Set(val *CardDisplayProperty) + func (v *NullableCardDisplayProperty) UnmarshalJSON(src []byte) error + func (v *NullableCardDisplayProperty) Unset() + func (v NullableCardDisplayProperty) Get() *CardDisplayProperty + func (v NullableCardDisplayProperty) IsSet() bool + func (v NullableCardDisplayProperty) MarshalJSON() ([]byte, error) + type NullableCardFetchBody struct + func NewNullableCardFetchBody(val *CardFetchBody) *NullableCardFetchBody + func (v *NullableCardFetchBody) Set(val *CardFetchBody) + func (v *NullableCardFetchBody) UnmarshalJSON(src []byte) error + func (v *NullableCardFetchBody) Unset() + func (v NullableCardFetchBody) Get() *CardFetchBody + func (v NullableCardFetchBody) IsSet() bool + func (v NullableCardFetchBody) MarshalJSON() ([]byte, error) + type NullableCardFetchBodyPatch struct + func NewNullableCardFetchBodyPatch(val *CardFetchBodyPatch) *NullableCardFetchBodyPatch + func (v *NullableCardFetchBodyPatch) Set(val *CardFetchBodyPatch) + func (v *NullableCardFetchBodyPatch) UnmarshalJSON(src []byte) error + func (v *NullableCardFetchBodyPatch) Unset() + func (v NullableCardFetchBodyPatch) Get() *CardFetchBodyPatch + func (v NullableCardFetchBodyPatch) IsSet() bool + func (v NullableCardFetchBodyPatch) MarshalJSON() ([]byte, error) + type NullableCardListResponse struct + func NewNullableCardListResponse(val *CardListResponse) *NullableCardListResponse + func (v *NullableCardListResponse) Set(val *CardListResponse) + func (v *NullableCardListResponse) UnmarshalJSON(src []byte) error + func (v *NullableCardListResponse) Unset() + func (v NullableCardListResponse) Get() *CardListResponse + func (v NullableCardListResponse) IsSet() bool + func (v NullableCardListResponse) MarshalJSON() ([]byte, error) + type NullableCardObjectTypeBody struct + func NewNullableCardObjectTypeBody(val *CardObjectTypeBody) *NullableCardObjectTypeBody + func (v *NullableCardObjectTypeBody) Set(val *CardObjectTypeBody) + func (v *NullableCardObjectTypeBody) UnmarshalJSON(src []byte) error + func (v *NullableCardObjectTypeBody) Unset() + func (v NullableCardObjectTypeBody) Get() *CardObjectTypeBody + func (v NullableCardObjectTypeBody) IsSet() bool + func (v NullableCardObjectTypeBody) MarshalJSON() ([]byte, error) + type NullableCardPatchRequest struct + func NewNullableCardPatchRequest(val *CardPatchRequest) *NullableCardPatchRequest + func (v *NullableCardPatchRequest) Set(val *CardPatchRequest) + func (v *NullableCardPatchRequest) UnmarshalJSON(src []byte) error + func (v *NullableCardPatchRequest) Unset() + func (v NullableCardPatchRequest) Get() *CardPatchRequest + func (v NullableCardPatchRequest) IsSet() bool + func (v NullableCardPatchRequest) MarshalJSON() ([]byte, error) + type NullableCardResponse struct + func NewNullableCardResponse(val *CardResponse) *NullableCardResponse + func (v *NullableCardResponse) Set(val *CardResponse) + func (v *NullableCardResponse) UnmarshalJSON(src []byte) error + func (v *NullableCardResponse) Unset() + func (v NullableCardResponse) Get() *CardResponse + func (v NullableCardResponse) IsSet() bool + func (v NullableCardResponse) MarshalJSON() ([]byte, error) + type NullableDisplayOption struct + func NewNullableDisplayOption(val *DisplayOption) *NullableDisplayOption + func (v *NullableDisplayOption) Set(val *DisplayOption) + func (v *NullableDisplayOption) UnmarshalJSON(src []byte) error + func (v *NullableDisplayOption) Unset() + func (v NullableDisplayOption) Get() *DisplayOption + func (v NullableDisplayOption) IsSet() bool + func (v NullableDisplayOption) MarshalJSON() ([]byte, error) + type NullableError struct + func NewNullableError(val *Error) *NullableError + func (v *NullableError) Set(val *Error) + func (v *NullableError) UnmarshalJSON(src []byte) error + func (v *NullableError) Unset() + func (v NullableError) Get() *Error + func (v NullableError) IsSet() bool + func (v NullableError) MarshalJSON() ([]byte, error) + type NullableErrorDetail struct + func NewNullableErrorDetail(val *ErrorDetail) *NullableErrorDetail + func (v *NullableErrorDetail) Set(val *ErrorDetail) + func (v *NullableErrorDetail) UnmarshalJSON(src []byte) error + func (v *NullableErrorDetail) Unset() + func (v NullableErrorDetail) Get() *ErrorDetail + func (v NullableErrorDetail) IsSet() bool + func (v NullableErrorDetail) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableIFrameActionBody struct + func NewNullableIFrameActionBody(val *IFrameActionBody) *NullableIFrameActionBody + func (v *NullableIFrameActionBody) Set(val *IFrameActionBody) + func (v *NullableIFrameActionBody) UnmarshalJSON(src []byte) error + func (v *NullableIFrameActionBody) Unset() + func (v NullableIFrameActionBody) Get() *IFrameActionBody + func (v NullableIFrameActionBody) IsSet() bool + func (v NullableIFrameActionBody) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableIntegratorCardPayloadResponse struct + func NewNullableIntegratorCardPayloadResponse(val *IntegratorCardPayloadResponse) *NullableIntegratorCardPayloadResponse + func (v *NullableIntegratorCardPayloadResponse) Set(val *IntegratorCardPayloadResponse) + func (v *NullableIntegratorCardPayloadResponse) UnmarshalJSON(src []byte) error + func (v *NullableIntegratorCardPayloadResponse) Unset() + func (v NullableIntegratorCardPayloadResponse) Get() *IntegratorCardPayloadResponse + func (v NullableIntegratorCardPayloadResponse) IsSet() bool + func (v NullableIntegratorCardPayloadResponse) MarshalJSON() ([]byte, error) + type NullableIntegratorObjectResult struct + func NewNullableIntegratorObjectResult(val *IntegratorObjectResult) *NullableIntegratorObjectResult + func (v *NullableIntegratorObjectResult) Set(val *IntegratorObjectResult) + func (v *NullableIntegratorObjectResult) UnmarshalJSON(src []byte) error + func (v *NullableIntegratorObjectResult) Unset() + func (v NullableIntegratorObjectResult) Get() *IntegratorObjectResult + func (v NullableIntegratorObjectResult) IsSet() bool + func (v NullableIntegratorObjectResult) MarshalJSON() ([]byte, error) + type NullableIntegratorObjectResultActionsInner struct + func NewNullableIntegratorObjectResultActionsInner(val *IntegratorObjectResultActionsInner) *NullableIntegratorObjectResultActionsInner + func (v *NullableIntegratorObjectResultActionsInner) Set(val *IntegratorObjectResultActionsInner) + func (v *NullableIntegratorObjectResultActionsInner) UnmarshalJSON(src []byte) error + func (v *NullableIntegratorObjectResultActionsInner) Unset() + func (v NullableIntegratorObjectResultActionsInner) Get() *IntegratorObjectResultActionsInner + func (v NullableIntegratorObjectResultActionsInner) IsSet() bool + func (v NullableIntegratorObjectResultActionsInner) MarshalJSON() ([]byte, error) + type NullableObjectToken struct + func NewNullableObjectToken(val *ObjectToken) *NullableObjectToken + func (v *NullableObjectToken) Set(val *ObjectToken) + func (v *NullableObjectToken) UnmarshalJSON(src []byte) error + func (v *NullableObjectToken) Unset() + func (v NullableObjectToken) Get() *ObjectToken + func (v NullableObjectToken) IsSet() bool + func (v NullableObjectToken) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableTopLevelActions struct + func NewNullableTopLevelActions(val *TopLevelActions) *NullableTopLevelActions + func (v *NullableTopLevelActions) Set(val *TopLevelActions) + func (v *NullableTopLevelActions) UnmarshalJSON(src []byte) error + func (v *NullableTopLevelActions) Unset() + func (v NullableTopLevelActions) Get() *TopLevelActions + func (v NullableTopLevelActions) IsSet() bool + func (v NullableTopLevelActions) MarshalJSON() ([]byte, error) + type ObjectToken struct + DataType *string + Label *string + Name *string + Value string + func NewObjectToken(value string) *ObjectToken + func NewObjectTokenWithDefaults() *ObjectToken + func (o *ObjectToken) GetDataType() string + func (o *ObjectToken) GetDataTypeOk() (*string, bool) + func (o *ObjectToken) GetLabel() string + func (o *ObjectToken) GetLabelOk() (*string, bool) + func (o *ObjectToken) GetName() string + func (o *ObjectToken) GetNameOk() (*string, bool) + func (o *ObjectToken) GetValue() string + func (o *ObjectToken) GetValueOk() (*string, bool) + func (o *ObjectToken) HasDataType() bool + func (o *ObjectToken) HasLabel() bool + func (o *ObjectToken) HasName() bool + func (o *ObjectToken) SetDataType(v string) + func (o *ObjectToken) SetLabel(v string) + func (o *ObjectToken) SetName(v string) + func (o *ObjectToken) SetValue(v string) + func (o ObjectToken) MarshalJSON() ([]byte, error) + type SampleResponseApiService service + func (a *SampleResponseApiService) CardsGetSample(ctx context.Context) ApiCardsGetSampleRequest + func (a *SampleResponseApiService) CardsGetSampleExecute(r ApiCardsGetSampleRequest) (*IntegratorCardPayloadResponse, *http.Response, error) + type ServerConfiguration struct + Description string + URL string + Variables map[string]ServerVariable + type ServerConfigurations []ServerConfiguration + func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error) + type ServerVariable struct + DefaultValue string + Description string + EnumValues []string + type TopLevelActions struct + Primary *IntegratorObjectResultActionsInner + Secondary []IntegratorObjectResultActionsInner + Settings *IFrameActionBody + func NewTopLevelActions(secondary []IntegratorObjectResultActionsInner) *TopLevelActions + func NewTopLevelActionsWithDefaults() *TopLevelActions + func (o *TopLevelActions) GetPrimary() IntegratorObjectResultActionsInner + func (o *TopLevelActions) GetPrimaryOk() (*IntegratorObjectResultActionsInner, bool) + func (o *TopLevelActions) GetSecondary() []IntegratorObjectResultActionsInner + func (o *TopLevelActions) GetSecondaryOk() ([]IntegratorObjectResultActionsInner, bool) + func (o *TopLevelActions) GetSettings() IFrameActionBody + func (o *TopLevelActions) GetSettingsOk() (*IFrameActionBody, bool) + func (o *TopLevelActions) HasPrimary() bool + func (o *TopLevelActions) HasSettings() bool + func (o *TopLevelActions) SetPrimary(v IntegratorObjectResultActionsInner) + func (o *TopLevelActions) SetSecondary(v []IntegratorObjectResultActionsInner) + func (o *TopLevelActions) SetSettings(v IFrameActionBody) + func (o TopLevelActions) MarshalJSON() ([]byte, error)