tokenizationwebhook

package
v21.2.0 Latest Latest
Warning

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

Go to latest
Published: Feb 6, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type NullableRecurringToken

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

func NewNullableRecurringToken

func NewNullableRecurringToken(val *RecurringToken) *NullableRecurringToken

func (NullableRecurringToken) Get

func (NullableRecurringToken) IsSet

func (v NullableRecurringToken) IsSet() bool

func (NullableRecurringToken) MarshalJSON

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

func (*NullableRecurringToken) Set

func (*NullableRecurringToken) UnmarshalJSON

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

func (*NullableRecurringToken) Unset

func (v *NullableRecurringToken) Unset()

type NullableRecurringTokenStoreOperation

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

func (NullableRecurringTokenStoreOperation) Get

func (NullableRecurringTokenStoreOperation) IsSet

func (NullableRecurringTokenStoreOperation) MarshalJSON

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

func (*NullableRecurringTokenStoreOperation) Set

func (*NullableRecurringTokenStoreOperation) UnmarshalJSON

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

func (*NullableRecurringTokenStoreOperation) Unset

type NullableTokenizationAlreadyExistingDetailsNotificationRequest

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

func (NullableTokenizationAlreadyExistingDetailsNotificationRequest) Get

func (NullableTokenizationAlreadyExistingDetailsNotificationRequest) IsSet

func (NullableTokenizationAlreadyExistingDetailsNotificationRequest) MarshalJSON

func (*NullableTokenizationAlreadyExistingDetailsNotificationRequest) Set

func (*NullableTokenizationAlreadyExistingDetailsNotificationRequest) UnmarshalJSON

func (*NullableTokenizationAlreadyExistingDetailsNotificationRequest) Unset

type NullableTokenizationCreatedDetailsNotificationRequest

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

func (NullableTokenizationCreatedDetailsNotificationRequest) Get

func (NullableTokenizationCreatedDetailsNotificationRequest) IsSet

func (NullableTokenizationCreatedDetailsNotificationRequest) MarshalJSON

func (*NullableTokenizationCreatedDetailsNotificationRequest) Set

func (*NullableTokenizationCreatedDetailsNotificationRequest) UnmarshalJSON

func (*NullableTokenizationCreatedDetailsNotificationRequest) Unset

type NullableTokenizationDisabledDetailsNotificationRequest

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

func (NullableTokenizationDisabledDetailsNotificationRequest) Get

func (NullableTokenizationDisabledDetailsNotificationRequest) IsSet

func (NullableTokenizationDisabledDetailsNotificationRequest) MarshalJSON

func (*NullableTokenizationDisabledDetailsNotificationRequest) Set

func (*NullableTokenizationDisabledDetailsNotificationRequest) UnmarshalJSON

func (*NullableTokenizationDisabledDetailsNotificationRequest) Unset

type NullableTokenizationNotificationResponse

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

func (NullableTokenizationNotificationResponse) Get

func (NullableTokenizationNotificationResponse) IsSet

func (NullableTokenizationNotificationResponse) MarshalJSON

func (*NullableTokenizationNotificationResponse) Set

func (*NullableTokenizationNotificationResponse) UnmarshalJSON

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

func (*NullableTokenizationNotificationResponse) Unset

type NullableTokenizationUpdatedDetailsNotificationRequest

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

func (NullableTokenizationUpdatedDetailsNotificationRequest) Get

func (NullableTokenizationUpdatedDetailsNotificationRequest) IsSet

func (NullableTokenizationUpdatedDetailsNotificationRequest) MarshalJSON

func (*NullableTokenizationUpdatedDetailsNotificationRequest) Set

func (*NullableTokenizationUpdatedDetailsNotificationRequest) UnmarshalJSON

func (*NullableTokenizationUpdatedDetailsNotificationRequest) Unset

type RecurringToken

type RecurringToken struct {
	// The identifier of the merchant account related to the event that triggered the webhook.
	MerchantAccount string `json:"merchantAccount"`
	// Your unique shopper reference that is associated with the `storedPaymentMethodId`.
	ShopperReference string `json:"shopperReference"`
	// The ID of the token.
	StoredPaymentMethodId string `json:"storedPaymentMethodId"`
	// The type of the payment method.
	Type string `json:"type"`
}

RecurringToken struct for RecurringToken

func NewRecurringToken

func NewRecurringToken(merchantAccount string, shopperReference string, storedPaymentMethodId string, type_ string) *RecurringToken

