nordigen

package module
v0.0.0-...-1b03dac Latest Latest
Warning

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

Go to latest
Published: May 15, 2022 License: MIT Imports: 22 Imported by: 0

README

Go API client for Nordigen

API client for Nordigen, automatically generated by OpenAPI Generator.

The source OpenAPI spec was modified slightly to fix type and enum issues, as the source schema file deviates from OpenAPI spec a bit. The modified schema file can be found in /api.

import nordigen "github.com/joshuaslate/nordigen-go"

Sample usage:

config := nordigen.NewConfiguration()
c := nordigen.NewAPIClient(nil, "secretIdHere", "secretKeyHere")
institutions, _, err := c.InstitutionsApi.RetrieveAllSupportedInstitutionsInAGivenCountry(context.Background()).Country("ES").Execute()

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

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

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

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

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

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedAccountV2StatusEnumEnumValues = []AccountV2StatusEnum{
	"READY",
	"EXPIRED",
	"DISCOVERED",
	"PROCESSING",
	"ERROR",
	"SUSPENDED",
}

All allowed values of AccountV2StatusEnum enum

View Source
var AllowedCashAccountTypeEnumValues = []CashAccountType{
	"CACC",
	"CARD",
	"CASH",
	"CHAR",
	"CISH",
	"COMM",
	"CPAC",
	"LLSV",
	"LOAN",
	"MGLD",
	"MOMA",
	"NREX",
	"ODFT",
	"ONDP",
	"OTHR",
	"SACC",
	"SLRY",
	"SVGS",
	"TAXE",
	"TRAN",
	"SABS",
	"TRAS",
}

All allowed values of CashAccountType enum

View Source
var AllowedCountryEnumEnumValues = []CountryEnum{}/* 249 elements not displayed */

All allowed values of CountryEnum enum

View Source
var AllowedStatus1c5EnumCreatedEnumValues = []Status1c5EnumCreated{
	"CR",
	"CREATED",
}

All allowed values of Status1c5EnumCreated enum

View Source
var AllowedStatus1c5EnumExpiredEnumValues = []Status1c5EnumExpired{
	"EX",
	"EXPIRED",
}

All allowed values of Status1c5EnumExpired enum

View Source
var AllowedStatus1c5EnumGivingConsentEnumValues = []Status1c5EnumGivingConsent{
	"GC",
	"GIVING_CONSENT",
}

All allowed values of Status1c5EnumGivingConsent enum

View Source
var AllowedStatus1c5EnumGrantingAccessEnumValues = []Status1c5EnumGrantingAccess{
	"GA",
	"GRANTING_ACCESS",
}

All allowed values of Status1c5EnumGrantingAccess enum

View Source
var AllowedStatus1c5EnumLinkedEnumValues = []Status1c5EnumLinked{
	"LN",
	"LINKED",
}

All allowed values of Status1c5EnumLinked enum

View Source
var AllowedStatus1c5EnumRejectedEnumValues = []Status1c5EnumRejected{
	"RJ",
	"REJECTED",
}

All allowed values of Status1c5EnumRejected enum

View Source
var AllowedStatus1c5EnumSelectingAccountsEnumValues = []Status1c5EnumSelectingAccounts{
	"SA",
	"SELECTING_ACCOUNTS",
}

All allowed values of Status1c5EnumSelectingAccounts enum

View Source
var AllowedStatus1c5EnumUndergoingAuthenticationEnumValues = []Status1c5EnumUndergoingAuthentication{
	"UA",
	"UNDERGOING_AUTHENTICATION",
}

All allowed values of Status1c5EnumUndergoingAuthentication enum

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	AccountsApi *AccountsApiService

	AgreementsApi *AgreementsApiService

	InstitutionsApi *InstitutionsApiService

	PremiumApi *PremiumApiService

	RequisitionsApi *RequisitionsApiService

	TokenApi *TokenApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Nordigen Account Information Services API API v2.0 (v2) In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration, secretID string, secretKey string) *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 AccountBalance

type AccountBalance struct {
	BalanceAmount *AccountBalanceBalanceAmount `json:"balanceAmount,omitempty"`
	BalanceType   *string                      `json:"balanceType,omitempty"`
	ReferenceDate *string                      `json:"referenceDate,omitempty"`
	// A flag indicating if the credit limit of the corresponding account is included in the calculation of the balance, where applicable.
	CreditLimitIncluded NullableBool `json:"creditLimitIncluded,omitempty"`
}

AccountBalance Account balance details

func NewAccountBalance

func NewAccountBalance() *AccountBalance

NewAccountBalance instantiates a new AccountBalance 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 NewAccountBalanceWithDefaults

func NewAccountBalanceWithDefaults() *AccountBalance

NewAccountBalanceWithDefaults instantiates a new AccountBalance 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 (*AccountBalance) GetBalanceAmount

func (o *AccountBalance) GetBalanceAmount() AccountBalanceBalanceAmount

GetBalanceAmount returns the BalanceAmount field value if set, zero value otherwise.

func (*AccountBalance) GetBalanceAmountOk

func (o *AccountBalance) GetBalanceAmountOk() (*AccountBalanceBalanceAmount, bool)

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

func (*AccountBalance) GetBalanceType

func (o *AccountBalance) GetBalanceType() string

GetBalanceType returns the BalanceType field value if set, zero value otherwise.

func (*AccountBalance) GetBalanceTypeOk

func (o *AccountBalance) GetBalanceTypeOk() (*string, bool)

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

func (*AccountBalance) GetCreditLimitIncluded

func (o *AccountBalance) GetCreditLimitIncluded() bool

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

func (*AccountBalance) GetCreditLimitIncludedOk

func (o *AccountBalance) GetCreditLimitIncludedOk() (*bool, bool)

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

func (*AccountBalance) GetReferenceDate

func (o *AccountBalance) GetReferenceDate() string

GetReferenceDate returns the ReferenceDate field value if set, zero value otherwise.

func (*AccountBalance) GetReferenceDateOk

func (o *AccountBalance) GetReferenceDateOk() (*string, bool)

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

func (*AccountBalance) HasBalanceAmount

func (o *AccountBalance) HasBalanceAmount() bool

HasBalanceAmount returns a boolean if a field has been set.

func (*AccountBalance) HasBalanceType

func (o *AccountBalance) HasBalanceType() bool

HasBalanceType returns a boolean if a field has been set.

func (*AccountBalance) HasCreditLimitIncluded

func (o *AccountBalance) HasCreditLimitIncluded() bool

HasCreditLimitIncluded returns a boolean if a field has been set.

func (*AccountBalance) HasReferenceDate

func (o *AccountBalance) HasReferenceDate() bool

HasReferenceDate returns a boolean if a field has been set.

func (AccountBalance) MarshalJSON

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

func (*AccountBalance) SetBalanceAmount

func (o *AccountBalance) SetBalanceAmount(v AccountBalanceBalanceAmount)

SetBalanceAmount gets a reference to the given AccountBalanceBalanceAmount and assigns it to the BalanceAmount field.

func (*AccountBalance) SetBalanceType

func (o *AccountBalance) SetBalanceType(v string)

SetBalanceType gets a reference to the given string and assigns it to the BalanceType field.

func (*AccountBalance) SetCreditLimitIncluded

func (o *AccountBalance) SetCreditLimitIncluded(v bool)

SetCreditLimitIncluded gets a reference to the given NullableBool and assigns it to the CreditLimitIncluded field.

func (*AccountBalance) SetCreditLimitIncludedNil

func (o *AccountBalance) SetCreditLimitIncludedNil()

SetCreditLimitIncludedNil sets the value for CreditLimitIncluded to be an explicit nil

func (*AccountBalance) SetReferenceDate

func (o *AccountBalance) SetReferenceDate(v string)

SetReferenceDate gets a reference to the given string and assigns it to the ReferenceDate field.

func (*AccountBalance) UnsetCreditLimitIncluded

func (o *AccountBalance) UnsetCreditLimitIncluded()

UnsetCreditLimitIncluded ensures that no value is present for CreditLimitIncluded, not even an explicit nil

type AccountBalanceBalanceAmount

type AccountBalanceBalanceAmount struct {
	Amount   *string `json:"amount,omitempty"`
	Currency *string `json:"currency,omitempty"`
}

AccountBalanceBalanceAmount struct for AccountBalanceBalanceAmount

func NewAccountBalanceBalanceAmount

func NewAccountBalanceBalanceAmount() *AccountBalanceBalanceAmount

NewAccountBalanceBalanceAmount instantiates a new AccountBalanceBalanceAmount 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 NewAccountBalanceBalanceAmountWithDefaults

func NewAccountBalanceBalanceAmountWithDefaults() *AccountBalanceBalanceAmount

NewAccountBalanceBalanceAmountWithDefaults instantiates a new AccountBalanceBalanceAmount 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 (*AccountBalanceBalanceAmount) GetAmount

func (o *AccountBalanceBalanceAmount) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*AccountBalanceBalanceAmount) GetAmountOk

func (o *AccountBalanceBalanceAmount) GetAmountOk() (*string, bool)

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

func (*AccountBalanceBalanceAmount) GetCurrency

func (o *AccountBalanceBalanceAmount) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*AccountBalanceBalanceAmount) GetCurrencyOk

func (o *AccountBalanceBalanceAmount) GetCurrencyOk() (*string, bool)

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

func (*AccountBalanceBalanceAmount) HasAmount

func (o *AccountBalanceBalanceAmount) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*AccountBalanceBalanceAmount) HasCurrency

func (o *AccountBalanceBalanceAmount) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (AccountBalanceBalanceAmount) MarshalJSON

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

func (*AccountBalanceBalanceAmount) SetAmount

func (o *AccountBalanceBalanceAmount) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*AccountBalanceBalanceAmount) SetCurrency

func (o *AccountBalanceBalanceAmount) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

type AccountBalancesResponse

type AccountBalancesResponse struct {
	// Account balances
	Balances []AccountBalance `json:"balances,omitempty"`
}

AccountBalancesResponse struct for AccountBalancesResponse

func NewAccountBalancesResponse

func NewAccountBalancesResponse() *AccountBalancesResponse

NewAccountBalancesResponse instantiates a new AccountBalancesResponse 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 NewAccountBalancesResponseWithDefaults

func NewAccountBalancesResponseWithDefaults() *AccountBalancesResponse

NewAccountBalancesResponseWithDefaults instantiates a new AccountBalancesResponse 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 (*AccountBalancesResponse) GetBalances

func (o *AccountBalancesResponse) GetBalances() []AccountBalance

GetBalances returns the Balances field value if set, zero value otherwise.

func (*AccountBalancesResponse) GetBalancesOk

func (o *AccountBalancesResponse) GetBalancesOk() ([]AccountBalance, bool)

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

func (*AccountBalancesResponse) HasBalances

func (o *AccountBalancesResponse) HasBalances() bool

HasBalances returns a boolean if a field has been set.

func (AccountBalancesResponse) MarshalJSON

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

func (*AccountBalancesResponse) SetBalances

func (o *AccountBalancesResponse) SetBalances(v []AccountBalance)

SetBalances gets a reference to the given []AccountBalance and assigns it to the Balances field.

type AccountDetail

type AccountDetail struct {
	ResourceId *string        `json:"resourceId,omitempty"`
	Iban       NullableString `json:"iban,omitempty"`
	// This data element is used for payment accounts which have no IBAN
	Bban NullableString `json:"bban,omitempty"`
	// The BIC associated to the account.
	Bic NullableString `json:"bic,omitempty"`
	// Specifications that might be provided by the financial institution
	Details   NullableString `json:"details,omitempty"`
	Currency  *string        `json:"currency,omitempty"`
	OwnerName NullableString `json:"ownerName,omitempty"`
	// Address of the legal account owner
	OwnerAddressUnstructured NullableString `json:"ownerAddressUnstructured,omitempty"`
	// Name of the account, as assigned by the financial institution
	Name NullableString `json:"name,omitempty"`
	// Name of the account as defined by the end user within online channels
	DisplayName NullableString `json:"displayName,omitempty"`
	// This data attribute is a field, where an financial institution can name a cash account associated to pending card transactions.
	LinkedAccounts NullableString `json:"linkedAccounts,omitempty"`
	// An alias to a payment account via a registered mobile phone number
	Msisdn          NullableString          `json:"msisdn,omitempty"`
	Product         NullableString          `json:"product,omitempty"`
	Status          NullableString          `json:"status,omitempty"`
	Usage           NullableString          `json:"usage,omitempty"`
	CashAccountType NullableCashAccountType `json:"cashAccountType,omitempty"`
}

AccountDetail struct for AccountDetail

func NewAccountDetail

func NewAccountDetail() *AccountDetail

NewAccountDetail instantiates a new AccountDetail 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 NewAccountDetailWithDefaults

func NewAccountDetailWithDefaults() *AccountDetail

NewAccountDetailWithDefaults instantiates a new AccountDetail 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 (*AccountDetail) GetBban

func (o *AccountDetail) GetBban() string

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

func (*AccountDetail) GetBbanOk

func (o *AccountDetail) GetBbanOk() (*string, bool)

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

func (*AccountDetail) GetBic

func (o *AccountDetail) GetBic() string

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

func (*AccountDetail) GetBicOk

func (o *AccountDetail) GetBicOk() (*string, bool)

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

func (*AccountDetail) GetCashAccountType

func (o *AccountDetail) GetCashAccountType() CashAccountType

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

func (*AccountDetail) GetCashAccountTypeOk

func (o *AccountDetail) GetCashAccountTypeOk() (*CashAccountType, bool)

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

func (*AccountDetail) GetCurrency

func (o *AccountDetail) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*AccountDetail) GetCurrencyOk

func (o *AccountDetail) GetCurrencyOk() (*string, bool)

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

func (*AccountDetail) GetDetails

func (o *AccountDetail) GetDetails() string

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

func (*AccountDetail) GetDetailsOk

func (o *AccountDetail) GetDetailsOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AccountDetail) GetDisplayName

func (o *AccountDetail) GetDisplayName() string

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

func (*AccountDetail) GetDisplayNameOk

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

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

func (*AccountDetail) GetIban

func (o *AccountDetail) GetIban() string

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

func (*AccountDetail) GetIbanOk

func (o *AccountDetail) GetIbanOk() (*string, bool)

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

func (*AccountDetail) GetLinkedAccounts

func (o *AccountDetail) GetLinkedAccounts() string

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

func (*AccountDetail) GetLinkedAccountsOk

func (o *AccountDetail) GetLinkedAccountsOk() (*string, bool)

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

func (*AccountDetail) GetMsisdn

func (o *AccountDetail) GetMsisdn() string

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

func (*AccountDetail) GetMsisdnOk

func (o *AccountDetail) GetMsisdnOk() (*string, bool)

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

func (*AccountDetail) GetName

func (o *AccountDetail) GetName() string

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

func (*AccountDetail) GetNameOk

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

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

func (*AccountDetail) GetOwnerAddressUnstructured

func (o *AccountDetail) GetOwnerAddressUnstructured() string

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

func (*AccountDetail) GetOwnerAddressUnstructuredOk

func (o *AccountDetail) GetOwnerAddressUnstructuredOk() (*string, bool)

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

func (*AccountDetail) GetOwnerName

func (o *AccountDetail) GetOwnerName() string

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

func (*AccountDetail) GetOwnerNameOk

func (o *AccountDetail) GetOwnerNameOk() (*string, bool)

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

func (*AccountDetail) GetProduct

func (o *AccountDetail) GetProduct() string

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

func (*AccountDetail) GetProductOk

func (o *AccountDetail) GetProductOk() (*string, bool)

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

func (*AccountDetail) GetResourceId

func (o *AccountDetail) GetResourceId() string

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*AccountDetail) GetResourceIdOk

func (o *AccountDetail) GetResourceIdOk() (*string, bool)

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

func (*AccountDetail) GetStatus

func (o *AccountDetail) GetStatus() string

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

func (*AccountDetail) GetStatusOk

func (o *AccountDetail) GetStatusOk() (*string, bool)

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

func (*AccountDetail) GetUsage

func (o *AccountDetail) GetUsage() string

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

func (*AccountDetail) GetUsageOk

func (o *AccountDetail) GetUsageOk() (*string, bool)

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

func (*AccountDetail) HasBban

func (o *AccountDetail) HasBban() bool

HasBban returns a boolean if a field has been set.

func (*AccountDetail) HasBic

func (o *AccountDetail) HasBic() bool

HasBic returns a boolean if a field has been set.

func (*AccountDetail) HasCashAccountType

func (o *AccountDetail) HasCashAccountType() bool

HasCashAccountType returns a boolean if a field has been set.

func (*AccountDetail) HasCurrency

func (o *AccountDetail) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*AccountDetail) HasDetails

func (o *AccountDetail) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*AccountDetail) HasDisplayName

func (o *AccountDetail) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*AccountDetail) HasIban

func (o *AccountDetail) HasIban() bool

HasIban returns a boolean if a field has been set.

func (*AccountDetail) HasLinkedAccounts

func (o *AccountDetail) HasLinkedAccounts() bool

HasLinkedAccounts returns a boolean if a field has been set.

func (*AccountDetail) HasMsisdn

func (o *AccountDetail) HasMsisdn() bool

HasMsisdn returns a boolean if a field has been set.

func (*AccountDetail) HasName

func (o *AccountDetail) HasName() bool

HasName returns a boolean if a field has been set.

func (*AccountDetail) HasOwnerAddressUnstructured

func (o *AccountDetail) HasOwnerAddressUnstructured() bool

HasOwnerAddressUnstructured returns a boolean if a field has been set.

func (*AccountDetail) HasOwnerName

func (o *AccountDetail) HasOwnerName() bool

HasOwnerName returns a boolean if a field has been set.

func (*AccountDetail) HasProduct

func (o *AccountDetail) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*AccountDetail) HasResourceId

func (o *AccountDetail) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*AccountDetail) HasStatus

func (o *AccountDetail) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*AccountDetail) HasUsage

func (o *AccountDetail) HasUsage() bool

HasUsage returns a boolean if a field has been set.

func (AccountDetail) MarshalJSON

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

func (*AccountDetail) SetBban

func (o *AccountDetail) SetBban(v string)

SetBban gets a reference to the given NullableString and assigns it to the Bban field.

func (*AccountDetail) SetBbanNil

func (o *AccountDetail) SetBbanNil()

SetBbanNil sets the value for Bban to be an explicit nil

func (*AccountDetail) SetBic

func (o *AccountDetail) SetBic(v string)

SetBic gets a reference to the given NullableString and assigns it to the Bic field.

func (*AccountDetail) SetBicNil

func (o *AccountDetail) SetBicNil()

SetBicNil sets the value for Bic to be an explicit nil

func (*AccountDetail) SetCashAccountType

func (o *AccountDetail) SetCashAccountType(v CashAccountType)

SetCashAccountType gets a reference to the given NullableCashAccountType and assigns it to the CashAccountType field.

func (*AccountDetail) SetCashAccountTypeNil

func (o *AccountDetail) SetCashAccountTypeNil()

SetCashAccountTypeNil sets the value for CashAccountType to be an explicit nil

func (*AccountDetail) SetCurrency

func (o *AccountDetail) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*AccountDetail) SetDetails

func (o *AccountDetail) SetDetails(v string)

SetDetails gets a reference to the given NullableString and assigns it to the Details field.

func (*AccountDetail) SetDetailsNil

func (o *AccountDetail) SetDetailsNil()

SetDetailsNil sets the value for Details to be an explicit nil

func (*AccountDetail) SetDisplayName

func (o *AccountDetail) SetDisplayName(v string)

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

func (*AccountDetail) SetDisplayNameNil

func (o *AccountDetail) SetDisplayNameNil()

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

func (*AccountDetail) SetIban

func (o *AccountDetail) SetIban(v string)

SetIban gets a reference to the given NullableString and assigns it to the Iban field.

func (*AccountDetail) SetIbanNil

func (o *AccountDetail) SetIbanNil()

SetIbanNil sets the value for Iban to be an explicit nil

func (*AccountDetail) SetLinkedAccounts

func (o *AccountDetail) SetLinkedAccounts(v string)

SetLinkedAccounts gets a reference to the given NullableString and assigns it to the LinkedAccounts field.

func (*AccountDetail) SetLinkedAccountsNil

func (o *AccountDetail) SetLinkedAccountsNil()

SetLinkedAccountsNil sets the value for LinkedAccounts to be an explicit nil

func (*AccountDetail) SetMsisdn

func (o *AccountDetail) SetMsisdn(v string)

SetMsisdn gets a reference to the given NullableString and assigns it to the Msisdn field.

func (*AccountDetail) SetMsisdnNil

func (o *AccountDetail) SetMsisdnNil()

SetMsisdnNil sets the value for Msisdn to be an explicit nil

func (*AccountDetail) SetName

func (o *AccountDetail) SetName(v string)

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

func (*AccountDetail) SetNameNil

func (o *AccountDetail) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AccountDetail) SetOwnerAddressUnstructured

func (o *AccountDetail) SetOwnerAddressUnstructured(v string)

SetOwnerAddressUnstructured gets a reference to the given NullableString and assigns it to the OwnerAddressUnstructured field.

func (*AccountDetail) SetOwnerAddressUnstructuredNil

func (o *AccountDetail) SetOwnerAddressUnstructuredNil()

SetOwnerAddressUnstructuredNil sets the value for OwnerAddressUnstructured to be an explicit nil

func (*AccountDetail) SetOwnerName

func (o *AccountDetail) SetOwnerName(v string)

SetOwnerName gets a reference to the given NullableString and assigns it to the OwnerName field.

func (*AccountDetail) SetOwnerNameNil

func (o *AccountDetail) SetOwnerNameNil()

SetOwnerNameNil sets the value for OwnerName to be an explicit nil

func (*AccountDetail) SetProduct

func (o *AccountDetail) SetProduct(v string)

SetProduct gets a reference to the given NullableString and assigns it to the Product field.

func (*AccountDetail) SetProductNil

func (o *AccountDetail) SetProductNil()

SetProductNil sets the value for Product to be an explicit nil

func (*AccountDetail) SetResourceId

func (o *AccountDetail) SetResourceId(v string)

SetResourceId gets a reference to the given string and assigns it to the ResourceId field.

func (*AccountDetail) SetStatus

func (o *AccountDetail) SetStatus(v string)

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

func (*AccountDetail) SetStatusNil

func (o *AccountDetail) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*AccountDetail) SetUsage

func (o *AccountDetail) SetUsage(v string)

SetUsage gets a reference to the given NullableString and assigns it to the Usage field.

func (*AccountDetail) SetUsageNil

func (o *AccountDetail) SetUsageNil()

SetUsageNil sets the value for Usage to be an explicit nil

func (*AccountDetail) UnsetBban

func (o *AccountDetail) UnsetBban()

UnsetBban ensures that no value is present for Bban, not even an explicit nil

func (*AccountDetail) UnsetBic

func (o *AccountDetail) UnsetBic()

UnsetBic ensures that no value is present for Bic, not even an explicit nil

func (*AccountDetail) UnsetCashAccountType

func (o *AccountDetail) UnsetCashAccountType()

UnsetCashAccountType ensures that no value is present for CashAccountType, not even an explicit nil

func (*AccountDetail) UnsetDetails

func (o *AccountDetail) UnsetDetails()

UnsetDetails ensures that no value is present for Details, not even an explicit nil

func (*AccountDetail) UnsetDisplayName

func (o *AccountDetail) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

func (*AccountDetail) UnsetIban

func (o *AccountDetail) UnsetIban()

UnsetIban ensures that no value is present for Iban, not even an explicit nil

func (*AccountDetail) UnsetLinkedAccounts

func (o *AccountDetail) UnsetLinkedAccounts()

UnsetLinkedAccounts ensures that no value is present for LinkedAccounts, not even an explicit nil

func (*AccountDetail) UnsetMsisdn

func (o *AccountDetail) UnsetMsisdn()

UnsetMsisdn ensures that no value is present for Msisdn, not even an explicit nil

func (*AccountDetail) UnsetName

func (o *AccountDetail) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*AccountDetail) UnsetOwnerAddressUnstructured

func (o *AccountDetail) UnsetOwnerAddressUnstructured()

UnsetOwnerAddressUnstructured ensures that no value is present for OwnerAddressUnstructured, not even an explicit nil

func (*AccountDetail) UnsetOwnerName

func (o *AccountDetail) UnsetOwnerName()

UnsetOwnerName ensures that no value is present for OwnerName, not even an explicit nil

func (*AccountDetail) UnsetProduct

func (o *AccountDetail) UnsetProduct()

UnsetProduct ensures that no value is present for Product, not even an explicit nil

func (*AccountDetail) UnsetStatus

func (o *AccountDetail) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*AccountDetail) UnsetUsage

func (o *AccountDetail) UnsetUsage()

UnsetUsage ensures that no value is present for Usage, not even an explicit nil

type AccountDetailResponse

type AccountDetailResponse struct {
	Account *AccountDetail `json:"account,omitempty"`
}

AccountDetailResponse struct for AccountDetailResponse

func NewAccountDetailResponse

func NewAccountDetailResponse() *AccountDetailResponse

NewAccountDetailResponse instantiates a new AccountDetailResponse 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 NewAccountDetailResponseWithDefaults

func NewAccountDetailResponseWithDefaults() *AccountDetailResponse

NewAccountDetailResponseWithDefaults instantiates a new AccountDetailResponse 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 (*AccountDetailResponse) GetAccount

func (o *AccountDetailResponse) GetAccount() AccountDetail

GetAccount returns the Account field value if set, zero value otherwise.

func (*AccountDetailResponse) GetAccountOk

func (o *AccountDetailResponse) GetAccountOk() (*AccountDetail, bool)

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

func (*AccountDetailResponse) HasAccount

func (o *AccountDetailResponse) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (AccountDetailResponse) MarshalJSON

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

func (*AccountDetailResponse) SetAccount

func (o *AccountDetailResponse) SetAccount(v AccountDetail)

SetAccount gets a reference to the given AccountDetail and assigns it to the Account field.

type AccountTransaction

type AccountTransaction struct {
	TransactionId                     *string                              `json:"transactionId,omitempty"`
	EntryReference                    *string                              `json:"entryReference,omitempty"`
	CheckId                           *string                              `json:"checkId,omitempty"`
	CreditorId                        *string                              `json:"creditorId,omitempty"`
	CreditorName                      *string                              `json:"creditorName,omitempty"`
	CreditorAccount                   *AccountTransactionCreditorAccount   `json:"creditorAccount,omitempty"`
	DebtorName                        *string                              `json:"debtorName,omitempty"`
	DebtorAccount                     *AccountTransactionDebtorAccount     `json:"debtorAccount,omitempty"`
	TransactionAmount                 *AccountTransactionTransactionAmount `json:"transactionAmount,omitempty"`
	BankTransactionCode               *string                              `json:"bankTransactionCode,omitempty"`
	BookingDate                       *string                              `json:"bookingDate,omitempty"`
	ValueDate                         *string                              `json:"valueDate,omitempty"`
	MandateId                         *string                              `json:"mandateId,omitempty"`
	PurposeCode                       *string                              `json:"purposeCode,omitempty"`
	RemittanceInformationUnstructured *string                              `json:"remittanceInformationUnstructured,omitempty"`
	AdditionalInformation             *string                              `json:"additionalInformation,omitempty"`
	ProprietaryBankTransactionCode    *string                              `json:"proprietaryBankTransactionCode,omitempty"`
	UltimateCreditor                  *string                              `json:"ultimateCreditor,omitempty"`
	UltimateDebtor                    *string                              `json:"ultimateDebtor,omitempty"`
}

AccountTransaction struct for AccountTransaction

func NewAccountTransaction

func NewAccountTransaction() *AccountTransaction

NewAccountTransaction instantiates a new AccountTransaction 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 NewAccountTransactionWithDefaults

func NewAccountTransactionWithDefaults() *AccountTransaction

NewAccountTransactionWithDefaults instantiates a new AccountTransaction 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 (*AccountTransaction) GetAdditionalInformation

func (o *AccountTransaction) GetAdditionalInformation() string

GetAdditionalInformation returns the AdditionalInformation field value if set, zero value otherwise.

func (*AccountTransaction) GetAdditionalInformationOk

func (o *AccountTransaction) GetAdditionalInformationOk() (*string, bool)

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

func (*AccountTransaction) GetBankTransactionCode

func (o *AccountTransaction) GetBankTransactionCode() string

GetBankTransactionCode returns the BankTransactionCode field value if set, zero value otherwise.

func (*AccountTransaction) GetBankTransactionCodeOk

func (o *AccountTransaction) GetBankTransactionCodeOk() (*string, bool)

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

func (*AccountTransaction) GetBookingDate

func (o *AccountTransaction) GetBookingDate() string

GetBookingDate returns the BookingDate field value if set, zero value otherwise.

func (*AccountTransaction) GetBookingDateOk

func (o *AccountTransaction) GetBookingDateOk() (*string, bool)

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

func (*AccountTransaction) GetCheckId

func (o *AccountTransaction) GetCheckId() string

GetCheckId returns the CheckId field value if set, zero value otherwise.

func (*AccountTransaction) GetCheckIdOk

func (o *AccountTransaction) GetCheckIdOk() (*string, bool)

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

func (*AccountTransaction) GetCreditorAccount

func (o *AccountTransaction) GetCreditorAccount() AccountTransactionCreditorAccount

GetCreditorAccount returns the CreditorAccount field value if set, zero value otherwise.

func (*AccountTransaction) GetCreditorAccountOk

func (o *AccountTransaction) GetCreditorAccountOk() (*AccountTransactionCreditorAccount, bool)

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

func (*AccountTransaction) GetCreditorId

func (o *AccountTransaction) GetCreditorId() string

GetCreditorId returns the CreditorId field value if set, zero value otherwise.

func (*AccountTransaction) GetCreditorIdOk

func (o *AccountTransaction) GetCreditorIdOk() (*string, bool)

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

func (*AccountTransaction) GetCreditorName

func (o *AccountTransaction) GetCreditorName() string

GetCreditorName returns the CreditorName field value if set, zero value otherwise.

func (*AccountTransaction) GetCreditorNameOk

func (o *AccountTransaction) GetCreditorNameOk() (*string, bool)

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

func (*AccountTransaction) GetDebtorAccount

GetDebtorAccount returns the DebtorAccount field value if set, zero value otherwise.

func (*AccountTransaction) GetDebtorAccountOk

func (o *AccountTransaction) GetDebtorAccountOk() (*AccountTransactionDebtorAccount, bool)

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

func (*AccountTransaction) GetDebtorName

func (o *AccountTransaction) GetDebtorName() string

GetDebtorName returns the DebtorName field value if set, zero value otherwise.

func (*AccountTransaction) GetDebtorNameOk

func (o *AccountTransaction) GetDebtorNameOk() (*string, bool)

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

func (*AccountTransaction) GetEntryReference

func (o *AccountTransaction) GetEntryReference() string

GetEntryReference returns the EntryReference field value if set, zero value otherwise.

func (*AccountTransaction) GetEntryReferenceOk

func (o *AccountTransaction) GetEntryReferenceOk() (*string, bool)

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

func (*AccountTransaction) GetMandateId

func (o *AccountTransaction) GetMandateId() string

GetMandateId returns the MandateId field value if set, zero value otherwise.

func (*AccountTransaction) GetMandateIdOk

func (o *AccountTransaction) GetMandateIdOk() (*string, bool)

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

func (*AccountTransaction) GetProprietaryBankTransactionCode

func (o *AccountTransaction) GetProprietaryBankTransactionCode() string

GetProprietaryBankTransactionCode returns the ProprietaryBankTransactionCode field value if set, zero value otherwise.

func (*AccountTransaction) GetProprietaryBankTransactionCodeOk

func (o *AccountTransaction) GetProprietaryBankTransactionCodeOk() (*string, bool)

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

func (*AccountTransaction) GetPurposeCode

func (o *AccountTransaction) GetPurposeCode() string

GetPurposeCode returns the PurposeCode field value if set, zero value otherwise.

func (*AccountTransaction) GetPurposeCodeOk

func (o *AccountTransaction) GetPurposeCodeOk() (*string, bool)

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

func (*AccountTransaction) GetRemittanceInformationUnstructured

func (o *AccountTransaction) GetRemittanceInformationUnstructured() string

GetRemittanceInformationUnstructured returns the RemittanceInformationUnstructured field value if set, zero value otherwise.

func (*AccountTransaction) GetRemittanceInformationUnstructuredOk

func (o *AccountTransaction) GetRemittanceInformationUnstructuredOk() (*string, bool)

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

func (*AccountTransaction) GetTransactionAmount

func (o *AccountTransaction) GetTransactionAmount() AccountTransactionTransactionAmount

GetTransactionAmount returns the TransactionAmount field value if set, zero value otherwise.

func (*AccountTransaction) GetTransactionAmountOk

func (o *AccountTransaction) GetTransactionAmountOk() (*AccountTransactionTransactionAmount, bool)

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

func (*AccountTransaction) GetTransactionId

func (o *AccountTransaction) GetTransactionId() string

GetTransactionId returns the TransactionId field value if set, zero value otherwise.

func (*AccountTransaction) GetTransactionIdOk

func (o *AccountTransaction) GetTransactionIdOk() (*string, bool)

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

func (*AccountTransaction) GetUltimateCreditor

func (o *AccountTransaction) GetUltimateCreditor() string

GetUltimateCreditor returns the UltimateCreditor field value if set, zero value otherwise.

func (*AccountTransaction) GetUltimateCreditorOk

func (o *AccountTransaction) GetUltimateCreditorOk() (*string, bool)

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

func (*AccountTransaction) GetUltimateDebtor

func (o *AccountTransaction) GetUltimateDebtor() string

GetUltimateDebtor returns the UltimateDebtor field value if set, zero value otherwise.

func (*AccountTransaction) GetUltimateDebtorOk

func (o *AccountTransaction) GetUltimateDebtorOk() (*string, bool)

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

func (*AccountTransaction) GetValueDate

func (o *AccountTransaction) GetValueDate() string

GetValueDate returns the ValueDate field value if set, zero value otherwise.

func (*AccountTransaction) GetValueDateOk

func (o *AccountTransaction) GetValueDateOk() (*string, bool)

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

func (*AccountTransaction) HasAdditionalInformation

func (o *AccountTransaction) HasAdditionalInformation() bool

HasAdditionalInformation returns a boolean if a field has been set.

func (*AccountTransaction) HasBankTransactionCode

func (o *AccountTransaction) HasBankTransactionCode() bool

HasBankTransactionCode returns a boolean if a field has been set.

func (*AccountTransaction) HasBookingDate

func (o *AccountTransaction) HasBookingDate() bool

HasBookingDate returns a boolean if a field has been set.

func (*AccountTransaction) HasCheckId

func (o *AccountTransaction) HasCheckId() bool

HasCheckId returns a boolean if a field has been set.

func (*AccountTransaction) HasCreditorAccount

func (o *AccountTransaction) HasCreditorAccount() bool

HasCreditorAccount returns a boolean if a field has been set.

func (*AccountTransaction) HasCreditorId

func (o *AccountTransaction) HasCreditorId() bool

HasCreditorId returns a boolean if a field has been set.

func (*AccountTransaction) HasCreditorName

func (o *AccountTransaction) HasCreditorName() bool

HasCreditorName returns a boolean if a field has been set.

func (*AccountTransaction) HasDebtorAccount

func (o *AccountTransaction) HasDebtorAccount() bool

HasDebtorAccount returns a boolean if a field has been set.

func (*AccountTransaction) HasDebtorName

func (o *AccountTransaction) HasDebtorName() bool

HasDebtorName returns a boolean if a field has been set.

func (*AccountTransaction) HasEntryReference

func (o *AccountTransaction) HasEntryReference() bool

HasEntryReference returns a boolean if a field has been set.

func (*AccountTransaction) HasMandateId

func (o *AccountTransaction) HasMandateId() bool

HasMandateId returns a boolean if a field has been set.

func (*AccountTransaction) HasProprietaryBankTransactionCode

func (o *AccountTransaction) HasProprietaryBankTransactionCode() bool

HasProprietaryBankTransactionCode returns a boolean if a field has been set.

func (*AccountTransaction) HasPurposeCode

func (o *AccountTransaction) HasPurposeCode() bool

HasPurposeCode returns a boolean if a field has been set.

func (*AccountTransaction) HasRemittanceInformationUnstructured

func (o *AccountTransaction) HasRemittanceInformationUnstructured() bool

HasRemittanceInformationUnstructured returns a boolean if a field has been set.

func (*AccountTransaction) HasTransactionAmount

func (o *AccountTransaction) HasTransactionAmount() bool

HasTransactionAmount returns a boolean if a field has been set.

func (*AccountTransaction) HasTransactionId

func (o *AccountTransaction) HasTransactionId() bool

HasTransactionId returns a boolean if a field has been set.

func (*AccountTransaction) HasUltimateCreditor

func (o *AccountTransaction) HasUltimateCreditor() bool

HasUltimateCreditor returns a boolean if a field has been set.

func (*AccountTransaction) HasUltimateDebtor

func (o *AccountTransaction) HasUltimateDebtor() bool

HasUltimateDebtor returns a boolean if a field has been set.

func (*AccountTransaction) HasValueDate

func (o *AccountTransaction) HasValueDate() bool

HasValueDate returns a boolean if a field has been set.

func (AccountTransaction) MarshalJSON

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

func (*AccountTransaction) SetAdditionalInformation

func (o *AccountTransaction) SetAdditionalInformation(v string)

SetAdditionalInformation gets a reference to the given string and assigns it to the AdditionalInformation field.

func (*AccountTransaction) SetBankTransactionCode

func (o *AccountTransaction) SetBankTransactionCode(v string)

SetBankTransactionCode gets a reference to the given string and assigns it to the BankTransactionCode field.

func (*AccountTransaction) SetBookingDate

func (o *AccountTransaction) SetBookingDate(v string)

SetBookingDate gets a reference to the given string and assigns it to the BookingDate field.

func (*AccountTransaction) SetCheckId

func (o *AccountTransaction) SetCheckId(v string)

SetCheckId gets a reference to the given string and assigns it to the CheckId field.

func (*AccountTransaction) SetCreditorAccount

func (o *AccountTransaction) SetCreditorAccount(v AccountTransactionCreditorAccount)

SetCreditorAccount gets a reference to the given AccountTransactionCreditorAccount and assigns it to the CreditorAccount field.

func (*AccountTransaction) SetCreditorId

func (o *AccountTransaction) SetCreditorId(v string)

SetCreditorId gets a reference to the given string and assigns it to the CreditorId field.

func (*AccountTransaction) SetCreditorName

func (o *AccountTransaction) SetCreditorName(v string)

SetCreditorName gets a reference to the given string and assigns it to the CreditorName field.

func (*AccountTransaction) SetDebtorAccount

func (o *AccountTransaction) SetDebtorAccount(v AccountTransactionDebtorAccount)

SetDebtorAccount gets a reference to the given AccountTransactionDebtorAccount and assigns it to the DebtorAccount field.

func (*AccountTransaction) SetDebtorName

func (o *AccountTransaction) SetDebtorName(v string)

SetDebtorName gets a reference to the given string and assigns it to the DebtorName field.

func (*AccountTransaction) SetEntryReference

func (o *AccountTransaction) SetEntryReference(v string)

SetEntryReference gets a reference to the given string and assigns it to the EntryReference field.

func (*AccountTransaction) SetMandateId

func (o *AccountTransaction) SetMandateId(v string)

SetMandateId gets a reference to the given string and assigns it to the MandateId field.

func (*AccountTransaction) SetProprietaryBankTransactionCode

func (o *AccountTransaction) SetProprietaryBankTransactionCode(v string)

SetProprietaryBankTransactionCode gets a reference to the given string and assigns it to the ProprietaryBankTransactionCode field.

func (*AccountTransaction) SetPurposeCode

func (o *AccountTransaction) SetPurposeCode(v string)

SetPurposeCode gets a reference to the given string and assigns it to the PurposeCode field.

func (*AccountTransaction) SetRemittanceInformationUnstructured

func (o *AccountTransaction) SetRemittanceInformationUnstructured(v string)

SetRemittanceInformationUnstructured gets a reference to the given string and assigns it to the RemittanceInformationUnstructured field.

func (*AccountTransaction) SetTransactionAmount

func (o *AccountTransaction) SetTransactionAmount(v AccountTransactionTransactionAmount)

SetTransactionAmount gets a reference to the given AccountTransactionTransactionAmount and assigns it to the TransactionAmount field.

func (*AccountTransaction) SetTransactionId

func (o *AccountTransaction) SetTransactionId(v string)

SetTransactionId gets a reference to the given string and assigns it to the TransactionId field.

func (*AccountTransaction) SetUltimateCreditor

func (o *AccountTransaction) SetUltimateCreditor(v string)

SetUltimateCreditor gets a reference to the given string and assigns it to the UltimateCreditor field.

func (*AccountTransaction) SetUltimateDebtor

func (o *AccountTransaction) SetUltimateDebtor(v string)

SetUltimateDebtor gets a reference to the given string and assigns it to the UltimateDebtor field.

func (*AccountTransaction) SetValueDate

func (o *AccountTransaction) SetValueDate(v string)

SetValueDate gets a reference to the given string and assigns it to the ValueDate field.

type AccountTransactionCreditorAccount

type AccountTransactionCreditorAccount struct {
	Iban *string `json:"iban,omitempty"`
	Bban *string `json:"bban,omitempty"`
}

AccountTransactionCreditorAccount struct for AccountTransactionCreditorAccount

func NewAccountTransactionCreditorAccount

func NewAccountTransactionCreditorAccount() *AccountTransactionCreditorAccount

NewAccountTransactionCreditorAccount instantiates a new AccountTransactionCreditorAccount 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 NewAccountTransactionCreditorAccountWithDefaults

func NewAccountTransactionCreditorAccountWithDefaults() *AccountTransactionCreditorAccount

NewAccountTransactionCreditorAccountWithDefaults instantiates a new AccountTransactionCreditorAccount 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 (*AccountTransactionCreditorAccount) GetBban

GetBban returns the Bban field value if set, zero value otherwise.

func (*AccountTransactionCreditorAccount) GetBbanOk

func (o *AccountTransactionCreditorAccount) GetBbanOk() (*string, bool)

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

func (*AccountTransactionCreditorAccount) GetIban

GetIban returns the Iban field value if set, zero value otherwise.

func (*AccountTransactionCreditorAccount) GetIbanOk

func (o *AccountTransactionCreditorAccount) GetIbanOk() (*string, bool)

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

func (*AccountTransactionCreditorAccount) HasBban

HasBban returns a boolean if a field has been set.

func (*AccountTransactionCreditorAccount) HasIban

HasIban returns a boolean if a field has been set.

func (AccountTransactionCreditorAccount) MarshalJSON

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

func (*AccountTransactionCreditorAccount) SetBban

SetBban gets a reference to the given string and assigns it to the Bban field.

func (*AccountTransactionCreditorAccount) SetIban

SetIban gets a reference to the given string and assigns it to the Iban field.

type AccountTransactionDebtorAccount

type AccountTransactionDebtorAccount struct {
	Iban *string `json:"iban,omitempty"`
	Bban *string `json:"bban,omitempty"`
}

AccountTransactionDebtorAccount struct for AccountTransactionDebtorAccount

func NewAccountTransactionDebtorAccount

func NewAccountTransactionDebtorAccount() *AccountTransactionDebtorAccount

NewAccountTransactionDebtorAccount instantiates a new AccountTransactionDebtorAccount 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 NewAccountTransactionDebtorAccountWithDefaults

func NewAccountTransactionDebtorAccountWithDefaults() *AccountTransactionDebtorAccount

NewAccountTransactionDebtorAccountWithDefaults instantiates a new AccountTransactionDebtorAccount 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 (*AccountTransactionDebtorAccount) GetBban

GetBban returns the Bban field value if set, zero value otherwise.

func (*AccountTransactionDebtorAccount) GetBbanOk

func (o *AccountTransactionDebtorAccount) GetBbanOk() (*string, bool)

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

func (*AccountTransactionDebtorAccount) GetIban

GetIban returns the Iban field value if set, zero value otherwise.

func (*AccountTransactionDebtorAccount) GetIbanOk

func (o *AccountTransactionDebtorAccount) GetIbanOk() (*string, bool)

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

func (*AccountTransactionDebtorAccount) HasBban

HasBban returns a boolean if a field has been set.

func (*AccountTransactionDebtorAccount) HasIban

HasIban returns a boolean if a field has been set.

func (AccountTransactionDebtorAccount) MarshalJSON

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

func (*AccountTransactionDebtorAccount) SetBban

SetBban gets a reference to the given string and assigns it to the Bban field.

func (*AccountTransactionDebtorAccount) SetIban

SetIban gets a reference to the given string and assigns it to the Iban field.

type AccountTransactionResponse

type AccountTransactionResponse struct {
	Transactions *AccountTransactionResponseTransactions `json:"transactions,omitempty"`
}

AccountTransactionResponse struct for AccountTransactionResponse

func NewAccountTransactionResponse

func NewAccountTransactionResponse() *AccountTransactionResponse

NewAccountTransactionResponse instantiates a new AccountTransactionResponse 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 NewAccountTransactionResponseWithDefaults

func NewAccountTransactionResponseWithDefaults() *AccountTransactionResponse

NewAccountTransactionResponseWithDefaults instantiates a new AccountTransactionResponse 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 (*AccountTransactionResponse) GetTransactions

GetTransactions returns the Transactions field value if set, zero value otherwise.

func (*AccountTransactionResponse) GetTransactionsOk

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

func (*AccountTransactionResponse) HasTransactions

func (o *AccountTransactionResponse) HasTransactions() bool

HasTransactions returns a boolean if a field has been set.

func (AccountTransactionResponse) MarshalJSON

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

func (*AccountTransactionResponse) SetTransactions

SetTransactions gets a reference to the given AccountTransactionResponseTransactions and assigns it to the Transactions field.

type AccountTransactionResponseTransactions

type AccountTransactionResponseTransactions struct {
	Booked  []AccountTransaction `json:"booked,omitempty"`
	Pending []AccountTransaction `json:"pending,omitempty"`
}

AccountTransactionResponseTransactions struct for AccountTransactionResponseTransactions

func NewAccountTransactionResponseTransactions

func NewAccountTransactionResponseTransactions() *AccountTransactionResponseTransactions

NewAccountTransactionResponseTransactions instantiates a new AccountTransactionResponseTransactions 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 NewAccountTransactionResponseTransactionsWithDefaults

func NewAccountTransactionResponseTransactionsWithDefaults() *AccountTransactionResponseTransactions

NewAccountTransactionResponseTransactionsWithDefaults instantiates a new AccountTransactionResponseTransactions 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 (*AccountTransactionResponseTransactions) GetBooked

GetBooked returns the Booked field value if set, zero value otherwise.

func (*AccountTransactionResponseTransactions) GetBookedOk

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

func (*AccountTransactionResponseTransactions) GetPending

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

func (*AccountTransactionResponseTransactions) GetPendingOk

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

func (*AccountTransactionResponseTransactions) HasBooked

HasBooked returns a boolean if a field has been set.

func (*AccountTransactionResponseTransactions) HasPending

HasPending returns a boolean if a field has been set.

func (AccountTransactionResponseTransactions) MarshalJSON

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

func (*AccountTransactionResponseTransactions) SetBooked

SetBooked gets a reference to the given []AccountTransaction and assigns it to the Booked field.

func (*AccountTransactionResponseTransactions) SetPending

SetPending gets a reference to the given []AccountTransaction and assigns it to the Pending field.

type AccountTransactionTransactionAmount

type AccountTransactionTransactionAmount struct {
	Amount   *string `json:"amount,omitempty"`
	Currency *string `json:"currency,omitempty"`
}

AccountTransactionTransactionAmount struct for AccountTransactionTransactionAmount