NewRecurringToken instantiates a new RecurringToken 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 NewRecurringTokenWithDefaults

func NewRecurringTokenWithDefaults() *RecurringToken

NewRecurringTokenWithDefaults instantiates a new RecurringToken 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 (*RecurringToken) GetMerchantAccount

func (o *RecurringToken) GetMerchantAccount() string

GetMerchantAccount returns the MerchantAccount field value

func (*RecurringToken) GetMerchantAccountOk

func (o *RecurringToken) GetMerchantAccountOk() (*string, bool)

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

func (*RecurringToken) GetShopperReference

func (o *RecurringToken) GetShopperReference() string

GetShopperReference returns the ShopperReference field value

func (*RecurringToken) GetShopperReferenceOk

func (o *RecurringToken) GetShopperReferenceOk() (*string, bool)

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

func (*RecurringToken) GetStoredPaymentMethodId

func (o *RecurringToken) GetStoredPaymentMethodId() string

GetStoredPaymentMethodId returns the StoredPaymentMethodId field value

func (*RecurringToken) GetStoredPaymentMethodIdOk

func (o *RecurringToken) GetStoredPaymentMethodIdOk() (*string, bool)

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

func (*RecurringToken) GetType

func (o *RecurringToken) GetType() string

GetType returns the Type field value

func (*RecurringToken) GetTypeOk

func (o *RecurringToken) GetTypeOk() (*string, bool)

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

func (RecurringToken) MarshalJSON

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

func (*RecurringToken) SetMerchantAccount

func (o *RecurringToken) SetMerchantAccount(v string)

SetMerchantAccount sets field value

func (*RecurringToken) SetShopperReference

func (o *RecurringToken) SetShopperReference(v string)

SetShopperReference sets field value

func (*RecurringToken) SetStoredPaymentMethodId

func (o *RecurringToken) SetStoredPaymentMethodId(v string)

SetStoredPaymentMethodId sets field value

func (*RecurringToken) SetType

func (o *RecurringToken) SetType(v string)

SetType sets field value

func (RecurringToken) ToMap

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

type RecurringTokenStoreOperation

type RecurringTokenStoreOperation struct {
	// The identifier of the merchant account related to the event that triggered the webhook.
	MerchantAccount string `json:"merchantAccount"`
	// A text description that provides details about the operation, intended for audit purposes.
	Operation string `json:"operation"`
	// Your unique shopper reference that is associated with the `storedPaymentMethodId`.
	ShopperReference string `json:"shopperReference"`
	// The ID of the token.
	StoredPaymentMethodId string `json:"storedPaymentMethodId"`
	// The type of the payment method.
	Type string `json:"type"`
}

RecurringTokenStoreOperation struct for RecurringTokenStoreOperation

func NewRecurringTokenStoreOperation

func NewRecurringTokenStoreOperation(merchantAccount string, operation string, shopperReference string, storedPaymentMethodId string, type_ string) *RecurringTokenStoreOperation

NewRecurringTokenStoreOperation instantiates a new RecurringTokenStoreOperation 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 NewRecurringTokenStoreOperationWithDefaults

func NewRecurringTokenStoreOperationWithDefaults() *RecurringTokenStoreOperation

NewRecurringTokenStoreOperationWithDefaults instantiates a new RecurringTokenStoreOperation 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 (*RecurringTokenStoreOperation) GetMerchantAccount

func (o *RecurringTokenStoreOperation) GetMerchantAccount() string

GetMerchantAccount returns the MerchantAccount field value

func (*RecurringTokenStoreOperation) GetMerchantAccountOk

func (o *RecurringTokenStoreOperation) GetMerchantAccountOk() (*string, bool)

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

func (*RecurringTokenStoreOperation) GetOperation

func (o *RecurringTokenStoreOperation) GetOperation() string

GetOperation returns the Operation field value

func (*RecurringTokenStoreOperation) GetOperationOk

func (o *RecurringTokenStoreOperation) GetOperationOk() (*string, bool)

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

func (*RecurringTokenStoreOperation) GetShopperReference

func (o *RecurringTokenStoreOperation) GetShopperReference() string

GetShopperReference returns the ShopperReference field value

func (*RecurringTokenStoreOperation) GetShopperReferenceOk

func (o *RecurringTokenStoreOperation) GetShopperReferenceOk() (*string, bool)

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

func (*RecurringTokenStoreOperation) GetStoredPaymentMethodId