func NewAccountTransactionTransactionAmount

func NewAccountTransactionTransactionAmount() *AccountTransactionTransactionAmount

NewAccountTransactionTransactionAmount instantiates a new AccountTransactionTransactionAmount 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 NewAccountTransactionTransactionAmountWithDefaults

func NewAccountTransactionTransactionAmountWithDefaults() *AccountTransactionTransactionAmount

NewAccountTransactionTransactionAmountWithDefaults instantiates a new AccountTransactionTransactionAmount 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 (*AccountTransactionTransactionAmount) GetAmount

GetAmount returns the Amount field value if set, zero value otherwise.

func (*AccountTransactionTransactionAmount) GetAmountOk

func (o *AccountTransactionTransactionAmount) GetAmountOk() (*string, bool)

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

func (*AccountTransactionTransactionAmount) GetCurrency

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*AccountTransactionTransactionAmount) GetCurrencyOk

func (o *AccountTransactionTransactionAmount) GetCurrencyOk() (*string, bool)

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

func (*AccountTransactionTransactionAmount) HasAmount

HasAmount returns a boolean if a field has been set.

func (*AccountTransactionTransactionAmount) HasCurrency

func (o *AccountTransactionTransactionAmount) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (AccountTransactionTransactionAmount) MarshalJSON

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

func (*AccountTransactionTransactionAmount) SetAmount

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*AccountTransactionTransactionAmount) SetCurrency

func (o *AccountTransactionTransactionAmount) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

type AccountV2

type AccountV2 struct {
	// The ID of this Account, used to refer to this account in other API calls.
	Id *string `json:"id,omitempty"`
	// The date & time at which the account object was created.
	Created *time.Time `json:"created,omitempty"`
	// The date & time at which the account object was last accessed.
	LastAccessed NullableTime `json:"last_accessed,omitempty"`
	// The Account IBAN
	Iban *string `json:"iban,omitempty"`
	// This data element is used for payment accounts which have no IBAN
	Bban *string `json:"bban,omitempty"`
	// The ASPSP associated with this account.
	InstitutionId *string                     `json:"institution_id,omitempty"`
	Status        NullableAccountV2StatusEnum `json:"status,omitempty"`
}

AccountV2 AccountV2Serializer.

func NewAccountV2

func NewAccountV2() *AccountV2

NewAccountV2 instantiates a new AccountV2 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 NewAccountV2WithDefaults

func NewAccountV2WithDefaults() *AccountV2

NewAccountV2WithDefaults instantiates a new AccountV2 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 (*AccountV2) GetBban

func (o *AccountV2) GetBban() string

GetBban returns the Bban field value if set, zero value otherwise.

func (*AccountV2) GetBbanOk

func (o *AccountV2) GetBbanOk() (*string, bool)

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

func (*AccountV2) GetCreated

func (o *AccountV2) GetCreated() time.Time

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

func (*AccountV2) GetCreatedOk

func (o *AccountV2) GetCreatedOk() (*time.Time, bool)

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

func (*AccountV2) GetIban

func (o *AccountV2) GetIban() string

GetIban returns the Iban field value if set, zero value otherwise.

func (*AccountV2) GetIbanOk

func (o *AccountV2) GetIbanOk() (*string, bool)

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

func (*AccountV2) GetId

func (o *AccountV2) GetId() string

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

func (*AccountV2) GetIdOk

func (o *AccountV2) 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 (*AccountV2) GetInstitutionId

func (o *AccountV2) GetInstitutionId() string

GetInstitutionId returns the InstitutionId field value if set, zero value otherwise.

func (*AccountV2) GetInstitutionIdOk

func (o *AccountV2) GetInstitutionIdOk() (*string, bool)

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

func (*AccountV2) GetLastAccessed

func (o *AccountV2) GetLastAccessed() time.Time

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

func (*AccountV2) GetLastAccessedOk

func (o *AccountV2) GetLastAccessedOk() (*time.Time, bool)

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

func (*AccountV2) GetStatus

func (o *AccountV2) GetStatus() AccountV2StatusEnum

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

func (*AccountV2) GetStatusOk

func (o *AccountV2) GetStatusOk() (*AccountV2StatusEnum, bool)

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

func (*AccountV2) HasBban

func (o *AccountV2) HasBban() bool

HasBban returns a boolean if a field has been set.

func (*AccountV2) HasCreated

func (o *AccountV2) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*AccountV2) HasIban

func (o *AccountV2) HasIban() bool

HasIban returns a boolean if a field has been set.

func (*AccountV2) HasId

func (o *AccountV2) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountV2) HasInstitutionId

func (o *AccountV2) HasInstitutionId() bool

HasInstitutionId returns a boolean if a field has been set.

func (*AccountV2) HasLastAccessed

func (o *AccountV2) HasLastAccessed() bool

HasLastAccessed returns a boolean if a field has been set.

func (*AccountV2) HasStatus

func (o *AccountV2) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AccountV2) MarshalJSON

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

func (*AccountV2) SetBban

func (o *AccountV2) SetBban(v string)

SetBban gets a reference to the given string and assigns it to the Bban field.

func (*AccountV2) SetCreated

func (o *AccountV2) SetCreated(v time.Time)

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

func (*AccountV2) SetIban

func (o *AccountV2) SetIban(v string)

SetIban gets a reference to the given string and assigns it to the Iban field.

func (*AccountV2) SetId

func (o *AccountV2) SetId(v string)

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

func (*AccountV2) SetInstitutionId

func (o *AccountV2) SetInstitutionId(v string)

SetInstitutionId gets a reference to the given string and assigns it to the InstitutionId field.

func (*AccountV2) SetLastAccessed

func (o *AccountV2) SetLastAccessed(v time.Time)

SetLastAccessed gets a reference to the given NullableTime and assigns it to the LastAccessed field.

func (*AccountV2) SetLastAccessedNil

func (o *AccountV2) SetLastAccessedNil()

SetLastAccessedNil sets the value for LastAccessed to be an explicit nil

func (*AccountV2) SetStatus

func (o *AccountV2) SetStatus(v AccountV2StatusEnum)

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

func (*AccountV2) SetStatusNil

func (o *AccountV2) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*AccountV2) UnsetLastAccessed

func (o *AccountV2) UnsetLastAccessed()

UnsetLastAccessed ensures that no value is present for LastAccessed, not even an explicit nil

func (*AccountV2) UnsetStatus

func (o *AccountV2) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

type AccountV2StatusEnum

type AccountV2StatusEnum string

AccountV2StatusEnum Status of account

const (
	ACCOUNTV2STATUSENUM_READY      AccountV2StatusEnum = "READY"
	ACCOUNTV2STATUSENUM_EXPIRED    AccountV2StatusEnum = "EXPIRED"
	ACCOUNTV2STATUSENUM_DISCOVERED AccountV2StatusEnum = "DISCOVERED"
	ACCOUNTV2STATUSENUM_PROCESSING AccountV2StatusEnum = "PROCESSING"
	ACCOUNTV2STATUSENUM_ERROR      AccountV2StatusEnum = "ERROR"
	ACCOUNTV2STATUSENUM_SUSPENDED  AccountV2StatusEnum = "SUSPENDED"
)

List of AccountV2StatusEnum

func NewAccountV2StatusEnumFromValue

func NewAccountV2StatusEnumFromValue(v string) (*AccountV2StatusEnum, error)

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

func (AccountV2StatusEnum) IsValid

func (v AccountV2StatusEnum) IsValid() bool

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

func (AccountV2StatusEnum) Ptr

Ptr returns reference to AccountV2StatusEnum value

func (*AccountV2StatusEnum) UnmarshalJSON

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

type AccountV2StatusEnumDiscovered

type AccountV2StatusEnumDiscovered struct {
	DISCOVERED string `json:"DISCOVERED"`
}

AccountV2StatusEnumDiscovered struct for AccountV2StatusEnumDiscovered

func NewAccountV2StatusEnumDiscovered

func NewAccountV2StatusEnumDiscovered(dISCOVERED string) *AccountV2StatusEnumDiscovered

NewAccountV2StatusEnumDiscovered instantiates a new AccountV2StatusEnumDiscovered 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 NewAccountV2StatusEnumDiscoveredWithDefaults

func NewAccountV2StatusEnumDiscoveredWithDefaults() *AccountV2StatusEnumDiscovered

NewAccountV2StatusEnumDiscoveredWithDefaults instantiates a new AccountV2StatusEnumDiscovered 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 (*AccountV2StatusEnumDiscovered) GetDISCOVERED

func (o *AccountV2StatusEnumDiscovered) GetDISCOVERED() string

GetDISCOVERED returns the DISCOVERED field value

func (*AccountV2StatusEnumDiscovered) GetDISCOVEREDOk

func (o *AccountV2StatusEnumDiscovered) GetDISCOVEREDOk() (*string, bool)

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

func (AccountV2StatusEnumDiscovered) MarshalJSON

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

func (*AccountV2StatusEnumDiscovered) SetDISCOVERED

func (o *AccountV2StatusEnumDiscovered) SetDISCOVERED(v string)

SetDISCOVERED sets field value

type AccountV2StatusEnumError

type AccountV2StatusEnumError struct {
	ERROR string `json:"ERROR"`
}

AccountV2StatusEnumError struct for AccountV2StatusEnumError

func NewAccountV2StatusEnumError

func NewAccountV2StatusEnumError(eRROR string) *AccountV2StatusEnumError

NewAccountV2StatusEnumError instantiates a new AccountV2StatusEnumError 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 NewAccountV2StatusEnumErrorWithDefaults

func NewAccountV2StatusEnumErrorWithDefaults() *AccountV2StatusEnumError

NewAccountV2StatusEnumErrorWithDefaults instantiates a new AccountV2StatusEnumError 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 (*AccountV2StatusEnumError) GetERROR

func (o *AccountV2StatusEnumError) GetERROR() string

GetERROR returns the ERROR field value

func (*AccountV2StatusEnumError) GetERROROk

func (o *AccountV2StatusEnumError) GetERROROk() (*string, bool)

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

func (AccountV2StatusEnumError) MarshalJSON

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

func (*AccountV2StatusEnumError) SetERROR

func (o *AccountV2StatusEnumError) SetERROR(v string)

SetERROR sets field value

type AccountV2StatusEnumExpired

type AccountV2StatusEnumExpired struct {
	EXPIRED string `json:"EXPIRED"`
}

AccountV2StatusEnumExpired struct for AccountV2StatusEnumExpired

func NewAccountV2StatusEnumExpired

func NewAccountV2StatusEnumExpired(eXPIRED string) *AccountV2StatusEnumExpired

NewAccountV2StatusEnumExpired instantiates a new AccountV2StatusEnumExpired 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 NewAccountV2StatusEnumExpiredWithDefaults

func NewAccountV2StatusEnumExpiredWithDefaults() *AccountV2StatusEnumExpired

NewAccountV2StatusEnumExpiredWithDefaults instantiates a new AccountV2StatusEnumExpired 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 (*AccountV2StatusEnumExpired) GetEXPIRED

func (o *AccountV2StatusEnumExpired) GetEXPIRED() string

GetEXPIRED returns the EXPIRED field value

func (*AccountV2StatusEnumExpired) GetEXPIREDOk

func (o *AccountV2StatusEnumExpired) GetEXPIREDOk() (*string, bool)

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

func (AccountV2StatusEnumExpired) MarshalJSON

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

func (*AccountV2StatusEnumExpired) SetEXPIRED

func (o *AccountV2StatusEnumExpired) SetEXPIRED(v string)

SetEXPIRED sets field value

type AccountV2StatusEnumProcessing

type AccountV2StatusEnumProcessing struct {
	PROCESSING string `json:"PROCESSING"`
}

AccountV2StatusEnumProcessing struct for AccountV2StatusEnumProcessing

func NewAccountV2StatusEnumProcessing

func NewAccountV2StatusEnumProcessing(pROCESSING string) *AccountV2StatusEnumProcessing

NewAccountV2StatusEnumProcessing instantiates a new AccountV2StatusEnumProcessing 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 NewAccountV2StatusEnumProcessingWithDefaults

func NewAccountV2StatusEnumProcessingWithDefaults() *AccountV2StatusEnumProcessing

NewAccountV2StatusEnumProcessingWithDefaults instantiates a new AccountV2StatusEnumProcessing 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 (*AccountV2StatusEnumProcessing) GetPROCESSING

func (o *AccountV2StatusEnumProcessing) GetPROCESSING() string

GetPROCESSING returns the PROCESSING field value

func (*AccountV2StatusEnumProcessing) GetPROCESSINGOk

func (o *AccountV2StatusEnumProcessing) GetPROCESSINGOk() (*string, bool)

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

func (AccountV2StatusEnumProcessing) MarshalJSON

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

func (*AccountV2StatusEnumProcessing) SetPROCESSING

func (o *AccountV2StatusEnumProcessing) SetPROCESSING(v string)

SetPROCESSING sets field value

type AccountV2StatusEnumReady

type AccountV2StatusEnumReady struct {
	READY string `json:"READY"`
}

AccountV2StatusEnumReady struct for AccountV2StatusEnumReady

func NewAccountV2StatusEnumReady

func NewAccountV2StatusEnumReady(rEADY string) *AccountV2StatusEnumReady

NewAccountV2StatusEnumReady instantiates a new AccountV2StatusEnumReady 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 NewAccountV2StatusEnumReadyWithDefaults

func NewAccountV2StatusEnumReadyWithDefaults() *AccountV2StatusEnumReady

NewAccountV2StatusEnumReadyWithDefaults instantiates a new AccountV2StatusEnumReady 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 (*AccountV2StatusEnumReady) GetREADY

func (o *AccountV2StatusEnumReady) GetREADY() string

GetREADY returns the READY field value

func (*AccountV2StatusEnumReady) GetREADYOk

func (o *AccountV2StatusEnumReady) GetREADYOk() (*string, bool)

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

func (AccountV2StatusEnumReady) MarshalJSON

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

func (*AccountV2StatusEnumReady) SetREADY

func (o *AccountV2StatusEnumReady) SetREADY(v string)

SetREADY sets field value

type AccountV2StatusEnumSuspended

type AccountV2StatusEnumSuspended struct {
	SUSPENDED string `json:"SUSPENDED"`
}

AccountV2StatusEnumSuspended struct for AccountV2StatusEnumSuspended

func NewAccountV2StatusEnumSuspended

func NewAccountV2StatusEnumSuspended(sUSPENDED string) *AccountV2StatusEnumSuspended

NewAccountV2StatusEnumSuspended instantiates a new AccountV2StatusEnumSuspended 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 NewAccountV2StatusEnumSuspendedWithDefaults

func NewAccountV2StatusEnumSuspendedWithDefaults() *AccountV2StatusEnumSuspended

NewAccountV2StatusEnumSuspendedWithDefaults instantiates a new AccountV2StatusEnumSuspended 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 (*AccountV2StatusEnumSuspended) GetSUSPENDED

func (o *AccountV2StatusEnumSuspended) GetSUSPENDED() string

GetSUSPENDED returns the SUSPENDED field value

func (*AccountV2StatusEnumSuspended) GetSUSPENDEDOk

func (o *AccountV2StatusEnumSuspended) GetSUSPENDEDOk() (*string, bool)

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

func (AccountV2StatusEnumSuspended) MarshalJSON

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

func (*AccountV2StatusEnumSuspended) SetSUSPENDED

func (o *AccountV2StatusEnumSuspended) SetSUSPENDED(v string)

SetSUSPENDED sets field value

type AccountsApiService

type AccountsApiService service

AccountsApiService AccountsApi service

func (*AccountsApiService) AccountsBalancesRetrieve

func (a *AccountsApiService) AccountsBalancesRetrieve(ctx context.Context, id string) ApiAccountsBalancesRetrieveRequest

AccountsBalancesRetrieve Method for AccountsBalancesRetrieve

Access account balances.

Balances will be returned in Berlin Group PSD2 format.

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

func (*AccountsApiService) AccountsBalancesRetrieveExecute

Execute executes the request

@return AccountBalancesResponse

func (*AccountsApiService) AccountsDetailsRetrieve

func (a *AccountsApiService) AccountsDetailsRetrieve(ctx context.Context, id string) ApiAccountsDetailsRetrieveRequest

AccountsDetailsRetrieve Method for AccountsDetailsRetrieve

Access account details.

Account details will be returned in Berlin Group PSD2 format.

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

func (*AccountsApiService) AccountsDetailsRetrieveExecute

Execute executes the request

@return AccountDetailResponse

func (*AccountsApiService) AccountsTransactionsRetrieve

func (a *AccountsApiService) AccountsTransactionsRetrieve(ctx context.Context, id string) ApiAccountsTransactionsRetrieveRequest

AccountsTransactionsRetrieve Method for AccountsTransactionsRetrieve

Access account transactions.

Transactions will be returned in Berlin Group PSD2 format.

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

func (*AccountsApiService) AccountsTransactionsRetrieveExecute

Execute executes the request

@return AccountTransactionResponse

func (*AccountsApiService) RetrieveAccountMetadata

func (a *AccountsApiService) RetrieveAccountMetadata(ctx context.Context, id string) ApiRetrieveAccountMetadataRequest

RetrieveAccountMetadata Method for RetrieveAccountMetadata

Access account metadata.

Information about the account record, such as the processing status and IBAN.

Account status is recalculated based on the error count in the latest req.

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

func (*AccountsApiService) RetrieveAccountMetadataExecute

func (a *AccountsApiService) RetrieveAccountMetadataExecute(r ApiRetrieveAccountMetadataRequest) (*AccountV2, *http.Response, error)

Execute executes the request

@return AccountV2

type AgreementsApiService

type AgreementsApiService service

AgreementsApiService AgreementsApi service

func (*AgreementsApiService) AcceptEUA

AcceptEUA Method for AcceptEUA

Accept an end-user agreement via the API.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id A UUID string identifying this end user agreement.
@return ApiAcceptEUARequest

func (*AgreementsApiService) AcceptEUAExecute

Execute executes the request

@return EndUserAgreement

func (*AgreementsApiService) CreateEUAV2

CreateEUAV2 Method for CreateEUAV2

API endpoints related to end-user agreements.

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

func (*AgreementsApiService) CreateEUAV2Execute

Execute executes the request

@return EndUserAgreement

func (*AgreementsApiService) DeleteEUAByIdV2

DeleteEUAByIdV2 Method for DeleteEUAByIdV2

Delete End User Agreement.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id A UUID string identifying this end user agreement.
@return ApiDeleteEUAByIdV2Request

func (*AgreementsApiService) DeleteEUAByIdV2Execute

func (a *AgreementsApiService) DeleteEUAByIdV2Execute(r ApiDeleteEUAByIdV2Request) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*AgreementsApiService) RetrieveAllEUAsForAnEndUserV2

func (a *AgreementsApiService) RetrieveAllEUAsForAnEndUserV2(ctx context.Context) ApiRetrieveAllEUAsForAnEndUserV2Request

RetrieveAllEUAsForAnEndUserV2 Method for RetrieveAllEUAsForAnEndUserV2

API endpoints related to end-user agreements.

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

func (*AgreementsApiService) RetrieveAllEUAsForAnEndUserV2Execute

Execute executes the request

@return PaginatedEndUserAgreementList

func (*AgreementsApiService) RetrieveEUAByIdV2

RetrieveEUAByIdV2 Method for RetrieveEUAByIdV2

Get all end user agreements by ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id A UUID string identifying this end user agreement.
@return ApiRetrieveEUAByIdV2Request

func (*AgreementsApiService) RetrieveEUAByIdV2Execute

Execute executes the request

@return EndUserAgreement

type ApiAcceptEUARequest

type ApiAcceptEUARequest struct {
	ApiService *AgreementsApiService
	// contains filtered or unexported fields
}

func (ApiAcceptEUARequest) EnduserAcceptanceDetailsRequest

func (r ApiAcceptEUARequest) EnduserAcceptanceDetailsRequest(enduserAcceptanceDetailsRequest EnduserAcceptanceDetailsRequest) ApiAcceptEUARequest

func (ApiAcceptEUARequest) Execute

type ApiAccountsBalancesRetrieveRequest

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

func (ApiAccountsBalancesRetrieveRequest) Execute

type ApiAccountsDetailsRetrieveRequest

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

func (ApiAccountsDetailsRetrieveRequest) Execute

type ApiAccountsTransactionsRetrieveRequest

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

func (ApiAccountsTransactionsRetrieveRequest) DateFrom

func (ApiAccountsTransactionsRetrieveRequest) DateTo

func (ApiAccountsTransactionsRetrieveRequest) Execute

type ApiCreateEUAV2Request

type ApiCreateEUAV2Request struct {
	ApiService *AgreementsApiService
	// contains filtered or unexported fields
}

func (ApiCreateEUAV2Request) EndUserAgreementRequest

func (r ApiCreateEUAV2Request) EndUserAgreementRequest(endUserAgreementRequest EndUserAgreementRequest) ApiCreateEUAV2Request

func (ApiCreateEUAV2Request) Execute

type ApiDeleteEUAByIdV2Request

type ApiDeleteEUAByIdV2Request struct {
	ApiService *AgreementsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteEUAByIdV2Request) Execute

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

type ApiDeleteRequisitionByIdV2Request

type ApiDeleteRequisitionByIdV2Request struct {
	ApiService *RequisitionsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteRequisitionByIdV2Request) Execute

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

type ApiJWTObtainRequest

type ApiJWTObtainRequest struct {
	ApiService *TokenApiService
	// contains filtered or unexported fields
}

func (ApiJWTObtainRequest) Execute

func (ApiJWTObtainRequest) JWTObtainPairRequest

func (r ApiJWTObtainRequest) JWTObtainPairRequest(jWTObtainPairRequest JWTObtainPairRequest) ApiJWTObtainRequest

type ApiJWTRefreshRequest

type ApiJWTRefreshRequest struct {
	ApiService *TokenApiService
	// contains filtered or unexported fields
}

func (ApiJWTRefreshRequest) Execute

func (ApiJWTRefreshRequest) JWTRefreshRequest

func (r ApiJWTRefreshRequest) JWTRefreshRequest(jWTRefreshRequest JWTRefreshRequest) ApiJWTRefreshRequest

type ApiRequisitionByIdRequest

type ApiRequisitionByIdRequest struct {
	ApiService *RequisitionsApiService
	// contains filtered or unexported fields
}

func (ApiRequisitionByIdRequest) Execute

type ApiRequisitionCreatedRequest

type ApiRequisitionCreatedRequest struct {
	ApiService *RequisitionsApiService
	// contains filtered or unexported fields
}

func (ApiRequisitionCreatedRequest) Execute

func (ApiRequisitionCreatedRequest) RequisitionV2Request

func (r ApiRequisitionCreatedRequest) RequisitionV2Request(requisitionV2Request RequisitionV2Request) ApiRequisitionCreatedRequest

type ApiRetrieveAccountBalancesV2Request

type ApiRetrieveAccountBalancesV2Request struct {
	ApiService *PremiumApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveAccountBalancesV2Request) Execute

type ApiRetrieveAccountDetailsV2Request

type ApiRetrieveAccountDetailsV2Request struct {
	ApiService *PremiumApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveAccountDetailsV2Request) Country

ISO 3166 two-character country code

func (ApiRetrieveAccountDetailsV2Request) Execute

type ApiRetrieveAccountMetadataRequest

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

func (ApiRetrieveAccountMetadataRequest) Execute

type ApiRetrieveAccountTransactionsV2Request

type ApiRetrieveAccountTransactionsV2Request struct {
	ApiService *PremiumApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveAccountTransactionsV2Request) Country

ISO 3166 two-character country code

func (ApiRetrieveAccountTransactionsV2Request) DateFrom

func (ApiRetrieveAccountTransactionsV2Request) DateTo

func (ApiRetrieveAccountTransactionsV2Request) Execute

type ApiRetrieveAllEUAsForAnEndUserV2Request

type ApiRetrieveAllEUAsForAnEndUserV2Request struct {
	ApiService *AgreementsApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveAllEUAsForAnEndUserV2Request) Execute

func (ApiRetrieveAllEUAsForAnEndUserV2Request) Limit

Number of results to return per page.

func (ApiRetrieveAllEUAsForAnEndUserV2Request) Offset

The initial index from which to return the results.

type ApiRetrieveAllRequisitionsRequest

type ApiRetrieveAllRequisitionsRequest struct {
	ApiService *RequisitionsApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveAllRequisitionsRequest) Execute

func (ApiRetrieveAllRequisitionsRequest) Limit

Number of results to return per page.

func (ApiRetrieveAllRequisitionsRequest) Offset

The initial index from which to return the results.

type ApiRetrieveAllSupportedInstitutionsInAGivenCountryRequest

type ApiRetrieveAllSupportedInstitutionsInAGivenCountryRequest struct {
	ApiService *InstitutionsApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveAllSupportedInstitutionsInAGivenCountryRequest) Country

ISO 3166 two-character country code

func (ApiRetrieveAllSupportedInstitutionsInAGivenCountryRequest) Execute

type ApiRetrieveEUAByIdV2Request

type ApiRetrieveEUAByIdV2Request struct {
	ApiService *AgreementsApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveEUAByIdV2Request) Execute

type ApiRetrieveInstitutionRequest

type ApiRetrieveInstitutionRequest struct {
	ApiService *InstitutionsApiService
	// contains filtered or unexported fields
}

func (ApiRetrieveInstitutionRequest) Execute

type Aspsp

type Aspsp struct {
	Id                   string        `json:"id"`
	Name                 string        `json:"name"`
	Bic                  *string       `json:"bic,omitempty"`
	TransactionTotalDays *string       `json:"transaction_total_days,omitempty"`
	Countries            []CountryEnum `json:"countries"`
}

Aspsp Represents an ASPSP.

func NewAspsp

func NewAspsp(id string, name string, countries []CountryEnum, logo string) *Aspsp

NewAspsp instantiates a new Aspsp 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 NewAspspWithDefaults

func NewAspspWithDefaults() *Aspsp

NewAspspWithDefaults instantiates a new Aspsp 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 (*Aspsp) GetBic

func (o *Aspsp) GetBic() string

GetBic returns the Bic field value if set, zero value otherwise.

func (*Aspsp) GetBicOk

func (o *Aspsp) GetBicOk() (*string, bool)

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

func (*Aspsp) GetCountries

func (o *Aspsp) GetCountries() []CountryEnum

GetCountries returns the Countries field value

func (*Aspsp) GetCountriesOk

func (o *Aspsp) GetCountriesOk() ([]CountryEnum, bool)

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

func (*Aspsp) GetId

func (o *Aspsp) GetId() string

GetId returns the Id field value

func (*Aspsp) GetIdOk

func (o *Aspsp) GetIdOk() (*string, bool)

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

func (o *Aspsp) GetLogo() string

GetLogo returns the Logo field value

func (*Aspsp) GetLogoOk

func (o *Aspsp) GetLogoOk() (*string, bool)

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

func (*Aspsp) GetName

func (o *Aspsp) GetName() string

GetName returns the Name field value

func (*Aspsp) GetNameOk

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

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

func (*Aspsp) GetTransactionTotalDays

func (o *Aspsp) GetTransactionTotalDays() string

GetTransactionTotalDays returns the TransactionTotalDays field value if set, zero value otherwise.

func (*Aspsp) GetTransactionTotalDaysOk

func (o *Aspsp) GetTransactionTotalDaysOk() (*string, bool)

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

func (*Aspsp) HasBic

func (o *Aspsp) HasBic() bool

HasBic returns a boolean if a field has been set.

func (*Aspsp) HasTransactionTotalDays

func (o *Aspsp) HasTransactionTotalDays() bool

HasTransactionTotalDays returns a boolean if a field has been set.

func (Aspsp) MarshalJSON

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

func (*Aspsp) SetBic

func (o *Aspsp) SetBic(v string)

SetBic gets a reference to the given string and assigns it to the Bic field.

func (*Aspsp) SetCountries

func (o *Aspsp) SetCountries(v []CountryEnum)

SetCountries sets field value

func (*Aspsp) SetId

func (o *Aspsp) SetId(v string)

SetId sets field value

func (o *Aspsp) SetLogo(v string)

SetLogo sets field value

func (*Aspsp) SetName

func (o *Aspsp) SetName(v string)

SetName sets field value

func (*Aspsp) SetTransactionTotalDays

func (o *Aspsp) SetTransactionTotalDays(v string)

SetTransactionTotalDays gets a reference to the given string and assigns it to the TransactionTotalDays field.

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 CashAccountType

type CashAccountType string

CashAccountType ExternalCashAccountType1Code from ISO 20022

const (
	CASHACCOUNTTYPE_CACC CashAccountType = "CACC"
	CASHACCOUNTTYPE_CARD CashAccountType = "CARD"
	CASHACCOUNTTYPE_CASH CashAccountType = "CASH"
	CASHACCOUNTTYPE_CHAR CashAccountType = "CHAR"
	CASHACCOUNTTYPE_CISH CashAccountType = "CISH"
	CASHACCOUNTTYPE_COMM CashAccountType = "COMM"
	CASHACCOUNTTYPE_CPAC CashAccountType = "CPAC"
	CASHACCOUNTTYPE_LLSV CashAccountType = "LLSV"
	CASHACCOUNTTYPE_LOAN CashAccountType = "LOAN"
	CASHACCOUNTTYPE_MGLD CashAccountType = "MGLD"
	CASHACCOUNTTYPE_MOMA CashAccountType = "MOMA"
	CASHACCOUNTTYPE_NREX CashAccountType = "NREX"
	CASHACCOUNTTYPE_ODFT CashAccountType = "ODFT"
	CASHACCOUNTTYPE_ONDP CashAccountType = "ONDP"
	CASHACCOUNTTYPE_OTHR CashAccountType = "OTHR"
	CASHACCOUNTTYPE_SACC CashAccountType = "SACC"
	CASHACCOUNTTYPE_SLRY CashAccountType = "SLRY"
	CASHACCOUNTTYPE_SVGS CashAccountType = "SVGS"
	CASHACCOUNTTYPE_TAXE CashAccountType = "TAXE"
	CASHACCOUNTTYPE_TRAN CashAccountType = "TRAN"
	CASHACCOUNTTYPE_SABS CashAccountType = "SABS"
	CASHACCOUNTTYPE_TRAS CashAccountType = "TRAS"
)

List of CashAccountType

func NewCashAccountTypeFromValue

func NewCashAccountTypeFromValue(v string) (*CashAccountType, error)

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

func (CashAccountType) IsValid

func (v CashAccountType) IsValid() bool

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

func (CashAccountType) Ptr

Ptr returns reference to CashAccountType value

func (*CashAccountType) UnmarshalJSON

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

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *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) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CountryEnum

type CountryEnum string

CountryEnum the model 'CountryEnum'

const (
	COUNTRYENUM_AF CountryEnum = "AF"
	COUNTRYENUM_AX CountryEnum = "AX"
	COUNTRYENUM_AL CountryEnum = "AL"
	COUNTRYENUM_DZ CountryEnum = "DZ"
	COUNTRYENUM_AS CountryEnum = "AS"
	COUNTRYENUM_AD CountryEnum = "AD"
	COUNTRYENUM_AO CountryEnum = "AO"
	COUNTRYENUM_AI CountryEnum = "AI"
	COUNTRYENUM_AQ CountryEnum = "AQ"
	COUNTRYENUM_AG CountryEnum = "AG"
	COUNTRYENUM_AR CountryEnum = "AR"
	COUNTRYENUM_AM CountryEnum = "AM"
	COUNTRYENUM_AW CountryEnum = "AW"
	COUNTRYENUM_AU CountryEnum = "AU"
	COUNTRYENUM_AT CountryEnum = "AT"
	COUNTRYENUM_AZ CountryEnum = "AZ"
	COUNTRYENUM_BS CountryEnum = "BS"
	COUNTRYENUM_BH CountryEnum = "BH"
	COUNTRYENUM_BD CountryEnum = "BD"
	COUNTRYENUM_BB CountryEnum = "BB"
	COUNTRYENUM_BY CountryEnum = "BY"
	COUNTRYENUM_BE CountryEnum = "BE"
	COUNTRYENUM_BZ CountryEnum = "BZ"
	COUNTRYENUM_BJ CountryEnum = "BJ"
	COUNTRYENUM_BM CountryEnum = "BM"
	COUNTRYENUM_BT CountryEnum = "BT"
	COUNTRYENUM_BO CountryEnum = "BO"
	COUNTRYENUM_BQ CountryEnum = "BQ"
	COUNTRYENUM_BA CountryEnum = "BA"
	COUNTRYENUM_BW CountryEnum = "BW"
	COUNTRYENUM_BV CountryEnum = "BV"
	COUNTRYENUM_BR CountryEnum = "BR"
	COUNTRYENUM_IO CountryEnum = "IO"
	COUNTRYENUM_BN CountryEnum = "BN"
	COUNTRYENUM_BG CountryEnum = "BG"
	COUNTRYENUM_BF CountryEnum = "BF"
	COUNTRYENUM_BI CountryEnum = "BI"
	COUNTRYENUM_CV CountryEnum = "CV"
	COUNTRYENUM_KH CountryEnum = "KH"
	COUNTRYENUM_CM CountryEnum = "CM"
	COUNTRYENUM_CA CountryEnum = "CA"
	COUNTRYENUM_KY CountryEnum = "KY"
	COUNTRYENUM_CF CountryEnum = "CF"
	COUNTRYENUM_TD CountryEnum = "TD"
	COUNTRYENUM_CL CountryEnum = "CL"
	COUNTRYENUM_CN CountryEnum = "CN"
	COUNTRYENUM_CX CountryEnum = "CX"
	COUNTRYENUM_CC CountryEnum = "CC"
	COUNTRYENUM_CO CountryEnum = "CO"
	COUNTRYENUM_KM CountryEnum = "KM"
	COUNTRYENUM_CG CountryEnum = "CG"
	COUNTRYENUM_CD CountryEnum = "CD"
	COUNTRYENUM_CK CountryEnum = "CK"
	COUNTRYENUM_CR CountryEnum = "CR"
	COUNTRYENUM_CI CountryEnum = "CI"
	COUNTRYENUM_HR CountryEnum = "HR"
	COUNTRYENUM_CU CountryEnum = "CU"
	COUNTRYENUM_CW CountryEnum = "CW"
	COUNTRYENUM_CY CountryEnum = "CY"
	COUNTRYENUM_CZ CountryEnum = "CZ"
	COUNTRYENUM_DK CountryEnum = "DK"
	COUNTRYENUM_DJ CountryEnum = "DJ"
	COUNTRYENUM_DM CountryEnum = "DM"
	COUNTRYENUM_DO CountryEnum = "DO"
	COUNTRYENUM_EC CountryEnum = "EC"
	COUNTRYENUM_EG CountryEnum = "EG"
	COUNTRYENUM_SV CountryEnum = "SV"
	COUNTRYENUM_GQ CountryEnum = "GQ"
	COUNTRYENUM_ER CountryEnum = "ER"
	COUNTRYENUM_EE CountryEnum = "EE"
	COUNTRYENUM_SZ CountryEnum = "SZ"
	COUNTRYENUM_ET CountryEnum = "ET"
	COUNTRYENUM_FK CountryEnum = "FK"
	COUNTRYENUM_FO CountryEnum = "FO"
	COUNTRYENUM_FJ CountryEnum = "FJ"
	COUNTRYENUM_FI CountryEnum = "FI"
	COUNTRYENUM_FR CountryEnum = "FR"
	COUNTRYENUM_GF CountryEnum = "GF"
	COUNTRYENUM_PF CountryEnum = "PF"
	COUNTRYENUM_TF CountryEnum = "TF"
	COUNTRYENUM_GA CountryEnum = "GA"
	COUNTRYENUM_GM CountryEnum = "GM"
	COUNTRYENUM_GE CountryEnum = "GE"
	COUNTRYENUM_DE CountryEnum = "DE"
	COUNTRYENUM_GH CountryEnum = "GH"
	COUNTRYENUM_GI CountryEnum = "GI"
	COUNTRYENUM_GR CountryEnum = "GR"
	COUNTRYENUM_GL CountryEnum = "GL"
	COUNTRYENUM_GD CountryEnum = "GD"
	COUNTRYENUM_GP CountryEnum = "GP"
	COUNTRYENUM_GU CountryEnum = "GU"
	COUNTRYENUM_GT CountryEnum = "GT"
	COUNTRYENUM_GG CountryEnum = "GG"
	COUNTRYENUM_GN CountryEnum = "GN"
	COUNTRYENUM_GW CountryEnum = "GW"
	COUNTRYENUM_GY CountryEnum = "GY"
	COUNTRYENUM_HT CountryEnum = "HT"
	COUNTRYENUM_HM CountryEnum = "HM"
	COUNTRYENUM_VA CountryEnum = "VA"
	COUNTRYENUM_HN CountryEnum = "HN"
	COUNTRYENUM_HK CountryEnum = "HK"
	COUNTRYENUM_HU CountryEnum = "HU"
	COUNTRYENUM_IS CountryEnum = "IS"
	COUNTRYENUM_IN CountryEnum = "IN"
	COUNTRYENUM_ID CountryEnum = "ID"
	COUNTRYENUM_IR CountryEnum = "IR"
	COUNTRYENUM_IQ CountryEnum = "IQ"
	COUNTRYENUM_IE CountryEnum = "IE"
	COUNTRYENUM_IM CountryEnum = "IM"
	COUNTRYENUM_IL CountryEnum = "IL"
	COUNTRYENUM_IT CountryEnum = "IT"
	COUNTRYENUM_JM CountryEnum = "JM"
	COUNTRYENUM_JP CountryEnum = "JP"
	COUNTRYENUM_JE CountryEnum = "JE"
	COUNTRYENUM_JO CountryEnum = "JO"
	COUNTRYENUM_KZ CountryEnum = "KZ"
	COUNTRYENUM_KE CountryEnum = "KE"
	COUNTRYENUM_KI CountryEnum = "KI"
	COUNTRYENUM_KW CountryEnum = "KW"
	COUNTRYENUM_KG CountryEnum = "KG"
	COUNTRYENUM_LA CountryEnum = "LA"
	COUNTRYENUM_LV CountryEnum = "LV"
	COUNTRYENUM_LB CountryEnum = "LB"
	COUNTRYENUM_LS CountryEnum = "LS"
	COUNTRYENUM_LR CountryEnum = "LR"
	COUNTRYENUM_LY CountryEnum = "LY"
	COUNTRYENUM_LI CountryEnum = "LI"
	COUNTRYENUM_LT CountryEnum = "LT"
	COUNTRYENUM_LU CountryEnum = "LU"
	COUNTRYENUM_MO CountryEnum = "MO"
	COUNTRYENUM_MG CountryEnum = "MG"
	COUNTRYENUM_MW CountryEnum = "MW"
	COUNTRYENUM_MY CountryEnum = "MY"
	COUNTRYENUM_MV CountryEnum = "MV"
	COUNTRYENUM_ML CountryEnum = "ML"
	COUNTRYENUM_MT CountryEnum = "MT"
	COUNTRYENUM_MH CountryEnum = "MH"
	COUNTRYENUM_MQ CountryEnum = "MQ"
	COUNTRYENUM_MR CountryEnum = "MR"
	COUNTRYENUM_MU CountryEnum = "MU"
	COUNTRYENUM_YT CountryEnum = "YT"
	COUNTRYENUM_MX CountryEnum = "MX"
	COUNTRYENUM_FM CountryEnum = "FM"
	COUNTRYENUM_MD CountryEnum = "MD"
	COUNTRYENUM_MC CountryEnum = "MC"
	COUNTRYENUM_MN CountryEnum = "MN"
	COUNTRYENUM_ME CountryEnum = "ME"
	COUNTRYENUM_MS CountryEnum = "MS"
	COUNTRYENUM_MA CountryEnum = "MA"
	COUNTRYENUM_MZ CountryEnum = "MZ"
	COUNTRYENUM_MM CountryEnum = "MM"
	COUNTRYENUM_NA CountryEnum = "NA"
	COUNTRYENUM_NR CountryEnum = "NR"
	COUNTRYENUM_NP CountryEnum = "NP"
	COUNTRYENUM_NL CountryEnum = "NL"
	COUNTRYENUM_NC CountryEnum = "NC"
	COUNTRYENUM_NZ CountryEnum = "NZ"
	COUNTRYENUM_NI CountryEnum = "NI"
	COUNTRYENUM_NE CountryEnum = "NE"
	COUNTRYENUM_NG CountryEnum = "NG"
	COUNTRYENUM_NU CountryEnum = "NU"
	COUNTRYENUM_NF CountryEnum = "NF"
	COUNTRYENUM_KP CountryEnum = "KP"
	COUNTRYENUM_MK CountryEnum = "MK"
	COUNTRYENUM_MP CountryEnum = "MP"
	COUNTRYENUM_NO CountryEnum = "NO"
	COUNTRYENUM_OM CountryEnum = "OM"
	COUNTRYENUM_PK CountryEnum = "PK"
	COUNTRYENUM_PW CountryEnum = "PW"
	COUNTRYENUM_PS CountryEnum = "PS"
	COUNTRYENUM_PA CountryEnum = "PA"
	COUNTRYENUM_PG CountryEnum = "PG"
	COUNTRYENUM_PY CountryEnum = "PY"
	COUNTRYENUM_PE CountryEnum = "PE"
	COUNTRYENUM_PH CountryEnum = "PH"
	COUNTRYENUM_PN CountryEnum = "PN"
	COUNTRYENUM_PL CountryEnum = "PL"
	COUNTRYENUM_PT CountryEnum = "PT"
	COUNTRYENUM_PR CountryEnum = "PR"
	COUNTRYENUM_QA CountryEnum = "QA"
	COUNTRYENUM_RE CountryEnum = "RE"
	COUNTRYENUM_RO CountryEnum = "RO"
	COUNTRYENUM_RU CountryEnum = "RU"
	COUNTRYENUM_RW CountryEnum = "RW"
	COUNTRYENUM_BL CountryEnum = "BL"
	COUNTRYENUM_SH CountryEnum = "SH"
	COUNTRYENUM_KN CountryEnum = "KN"
	COUNTRYENUM_LC CountryEnum = "LC"
	COUNTRYENUM_MF CountryEnum = "MF"
	COUNTRYENUM_PM CountryEnum = "PM"
	COUNTRYENUM_VC CountryEnum = "VC"
	COUNTRYENUM_WS CountryEnum = "WS"
	COUNTRYENUM_SM CountryEnum = "SM"
	COUNTRYENUM_ST CountryEnum = "ST"
	COUNTRYENUM_SA CountryEnum = "SA"
	COUNTRYENUM_SN CountryEnum = "SN"
	COUNTRYENUM_RS CountryEnum = "RS"
	COUNTRYENUM_SC CountryEnum = "SC"
	COUNTRYENUM_SL CountryEnum = "SL"
	COUNTRYENUM_SG CountryEnum = "SG"
	COUNTRYENUM_SX CountryEnum = "SX"
	COUNTRYENUM_SK CountryEnum = "SK"
	COUNTRYENUM_SI CountryEnum = "SI"
	COUNTRYENUM_SB CountryEnum = "SB"
	COUNTRYENUM_SO CountryEnum = "SO"
	COUNTRYENUM_ZA CountryEnum = "ZA"
	COUNTRYENUM_GS CountryEnum = "GS"
	COUNTRYENUM_KR CountryEnum = "KR"
	COUNTRYENUM_SS CountryEnum = "SS"
	COUNTRYENUM_ES CountryEnum = "ES"
	COUNTRYENUM_LK CountryEnum = "LK"
	COUNTRYENUM_SD CountryEnum = "SD"
	COUNTRYENUM_SR CountryEnum = "SR"
	COUNTRYENUM_SJ CountryEnum = "SJ"
	COUNTRYENUM_SE CountryEnum = "SE"
	COUNTRYENUM_CH CountryEnum = "CH"
	COUNTRYENUM_SY CountryEnum = "SY"
	COUNTRYENUM_TW CountryEnum = "TW"
	COUNTRYENUM_TJ CountryEnum = "TJ"
	COUNTRYENUM_TZ CountryEnum = "TZ"
	COUNTRYENUM_TH CountryEnum = "TH"
	COUNTRYENUM_TL CountryEnum = "TL"
	COUNTRYENUM_TG CountryEnum = "TG"
	COUNTRYENUM_TK CountryEnum = "TK"
	COUNTRYENUM_TO CountryEnum = "TO"
	COUNTRYENUM_TT CountryEnum = "TT"
	COUNTRYENUM_TN CountryEnum = "TN"
	COUNTRYENUM_TR CountryEnum = "TR"
	COUNTRYENUM_TM CountryEnum = "TM"
	COUNTRYENUM_TC CountryEnum = "TC"
	COUNTRYENUM_TV CountryEnum = "TV"
	COUNTRYENUM_UG CountryEnum = "UG"
	COUNTRYENUM_UA CountryEnum = "UA"
	COUNTRYENUM_AE CountryEnum = "AE"
	COUNTRYENUM_GB CountryEnum = "GB"
	COUNTRYENUM_UM CountryEnum = "UM"
	COUNTRYENUM_US CountryEnum = "US"
	COUNTRYENUM_UY CountryEnum = "UY"
	COUNTRYENUM_UZ CountryEnum = "UZ"
	COUNTRYENUM_VU CountryEnum = "VU"
	COUNTRYENUM_VE CountryEnum = "VE"
	COUNTRYENUM_VN CountryEnum = "VN"
	COUNTRYENUM_VG CountryEnum = "VG"
	COUNTRYENUM_VI CountryEnum = "VI"
	COUNTRYENUM_WF CountryEnum = "WF"
	COUNTRYENUM_EH CountryEnum = "EH"
	COUNTRYENUM_YE CountryEnum = "YE"
	COUNTRYENUM_ZM CountryEnum = "ZM"
	COUNTRYENUM_ZW CountryEnum = "ZW"
)

List of CountryEnum

func NewCountryEnumFromValue

func NewCountryEnumFromValue(v string) (*CountryEnum, error)

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

func (CountryEnum) IsValid

func (v CountryEnum) IsValid() bool

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

func (CountryEnum) Ptr

func (v CountryEnum) Ptr() *CountryEnum

Ptr returns reference to CountryEnum value

func (*CountryEnum) UnmarshalJSON

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

type EndUserAgreement

type EndUserAgreement struct {
	// The ID of this End User Agreement, used to refer to this end user agreement in other API calls.
	Id *string `json:"id,omitempty"`
	// The date & time at which the end user agreement was created.
	Created *time.Time `json:"created,omitempty"`
	// Maximum number of days of transaction data to retrieve.
	MaxHistoricalDays *int32 `json:"max_historical_days,omitempty"`
	// Number of days from acceptance that the access can be used.
	AccessValidForDays *int32 `json:"access_valid_for_days,omitempty"`
	// Array containing one or several values of ['balances', 'details', 'transactions']
	AccessScope []string `json:"access_scope,omitempty"`
	// The date & time at which the end user accepted the agreement.
	Accepted NullableTime `json:"accepted,omitempty"`
	// an Institution ID for this EUA
	InstitutionId string `json:"institution_id"`
}

EndUserAgreement EndUserAgreement.

func NewEndUserAgreement

func NewEndUserAgreement(institutionId string) *EndUserAgreement

NewEndUserAgreement instantiates a new EndUserAgreement 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 NewEndUserAgreementWithDefaults

func NewEndUserAgreementWithDefaults() *EndUserAgreement

NewEndUserAgreementWithDefaults instantiates a new EndUserAgreement 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 (*EndUserAgreement) GetAccepted

func (o *EndUserAgreement) GetAccepted() time.Time

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

func (*EndUserAgreement) GetAcceptedOk

func (o *EndUserAgreement) GetAcceptedOk() (*time.Time, bool)

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

func (*EndUserAgreement) GetAccessScope

func (o *EndUserAgreement) GetAccessScope() []string