func (o *RecurringTokenStoreOperation) GetStoredPaymentMethodId() string

GetStoredPaymentMethodId returns the StoredPaymentMethodId field value

func (*RecurringTokenStoreOperation) GetStoredPaymentMethodIdOk

func (o *RecurringTokenStoreOperation) GetStoredPaymentMethodIdOk() (*string, bool)

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

func (*RecurringTokenStoreOperation) GetType

func (o *RecurringTokenStoreOperation) GetType() string

GetType returns the Type field value

func (*RecurringTokenStoreOperation) GetTypeOk

func (o *RecurringTokenStoreOperation) GetTypeOk() (*string, bool)

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

func (RecurringTokenStoreOperation) MarshalJSON

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

func (*RecurringTokenStoreOperation) SetMerchantAccount

func (o *RecurringTokenStoreOperation) SetMerchantAccount(v string)

SetMerchantAccount sets field value

func (*RecurringTokenStoreOperation) SetOperation

func (o *RecurringTokenStoreOperation) SetOperation(v string)

SetOperation sets field value

func (*RecurringTokenStoreOperation) SetShopperReference

func (o *RecurringTokenStoreOperation) SetShopperReference(v string)

SetShopperReference sets field value

func (*RecurringTokenStoreOperation) SetStoredPaymentMethodId

func (o *RecurringTokenStoreOperation) SetStoredPaymentMethodId(v string)

SetStoredPaymentMethodId sets field value

func (*RecurringTokenStoreOperation) SetType

func (o *RecurringTokenStoreOperation) SetType(v string)

SetType sets field value

func (RecurringTokenStoreOperation) ToMap

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

type TokenizationAlreadyExistingDetailsNotificationRequest

type TokenizationAlreadyExistingDetailsNotificationRequest struct {
	// The date and time when the event happened, in ISO 8601 extended format.
	CreatedAt time.Time                    `json:"createdAt"`
	Data      RecurringTokenStoreOperation `json:"data"`
	// The environment from which the webhook originated.  Possible values: **test**, **live**.
	Environment string `json:"environment"`
	// The PSP reference of the event that triggered the webhook.
	EventId string `json:"eventId"`
	// The type of webhook.
	Type string `json:"type"`
	// The version of this entity.
	Version *string `json:"version,omitempty"`
}

TokenizationAlreadyExistingDetailsNotificationRequest struct for TokenizationAlreadyExistingDetailsNotificationRequest

func NewTokenizationAlreadyExistingDetailsNotificationRequest

func NewTokenizationAlreadyExistingDetailsNotificationRequest(createdAt time.Time, data RecurringTokenStoreOperation, environment string, eventId string, type_ string) *TokenizationAlreadyExistingDetailsNotificationRequest

NewTokenizationAlreadyExistingDetailsNotificationRequest instantiates a new TokenizationAlreadyExistingDetailsNotificationRequest 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 NewTokenizationAlreadyExistingDetailsNotificationRequestWithDefaults

func NewTokenizationAlreadyExistingDetailsNotificationRequestWithDefaults() *TokenizationAlreadyExistingDetailsNotificationRequest

NewTokenizationAlreadyExistingDetailsNotificationRequestWithDefaults instantiates a new TokenizationAlreadyExistingDetailsNotificationRequest 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 (*TokenizationAlreadyExistingDetailsNotificationRequest) GetCreatedAt

GetCreatedAt returns the CreatedAt field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetCreatedAtOk

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

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetData

GetData returns the Data field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetDataOk

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

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetEnvironment

GetEnvironment returns the Environment field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetEnvironmentOk

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

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetEventId

GetEventId returns the EventId field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetEventIdOk

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

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetType

GetType returns the Type field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetTypeOk

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

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetVersion

GetVersion returns the Version field value if set, zero value otherwise.

func (*TokenizationAlreadyExistingDetailsNotificationRequest) GetVersionOk

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

func (*TokenizationAlreadyExistingDetailsNotificationRequest) HasVersion

HasVersion returns a boolean if a field has been set.

func (TokenizationAlreadyExistingDetailsNotificationRequest) MarshalJSON

func (*TokenizationAlreadyExistingDetailsNotificationRequest) SetCreatedAt

SetCreatedAt sets field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) SetData

SetData sets field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) SetEnvironment

SetEnvironment sets field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) SetEventId

SetEventId sets field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) SetType

SetType sets field value