GetAccessScope returns the AccessScope field value if set, zero value otherwise.

func (*EndUserAgreement) GetAccessScopeOk

func (o *EndUserAgreement) GetAccessScopeOk() ([]string, bool)

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

func (*EndUserAgreement) GetAccessValidForDays

func (o *EndUserAgreement) GetAccessValidForDays() int32

GetAccessValidForDays returns the AccessValidForDays field value if set, zero value otherwise.

func (*EndUserAgreement) GetAccessValidForDaysOk

func (o *EndUserAgreement) GetAccessValidForDaysOk() (*int32, bool)

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

func (*EndUserAgreement) GetCreated

func (o *EndUserAgreement) GetCreated() time.Time

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

func (*EndUserAgreement) GetCreatedOk

func (o *EndUserAgreement) GetCreatedOk() (*time.Time, bool)

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

func (*EndUserAgreement) GetId

func (o *EndUserAgreement) GetId() string

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

func (*EndUserAgreement) GetIdOk

func (o *EndUserAgreement) 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 (*EndUserAgreement) GetInstitutionId

func (o *EndUserAgreement) GetInstitutionId() string

GetInstitutionId returns the InstitutionId field value

func (*EndUserAgreement) GetInstitutionIdOk

func (o *EndUserAgreement) GetInstitutionIdOk() (*string, bool)

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

func (*EndUserAgreement) GetMaxHistoricalDays

func (o *EndUserAgreement) GetMaxHistoricalDays() int32

GetMaxHistoricalDays returns the MaxHistoricalDays field value if set, zero value otherwise.

func (*EndUserAgreement) GetMaxHistoricalDaysOk

func (o *EndUserAgreement) GetMaxHistoricalDaysOk() (*int32, bool)

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

func (*EndUserAgreement) HasAccepted

func (o *EndUserAgreement) HasAccepted() bool

HasAccepted returns a boolean if a field has been set.

func (*EndUserAgreement) HasAccessScope

func (o *EndUserAgreement) HasAccessScope() bool

HasAccessScope returns a boolean if a field has been set.

func (*EndUserAgreement) HasAccessValidForDays

func (o *EndUserAgreement) HasAccessValidForDays() bool

HasAccessValidForDays returns a boolean if a field has been set.

func (*EndUserAgreement) HasCreated

func (o *EndUserAgreement) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*EndUserAgreement) HasId

func (o *EndUserAgreement) HasId() bool

HasId returns a boolean if a field has been set.

func (*EndUserAgreement) HasMaxHistoricalDays

func (o *EndUserAgreement) HasMaxHistoricalDays() bool

HasMaxHistoricalDays returns a boolean if a field has been set.

func (EndUserAgreement) MarshalJSON

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

func (*EndUserAgreement) SetAccepted

func (o *EndUserAgreement) SetAccepted(v time.Time)

SetAccepted gets a reference to the given NullableTime and assigns it to the Accepted field.

func (*EndUserAgreement) SetAcceptedNil

func (o *EndUserAgreement) SetAcceptedNil()

SetAcceptedNil sets the value for Accepted to be an explicit nil

func (*EndUserAgreement) SetAccessScope

func (o *EndUserAgreement) SetAccessScope(v []string)

SetAccessScope gets a reference to the given []string and assigns it to the AccessScope field.

func (*EndUserAgreement) SetAccessValidForDays

func (o *EndUserAgreement) SetAccessValidForDays(v int32)

SetAccessValidForDays gets a reference to the given int32 and assigns it to the AccessValidForDays field.

func (*EndUserAgreement) SetCreated

func (o *EndUserAgreement) SetCreated(v time.Time)

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

func (*EndUserAgreement) SetId

func (o *EndUserAgreement) SetId(v string)

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

func (*EndUserAgreement) SetInstitutionId

func (o *EndUserAgreement) SetInstitutionId(v string)

SetInstitutionId sets field value

func (*EndUserAgreement) SetMaxHistoricalDays

func (o *EndUserAgreement) SetMaxHistoricalDays(v int32)

SetMaxHistoricalDays gets a reference to the given int32 and assigns it to the MaxHistoricalDays field.

func (*EndUserAgreement) UnsetAccepted

func (o *EndUserAgreement) UnsetAccepted()

UnsetAccepted ensures that no value is present for Accepted, not even an explicit nil

type EndUserAgreementRequest

type EndUserAgreementRequest struct {
	// Maximum number of days of transaction data to retrieve.
	MaxHistoricalDays *int32 `json:"max_historical_days,omitempty"`
	// Number of days from acceptance that the access can be used.
	AccessValidForDays *int32 `json:"access_valid_for_days,omitempty"`
	// Array containing one or several values of ['balances', 'details', 'transactions']
	AccessScope []string `json:"access_scope,omitempty"`
	// an Institution ID for this EUA
	InstitutionId string `json:"institution_id"`
}

EndUserAgreementRequest EndUserAgreement.

func NewEndUserAgreementRequest

func NewEndUserAgreementRequest(institutionId string) *EndUserAgreementRequest

NewEndUserAgreementRequest instantiates a new EndUserAgreementRequest 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 NewEndUserAgreementRequestWithDefaults

func NewEndUserAgreementRequestWithDefaults() *EndUserAgreementRequest

NewEndUserAgreementRequestWithDefaults instantiates a new EndUserAgreementRequest 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 (*EndUserAgreementRequest) GetAccessScope

func (o *EndUserAgreementRequest) GetAccessScope() []string

GetAccessScope returns the AccessScope field value if set, zero value otherwise.

func (*EndUserAgreementRequest) GetAccessScopeOk

func (o *EndUserAgreementRequest) GetAccessScopeOk() ([]string, bool)

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

func (*EndUserAgreementRequest) GetAccessValidForDays

func (o *EndUserAgreementRequest) GetAccessValidForDays() int32

GetAccessValidForDays returns the AccessValidForDays field value if set, zero value otherwise.

func (*EndUserAgreementRequest) GetAccessValidForDaysOk

func (o *EndUserAgreementRequest) GetAccessValidForDaysOk() (*int32, bool)

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

func (*EndUserAgreementRequest) GetInstitutionId

func (o *EndUserAgreementRequest) GetInstitutionId() string

GetInstitutionId returns the InstitutionId field value

func (*EndUserAgreementRequest) GetInstitutionIdOk

func (o *EndUserAgreementRequest) GetInstitutionIdOk() (*string, bool)

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

func (*EndUserAgreementRequest) GetMaxHistoricalDays

func (o *EndUserAgreementRequest) GetMaxHistoricalDays() int32

GetMaxHistoricalDays returns the MaxHistoricalDays field value if set, zero value otherwise.

func (*EndUserAgreementRequest) GetMaxHistoricalDaysOk

func (o *EndUserAgreementRequest) GetMaxHistoricalDaysOk() (*int32, bool)

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

func (*EndUserAgreementRequest) HasAccessScope

func (o *EndUserAgreementRequest) HasAccessScope() bool

HasAccessScope returns a boolean if a field has been set.

func (*EndUserAgreementRequest) HasAccessValidForDays

func (o *EndUserAgreementRequest) HasAccessValidForDays() bool

HasAccessValidForDays returns a boolean if a field has been set.

func (*EndUserAgreementRequest) HasMaxHistoricalDays

func (o *EndUserAgreementRequest) HasMaxHistoricalDays() bool

HasMaxHistoricalDays returns a boolean if a field has been set.

func (EndUserAgreementRequest) MarshalJSON

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

func (*EndUserAgreementRequest) SetAccessScope

func (o *EndUserAgreementRequest) SetAccessScope(v []string)

SetAccessScope gets a reference to the given []string and assigns it to the AccessScope field.

func (*EndUserAgreementRequest) SetAccessValidForDays

func (o *EndUserAgreementRequest) SetAccessValidForDays(v int32)

SetAccessValidForDays gets a reference to the given int32 and assigns it to the AccessValidForDays field.

func (*EndUserAgreementRequest) SetInstitutionId

func (o *EndUserAgreementRequest) SetInstitutionId(v string)

SetInstitutionId sets field value

func (*EndUserAgreementRequest) SetMaxHistoricalDays

func (o *EndUserAgreementRequest) SetMaxHistoricalDays(v int32)

SetMaxHistoricalDays gets a reference to the given int32 and assigns it to the MaxHistoricalDays field.

type EnduserAcceptanceDetailsRequest

type EnduserAcceptanceDetailsRequest struct {
	UserAgent string `json:"user_agent"`
	IpAddress string `json:"ip_address"`
}

EnduserAcceptanceDetailsRequest Represents end-user details.

func NewEnduserAcceptanceDetailsRequest

func NewEnduserAcceptanceDetailsRequest(userAgent string, ipAddress string) *EnduserAcceptanceDetailsRequest

NewEnduserAcceptanceDetailsRequest instantiates a new EnduserAcceptanceDetailsRequest 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 NewEnduserAcceptanceDetailsRequestWithDefaults

func NewEnduserAcceptanceDetailsRequestWithDefaults() *EnduserAcceptanceDetailsRequest

NewEnduserAcceptanceDetailsRequestWithDefaults instantiates a new EnduserAcceptanceDetailsRequest 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 (*EnduserAcceptanceDetailsRequest) GetIpAddress

func (o *EnduserAcceptanceDetailsRequest) GetIpAddress() string

GetIpAddress returns the IpAddress field value

func (*EnduserAcceptanceDetailsRequest) GetIpAddressOk

func (o *EnduserAcceptanceDetailsRequest) GetIpAddressOk() (*string, bool)

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

func (*EnduserAcceptanceDetailsRequest) GetUserAgent

func (o *EnduserAcceptanceDetailsRequest) GetUserAgent() string

GetUserAgent returns the UserAgent field value

func (*EnduserAcceptanceDetailsRequest) GetUserAgentOk

func (o *EnduserAcceptanceDetailsRequest) GetUserAgentOk() (*string, bool)

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

func (EnduserAcceptanceDetailsRequest) MarshalJSON

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

func (*EnduserAcceptanceDetailsRequest) SetIpAddress

func (o *EnduserAcceptanceDetailsRequest) SetIpAddress(v string)

SetIpAddress sets field value

func (*EnduserAcceptanceDetailsRequest) SetUserAgent

func (o *EnduserAcceptanceDetailsRequest) SetUserAgent(v string)

SetUserAgent sets field value

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 InstitutionsApiService

type InstitutionsApiService service

InstitutionsApiService InstitutionsApi service

func (*InstitutionsApiService) RetrieveAllSupportedInstitutionsInAGivenCountry

func (a *InstitutionsApiService) RetrieveAllSupportedInstitutionsInAGivenCountry(ctx context.Context) ApiRetrieveAllSupportedInstitutionsInAGivenCountryRequest

RetrieveAllSupportedInstitutionsInAGivenCountry Method for RetrieveAllSupportedInstitutionsInAGivenCountry

List all available institutions

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

func (*InstitutionsApiService) RetrieveAllSupportedInstitutionsInAGivenCountryExecute

func (a *InstitutionsApiService) RetrieveAllSupportedInstitutionsInAGivenCountryExecute(r ApiRetrieveAllSupportedInstitutionsInAGivenCountryRequest) ([]Aspsp, *http.Response, error)

Execute executes the request

@return []Aspsp

func (*InstitutionsApiService) RetrieveInstitution

RetrieveInstitution Method for RetrieveInstitution

Get details about a specific Institution

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

func (*InstitutionsApiService) RetrieveInstitutionExecute

func (a *InstitutionsApiService) RetrieveInstitutionExecute(r ApiRetrieveInstitutionRequest) (*Aspsp, *http.Response, error)

Execute executes the request

@return Aspsp

type JWTObtainPairRequest

type JWTObtainPairRequest struct {
	// Secret id from /user-secrets/
	SecretId string `json:"secret_id"`
	// Secret key from /user-secrets/
	SecretKey string `json:"secret_key"`
}

JWTObtainPairRequest Obtain JWT pair.

func NewJWTObtainPairRequest

func NewJWTObtainPairRequest(secretId string, secretKey string) *JWTObtainPairRequest

NewJWTObtainPairRequest instantiates a new JWTObtainPairRequest 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 NewJWTObtainPairRequestWithDefaults

func NewJWTObtainPairRequestWithDefaults() *JWTObtainPairRequest

NewJWTObtainPairRequestWithDefaults instantiates a new JWTObtainPairRequest 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 (*JWTObtainPairRequest) GetSecretId

func (o *JWTObtainPairRequest) GetSecretId() string

GetSecretId returns the SecretId field value

func (*JWTObtainPairRequest) GetSecretIdOk

func (o *JWTObtainPairRequest) GetSecretIdOk() (*string, bool)

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

func (*JWTObtainPairRequest) GetSecretKey

func (o *JWTObtainPairRequest) GetSecretKey() string

GetSecretKey returns the SecretKey field value

func (*JWTObtainPairRequest) GetSecretKeyOk

func (o *JWTObtainPairRequest) GetSecretKeyOk() (*string, bool)

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

func (JWTObtainPairRequest) MarshalJSON

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

func (*JWTObtainPairRequest) SetSecretId

func (o *JWTObtainPairRequest) SetSecretId(v string)

SetSecretId sets field value

func (*JWTObtainPairRequest) SetSecretKey

func (o *JWTObtainPairRequest) SetSecretKey(v string)

SetSecretKey sets field value

type JWTRefreshRequest

type JWTRefreshRequest struct {
	Refresh string `json:"refresh"`
}

JWTRefreshRequest Refresh access token.

func NewJWTRefreshRequest

func NewJWTRefreshRequest(refresh string) *JWTRefreshRequest

NewJWTRefreshRequest instantiates a new JWTRefreshRequest 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 NewJWTRefreshRequestWithDefaults

func NewJWTRefreshRequestWithDefaults() *JWTRefreshRequest

NewJWTRefreshRequestWithDefaults instantiates a new JWTRefreshRequest 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 (*JWTRefreshRequest) GetRefresh

func (o *JWTRefreshRequest) GetRefresh() string

GetRefresh returns the Refresh field value

func (*JWTRefreshRequest) GetRefreshOk

func (o *JWTRefreshRequest) GetRefreshOk() (*string, bool)

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

func (JWTRefreshRequest) MarshalJSON

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

func (*JWTRefreshRequest) SetRefresh

func (o *JWTRefreshRequest) SetRefresh(v string)

SetRefresh sets field value

type NullableAccountBalance

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

func NewNullableAccountBalance

func NewNullableAccountBalance(val *AccountBalance) *NullableAccountBalance

func (NullableAccountBalance) Get

func (NullableAccountBalance) IsSet

func (v NullableAccountBalance) IsSet() bool

func (NullableAccountBalance) MarshalJSON

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

func (*NullableAccountBalance) Set

func (*NullableAccountBalance) UnmarshalJSON

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

func (*NullableAccountBalance) Unset

func (v *NullableAccountBalance) Unset()

type NullableAccountBalanceBalanceAmount

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

func (NullableAccountBalanceBalanceAmount) Get

func (NullableAccountBalanceBalanceAmount) IsSet

func (NullableAccountBalanceBalanceAmount) MarshalJSON

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

func (*NullableAccountBalanceBalanceAmount) Set

func (*NullableAccountBalanceBalanceAmount) UnmarshalJSON

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

func (*NullableAccountBalanceBalanceAmount) Unset

type NullableAccountBalancesResponse

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

func (NullableAccountBalancesResponse) Get

func (NullableAccountBalancesResponse) IsSet

func (NullableAccountBalancesResponse) MarshalJSON

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

func (*NullableAccountBalancesResponse) Set

func (*NullableAccountBalancesResponse) UnmarshalJSON

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

func (*NullableAccountBalancesResponse) Unset

type NullableAccountDetail

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

func NewNullableAccountDetail

func NewNullableAccountDetail(val *AccountDetail) *NullableAccountDetail

func (NullableAccountDetail) Get

func (NullableAccountDetail) IsSet

func (v NullableAccountDetail) IsSet() bool

func (NullableAccountDetail) MarshalJSON

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

func (*NullableAccountDetail) Set

func (v *NullableAccountDetail) Set(val *AccountDetail)

func (*NullableAccountDetail) UnmarshalJSON

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

func (*NullableAccountDetail) Unset

func (v *NullableAccountDetail) Unset()

type NullableAccountDetailResponse

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

func (NullableAccountDetailResponse) Get

func (NullableAccountDetailResponse) IsSet

func (NullableAccountDetailResponse) MarshalJSON

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

func (*NullableAccountDetailResponse) Set

func (*NullableAccountDetailResponse) UnmarshalJSON

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

func (*NullableAccountDetailResponse) Unset

func (v *NullableAccountDetailResponse) Unset()

type NullableAccountTransaction

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

func NewNullableAccountTransaction

func NewNullableAccountTransaction(val *AccountTransaction) *NullableAccountTransaction

func (NullableAccountTransaction) Get

func (NullableAccountTransaction) IsSet

func (v NullableAccountTransaction) IsSet() bool

func (NullableAccountTransaction) MarshalJSON

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

func (*NullableAccountTransaction) Set

func (*NullableAccountTransaction) UnmarshalJSON

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

func (*NullableAccountTransaction) Unset

func (v *NullableAccountTransaction) Unset()

type NullableAccountTransactionCreditorAccount

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

func (NullableAccountTransactionCreditorAccount) Get

func (NullableAccountTransactionCreditorAccount) IsSet

func (NullableAccountTransactionCreditorAccount) MarshalJSON

func (*NullableAccountTransactionCreditorAccount) Set

func (*NullableAccountTransactionCreditorAccount) UnmarshalJSON

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

func (*NullableAccountTransactionCreditorAccount) Unset

type NullableAccountTransactionDebtorAccount

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

func (NullableAccountTransactionDebtorAccount) Get

func (NullableAccountTransactionDebtorAccount) IsSet

func (NullableAccountTransactionDebtorAccount) MarshalJSON

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

func (*NullableAccountTransactionDebtorAccount) Set

func (*NullableAccountTransactionDebtorAccount) UnmarshalJSON

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

func (*NullableAccountTransactionDebtorAccount) Unset

type NullableAccountTransactionResponse

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

func (NullableAccountTransactionResponse) Get

func (NullableAccountTransactionResponse) IsSet

func (NullableAccountTransactionResponse) MarshalJSON

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

func (*NullableAccountTransactionResponse) Set

func (*NullableAccountTransactionResponse) UnmarshalJSON

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

func (*NullableAccountTransactionResponse) Unset

type NullableAccountTransactionResponseTransactions

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

func (NullableAccountTransactionResponseTransactions) Get

func (NullableAccountTransactionResponseTransactions) IsSet

func (NullableAccountTransactionResponseTransactions) MarshalJSON

func (*NullableAccountTransactionResponseTransactions) Set

func (*NullableAccountTransactionResponseTransactions) UnmarshalJSON

func (*NullableAccountTransactionResponseTransactions) Unset

type NullableAccountTransactionTransactionAmount

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

func (NullableAccountTransactionTransactionAmount) Get

func (NullableAccountTransactionTransactionAmount) IsSet

func (NullableAccountTransactionTransactionAmount) MarshalJSON

func (*NullableAccountTransactionTransactionAmount) Set

func (*NullableAccountTransactionTransactionAmount) UnmarshalJSON

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

func (*NullableAccountTransactionTransactionAmount) Unset

type NullableAccountV2

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

func NewNullableAccountV2

func NewNullableAccountV2(val *AccountV2) *NullableAccountV2

func (NullableAccountV2) Get

func (v NullableAccountV2) Get() *AccountV2

func (NullableAccountV2) IsSet

func (v NullableAccountV2) IsSet() bool

func (NullableAccountV2) MarshalJSON

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

func (*NullableAccountV2) Set

func (v *NullableAccountV2) Set(val *AccountV2)

func (*NullableAccountV2) UnmarshalJSON

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

func (*NullableAccountV2) Unset

func (v *NullableAccountV2) Unset()

type NullableAccountV2StatusEnum

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

func NewNullableAccountV2StatusEnum

func NewNullableAccountV2StatusEnum(val *AccountV2StatusEnum) *NullableAccountV2StatusEnum

func (NullableAccountV2StatusEnum) Get

func (NullableAccountV2StatusEnum) IsSet

func (NullableAccountV2StatusEnum) MarshalJSON

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

func (*NullableAccountV2StatusEnum) Set

func (*NullableAccountV2StatusEnum) UnmarshalJSON

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

func (*NullableAccountV2StatusEnum) Unset

func (v *NullableAccountV2StatusEnum) Unset()

type NullableAccountV2StatusEnumDiscovered

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

func (NullableAccountV2StatusEnumDiscovered) Get

func (NullableAccountV2StatusEnumDiscovered) IsSet

func (NullableAccountV2StatusEnumDiscovered) MarshalJSON

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

func (*NullableAccountV2StatusEnumDiscovered) Set

func (*NullableAccountV2StatusEnumDiscovered) UnmarshalJSON

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

func (*NullableAccountV2StatusEnumDiscovered) Unset

type NullableAccountV2StatusEnumError

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

func (NullableAccountV2StatusEnumError) Get

func (NullableAccountV2StatusEnumError) IsSet

func (NullableAccountV2StatusEnumError) MarshalJSON

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

func (*NullableAccountV2StatusEnumError) Set

func (*NullableAccountV2StatusEnumError) UnmarshalJSON

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

func (*NullableAccountV2StatusEnumError) Unset

type NullableAccountV2StatusEnumExpired

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

func (NullableAccountV2StatusEnumExpired) Get

func (NullableAccountV2StatusEnumExpired) IsSet

func (NullableAccountV2StatusEnumExpired) MarshalJSON

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

func (*NullableAccountV2StatusEnumExpired) Set

func (*NullableAccountV2StatusEnumExpired) UnmarshalJSON

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

func (*NullableAccountV2StatusEnumExpired) Unset

type NullableAccountV2StatusEnumProcessing

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

func (NullableAccountV2StatusEnumProcessing) Get

func (NullableAccountV2StatusEnumProcessing) IsSet

func (NullableAccountV2StatusEnumProcessing) MarshalJSON

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

func (*NullableAccountV2StatusEnumProcessing) Set

func (*NullableAccountV2StatusEnumProcessing) UnmarshalJSON

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

func (*NullableAccountV2StatusEnumProcessing) Unset

type NullableAccountV2StatusEnumReady

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

func (NullableAccountV2StatusEnumReady) Get

func (NullableAccountV2StatusEnumReady) IsSet

func (NullableAccountV2StatusEnumReady) MarshalJSON

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

func (*NullableAccountV2StatusEnumReady) Set

func (*NullableAccountV2StatusEnumReady) UnmarshalJSON

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

func (*NullableAccountV2StatusEnumReady) Unset

type NullableAccountV2StatusEnumSuspended

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

func (NullableAccountV2StatusEnumSuspended) Get

func (NullableAccountV2StatusEnumSuspended) IsSet

func (NullableAccountV2StatusEnumSuspended) MarshalJSON

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

func (*NullableAccountV2StatusEnumSuspended) Set

func (*NullableAccountV2StatusEnumSuspended) UnmarshalJSON

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

func (*NullableAccountV2StatusEnumSuspended) Unset

type NullableAspsp

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

func NewNullableAspsp

func NewNullableAspsp(val *Aspsp) *NullableAspsp

func (NullableAspsp) Get

func (v NullableAspsp) Get() *Aspsp

func (NullableAspsp) IsSet

func (v NullableAspsp) IsSet() bool

func (NullableAspsp) MarshalJSON

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

func (*NullableAspsp) Set

func (v *NullableAspsp) Set(val *Aspsp)

func (*NullableAspsp) UnmarshalJSON

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

func (*NullableAspsp) Unset

func (v *NullableAspsp) Unset()

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 NullableCashAccountType

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

func NewNullableCashAccountType

func NewNullableCashAccountType(val *CashAccountType) *NullableCashAccountType

func (NullableCashAccountType) Get

func (NullableCashAccountType) IsSet

func (v NullableCashAccountType) IsSet() bool

func (NullableCashAccountType) MarshalJSON

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

func (*NullableCashAccountType) Set

func (*NullableCashAccountType) UnmarshalJSON

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

func (*NullableCashAccountType) Unset

func (v *NullableCashAccountType) Unset()

type NullableCountryEnum

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

func NewNullableCountryEnum

func NewNullableCountryEnum(val *CountryEnum) *NullableCountryEnum

func (NullableCountryEnum) Get

func (NullableCountryEnum) IsSet

func (v NullableCountryEnum) IsSet() bool

func (NullableCountryEnum) MarshalJSON

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

func (*NullableCountryEnum) Set

func (v *NullableCountryEnum) Set(val *CountryEnum)

func (*NullableCountryEnum) UnmarshalJSON

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

func (*NullableCountryEnum) Unset

func (v *NullableCountryEnum) Unset()

type NullableEndUserAgreement

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

func NewNullableEndUserAgreement

func NewNullableEndUserAgreement(val *EndUserAgreement) *NullableEndUserAgreement

func (NullableEndUserAgreement) Get

func (NullableEndUserAgreement) IsSet

func (v NullableEndUserAgreement) IsSet() bool

func (NullableEndUserAgreement) MarshalJSON

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

func (*NullableEndUserAgreement) Set

func (*NullableEndUserAgreement) UnmarshalJSON

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

func (*NullableEndUserAgreement) Unset

func (v *NullableEndUserAgreement) Unset()

type NullableEndUserAgreementRequest

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

func (NullableEndUserAgreementRequest) Get

func (NullableEndUserAgreementRequest) IsSet

func (NullableEndUserAgreementRequest) MarshalJSON

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

func (*NullableEndUserAgreementRequest) Set

func (*NullableEndUserAgreementRequest) UnmarshalJSON

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

func (*NullableEndUserAgreementRequest) Unset

type NullableEnduserAcceptanceDetailsRequest

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

func (NullableEnduserAcceptanceDetailsRequest) Get

func (NullableEnduserAcceptanceDetailsRequest) IsSet

func (NullableEnduserAcceptanceDetailsRequest) MarshalJSON

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

func (*NullableEnduserAcceptanceDetailsRequest) Set

func (*NullableEnduserAcceptanceDetailsRequest) UnmarshalJSON

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

func (*NullableEnduserAcceptanceDetailsRequest) 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 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 NullableJWTObtainPairRequest

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

func NewNullableJWTObtainPairRequest

func NewNullableJWTObtainPairRequest(val *JWTObtainPairRequest) *NullableJWTObtainPairRequest

func (NullableJWTObtainPairRequest) Get

func (NullableJWTObtainPairRequest) IsSet

func (NullableJWTObtainPairRequest) MarshalJSON

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

func (*NullableJWTObtainPairRequest) Set

func (*NullableJWTObtainPairRequest) UnmarshalJSON

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

func (*NullableJWTObtainPairRequest) Unset

func (v *NullableJWTObtainPairRequest) Unset()

type NullableJWTRefreshRequest

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

func NewNullableJWTRefreshRequest

func NewNullableJWTRefreshRequest(val *JWTRefreshRequest) *NullableJWTRefreshRequest

func (NullableJWTRefreshRequest) Get

func (NullableJWTRefreshRequest) IsSet

func (v NullableJWTRefreshRequest) IsSet() bool

func (NullableJWTRefreshRequest) MarshalJSON

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

func (*NullableJWTRefreshRequest) Set

func (*NullableJWTRefreshRequest) UnmarshalJSON

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

func (*NullableJWTRefreshRequest) Unset

func (v *NullableJWTRefreshRequest) Unset()

type NullablePaginatedEndUserAgreementList

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

func (NullablePaginatedEndUserAgreementList) Get

func (NullablePaginatedEndUserAgreementList) IsSet

func (NullablePaginatedEndUserAgreementList) MarshalJSON

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

func (*NullablePaginatedEndUserAgreementList) Set

func (*NullablePaginatedEndUserAgreementList) UnmarshalJSON

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

func (*NullablePaginatedEndUserAgreementList) Unset

type NullablePaginatedRequisitionV2List

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

func (NullablePaginatedRequisitionV2List) Get

func (NullablePaginatedRequisitionV2List) IsSet

func (NullablePaginatedRequisitionV2List) MarshalJSON

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

func (*NullablePaginatedRequisitionV2List) Set

func (*NullablePaginatedRequisitionV2List) UnmarshalJSON

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

func (*NullablePaginatedRequisitionV2List) Unset

type NullablePremiumAccountQuery

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

func NewNullablePremiumAccountQuery

func NewNullablePremiumAccountQuery(val *PremiumAccountQuery) *NullablePremiumAccountQuery

func (NullablePremiumAccountQuery) Get

func (NullablePremiumAccountQuery) IsSet

func (NullablePremiumAccountQuery) MarshalJSON

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

func (*NullablePremiumAccountQuery) Set

func (*NullablePremiumAccountQuery) UnmarshalJSON

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

func (*NullablePremiumAccountQuery) Unset

func (v *NullablePremiumAccountQuery) Unset()

type NullableRequisitionLinkParamsRequest

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

func (NullableRequisitionLinkParamsRequest) Get

func (NullableRequisitionLinkParamsRequest) IsSet

func (NullableRequisitionLinkParamsRequest) MarshalJSON

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

func (*NullableRequisitionLinkParamsRequest) Set

func (*NullableRequisitionLinkParamsRequest) UnmarshalJSON

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

func (*NullableRequisitionLinkParamsRequest) Unset

type NullableRequisitionLinks struct {
	// contains filtered or unexported fields
}
func NewNullableRequisitionLinks(val *RequisitionLinks) *NullableRequisitionLinks

func (NullableRequisitionLinks) Get

func (NullableRequisitionLinks) IsSet

func (v NullableRequisitionLinks) IsSet() bool

func (NullableRequisitionLinks) MarshalJSON

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

func (*NullableRequisitionLinks) Set

func (*NullableRequisitionLinks) UnmarshalJSON

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

func (*NullableRequisitionLinks) Unset

func (v *NullableRequisitionLinks) Unset()

type NullableRequisitionV2

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

func NewNullableRequisitionV2

func NewNullableRequisitionV2(val *RequisitionV2) *NullableRequisitionV2

func (NullableRequisitionV2) Get

func (NullableRequisitionV2) IsSet

func (v NullableRequisitionV2) IsSet() bool

func (NullableRequisitionV2) MarshalJSON

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

func (*NullableRequisitionV2) Set

func (v *NullableRequisitionV2) Set(val *RequisitionV2)

func (*NullableRequisitionV2) UnmarshalJSON

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

func (*NullableRequisitionV2) Unset

func (v *NullableRequisitionV2) Unset()

type NullableRequisitionV2Request

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

func NewNullableRequisitionV2Request

func NewNullableRequisitionV2Request(val *RequisitionV2Request) *NullableRequisitionV2Request

func (NullableRequisitionV2Request) Get

func (NullableRequisitionV2Request) IsSet

func (NullableRequisitionV2Request) MarshalJSON

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

func (*NullableRequisitionV2Request) Set

func (*NullableRequisitionV2Request) UnmarshalJSON

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

func (*NullableRequisitionV2Request) Unset

func (v *NullableRequisitionV2Request) Unset()

type NullableSpectacularJWTObtain

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

func NewNullableSpectacularJWTObtain

func NewNullableSpectacularJWTObtain(val *SpectacularJWTObtain) *NullableSpectacularJWTObtain

func (NullableSpectacularJWTObtain) Get

func (NullableSpectacularJWTObtain) IsSet

func (NullableSpectacularJWTObtain) MarshalJSON

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

func (*NullableSpectacularJWTObtain) Set

func (*NullableSpectacularJWTObtain) UnmarshalJSON

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

func (*NullableSpectacularJWTObtain) Unset

func (v *NullableSpectacularJWTObtain) Unset()

type NullableSpectacularJWTRefresh

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

func (NullableSpectacularJWTRefresh) Get

func (NullableSpectacularJWTRefresh) IsSet

func (NullableSpectacularJWTRefresh) MarshalJSON

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

func (*NullableSpectacularJWTRefresh) Set

func (*NullableSpectacularJWTRefresh) UnmarshalJSON

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

func (*NullableSpectacularJWTRefresh) Unset

func (v *NullableSpectacularJWTRefresh) Unset()

type NullableSpectacularRequisitionV2

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

func (NullableSpectacularRequisitionV2) Get

func (NullableSpectacularRequisitionV2) IsSet

func (NullableSpectacularRequisitionV2) MarshalJSON

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

func (*NullableSpectacularRequisitionV2) Set

func (*NullableSpectacularRequisitionV2) UnmarshalJSON

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

func (*NullableSpectacularRequisitionV2) Unset

type NullableStatus1c5Enum

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

func NewNullableStatus1c5Enum

func NewNullableStatus1c5Enum(val *Status1c5Enum) *NullableStatus1c5Enum

func (NullableStatus1c5Enum) Get

func (NullableStatus1c5Enum) IsSet

func (v NullableStatus1c5Enum) IsSet() bool

func (NullableStatus1c5Enum) MarshalJSON

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

func (*NullableStatus1c5Enum) Set

func (v *NullableStatus1c5Enum) Set(val *Status1c5Enum)

func (*NullableStatus1c5Enum) UnmarshalJSON

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

func (*NullableStatus1c5Enum) Unset

func (v *NullableStatus1c5Enum) Unset()

type NullableStatus1c5EnumCreated

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

func NewNullableStatus1c5EnumCreated

func NewNullableStatus1c5EnumCreated(val *Status1c5EnumCreated) *NullableStatus1c5EnumCreated

func (NullableStatus1c5EnumCreated) Get

func (NullableStatus1c5EnumCreated) IsSet

func (NullableStatus1c5EnumCreated) MarshalJSON

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

func (*NullableStatus1c5EnumCreated) Set

func (*NullableStatus1c5EnumCreated) UnmarshalJSON

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

func (*NullableStatus1c5EnumCreated) Unset

func (v *NullableStatus1c5EnumCreated) Unset()

type NullableStatus1c5EnumExpired

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

func NewNullableStatus1c5EnumExpired

func NewNullableStatus1c5EnumExpired(val *Status1c5EnumExpired) *NullableStatus1c5EnumExpired

func (NullableStatus1c5EnumExpired) Get

func (NullableStatus1c5EnumExpired) IsSet

func (NullableStatus1c5EnumExpired) MarshalJSON

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

func (*NullableStatus1c5EnumExpired) Set

func (*NullableStatus1c5EnumExpired) UnmarshalJSON

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

func (*NullableStatus1c5EnumExpired) Unset

func (v *NullableStatus1c5EnumExpired) Unset()

type NullableStatus1c5EnumGivingConsent

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

func (NullableStatus1c5EnumGivingConsent) Get

func (NullableStatus1c5EnumGivingConsent) IsSet

func (NullableStatus1c5EnumGivingConsent) MarshalJSON

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

func (*NullableStatus1c5EnumGivingConsent) Set

func (*NullableStatus1c5EnumGivingConsent) UnmarshalJSON

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

func (*NullableStatus1c5EnumGivingConsent) Unset

type NullableStatus1c5EnumGrantingAccess

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

func (NullableStatus1c5EnumGrantingAccess) Get

func (NullableStatus1c5EnumGrantingAccess) IsSet

func (NullableStatus1c5EnumGrantingAccess) MarshalJSON

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

func (*NullableStatus1c5EnumGrantingAccess) Set

func (*NullableStatus1c5EnumGrantingAccess) UnmarshalJSON

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

func (*NullableStatus1c5EnumGrantingAccess) Unset

type NullableStatus1c5EnumLinked

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

func NewNullableStatus1c5EnumLinked

func NewNullableStatus1c5EnumLinked(val *Status1c5EnumLinked) *NullableStatus1c5EnumLinked

func (NullableStatus1c5EnumLinked) Get

func (NullableStatus1c5EnumLinked) IsSet

func (NullableStatus1c5EnumLinked) MarshalJSON

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

func (*NullableStatus1c5EnumLinked) Set

func (*NullableStatus1c5EnumLinked) UnmarshalJSON

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

func (*NullableStatus1c5EnumLinked) Unset

func (v *NullableStatus1c5EnumLinked) Unset()

type NullableStatus1c5EnumRejected

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

func (NullableStatus1c5EnumRejected) Get

func (NullableStatus1c5EnumRejected) IsSet

func (NullableStatus1c5EnumRejected) MarshalJSON

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

func (*NullableStatus1c5EnumRejected) Set

func (*NullableStatus1c5EnumRejected) UnmarshalJSON

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

func (*NullableStatus1c5EnumRejected) Unset

func (v *NullableStatus1c5EnumRejected) Unset()

type NullableStatus1c5EnumSelectingAccounts

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

func (NullableStatus1c5EnumSelectingAccounts) Get

func (NullableStatus1c5EnumSelectingAccounts) IsSet

func (NullableStatus1c5EnumSelectingAccounts) MarshalJSON

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

func (*NullableStatus1c5EnumSelectingAccounts) Set

func (*NullableStatus1c5EnumSelectingAccounts) UnmarshalJSON

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

func (*NullableStatus1c5EnumSelectingAccounts) Unset

type NullableStatus1c5EnumUndergoingAuthentication

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

func (NullableStatus1c5EnumUndergoingAuthentication) Get

func (NullableStatus1c5EnumUndergoingAuthentication) IsSet

func (NullableStatus1c5EnumUndergoingAuthentication) MarshalJSON

func (*NullableStatus1c5EnumUndergoingAuthentication) Set

func (*NullableStatus1c5EnumUndergoingAuthentication) UnmarshalJSON

func (*NullableStatus1c5EnumUndergoingAuthentication) 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 PaginatedEndUserAgreementList

type PaginatedEndUserAgreementList struct {
	Count    *int32             `json:"count,omitempty"`
	Next     NullableString     `json:"next,omitempty"`
	Previous NullableString     `json:"previous,omitempty"`
	Results  []EndUserAgreement `json:"results,omitempty"`
}

PaginatedEndUserAgreementList struct for PaginatedEndUserAgreementList

func NewPaginatedEndUserAgreementList

func NewPaginatedEndUserAgreementList() *PaginatedEndUserAgreementList

NewPaginatedEndUserAgreementList instantiates a new PaginatedEndUserAgreementList 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 NewPaginatedEndUserAgreementListWithDefaults

func NewPaginatedEndUserAgreementListWithDefaults() *PaginatedEndUserAgreementList

NewPaginatedEndUserAgreementListWithDefaults instantiates a new PaginatedEndUserAgreementList 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 (*PaginatedEndUserAgreementList) GetCount

func (o *PaginatedEndUserAgreementList) GetCount() int32

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

func (*PaginatedEndUserAgreementList) GetCountOk

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

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 (*PaginatedEndUserAgreementList) GetNext

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

func (*PaginatedEndUserAgreementList) GetNextOk

func (o *PaginatedEndUserAgreementList) GetNextOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginatedEndUserAgreementList) GetPrevious

func (o *PaginatedEndUserAgreementList) GetPrevious() string

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

func (*PaginatedEndUserAgreementList) GetPreviousOk

func (o *PaginatedEndUserAgreementList) GetPreviousOk() (*string, bool)

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

func (*PaginatedEndUserAgreementList) GetResults

GetResults returns the Results field value if set, zero value otherwise.

func (*PaginatedEndUserAgreementList) GetResultsOk

func (o *PaginatedEndUserAgreementList) GetResultsOk() ([]EndUserAgreement, bool)

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

func (*PaginatedEndUserAgreementList) HasCount

func (o *PaginatedEndUserAgreementList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*PaginatedEndUserAgreementList) HasNext

func (o *PaginatedEndUserAgreementList) HasNext() bool

HasNext returns a boolean if a field has been set.

func (*PaginatedEndUserAgreementList) HasPrevious

func (o *PaginatedEndUserAgreementList) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

func (*PaginatedEndUserAgreementList) HasResults

func (o *PaginatedEndUserAgreementList) HasResults() bool

HasResults returns a boolean if a field has been set.

func (PaginatedEndUserAgreementList) MarshalJSON

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

func (*PaginatedEndUserAgreementList) SetCount

func (o *PaginatedEndUserAgreementList) SetCount(v int32)

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

func (*PaginatedEndUserAgreementList) SetNext

func (o *PaginatedEndUserAgreementList) SetNext(v string)

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

func (*PaginatedEndUserAgreementList) SetNextNil

func (o *PaginatedEndUserAgreementList) SetNextNil()

SetNextNil sets the value for Next to be an explicit nil

func (*PaginatedEndUserAgreementList) SetPrevious

func (o *PaginatedEndUserAgreementList) SetPrevious(v string)

SetPrevious gets a reference to the given NullableString and assigns it to the Previous field.

func (*PaginatedEndUserAgreementList) SetPreviousNil

func (o *PaginatedEndUserAgreementList) SetPreviousNil()

SetPreviousNil sets the value for Previous to be an explicit nil

func (*PaginatedEndUserAgreementList) SetResults

SetResults gets a reference to the given []EndUserAgreement and assigns it to the Results field.

func (*PaginatedEndUserAgreementList) UnsetNext

func (o *PaginatedEndUserAgreementList) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

func (*PaginatedEndUserAgreementList) UnsetPrevious

func (o *PaginatedEndUserAgreementList) UnsetPrevious()

UnsetPrevious ensures that no value is present for Previous, not even an explicit nil

type PaginatedRequisitionV2List

type PaginatedRequisitionV2List struct {
	Count    *int32          `json:"count,omitempty"`
	Next     NullableString  `json:"next,omitempty"`
	Previous NullableString  `json:"previous,omitempty"`
	Results  []RequisitionV2 `json:"results,omitempty"`
}

PaginatedRequisitionV2List struct for PaginatedRequisitionV2List

func NewPaginatedRequisitionV2List

func NewPaginatedRequisitionV2List() *PaginatedRequisitionV2List

NewPaginatedRequisitionV2List instantiates a new PaginatedRequisitionV2List 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 NewPaginatedRequisitionV2ListWithDefaults

func NewPaginatedRequisitionV2ListWithDefaults() *PaginatedRequisitionV2List

NewPaginatedRequisitionV2ListWithDefaults instantiates a new PaginatedRequisitionV2List 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 (*PaginatedRequisitionV2List) GetCount

func (o *PaginatedRequisitionV2List) GetCount() int32

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

func (*PaginatedRequisitionV2List) GetCountOk

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

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 (*PaginatedRequisitionV2List) GetNext

func (o *PaginatedRequisitionV2List) GetNext() string

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

func (*PaginatedRequisitionV2List) GetNextOk

func (o *PaginatedRequisitionV2List) GetNextOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PaginatedRequisitionV2List) GetPrevious

func (o *PaginatedRequisitionV2List) GetPrevious() string

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

func (*PaginatedRequisitionV2List) GetPreviousOk

func (o *PaginatedRequisitionV2List) GetPreviousOk() (*string, bool)

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

func (*PaginatedRequisitionV2List) GetResults

func (o *PaginatedRequisitionV2List) GetResults() []RequisitionV2

GetResults returns the Results field value if set, zero value otherwise.

func (*PaginatedRequisitionV2List) GetResultsOk

func (o *PaginatedRequisitionV2List) GetResultsOk() ([]RequisitionV2, bool)

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

func (*PaginatedRequisitionV2List) HasCount

func (o *PaginatedRequisitionV2List) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*PaginatedRequisitionV2List) HasNext

func (o *PaginatedRequisitionV2List) HasNext() bool

HasNext returns a boolean if a field has been set.

func (*PaginatedRequisitionV2List) HasPrevious

func (o *PaginatedRequisitionV2List) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

func (*PaginatedRequisitionV2List) HasResults

func (o *PaginatedRequisitionV2List) HasResults() bool

HasResults returns a boolean if a field has been set.

func (PaginatedRequisitionV2List) MarshalJSON

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

func (*PaginatedRequisitionV2List) SetCount

func (o *PaginatedRequisitionV2List) SetCount(v int32)

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

func (*PaginatedRequisitionV2List) SetNext

func (o *PaginatedRequisitionV2List) SetNext(v string)

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

func (*PaginatedRequisitionV2List) SetNextNil

func (o *PaginatedRequisitionV2List) SetNextNil()

SetNextNil sets the value for Next to be an explicit nil

func (*PaginatedRequisitionV2List) SetPrevious

func (o *PaginatedRequisitionV2List) SetPrevious(v string)

SetPrevious gets a reference to the given NullableString and assigns it to the Previous field.

func (*PaginatedRequisitionV2List) SetPreviousNil

func (o *PaginatedRequisitionV2List) SetPreviousNil()

SetPreviousNil sets the value for Previous to be an explicit nil

func (*PaginatedRequisitionV2List) SetResults

func (o *PaginatedRequisitionV2List) SetResults(v []RequisitionV2)

SetResults gets a reference to the given []RequisitionV2 and assigns it to the Results field.

func (*PaginatedRequisitionV2List) UnsetNext

func (o *PaginatedRequisitionV2List) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

func (*PaginatedRequisitionV2List) UnsetPrevious

func (o *PaginatedRequisitionV2List) UnsetPrevious()

UnsetPrevious ensures that no value is present for Previous, not even an explicit nil

type PremiumAccountQuery

type PremiumAccountQuery struct {
	DateFrom *string      `json:"date_from,omitempty"`
	DateTo   *string      `json:"date_to,omitempty"`
	Country  *CountryEnum `json:"country,omitempty"`
}

PremiumAccountQuery Filter country.

func NewPremiumAccountQuery

func NewPremiumAccountQuery() *PremiumAccountQuery

NewPremiumAccountQuery instantiates a new PremiumAccountQuery 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 NewPremiumAccountQueryWithDefaults

func NewPremiumAccountQueryWithDefaults() *PremiumAccountQuery

NewPremiumAccountQueryWithDefaults instantiates a new PremiumAccountQuery 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 (*PremiumAccountQuery) GetCountry

func (o *PremiumAccountQuery) GetCountry() CountryEnum

GetCountry returns the Country field value if set, zero value otherwise.

func (*PremiumAccountQuery) GetCountryOk

func (o *PremiumAccountQuery) GetCountryOk() (*CountryEnum, bool)

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

func (*PremiumAccountQuery) GetDateFrom

func (o *PremiumAccountQuery) GetDateFrom() string

GetDateFrom returns the DateFrom field value if set, zero value otherwise.

func (*PremiumAccountQuery) GetDateFromOk

func (o *PremiumAccountQuery) GetDateFromOk() (*string, bool)

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

func (*PremiumAccountQuery) GetDateTo

func (o *PremiumAccountQuery) GetDateTo() string

GetDateTo returns the DateTo field value if set, zero value otherwise.

func (*PremiumAccountQuery) GetDateToOk

func (o *PremiumAccountQuery) GetDateToOk() (*string, bool)

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

func (*PremiumAccountQuery) HasCountry

func (o *PremiumAccountQuery) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*PremiumAccountQuery) HasDateFrom

func (o *PremiumAccountQuery) HasDateFrom() bool

HasDateFrom returns a boolean if a field has been set.

func (*PremiumAccountQuery) HasDateTo

func (o *PremiumAccountQuery) HasDateTo() bool

HasDateTo returns a boolean if a field has been set.

func (PremiumAccountQuery) MarshalJSON

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

func (*PremiumAccountQuery) SetCountry

func (o *PremiumAccountQuery) SetCountry(v CountryEnum)

SetCountry gets a reference to the given CountryEnum and assigns it to the Country field.

func (*PremiumAccountQuery) SetDateFrom

func (o *PremiumAccountQuery) SetDateFrom(v string)

SetDateFrom gets a reference to the given string and assigns it to the DateFrom field.

func (*PremiumAccountQuery) SetDateTo

func (o *PremiumAccountQuery) SetDateTo(v string)

SetDateTo gets a reference to the given string and assigns it to the DateTo field.

type PremiumApiService

type PremiumApiService service

PremiumApiService PremiumApi service

func (*PremiumApiService) RetrieveAccountBalancesV2

func (a *PremiumApiService) RetrieveAccountBalancesV2(ctx context.Context, id string) ApiRetrieveAccountBalancesV2Request