func (*TokenizationAlreadyExistingDetailsNotificationRequest) SetVersion

SetVersion gets a reference to the given string and assigns it to the Version field.

func (TokenizationAlreadyExistingDetailsNotificationRequest) ToMap

type TokenizationCreatedDetailsNotificationRequest

type TokenizationCreatedDetailsNotificationRequest struct {
	// The date and time when the event happened, in ISO 8601 extended format.
	CreatedAt time.Time                    `json:"createdAt"`
	Data      RecurringTokenStoreOperation `json:"data"`
	// The environment from which the webhook originated.  Possible values: **test**, **live**.
	Environment string `json:"environment"`
	// The PSP reference of the event that triggered the webhook.
	EventId string `json:"eventId"`
	// The type of webhook.
	Type string `json:"type"`
	// The version of this entity.
	Version *string `json:"version,omitempty"`
}

TokenizationCreatedDetailsNotificationRequest struct for TokenizationCreatedDetailsNotificationRequest

func NewTokenizationCreatedDetailsNotificationRequest

func NewTokenizationCreatedDetailsNotificationRequest(createdAt time.Time, data RecurringTokenStoreOperation, environment string, eventId string, type_ string) *TokenizationCreatedDetailsNotificationRequest

NewTokenizationCreatedDetailsNotificationRequest instantiates a new TokenizationCreatedDetailsNotificationRequest 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 NewTokenizationCreatedDetailsNotificationRequestWithDefaults

func NewTokenizationCreatedDetailsNotificationRequestWithDefaults() *TokenizationCreatedDetailsNotificationRequest

NewTokenizationCreatedDetailsNotificationRequestWithDefaults instantiates a new TokenizationCreatedDetailsNotificationRequest 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 (*TokenizationCreatedDetailsNotificationRequest) GetCreatedAt

GetCreatedAt returns the CreatedAt field value

func (*TokenizationCreatedDetailsNotificationRequest) GetCreatedAtOk

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

func (*TokenizationCreatedDetailsNotificationRequest) GetData

GetData returns the Data field value

func (*TokenizationCreatedDetailsNotificationRequest) GetDataOk

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

func (*TokenizationCreatedDetailsNotificationRequest) GetEnvironment

GetEnvironment returns the Environment field value

func (*TokenizationCreatedDetailsNotificationRequest) GetEnvironmentOk

func (o *TokenizationCreatedDetailsNotificationRequest) GetEnvironmentOk() (*string, bool)

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

func (*TokenizationCreatedDetailsNotificationRequest) GetEventId

GetEventId returns the EventId field value

func (*TokenizationCreatedDetailsNotificationRequest) GetEventIdOk

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

func (*TokenizationCreatedDetailsNotificationRequest) GetType

GetType returns the Type field value

func (*TokenizationCreatedDetailsNotificationRequest) GetTypeOk

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

func (*TokenizationCreatedDetailsNotificationRequest) GetVersion

GetVersion returns the Version field value if set, zero value otherwise.

func (*TokenizationCreatedDetailsNotificationRequest) GetVersionOk

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

func (*TokenizationCreatedDetailsNotificationRequest) HasVersion

HasVersion returns a boolean if a field has been set.

func (TokenizationCreatedDetailsNotificationRequest) MarshalJSON

func (*TokenizationCreatedDetailsNotificationRequest) SetCreatedAt

SetCreatedAt sets field value

func (*TokenizationCreatedDetailsNotificationRequest) SetData

SetData sets field value

func (*TokenizationCreatedDetailsNotificationRequest) SetEnvironment

SetEnvironment sets field value

func (*TokenizationCreatedDetailsNotificationRequest) SetEventId

SetEventId sets field value

func (*TokenizationCreatedDetailsNotificationRequest) SetType

SetType sets field value

func (*TokenizationCreatedDetailsNotificationRequest) SetVersion

SetVersion gets a reference to the given string and assigns it to the Version field.

func (TokenizationCreatedDetailsNotificationRequest) ToMap

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

type TokenizationDisabledDetailsNotificationRequest

type TokenizationDisabledDetailsNotificationRequest struct {
	// The date and time when the event happened, in ISO 8601 extended format.
	CreatedAt time.Time      `json:"createdAt"`
	Data      RecurringToken `json:"data"`
	// The environment from which the webhook originated.  Possible values: **test**, **live**.
	Environment string `json:"environment"`
	// The PSP reference of the event that triggered the webhook.
	EventId string `json:"eventId"`
	// The type of webhook.
	Type string `json:"type"`
	// The version of this entity.
	Version *string `json:"version,omitempty"`
}