RetrieveAccountBalancesV2 Method for RetrieveAccountBalancesV2

Access account premium balances.

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

func (*PremiumApiService) RetrieveAccountBalancesV2Execute

func (a *PremiumApiService) RetrieveAccountBalancesV2Execute(r ApiRetrieveAccountBalancesV2Request) (*http.Response, error)

Execute executes the request

func (*PremiumApiService) RetrieveAccountDetailsV2

func (a *PremiumApiService) RetrieveAccountDetailsV2(ctx context.Context, id string) ApiRetrieveAccountDetailsV2Request

RetrieveAccountDetailsV2 Method for RetrieveAccountDetailsV2

Access account premium details.

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

func (*PremiumApiService) RetrieveAccountDetailsV2Execute

func (a *PremiumApiService) RetrieveAccountDetailsV2Execute(r ApiRetrieveAccountDetailsV2Request) (*http.Response, error)

Execute executes the request

func (*PremiumApiService) RetrieveAccountTransactionsV2

func (a *PremiumApiService) RetrieveAccountTransactionsV2(ctx context.Context, id string) ApiRetrieveAccountTransactionsV2Request

RetrieveAccountTransactionsV2 Method for RetrieveAccountTransactionsV2

Access account premium transactions.

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

func (*PremiumApiService) RetrieveAccountTransactionsV2Execute

func (a *PremiumApiService) RetrieveAccountTransactionsV2Execute(r ApiRetrieveAccountTransactionsV2Request) (*http.Response, error)

Execute executes the request

type RequisitionLinkParamsRequest

type RequisitionLinkParamsRequest struct {
	// ASPSP ID. Should match one used while creating EUA, if it's linked to this requisition
	AspspId string `json:"aspsp_id"`
}

RequisitionLinkParamsRequest RequisitionLinkParamsSerializer.

func NewRequisitionLinkParamsRequest

func NewRequisitionLinkParamsRequest(aspspId string) *RequisitionLinkParamsRequest

NewRequisitionLinkParamsRequest instantiates a new RequisitionLinkParamsRequest 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 NewRequisitionLinkParamsRequestWithDefaults

func NewRequisitionLinkParamsRequestWithDefaults() *RequisitionLinkParamsRequest

NewRequisitionLinkParamsRequestWithDefaults instantiates a new RequisitionLinkParamsRequest 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 (*RequisitionLinkParamsRequest) GetAspspId

func (o *RequisitionLinkParamsRequest) GetAspspId() string

GetAspspId returns the AspspId field value

func (*RequisitionLinkParamsRequest) GetAspspIdOk

func (o *RequisitionLinkParamsRequest) GetAspspIdOk() (*string, bool)

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

func (RequisitionLinkParamsRequest) MarshalJSON

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

func (*RequisitionLinkParamsRequest) SetAspspId

func (o *RequisitionLinkParamsRequest) SetAspspId(v string)

SetAspspId sets field value

type RequisitionLinks struct {
	Initiate *string `json:"initiate,omitempty"`
}

RequisitionLinks RequisitionLinksSerializer.

func NewRequisitionLinks() *RequisitionLinks

NewRequisitionLinks instantiates a new RequisitionLinks 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 NewRequisitionLinksWithDefaults

func NewRequisitionLinksWithDefaults() *RequisitionLinks

NewRequisitionLinksWithDefaults instantiates a new RequisitionLinks 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 (*RequisitionLinks) GetInitiate

func (o *RequisitionLinks) GetInitiate() string

GetInitiate returns the Initiate field value if set, zero value otherwise.

func (*RequisitionLinks) GetInitiateOk

func (o *RequisitionLinks) GetInitiateOk() (*string, bool)

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

func (*RequisitionLinks) HasInitiate

func (o *RequisitionLinks) HasInitiate() bool

HasInitiate returns a boolean if a field has been set.

func (RequisitionLinks) MarshalJSON

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

func (*RequisitionLinks) SetInitiate

func (o *RequisitionLinks) SetInitiate(v string)

SetInitiate gets a reference to the given string and assigns it to the Initiate field.

type RequisitionV2

type RequisitionV2 struct {
	Id *string `json:"id,omitempty"`
	// The date & time at which the requisition was created.
	Created NullableTime `json:"created,omitempty"`
	// redirect URL to your application after end-user authorization with ASPSP
	Redirect NullableString        `json:"redirect"`
	Status   NullableStatus1c5Enum `json:"status,omitempty"`
	// an Institution ID for this Requisition
	InstitutionId string `json:"institution_id"`
	// EUA associated with this requisition
	Agreement *string `json:"agreement,omitempty"`
	// additional ID to identify the end user
	Reference *string `json:"reference,omitempty"`
	// array of account IDs retrieved within a scope of this requisition
	Accounts []string `json:"accounts,omitempty"`
	// A two-letter country code (ISO 639-1)
	UserLanguage *string `json:"user_language,omitempty"`
	// link to initiate authorization with Institution
	Link *string `json:"link,omitempty"`
	// optional SSN field to verify ownership of the account
	Ssn *string `json:"ssn,omitempty"`
	// option to enable account selection view for the end user
	AccountSelection *bool `json:"account_selection,omitempty"`
	// enable redirect back to the client after account list received
	RedirectImmediate *bool `json:"redirect_immediate,omitempty"`
}

RequisitionV2 Get requisition by id.

func NewRequisitionV2

func NewRequisitionV2(redirect NullableString, institutionId string) *RequisitionV2

NewRequisitionV2 instantiates a new RequisitionV2 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 NewRequisitionV2WithDefaults

func NewRequisitionV2WithDefaults() *RequisitionV2

NewRequisitionV2WithDefaults instantiates a new RequisitionV2 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 (*RequisitionV2) GetAccountSelection

func (o *RequisitionV2) GetAccountSelection() bool

GetAccountSelection returns the AccountSelection field value if set, zero value otherwise.

func (*RequisitionV2) GetAccountSelectionOk

func (o *RequisitionV2) GetAccountSelectionOk() (*bool, bool)

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

func (*RequisitionV2) GetAccounts

func (o *RequisitionV2) GetAccounts() []string

GetAccounts returns the Accounts field value if set, zero value otherwise.

func (*RequisitionV2) GetAccountsOk

func (o *RequisitionV2) GetAccountsOk() ([]string, bool)

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

func (*RequisitionV2) GetAgreement

func (o *RequisitionV2) GetAgreement() string

GetAgreement returns the Agreement field value if set, zero value otherwise.

func (*RequisitionV2) GetAgreementOk

func (o *RequisitionV2) GetAgreementOk() (*string, bool)

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

func (*RequisitionV2) GetCreated

func (o *RequisitionV2) GetCreated() time.Time

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

func (*RequisitionV2) GetCreatedOk

func (o *RequisitionV2) GetCreatedOk() (*time.Time, bool)

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

func (*RequisitionV2) GetId

func (o *RequisitionV2) GetId() string

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

func (*RequisitionV2) GetIdOk

func (o *RequisitionV2) 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 (*RequisitionV2) GetInstitutionId

func (o *RequisitionV2) GetInstitutionId() string

GetInstitutionId returns the InstitutionId field value

func (*RequisitionV2) GetInstitutionIdOk

func (o *RequisitionV2) GetInstitutionIdOk() (*string, bool)

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

func (o *RequisitionV2) GetLink() string

GetLink returns the Link field value if set, zero value otherwise.

func (*RequisitionV2) GetLinkOk

func (o *RequisitionV2) GetLinkOk() (*string, bool)

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

func (*RequisitionV2) GetRedirect

func (o *RequisitionV2) GetRedirect() string

GetRedirect returns the Redirect field value If the value is explicit nil, the zero value for string will be returned

func (*RequisitionV2) GetRedirectImmediate

func (o *RequisitionV2) GetRedirectImmediate() bool

GetRedirectImmediate returns the RedirectImmediate field value if set, zero value otherwise.

func (*RequisitionV2) GetRedirectImmediateOk

func (o *RequisitionV2) GetRedirectImmediateOk() (*bool, bool)

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

func (*RequisitionV2) GetRedirectOk

func (o *RequisitionV2) GetRedirectOk() (*string, bool)

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

func (*RequisitionV2) GetReference

func (o *RequisitionV2) GetReference() string

GetReference returns the Reference field value if set, zero value otherwise.

func (*RequisitionV2) GetReferenceOk

func (o *RequisitionV2) GetReferenceOk() (*string, bool)

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

func (*RequisitionV2) GetSsn

func (o *RequisitionV2) GetSsn() string

GetSsn returns the Ssn field value if set, zero value otherwise.

func (*RequisitionV2) GetSsnOk

func (o *RequisitionV2) GetSsnOk() (*string, bool)

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

func (*RequisitionV2) GetStatus

func (o *RequisitionV2) GetStatus() Status1c5Enum

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

func (*RequisitionV2) GetStatusOk

func (o *RequisitionV2) GetStatusOk() (*Status1c5Enum, bool)

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

func (*RequisitionV2) GetUserLanguage

func (o *RequisitionV2) GetUserLanguage() string

GetUserLanguage returns the UserLanguage field value if set, zero value otherwise.

func (*RequisitionV2) GetUserLanguageOk

func (o *RequisitionV2) GetUserLanguageOk() (*string, bool)

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

func (*RequisitionV2) HasAccountSelection

func (o *RequisitionV2) HasAccountSelection() bool

HasAccountSelection returns a boolean if a field has been set.

func (*RequisitionV2) HasAccounts

func (o *RequisitionV2) HasAccounts() bool

HasAccounts returns a boolean if a field has been set.

func (*RequisitionV2) HasAgreement

func (o *RequisitionV2) HasAgreement() bool

HasAgreement returns a boolean if a field has been set.

func (*RequisitionV2) HasCreated

func (o *RequisitionV2) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*RequisitionV2) HasId

func (o *RequisitionV2) HasId() bool

HasId returns a boolean if a field has been set.

func (o *RequisitionV2) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*RequisitionV2) HasRedirectImmediate

func (o *RequisitionV2) HasRedirectImmediate() bool

HasRedirectImmediate returns a boolean if a field has been set.

func (*RequisitionV2) HasReference

func (o *RequisitionV2) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*RequisitionV2) HasSsn

func (o *RequisitionV2) HasSsn() bool

HasSsn returns a boolean if a field has been set.

func (*RequisitionV2) HasStatus

func (o *RequisitionV2) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*RequisitionV2) HasUserLanguage

func (o *RequisitionV2) HasUserLanguage() bool

HasUserLanguage returns a boolean if a field has been set.

func (RequisitionV2) MarshalJSON

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

func (*RequisitionV2) SetAccountSelection

func (o *RequisitionV2) SetAccountSelection(v bool)

SetAccountSelection gets a reference to the given bool and assigns it to the AccountSelection field.

func (*RequisitionV2) SetAccounts

func (o *RequisitionV2) SetAccounts(v []string)

SetAccounts gets a reference to the given []string and assigns it to the Accounts field.

func (*RequisitionV2) SetAgreement

func (o *RequisitionV2) SetAgreement(v string)

SetAgreement gets a reference to the given string and assigns it to the Agreement field.

func (*RequisitionV2) SetCreated

func (o *RequisitionV2) SetCreated(v time.Time)

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

func (*RequisitionV2) SetCreatedNil

func (o *RequisitionV2) SetCreatedNil()

SetCreatedNil sets the value for Created to be an explicit nil

func (*RequisitionV2) SetId

func (o *RequisitionV2) SetId(v string)

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

func (*RequisitionV2) SetInstitutionId

func (o *RequisitionV2) SetInstitutionId(v string)

SetInstitutionId sets field value

func (o *RequisitionV2) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*RequisitionV2) SetRedirect

func (o *RequisitionV2) SetRedirect(v string)

SetRedirect sets field value

func (*RequisitionV2) SetRedirectImmediate

func (o *RequisitionV2) SetRedirectImmediate(v bool)

SetRedirectImmediate gets a reference to the given bool and assigns it to the RedirectImmediate field.

func (*RequisitionV2) SetReference

func (o *RequisitionV2) SetReference(v string)

SetReference gets a reference to the given string and assigns it to the Reference field.

func (*RequisitionV2) SetSsn

func (o *RequisitionV2) SetSsn(v string)

SetSsn gets a reference to the given string and assigns it to the Ssn field.

func (*RequisitionV2) SetStatus

func (o *RequisitionV2) SetStatus(v Status1c5Enum)

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

func (*RequisitionV2) SetStatusNil

func (o *RequisitionV2) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*RequisitionV2) SetUserLanguage

func (o *RequisitionV2) SetUserLanguage(v string)

SetUserLanguage gets a reference to the given string and assigns it to the UserLanguage field.

func (*RequisitionV2) UnsetCreated

func (o *RequisitionV2) UnsetCreated()

UnsetCreated ensures that no value is present for Created, not even an explicit nil

func (*RequisitionV2) UnsetStatus

func (o *RequisitionV2) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

type RequisitionV2Request

type RequisitionV2Request struct {
	// redirect URL to your application after end-user authorization with ASPSP
	Redirect NullableString `json:"redirect"`
	// an Institution ID for this Requisition
	InstitutionId string `json:"institution_id"`
	// EUA associated with this requisition
	Agreement *string `json:"agreement,omitempty"`
	// additional ID to identify the end user
	Reference *string `json:"reference,omitempty"`
	// A two-letter country code (ISO 639-1)
	UserLanguage *string `json:"user_language,omitempty"`
	// optional SSN field to verify ownership of the account
	Ssn *string `json:"ssn,omitempty"`
	// option to enable account selection view for the end user
	AccountSelection *bool `json:"account_selection,omitempty"`
	// enable redirect back to the client after account list received
	RedirectImmediate *bool `json:"redirect_immediate,omitempty"`
}

RequisitionV2Request Get requisition by id.

func NewRequisitionV2Request

func NewRequisitionV2Request(redirect NullableString, institutionId string) *RequisitionV2Request

NewRequisitionV2Request instantiates a new RequisitionV2Request 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 NewRequisitionV2RequestWithDefaults

func NewRequisitionV2RequestWithDefaults() *RequisitionV2Request

NewRequisitionV2RequestWithDefaults instantiates a new RequisitionV2Request 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 (*RequisitionV2Request) GetAccountSelection

func (o *RequisitionV2Request) GetAccountSelection() bool

GetAccountSelection returns the AccountSelection field value if set, zero value otherwise.

func (*RequisitionV2Request) GetAccountSelectionOk

func (o *RequisitionV2Request) GetAccountSelectionOk() (*bool, bool)

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

func (*RequisitionV2Request) GetAgreement

func (o *RequisitionV2Request) GetAgreement() string

GetAgreement returns the Agreement field value if set, zero value otherwise.

func (*RequisitionV2Request) GetAgreementOk

func (o *RequisitionV2Request) GetAgreementOk() (*string, bool)

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

func (*RequisitionV2Request) GetInstitutionId

func (o *RequisitionV2Request) GetInstitutionId() string

GetInstitutionId returns the InstitutionId field value

func (*RequisitionV2Request) GetInstitutionIdOk

func (o *RequisitionV2Request) GetInstitutionIdOk() (*string, bool)

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

func (*RequisitionV2Request) GetRedirect

func (o *RequisitionV2Request) GetRedirect() string

GetRedirect returns the Redirect field value If the value is explicit nil, the zero value for string will be returned

func (*RequisitionV2Request) GetRedirectImmediate

func (o *RequisitionV2Request) GetRedirectImmediate() bool

GetRedirectImmediate returns the RedirectImmediate field value if set, zero value otherwise.

func (*RequisitionV2Request) GetRedirectImmediateOk

func (o *RequisitionV2Request) GetRedirectImmediateOk() (*bool, bool)

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

func (*RequisitionV2Request) GetRedirectOk

func (o *RequisitionV2Request) GetRedirectOk() (*string, bool)

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

func (*RequisitionV2Request) GetReference

func (o *RequisitionV2Request) GetReference() string

GetReference returns the Reference field value if set, zero value otherwise.

func (*RequisitionV2Request) GetReferenceOk

func (o *RequisitionV2Request) GetReferenceOk() (*string, bool)

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

func (*RequisitionV2Request) GetSsn

func (o *RequisitionV2Request) GetSsn() string

GetSsn returns the Ssn field value if set, zero value otherwise.

func (*RequisitionV2Request) GetSsnOk

func (o *RequisitionV2Request) GetSsnOk() (*string, bool)

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

func (*RequisitionV2Request) GetUserLanguage

func (o *RequisitionV2Request) GetUserLanguage() string

GetUserLanguage returns the UserLanguage field value if set, zero value otherwise.

func (*RequisitionV2Request) GetUserLanguageOk

func (o *RequisitionV2Request) GetUserLanguageOk() (*string, bool)

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

func (*RequisitionV2Request) HasAccountSelection

func (o *RequisitionV2Request) HasAccountSelection() bool

HasAccountSelection returns a boolean if a field has been set.

func (*RequisitionV2Request) HasAgreement

func (o *RequisitionV2Request) HasAgreement() bool

HasAgreement returns a boolean if a field has been set.

func (*RequisitionV2Request) HasRedirectImmediate

func (o *RequisitionV2Request) HasRedirectImmediate() bool

HasRedirectImmediate returns a boolean if a field has been set.

func (*RequisitionV2Request) HasReference

func (o *RequisitionV2Request) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*RequisitionV2Request) HasSsn

func (o *RequisitionV2Request) HasSsn() bool

HasSsn returns a boolean if a field has been set.

func (*RequisitionV2Request) HasUserLanguage

func (o *RequisitionV2Request) HasUserLanguage() bool

HasUserLanguage returns a boolean if a field has been set.

func (RequisitionV2Request) MarshalJSON

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

func (*RequisitionV2Request) SetAccountSelection

func (o *RequisitionV2Request) SetAccountSelection(v bool)

SetAccountSelection gets a reference to the given bool and assigns it to the AccountSelection field.

func (*RequisitionV2Request) SetAgreement

func (o *RequisitionV2Request) SetAgreement(v string)

SetAgreement gets a reference to the given string and assigns it to the Agreement field.

func (*RequisitionV2Request) SetInstitutionId

func (o *RequisitionV2Request) SetInstitutionId(v string)

SetInstitutionId sets field value

func (*RequisitionV2Request) SetRedirect

func (o *RequisitionV2Request) SetRedirect(v string)

SetRedirect sets field value

func (*RequisitionV2Request) SetRedirectImmediate

func (o *RequisitionV2Request) SetRedirectImmediate(v bool)

SetRedirectImmediate gets a reference to the given bool and assigns it to the RedirectImmediate field.

func (*RequisitionV2Request) SetReference

func (o *RequisitionV2Request) SetReference(v string)

SetReference gets a reference to the given string and assigns it to the Reference field.

func (*RequisitionV2Request) SetSsn

func (o *RequisitionV2Request) SetSsn(v string)

SetSsn gets a reference to the given string and assigns it to the Ssn field.

func (*RequisitionV2Request) SetUserLanguage

func (o *RequisitionV2Request) SetUserLanguage(v string)

SetUserLanguage gets a reference to the given string and assigns it to the UserLanguage field.

type RequisitionsApiService

type RequisitionsApiService service

RequisitionsApiService RequisitionsApi service

func (*RequisitionsApiService) DeleteRequisitionByIdV2

DeleteRequisitionByIdV2 Method for DeleteRequisitionByIdV2

Delete Requisition and all End User Agreements.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id A UUID string identifying this requisition.
@return ApiDeleteRequisitionByIdV2Request

func (*RequisitionsApiService) DeleteRequisitionByIdV2Execute

func (a *RequisitionsApiService) DeleteRequisitionByIdV2Execute(r ApiDeleteRequisitionByIdV2Request) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*RequisitionsApiService) RequisitionById

RequisitionById Method for RequisitionById

Retrieve all requisition by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id A UUID string identifying this requisition.
@return ApiRequisitionByIdRequest

func (*RequisitionsApiService) RequisitionByIdExecute

Execute executes the request

@return RequisitionV2

func (*RequisitionsApiService) RequisitionCreated

RequisitionCreated Method for RequisitionCreated

Create new requisition

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

func (*RequisitionsApiService) RequisitionCreatedExecute

Execute executes the request

@return SpectacularRequisitionV2

func (*RequisitionsApiService) RetrieveAllRequisitions

RetrieveAllRequisitions Method for RetrieveAllRequisitions

Retrieve all requisitions belonging to the company

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

func (*RequisitionsApiService) RetrieveAllRequisitionsExecute

Execute executes the request

@return PaginatedRequisitionV2List

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 an index using given variables

type ServerVariable

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

ServerVariable stores the information about a server variable

type SpectacularJWTObtain

type SpectacularJWTObtain struct {
	// Your access token
	Access *string `json:"access,omitempty"`
	// Access token expires in seconds
	AccessExpires *int32 `json:"access_expires,omitempty"`
	// Your refresh token
	Refresh *string `json:"refresh,omitempty"`
	// Refresh token expires in seconds
	RefreshExpires *int32 `json:"refresh_expires,omitempty"`
}

SpectacularJWTObtain Obtain new JWT pair.

func NewSpectacularJWTObtain

func NewSpectacularJWTObtain() *SpectacularJWTObtain

NewSpectacularJWTObtain instantiates a new SpectacularJWTObtain 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 NewSpectacularJWTObtainWithDefaults

func NewSpectacularJWTObtainWithDefaults() *SpectacularJWTObtain

NewSpectacularJWTObtainWithDefaults instantiates a new SpectacularJWTObtain 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 (*SpectacularJWTObtain) GetAccess

func (o *SpectacularJWTObtain) GetAccess() string

GetAccess returns the Access field value if set, zero value otherwise.

func (*SpectacularJWTObtain) GetAccessExpires

func (o *SpectacularJWTObtain) GetAccessExpires() int32

GetAccessExpires returns the AccessExpires field value if set, zero value otherwise.

func (*SpectacularJWTObtain) GetAccessExpiresOk

func (o *SpectacularJWTObtain) GetAccessExpiresOk() (*int32, bool)

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

func (*SpectacularJWTObtain) GetAccessOk

func (o *SpectacularJWTObtain) GetAccessOk() (*string, bool)

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

func (*SpectacularJWTObtain) GetRefresh

func (o *SpectacularJWTObtain) GetRefresh() string

GetRefresh returns the Refresh field value if set, zero value otherwise.

func (*SpectacularJWTObtain) GetRefreshExpires

func (o *SpectacularJWTObtain) GetRefreshExpires() int32

GetRefreshExpires returns the RefreshExpires field value if set, zero value otherwise.

func (*SpectacularJWTObtain) GetRefreshExpiresOk

func (o *SpectacularJWTObtain) GetRefreshExpiresOk() (*int32, bool)

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

func (*SpectacularJWTObtain) GetRefreshOk

func (o *SpectacularJWTObtain) GetRefreshOk() (*string, bool)

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

func (*SpectacularJWTObtain) HasAccess

func (o *SpectacularJWTObtain) HasAccess() bool

HasAccess returns a boolean if a field has been set.

func (*SpectacularJWTObtain) HasAccessExpires

func (o *SpectacularJWTObtain) HasAccessExpires() bool

HasAccessExpires returns a boolean if a field has been set.

func (*SpectacularJWTObtain) HasRefresh

func (o *SpectacularJWTObtain) HasRefresh() bool

HasRefresh returns a boolean if a field has been set.

func (*SpectacularJWTObtain) HasRefreshExpires

func (o *SpectacularJWTObtain) HasRefreshExpires() bool

HasRefreshExpires returns a boolean if a field has been set.

func (SpectacularJWTObtain) MarshalJSON

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

func (*SpectacularJWTObtain) SetAccess

func (o *SpectacularJWTObtain) SetAccess(v string)

SetAccess gets a reference to the given string and assigns it to the Access field.

func (*SpectacularJWTObtain) SetAccessExpires

func (o *SpectacularJWTObtain) SetAccessExpires(v int32)

SetAccessExpires gets a reference to the given int32 and assigns it to the AccessExpires field.

func (*SpectacularJWTObtain) SetRefresh