TokenizationDisabledDetailsNotificationRequest struct for TokenizationDisabledDetailsNotificationRequest

func NewTokenizationDisabledDetailsNotificationRequest

func NewTokenizationDisabledDetailsNotificationRequest(createdAt time.Time, data RecurringToken, environment string, eventId string, type_ string) *TokenizationDisabledDetailsNotificationRequest

NewTokenizationDisabledDetailsNotificationRequest instantiates a new TokenizationDisabledDetailsNotificationRequest 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 NewTokenizationDisabledDetailsNotificationRequestWithDefaults

func NewTokenizationDisabledDetailsNotificationRequestWithDefaults() *TokenizationDisabledDetailsNotificationRequest

NewTokenizationDisabledDetailsNotificationRequestWithDefaults instantiates a new TokenizationDisabledDetailsNotificationRequest 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 (*TokenizationDisabledDetailsNotificationRequest) GetCreatedAt

GetCreatedAt returns the CreatedAt field value

func (*TokenizationDisabledDetailsNotificationRequest) GetCreatedAtOk

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

func (*TokenizationDisabledDetailsNotificationRequest) GetData

GetData returns the Data field value

func (*TokenizationDisabledDetailsNotificationRequest) GetDataOk

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

func (*TokenizationDisabledDetailsNotificationRequest) GetEnvironment

GetEnvironment returns the Environment field value

func (*TokenizationDisabledDetailsNotificationRequest) GetEnvironmentOk

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

func (*TokenizationDisabledDetailsNotificationRequest) GetEventId

GetEventId returns the EventId field value

func (*TokenizationDisabledDetailsNotificationRequest) GetEventIdOk

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

func (*TokenizationDisabledDetailsNotificationRequest) GetType

GetType returns the Type field value

func (*TokenizationDisabledDetailsNotificationRequest) GetTypeOk

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

func (*TokenizationDisabledDetailsNotificationRequest) GetVersion

GetVersion returns the Version field value if set, zero value otherwise.

func (*TokenizationDisabledDetailsNotificationRequest) GetVersionOk

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

func (*TokenizationDisabledDetailsNotificationRequest) HasVersion

HasVersion returns a boolean if a field has been set.

func (TokenizationDisabledDetailsNotificationRequest) MarshalJSON

func (*TokenizationDisabledDetailsNotificationRequest) SetCreatedAt

SetCreatedAt sets field value

func (*TokenizationDisabledDetailsNotificationRequest) SetData

SetData sets field value

func (*TokenizationDisabledDetailsNotificationRequest) SetEnvironment

SetEnvironment sets field value

func (*TokenizationDisabledDetailsNotificationRequest) SetEventId

SetEventId sets field value

func (*TokenizationDisabledDetailsNotificationRequest) SetType

SetType sets field value

func (*TokenizationDisabledDetailsNotificationRequest) SetVersion

SetVersion gets a reference to the given string and assigns it to the Version field.

func (TokenizationDisabledDetailsNotificationRequest) ToMap

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

type TokenizationNotificationResponse

type TokenizationNotificationResponse struct {
	// Respond with any **2xx** HTTP status code to [accept the webhook](https://docs.adyen.com/development-resources/webhooks/#accept-webhooks).
	NotificationResponse *string `json:"notificationResponse,omitempty"`
}

TokenizationNotificationResponse struct for TokenizationNotificationResponse

func NewTokenizationNotificationResponse

func NewTokenizationNotificationResponse() *TokenizationNotificationResponse

NewTokenizationNotificationResponse instantiates a new TokenizationNotificationResponse 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 NewTokenizationNotificationResponseWithDefaults

func NewTokenizationNotificationResponseWithDefaults() *TokenizationNotificationResponse

NewTokenizationNotificationResponseWithDefaults instantiates a new TokenizationNotificationResponse 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 (*TokenizationNotificationResponse) GetNotificationResponse

func (o *TokenizationNotificationResponse) GetNotificationResponse() string

GetNotificationResponse returns the NotificationResponse field value if set, zero value otherwise.

func (*TokenizationNotificationResponse) GetNotificationResponseOk

func (o *TokenizationNotificationResponse) GetNotificationResponseOk() (*string, bool)

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