func (o *SpectacularJWTObtain) SetRefresh(v string)

SetRefresh gets a reference to the given string and assigns it to the Refresh field.

func (*SpectacularJWTObtain) SetRefreshExpires

func (o *SpectacularJWTObtain) SetRefreshExpires(v int32)

SetRefreshExpires gets a reference to the given int32 and assigns it to the RefreshExpires field.

type SpectacularJWTRefresh

type SpectacularJWTRefresh struct {
	// Your access token
	Access *string `json:"access,omitempty"`
	// Access token expires in seconds
	AccessExpires *int32 `json:"access_expires,omitempty"`
}

SpectacularJWTRefresh Refresh Access token.

func NewSpectacularJWTRefresh

func NewSpectacularJWTRefresh() *SpectacularJWTRefresh

NewSpectacularJWTRefresh instantiates a new SpectacularJWTRefresh 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 NewSpectacularJWTRefreshWithDefaults

func NewSpectacularJWTRefreshWithDefaults() *SpectacularJWTRefresh

NewSpectacularJWTRefreshWithDefaults instantiates a new SpectacularJWTRefresh 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 (*SpectacularJWTRefresh) GetAccess

func (o *SpectacularJWTRefresh) GetAccess() string

GetAccess returns the Access field value if set, zero value otherwise.

func (*SpectacularJWTRefresh) GetAccessExpires

func (o *SpectacularJWTRefresh) GetAccessExpires() int32

GetAccessExpires returns the AccessExpires field value if set, zero value otherwise.

func (*SpectacularJWTRefresh) GetAccessExpiresOk

func (o *SpectacularJWTRefresh) GetAccessExpiresOk() (*int32, bool)

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

func (*SpectacularJWTRefresh) GetAccessOk

func (o *SpectacularJWTRefresh) GetAccessOk() (*string, bool)

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

func (*SpectacularJWTRefresh) HasAccess

func (o *SpectacularJWTRefresh) HasAccess() bool

HasAccess returns a boolean if a field has been set.

func (*SpectacularJWTRefresh) HasAccessExpires

func (o *SpectacularJWTRefresh) HasAccessExpires() bool

HasAccessExpires returns a boolean if a field has been set.

func (SpectacularJWTRefresh) MarshalJSON

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

func (*SpectacularJWTRefresh) SetAccess

func (o *SpectacularJWTRefresh) SetAccess(v string)

SetAccess gets a reference to the given string and assigns it to the Access field.

func (*SpectacularJWTRefresh) SetAccessExpires

func (o *SpectacularJWTRefresh) SetAccessExpires(v int32)

SetAccessExpires gets a reference to the given int32 and assigns it to the AccessExpires field.

type SpectacularRequisitionV2

type SpectacularRequisitionV2 struct {
	Id *string `json:"id,omitempty"`
	// The date & time at which the requisition was created.
	Created NullableTime `json:"created,omitempty"`
	// redirect URL to your application after end-user authorization with ASPSP
	Redirect NullableString        `json:"redirect"`
	Status   NullableStatus1c5Enum `json:"status,omitempty"`
	// an Institution ID for this Requisition
	InstitutionId string `json:"institution_id"`
	// EUA associated with this requisition
	Agreement *string `json:"agreement,omitempty"`
	// additional ID to identify the end user
	Reference *string `json:"reference,omitempty"`
	// array of account IDs retrieved within a scope of this requisition
	Accounts []interface{} `json:"accounts,omitempty"`
	// A two-letter country code (ISO 639-1)
	UserLanguage *string `json:"user_language,omitempty"`
	// link to initiate authorization with Institution
	Link *string `json:"link,omitempty"`
	// optional SSN field to verify ownership of the account
	Ssn *string `json:"ssn,omitempty"`
	// option to enable account selection view for the end user
	AccountSelection *bool `json:"account_selection,omitempty"`
	// enable redirect back to the client after account list received
	RedirectImmediate *bool `json:"redirect_immediate,omitempty"`
}

SpectacularRequisitionV2 Create requisition.

func NewSpectacularRequisitionV2

func NewSpectacularRequisitionV2(redirect NullableString, institutionId string) *SpectacularRequisitionV2

NewSpectacularRequisitionV2 instantiates a new SpectacularRequisitionV2 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 NewSpectacularRequisitionV2WithDefaults

func NewSpectacularRequisitionV2WithDefaults() *SpectacularRequisitionV2

NewSpectacularRequisitionV2WithDefaults instantiates a new SpectacularRequisitionV2 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 (*SpectacularRequisitionV2) GetAccountSelection

func (o *SpectacularRequisitionV2) GetAccountSelection() bool

GetAccountSelection returns the AccountSelection field value if set, zero value otherwise.

func (*SpectacularRequisitionV2) GetAccountSelectionOk

func (o *SpectacularRequisitionV2) GetAccountSelectionOk() (*bool, bool)

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

func (*SpectacularRequisitionV2) GetAccounts

func (o *SpectacularRequisitionV2) GetAccounts() []interface{}

GetAccounts returns the Accounts field value if set, zero value otherwise.

func (*SpectacularRequisitionV2) GetAccountsOk

func (o *SpectacularRequisitionV2) GetAccountsOk() ([]interface{}, bool)

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

func (*SpectacularRequisitionV2) GetAgreement

func (o *SpectacularRequisitionV2) GetAgreement() string

GetAgreement returns the Agreement field value if set, zero value otherwise.

func (*SpectacularRequisitionV2) GetAgreementOk

func (o *SpectacularRequisitionV2) GetAgreementOk() (*string, bool)

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

func (*SpectacularRequisitionV2) GetCreated

func (o *SpectacularRequisitionV2) GetCreated() time.Time

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

func (*SpectacularRequisitionV2) GetCreatedOk

func (o *SpectacularRequisitionV2) GetCreatedOk() (*time.Time, bool)

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

func (*SpectacularRequisitionV2) GetId

func (o *SpectacularRequisitionV2) GetId() string

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

func (*SpectacularRequisitionV2) GetIdOk

func (o *SpectacularRequisitionV2) 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 (*SpectacularRequisitionV2) GetInstitutionId

func (o *SpectacularRequisitionV2) GetInstitutionId() string

GetInstitutionId returns the InstitutionId field value

func (*SpectacularRequisitionV2) GetInstitutionIdOk

func (o *SpectacularRequisitionV2) GetInstitutionIdOk() (*string, bool)

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

func (o *SpectacularRequisitionV2) GetLink() string

GetLink returns the Link field value if set, zero value otherwise.

func (*SpectacularRequisitionV2) GetLinkOk

func (o *SpectacularRequisitionV2) GetLinkOk() (*string, bool)

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

func (*SpectacularRequisitionV2) GetRedirect

func (o *SpectacularRequisitionV2) GetRedirect() string

GetRedirect returns the Redirect field value If the value is explicit nil, the zero value for string will be returned

func (*SpectacularRequisitionV2) GetRedirectImmediate

func (o *SpectacularRequisitionV2) GetRedirectImmediate() bool

GetRedirectImmediate returns the RedirectImmediate field value if set, zero value otherwise.

func (*SpectacularRequisitionV2) GetRedirectImmediateOk

func (o *SpectacularRequisitionV2) GetRedirectImmediateOk() (*bool, bool)

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

func (*SpectacularRequisitionV2) GetRedirectOk

func (o *SpectacularRequisitionV2) GetRedirectOk() (*string, bool)

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

func (*SpectacularRequisitionV2) GetReference

func (o *SpectacularRequisitionV2) GetReference() string

GetReference returns the Reference field value if set, zero value otherwise.

func (*SpectacularRequisitionV2) GetReferenceOk

func (o *SpectacularRequisitionV2) GetReferenceOk() (*string, bool)

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

func (*SpectacularRequisitionV2) GetSsn

func (o *SpectacularRequisitionV2) GetSsn() string

GetSsn returns the Ssn field value if set, zero value otherwise.

func (*SpectacularRequisitionV2) GetSsnOk

func (o *SpectacularRequisitionV2) GetSsnOk() (*string, bool)

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

func (*SpectacularRequisitionV2) GetStatus

func (o *SpectacularRequisitionV2) GetStatus() Status1c5Enum

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

func (*SpectacularRequisitionV2) GetStatusOk

func (o *SpectacularRequisitionV2) GetStatusOk() (*Status1c5Enum, bool)

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

func (*SpectacularRequisitionV2) GetUserLanguage

func (o *SpectacularRequisitionV2) GetUserLanguage() string

GetUserLanguage returns the UserLanguage field value if set, zero value otherwise.

func (*SpectacularRequisitionV2) GetUserLanguageOk

func (o *SpectacularRequisitionV2) GetUserLanguageOk() (*string, bool)

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

func (*SpectacularRequisitionV2) HasAccountSelection

func (o *SpectacularRequisitionV2) HasAccountSelection() bool

HasAccountSelection returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasAccounts

func (o *SpectacularRequisitionV2) HasAccounts() bool

HasAccounts returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasAgreement

func (o *SpectacularRequisitionV2) HasAgreement() bool

HasAgreement returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasCreated

func (o *SpectacularRequisitionV2) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasId

func (o *SpectacularRequisitionV2) HasId() bool

HasId returns a boolean if a field has been set.

func (o *SpectacularRequisitionV2) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasRedirectImmediate

func (o *SpectacularRequisitionV2) HasRedirectImmediate() bool

HasRedirectImmediate returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasReference

func (o *SpectacularRequisitionV2) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasSsn

func (o *SpectacularRequisitionV2) HasSsn() bool

HasSsn returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasStatus

func (o *SpectacularRequisitionV2) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SpectacularRequisitionV2) HasUserLanguage

func (o *SpectacularRequisitionV2) HasUserLanguage() bool

HasUserLanguage returns a boolean if a field has been set.

func (SpectacularRequisitionV2) MarshalJSON

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

func (*SpectacularRequisitionV2) SetAccountSelection

func (o *SpectacularRequisitionV2) SetAccountSelection(v bool)

SetAccountSelection gets a reference to the given bool and assigns it to the AccountSelection field.

func (*SpectacularRequisitionV2) SetAccounts

func (o *SpectacularRequisitionV2) SetAccounts(v []interface{})

SetAccounts gets a reference to the given []interface{} and assigns it to the Accounts field.

func (*SpectacularRequisitionV2) SetAgreement

func (o *SpectacularRequisitionV2) SetAgreement(v string)

SetAgreement gets a reference to the given string and assigns it to the Agreement field.

func (*SpectacularRequisitionV2) SetCreated

func (o *SpectacularRequisitionV2) SetCreated(v time.Time)

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

func (*SpectacularRequisitionV2) SetCreatedNil

func (o *SpectacularRequisitionV2) SetCreatedNil()

SetCreatedNil sets the value for Created to be an explicit nil

func (*SpectacularRequisitionV2) SetId

func (o *SpectacularRequisitionV2) SetId(v string)

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

func (*SpectacularRequisitionV2) SetInstitutionId

func (o *SpectacularRequisitionV2) SetInstitutionId(v string)

SetInstitutionId sets field value

func (o *SpectacularRequisitionV2) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*SpectacularRequisitionV2) SetRedirect

func (o *SpectacularRequisitionV2) SetRedirect(v string)

SetRedirect sets field value

func (*SpectacularRequisitionV2) SetRedirectImmediate

func (o *SpectacularRequisitionV2) SetRedirectImmediate(v bool)

SetRedirectImmediate gets a reference to the given bool and assigns it to the RedirectImmediate field.

func (*SpectacularRequisitionV2) SetReference

func (o *SpectacularRequisitionV2) SetReference(v string)

SetReference gets a reference to the given string and assigns it to the Reference field.

func (*SpectacularRequisitionV2) SetSsn

func (o *SpectacularRequisitionV2) SetSsn(v string)

SetSsn gets a reference to the given string and assigns it to the Ssn field.

func (*SpectacularRequisitionV2) SetStatus

func (o *SpectacularRequisitionV2) SetStatus(v Status1c5Enum)

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

func (*SpectacularRequisitionV2) SetStatusNil

func (o *SpectacularRequisitionV2) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*SpectacularRequisitionV2) SetUserLanguage

func (o *SpectacularRequisitionV2) SetUserLanguage(v string)

SetUserLanguage gets a reference to the given string and assigns it to the UserLanguage field.

func (*SpectacularRequisitionV2) UnsetCreated

func (o *SpectacularRequisitionV2) UnsetCreated()

UnsetCreated ensures that no value is present for Created, not even an explicit nil

func (*SpectacularRequisitionV2) UnsetStatus

func (o *SpectacularRequisitionV2) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

type Status1c5Enum

type Status1c5Enum struct {
	Status1c5EnumCreated                  *Status1c5EnumCreated
	Status1c5EnumExpired                  *Status1c5EnumExpired
	Status1c5EnumGivingConsent            *Status1c5EnumGivingConsent
	Status1c5EnumGrantingAccess           *Status1c5EnumGrantingAccess
	Status1c5EnumLinked                   *Status1c5EnumLinked
	Status1c5EnumRejected                 *Status1c5EnumRejected
	Status1c5EnumSelectingAccounts        *Status1c5EnumSelectingAccounts
	Status1c5EnumUndergoingAuthentication *Status1c5EnumUndergoingAuthentication
}

Status1c5Enum - Status of requisition

func Status1c5EnumCreatedAsStatus1c5Enum

func Status1c5EnumCreatedAsStatus1c5Enum(v *Status1c5EnumCreated) Status1c5Enum

Status1c5EnumCreatedAsStatus1c5Enum is a convenience function that returns Status1c5EnumCreated wrapped in Status1c5Enum

func Status1c5EnumExpiredAsStatus1c5Enum

func Status1c5EnumExpiredAsStatus1c5Enum(v *Status1c5EnumExpired) Status1c5Enum

Status1c5EnumExpiredAsStatus1c5Enum is a convenience function that returns Status1c5EnumExpired wrapped in Status1c5Enum

func Status1c5EnumGivingConsentAsStatus1c5Enum

func Status1c5EnumGivingConsentAsStatus1c5Enum(v *Status1c5EnumGivingConsent) Status1c5Enum

Status1c5EnumGivingConsentAsStatus1c5Enum is a convenience function that returns Status1c5EnumGivingConsent wrapped in Status1c5Enum

func Status1c5EnumGrantingAccessAsStatus1c5Enum

func Status1c5EnumGrantingAccessAsStatus1c5Enum(v *Status1c5EnumGrantingAccess) Status1c5Enum

Status1c5EnumGrantingAccessAsStatus1c5Enum is a convenience function that returns Status1c5EnumGrantingAccess wrapped in Status1c5Enum

func Status1c5EnumLinkedAsStatus1c5Enum

func Status1c5EnumLinkedAsStatus1c5Enum(v *Status1c5EnumLinked) Status1c5Enum

Status1c5EnumLinkedAsStatus1c5Enum is a convenience function that returns Status1c5EnumLinked wrapped in Status1c5Enum

func Status1c5EnumRejectedAsStatus1c5Enum

func Status1c5EnumRejectedAsStatus1c5Enum(v *Status1c5EnumRejected) Status1c5Enum

Status1c5EnumRejectedAsStatus1c5Enum is a convenience function that returns Status1c5EnumRejected wrapped in Status1c5Enum

func Status1c5EnumSelectingAccountsAsStatus1c5Enum

func Status1c5EnumSelectingAccountsAsStatus1c5Enum(v *Status1c5EnumSelectingAccounts) Status1c5Enum

Status1c5EnumSelectingAccountsAsStatus1c5Enum is a convenience function that returns Status1c5EnumSelectingAccounts wrapped in Status1c5Enum

func Status1c5EnumUndergoingAuthenticationAsStatus1c5Enum

func Status1c5EnumUndergoingAuthenticationAsStatus1c5Enum(v *Status1c5EnumUndergoingAuthentication) Status1c5Enum

Status1c5EnumUndergoingAuthenticationAsStatus1c5Enum is a convenience function that returns Status1c5EnumUndergoingAuthentication wrapped in Status1c5Enum

func (*Status1c5Enum) GetActualInstance

func (obj *Status1c5Enum) GetActualInstance() interface{}

Get the actual instance

func (Status1c5Enum) MarshalJSON

func (src Status1c5Enum) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Status1c5Enum) UnmarshalJSON

func (dst *Status1c5Enum) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Status1c5EnumCreated

type Status1c5EnumCreated string

Status1c5EnumCreated the model 'Status1c5EnumCreated'

const (
	STATUS1C5ENUMCREATED_CR      Status1c5EnumCreated = "CR"
	STATUS1C5ENUMCREATED_CREATED Status1c5EnumCreated = "CREATED"
)

List of Status1c5EnumCreated

func NewStatus1c5EnumCreatedFromValue

func NewStatus1c5EnumCreatedFromValue(v string) (*Status1c5EnumCreated, error)

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

func (Status1c5EnumCreated) IsValid

func (v Status1c5EnumCreated) IsValid() bool

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

func (Status1c5EnumCreated) Ptr

Ptr returns reference to Status1c5EnumCreated value

func (*Status1c5EnumCreated) UnmarshalJSON

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

type Status1c5EnumExpired

type Status1c5EnumExpired string

Status1c5EnumExpired the model 'Status1c5EnumExpired'

const (
	STATUS1C5ENUMEXPIRED_EX      Status1c5EnumExpired = "EX"
	STATUS1C5ENUMEXPIRED_EXPIRED Status1c5EnumExpired = "EXPIRED"
)

List of Status1c5EnumExpired

func NewStatus1c5EnumExpiredFromValue

func NewStatus1c5EnumExpiredFromValue(v string) (*Status1c5EnumExpired, error)

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

func (Status1c5EnumExpired) IsValid

func (v Status1c5EnumExpired) IsValid() bool

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

func (Status1c5EnumExpired) Ptr

Ptr returns reference to Status1c5EnumExpired value

func (*Status1c5EnumExpired) UnmarshalJSON

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

type Status1c5EnumGivingConsent

type Status1c5EnumGivingConsent string

Status1c5EnumGivingConsent the model 'Status1c5EnumGivingConsent'

const (
	STATUS1C5ENUMGIVINGCONSENT_GC             Status1c5EnumGivingConsent = "GC"
	STATUS1C5ENUMGIVINGCONSENT_GIVING_CONSENT Status1c5EnumGivingConsent = "GIVING_CONSENT"
)

List of Status1c5EnumGivingConsent

func NewStatus1c5EnumGivingConsentFromValue

func NewStatus1c5EnumGivingConsentFromValue(v string) (*Status1c5EnumGivingConsent, error)

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

func (Status1c5EnumGivingConsent) IsValid

func (v Status1c5EnumGivingConsent) IsValid() bool

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

func (Status1c5EnumGivingConsent) Ptr

Ptr returns reference to Status1c5EnumGivingConsent value

func (*Status1c5EnumGivingConsent) UnmarshalJSON

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

type Status1c5EnumGrantingAccess

type Status1c5EnumGrantingAccess string

Status1c5EnumGrantingAccess the model 'Status1c5EnumGrantingAccess'

const (
	STATUS1C5ENUMGRANTINGACCESS_GA              Status1c5EnumGrantingAccess = "GA"
	STATUS1C5ENUMGRANTINGACCESS_GRANTING_ACCESS Status1c5EnumGrantingAccess = "GRANTING_ACCESS"
)

List of Status1c5EnumGrantingAccess

func NewStatus1c5EnumGrantingAccessFromValue

func NewStatus1c5EnumGrantingAccessFromValue(v string) (*Status1c5EnumGrantingAccess, error)

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

func (Status1c5EnumGrantingAccess) IsValid

func (v Status1c5EnumGrantingAccess) IsValid() bool

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

func (Status1c5EnumGrantingAccess) Ptr

Ptr returns reference to Status1c5EnumGrantingAccess value

func (*Status1c5EnumGrantingAccess) UnmarshalJSON

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

type Status1c5EnumLinked

type Status1c5EnumLinked string

Status1c5EnumLinked the model 'Status1c5EnumLinked'

const (
	STATUS1C5ENUMLINKED_LN     Status1c5EnumLinked = "LN"
	STATUS1C5ENUMLINKED_LINKED Status1c5EnumLinked = "LINKED"
)

List of Status1c5EnumLinked

func NewStatus1c5EnumLinkedFromValue

func NewStatus1c5EnumLinkedFromValue(v string) (*Status1c5EnumLinked, error)

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

func (Status1c5EnumLinked) IsValid

func (v Status1c5EnumLinked) IsValid() bool

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

func (Status1c5EnumLinked) Ptr

Ptr returns reference to Status1c5EnumLinked value

func (*Status1c5EnumLinked) UnmarshalJSON

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

type Status1c5EnumRejected

type Status1c5EnumRejected string

Status1c5EnumRejected the model 'Status1c5EnumRejected'

const (
	STATUS1C5ENUMREJECTED_RJ       Status1c5EnumRejected = "RJ"
	STATUS1C5ENUMREJECTED_REJECTED Status1c5EnumRejected = "REJECTED"
)

List of Status1c5EnumRejected

func NewStatus1c5EnumRejectedFromValue

func NewStatus1c5EnumRejectedFromValue(v string) (*Status1c5EnumRejected, error)

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

func (Status1c5EnumRejected) IsValid

func (v Status1c5EnumRejected) IsValid() bool

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

func (Status1c5EnumRejected) Ptr

Ptr returns reference to Status1c5EnumRejected value

func (*Status1c5EnumRejected) UnmarshalJSON

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

type Status1c5EnumSelectingAccounts

type Status1c5EnumSelectingAccounts string

Status1c5EnumSelectingAccounts the model 'Status1c5EnumSelectingAccounts'

const (
	STATUS1C5ENUMSELECTINGACCOUNTS_SA                 Status1c5EnumSelectingAccounts = "SA"
	STATUS1C5ENUMSELECTINGACCOUNTS_SELECTING_ACCOUNTS Status1c5EnumSelectingAccounts = "SELECTING_ACCOUNTS"
)

List of Status1c5EnumSelectingAccounts

func NewStatus1c5EnumSelectingAccountsFromValue

func NewStatus1c5EnumSelectingAccountsFromValue(v string) (*Status1c5EnumSelectingAccounts, error)

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

func (Status1c5EnumSelectingAccounts) IsValid

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

func (Status1c5EnumSelectingAccounts) Ptr

Ptr returns reference to Status1c5EnumSelectingAccounts value

func (*Status1c5EnumSelectingAccounts) UnmarshalJSON

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

type Status1c5EnumUndergoingAuthentication

type Status1c5EnumUndergoingAuthentication string

Status1c5EnumUndergoingAuthentication the model 'Status1c5EnumUndergoingAuthentication'

const (
	STATUS1C5ENUMUNDERGOINGAUTHENTICATION_UA                        Status1c5EnumUndergoingAuthentication = "UA"
	STATUS1C5ENUMUNDERGOINGAUTHENTICATION_UNDERGOING_AUTHENTICATION Status1c5EnumUndergoingAuthentication = "UNDERGOING_AUTHENTICATION"
)

List of Status1c5EnumUndergoingAuthentication

func NewStatus1c5EnumUndergoingAuthenticationFromValue

func NewStatus1c5EnumUndergoingAuthenticationFromValue(v string) (*Status1c5EnumUndergoingAuthentication, error)

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

func (Status1c5EnumUndergoingAuthentication) IsValid

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

func (Status1c5EnumUndergoingAuthentication) Ptr

Ptr returns reference to Status1c5EnumUndergoingAuthentication value

func (*Status1c5EnumUndergoingAuthentication) UnmarshalJSON

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

type TokenApiService

type TokenApiService service

TokenApiService TokenApi service

func (*TokenApiService) JWTObtain

JWTObtain Method for JWTObtain

Obtain JWT pair

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

func (*TokenApiService) JWTObtainExecute

Execute executes the request

@return SpectacularJWTObtain

func (*TokenApiService) JWTRefresh

JWTRefresh Method for JWTRefresh

Refresh access token

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

func (*TokenApiService) JWTRefreshExecute

Execute executes the request

@return SpectacularJWTRefresh

Source Files

Jump to

Keyboard shortcuts

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