func (*TokenizationNotificationResponse) HasNotificationResponse

func (o *TokenizationNotificationResponse) HasNotificationResponse() bool

HasNotificationResponse returns a boolean if a field has been set.

func (TokenizationNotificationResponse) MarshalJSON

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

func (*TokenizationNotificationResponse) SetNotificationResponse

func (o *TokenizationNotificationResponse) SetNotificationResponse(v string)

SetNotificationResponse gets a reference to the given string and assigns it to the NotificationResponse field.

func (TokenizationNotificationResponse) ToMap

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

type TokenizationUpdatedDetailsNotificationRequest

type TokenizationUpdatedDetailsNotificationRequest struct {
	// The date and time when the event happened, in ISO 8601 extended format.
	CreatedAt time.Time                    `json:"createdAt"`
	Data      RecurringTokenStoreOperation `json:"data"`
	// The environment from which the webhook originated.  Possible values: **test**, **live**.
	Environment string `json:"environment"`
	// The PSP reference of the event that triggered the webhook.
	EventId string `json:"eventId"`
	// The type of webhook.
	Type string `json:"type"`
	// The version of this entity.
	Version *string `json:"version,omitempty"`
}

TokenizationUpdatedDetailsNotificationRequest struct for TokenizationUpdatedDetailsNotificationRequest

func NewTokenizationUpdatedDetailsNotificationRequest

func NewTokenizationUpdatedDetailsNotificationRequest(createdAt time.Time, data RecurringTokenStoreOperation, environment string, eventId string, type_ string) *TokenizationUpdatedDetailsNotificationRequest

NewTokenizationUpdatedDetailsNotificationRequest instantiates a new TokenizationUpdatedDetailsNotificationRequest 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 NewTokenizationUpdatedDetailsNotificationRequestWithDefaults

func NewTokenizationUpdatedDetailsNotificationRequestWithDefaults() *TokenizationUpdatedDetailsNotificationRequest

NewTokenizationUpdatedDetailsNotificationRequestWithDefaults instantiates a new TokenizationUpdatedDetailsNotificationRequest 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 (*TokenizationUpdatedDetailsNotificationRequest) GetCreatedAt

GetCreatedAt returns the CreatedAt field value

func (*TokenizationUpdatedDetailsNotificationRequest) GetCreatedAtOk

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

func (*TokenizationUpdatedDetailsNotificationRequest) GetData

GetData returns the Data field value

func (*TokenizationUpdatedDetailsNotificationRequest) GetDataOk

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

func (*TokenizationUpdatedDetailsNotificationRequest) GetEnvironment

GetEnvironment returns the Environment field value

func (*TokenizationUpdatedDetailsNotificationRequest) GetEnvironmentOk

func (o *TokenizationUpdatedDetailsNotificationRequest) GetEnvironmentOk() (*string, bool)

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

func (*TokenizationUpdatedDetailsNotificationRequest) GetEventId

GetEventId returns the EventId field value

func (*TokenizationUpdatedDetailsNotificationRequest) GetEventIdOk

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

func (*TokenizationUpdatedDetailsNotificationRequest) GetType

GetType returns the Type field value

func (*TokenizationUpdatedDetailsNotificationRequest) GetTypeOk

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

func (*TokenizationUpdatedDetailsNotificationRequest) GetVersion

GetVersion returns the Version field value if set, zero value otherwise.

func (*TokenizationUpdatedDetailsNotificationRequest) GetVersionOk

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

func (*TokenizationUpdatedDetailsNotificationRequest) HasVersion

HasVersion returns a boolean if a field has been set.

func (TokenizationUpdatedDetailsNotificationRequest) MarshalJSON

func (*TokenizationUpdatedDetailsNotificationRequest) SetCreatedAt

SetCreatedAt sets field value

func (*TokenizationUpdatedDetailsNotificationRequest) SetData

SetData sets field value

func (*TokenizationUpdatedDetailsNotificationRequest) SetEnvironment

SetEnvironment sets field value

func (*TokenizationUpdatedDetailsNotificationRequest) SetEventId

SetEventId sets field value

func (*TokenizationUpdatedDetailsNotificationRequest) SetType

SetType sets field value

func (*TokenizationUpdatedDetailsNotificationRequest) SetVersion

SetVersion gets a reference to the given string and assigns it to the Version field.

func (TokenizationUpdatedDetailsNotificationRequest) ToMap

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

Jump to

Keyboard shortcuts

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