mxplatformgo

package module
v0.22.0 Latest Latest
Warning

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

Go to latest
Published: Mar 7, 2024 License: MIT Imports: 22 Imported by: 0

README

This project is currently in Beta. Please open up an issue here to report issues using the MX Platform Go library.

MX Platform Go

The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions.

Documentation

Examples for the API endpoints can be found here.

Requirements

  • Go >= 1.13

Installation

Make sure your project has a go.mod file. (it is using Go Modules)

Then go get the latest version of this library with the following command.

go get github.com/mxenabled/mx-platform-go

Getting Started

In order to make requests, you will need to sign up for the MX Platform API and get a Client ID and API Key.

Please follow the installation procedure and then run the following code to create your first User:

package main

import (
  "context"
  "fmt"
  "github.com/mxenabled/mx-platform-go"
  "os"
)

func main() {
  configuration := mxplatformgo.NewConfiguration()
  configuration.AddDefaultHeader("Accept", "application/vnd.mx.api.v1+json")
  api_client := mxplatformgo.NewAPIClient(configuration)

  // Configure environment. 0 for production, 1 for development
  ctx := context.WithValue(context.Background(), mxplatformgo.ContextServerIndex, 1)

  // Configure with your Client ID/API Key from https://dashboard.mx.com
  ctx = context.WithValue(ctx, mxplatformgo.ContextBasicAuth, mxplatformgo.BasicAuth{
    UserName: "Your Client ID",
    Password: "Your API Key",
  })

  userCreateRequestBody := *mxplatformgo.NewUserCreateRequestBodyWithDefaults()
  userCreateRequest := *mxplatformgo.NewUserCreateRequestWithDefaults()
  userCreateRequest.SetMetadata("Creating a user!")
  userCreateRequestBody.SetUser(userCreateRequest)

  resp, r, err := api_client.MxPlatformApi.CreateUser(ctx).UserCreateRequestBody(userCreateRequestBody).Execute()
  if err != nil {
    fmt.Fprintf(os.Stderr, "Error when calling `MxPlatformApi.CreateUser``: %v\n", err)
    fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
  }
  fmt.Printf("Response from `MxPlatformApi.CreateUser`: %#v\n", resp)
}

Development

This project was generated by the OpenAPI Generator. To generate this library, verify you have the latest version of the openapi-generator-cli found here.

Running the following command in this repo's directory will generate this library using the MX Platform API OpenAPI spec with our configuration and templates.

openapi-generator-cli generate \
-i https://raw.githubusercontent.com/mxenabled/openapi/master/openapi/mx_platform_api.yml \
-g go \
-c ./openapi/config.yml \
-t ./openapi/templates

Contributing

Please open an issue or submit a pull request.

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

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

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

func IsNil added in v0.17.1

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	MxPlatformAPI *MxPlatformAPIService

	SpendingPlanAPI *SpendingPlanAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the MX Platform API API v0.1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) 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 AccountCreateRequest added in v0.13.0

type AccountCreateRequest struct {
	AccountSubtype     *string  `json:"account_subtype,omitempty"`
	AccountType        string   `json:"account_type"`
	Apr                *float32 `json:"apr,omitempty"`
	Apy                *float32 `json:"apy,omitempty"`
	AvailableBalance   *float32 `json:"available_balance,omitempty"`
	Balance            *float32 `json:"balance,omitempty"`
	CashSurrenderValue *float32 `json:"cash_surrender_value,omitempty"`
	CreditLimit        *float32 `json:"credit_limit,omitempty"`
	CurrencyCode       *string  `json:"currency_code,omitempty"`
	DeathBenefit       *int32   `json:"death_benefit,omitempty"`
	InterestRate       *float32 `json:"interest_rate,omitempty"`
	IsBusiness         *bool    `json:"is_business,omitempty"`
	IsClosed           *bool    `json:"is_closed,omitempty"`
	IsHidden           *bool    `json:"is_hidden,omitempty"`
	LoanAmount         *float32 `json:"loan_amount,omitempty"`
	Metadata           *string  `json:"metadata,omitempty"`
	Name               string   `json:"name"`
	Nickname           *string  `json:"nickname,omitempty"`
	OriginalBalance    *float32 `json:"original_balance,omitempty"`
	PropertyType       *string  `json:"property_type,omitempty"`
	SkipWebhook        *bool    `json:"skip_webhook,omitempty"`
}

AccountCreateRequest struct for AccountCreateRequest

func NewAccountCreateRequest added in v0.13.0

func NewAccountCreateRequest(accountType string, name string) *AccountCreateRequest

NewAccountCreateRequest instantiates a new AccountCreateRequest 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 NewAccountCreateRequestWithDefaults added in v0.13.0

func NewAccountCreateRequestWithDefaults() *AccountCreateRequest

NewAccountCreateRequestWithDefaults instantiates a new AccountCreateRequest 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 (*AccountCreateRequest) GetAccountSubtype added in v0.15.0

func (o *AccountCreateRequest) GetAccountSubtype() string

GetAccountSubtype returns the AccountSubtype field value if set, zero value otherwise.

func (*AccountCreateRequest) GetAccountSubtypeOk added in v0.15.0

func (o *AccountCreateRequest) GetAccountSubtypeOk() (*string, bool)

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

func (*AccountCreateRequest) GetAccountType added in v0.14.0

func (o *AccountCreateRequest) GetAccountType() string

GetAccountType returns the AccountType field value

func (*AccountCreateRequest) GetAccountTypeOk added in v0.14.0

func (o *AccountCreateRequest) GetAccountTypeOk() (*string, bool)

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

func (*AccountCreateRequest) GetApr added in v0.13.0

func (o *AccountCreateRequest) GetApr() float32

GetApr returns the Apr field value if set, zero value otherwise.

func (*AccountCreateRequest) GetAprOk added in v0.13.0

func (o *AccountCreateRequest) GetAprOk() (*float32, bool)

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

func (*AccountCreateRequest) GetApy added in v0.13.0

func (o *AccountCreateRequest) GetApy() float32

GetApy returns the Apy field value if set, zero value otherwise.

func (*AccountCreateRequest) GetApyOk added in v0.13.0

func (o *AccountCreateRequest) GetApyOk() (*float32, bool)

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

func (*AccountCreateRequest) GetAvailableBalance added in v0.13.0

func (o *AccountCreateRequest) GetAvailableBalance() float32

GetAvailableBalance returns the AvailableBalance field value if set, zero value otherwise.

func (*AccountCreateRequest) GetAvailableBalanceOk added in v0.13.0

func (o *AccountCreateRequest) GetAvailableBalanceOk() (*float32, bool)

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

func (*AccountCreateRequest) GetBalance added in v0.13.0

func (o *AccountCreateRequest) GetBalance() float32

GetBalance returns the Balance field value if set, zero value otherwise.

func (*AccountCreateRequest) GetBalanceOk added in v0.13.0

func (o *AccountCreateRequest) GetBalanceOk() (*float32, bool)

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

func (*AccountCreateRequest) GetCashSurrenderValue added in v0.13.0

func (o *AccountCreateRequest) GetCashSurrenderValue() float32

GetCashSurrenderValue returns the CashSurrenderValue field value if set, zero value otherwise.

func (*AccountCreateRequest) GetCashSurrenderValueOk added in v0.13.0

func (o *AccountCreateRequest) GetCashSurrenderValueOk() (*float32, bool)

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

func (*AccountCreateRequest) GetCreditLimit added in v0.13.0

func (o *AccountCreateRequest) GetCreditLimit() float32

GetCreditLimit returns the CreditLimit field value if set, zero value otherwise.

func (*AccountCreateRequest) GetCreditLimitOk added in v0.13.0

func (o *AccountCreateRequest) GetCreditLimitOk() (*float32, bool)

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

func (*AccountCreateRequest) GetCurrencyCode added in v0.13.0

func (o *AccountCreateRequest) GetCurrencyCode() string

GetCurrencyCode returns the CurrencyCode field value if set, zero value otherwise.

func (*AccountCreateRequest) GetCurrencyCodeOk added in v0.13.0

func (o *AccountCreateRequest) GetCurrencyCodeOk() (*string, bool)

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

func (*AccountCreateRequest) GetDeathBenefit added in v0.13.0

func (o *AccountCreateRequest) GetDeathBenefit() int32

GetDeathBenefit returns the DeathBenefit field value if set, zero value otherwise.

func (*AccountCreateRequest) GetDeathBenefitOk added in v0.13.0

func (o *AccountCreateRequest) GetDeathBenefitOk() (*int32, bool)

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

func (*AccountCreateRequest) GetInterestRate added in v0.13.0

func (o *AccountCreateRequest) GetInterestRate() float32

GetInterestRate returns the InterestRate field value if set, zero value otherwise.

func (*AccountCreateRequest) GetInterestRateOk added in v0.13.0

func (o *AccountCreateRequest) GetInterestRateOk() (*float32, bool)

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

func (*AccountCreateRequest) GetIsBusiness added in v0.14.0

func (o *AccountCreateRequest) GetIsBusiness() bool

GetIsBusiness returns the IsBusiness field value if set, zero value otherwise.

func (*AccountCreateRequest) GetIsBusinessOk added in v0.14.0

func (o *AccountCreateRequest) GetIsBusinessOk() (*bool, bool)

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

func (*AccountCreateRequest) GetIsClosed added in v0.13.0

func (o *AccountCreateRequest) GetIsClosed() bool

GetIsClosed returns the IsClosed field value if set, zero value otherwise.

func (*AccountCreateRequest) GetIsClosedOk added in v0.13.0

func (o *AccountCreateRequest) GetIsClosedOk() (*bool, bool)

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

func (*AccountCreateRequest) GetIsHidden added in v0.13.0

func (o *AccountCreateRequest) GetIsHidden() bool

GetIsHidden returns the IsHidden field value if set, zero value otherwise.

func (*AccountCreateRequest) GetIsHiddenOk added in v0.13.0

func (o *AccountCreateRequest) GetIsHiddenOk() (*bool, bool)

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

func (*AccountCreateRequest) GetLoanAmount added in v0.13.0

func (o *AccountCreateRequest) GetLoanAmount() float32

GetLoanAmount returns the LoanAmount field value if set, zero value otherwise.

func (*AccountCreateRequest) GetLoanAmountOk added in v0.13.0

func (o *AccountCreateRequest) GetLoanAmountOk() (*float32, bool)

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

func (*AccountCreateRequest) GetMetadata added in v0.13.0

func (o *AccountCreateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*AccountCreateRequest) GetMetadataOk added in v0.13.0

func (o *AccountCreateRequest) GetMetadataOk() (*string, bool)

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

func (*AccountCreateRequest) GetName added in v0.13.0

func (o *AccountCreateRequest) GetName() string

GetName returns the Name field value

func (*AccountCreateRequest) GetNameOk added in v0.13.0

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

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

func (*AccountCreateRequest) GetNickname added in v0.13.0

func (o *AccountCreateRequest) GetNickname() string

GetNickname returns the Nickname field value if set, zero value otherwise.

func (*AccountCreateRequest) GetNicknameOk added in v0.13.0

func (o *AccountCreateRequest) GetNicknameOk() (*string, bool)

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

func (*AccountCreateRequest) GetOriginalBalance added in v0.13.0

func (o *AccountCreateRequest) GetOriginalBalance() float32

GetOriginalBalance returns the OriginalBalance field value if set, zero value otherwise.

func (*AccountCreateRequest) GetOriginalBalanceOk added in v0.13.0

func (o *AccountCreateRequest) GetOriginalBalanceOk() (*float32, bool)

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

func (*AccountCreateRequest) GetPropertyType added in v0.14.0

func (o *AccountCreateRequest) GetPropertyType() string

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*AccountCreateRequest) GetPropertyTypeOk added in v0.14.0

func (o *AccountCreateRequest) GetPropertyTypeOk() (*string, bool)

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

func (*AccountCreateRequest) GetSkipWebhook added in v0.14.0

func (o *AccountCreateRequest) GetSkipWebhook() bool

GetSkipWebhook returns the SkipWebhook field value if set, zero value otherwise.

func (*AccountCreateRequest) GetSkipWebhookOk added in v0.14.0

func (o *AccountCreateRequest) GetSkipWebhookOk() (*bool, bool)

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

func (*AccountCreateRequest) HasAccountSubtype added in v0.15.0

func (o *AccountCreateRequest) HasAccountSubtype() bool

HasAccountSubtype returns a boolean if a field has been set.

func (*AccountCreateRequest) HasApr added in v0.13.0

func (o *AccountCreateRequest) HasApr() bool

HasApr returns a boolean if a field has been set.

func (*AccountCreateRequest) HasApy added in v0.13.0

func (o *AccountCreateRequest) HasApy() bool

HasApy returns a boolean if a field has been set.

func (*AccountCreateRequest) HasAvailableBalance added in v0.13.0

func (o *AccountCreateRequest) HasAvailableBalance() bool

HasAvailableBalance returns a boolean if a field has been set.

func (*AccountCreateRequest) HasBalance added in v0.14.0

func (o *AccountCreateRequest) HasBalance() bool

HasBalance returns a boolean if a field has been set.

func (*AccountCreateRequest) HasCashSurrenderValue added in v0.13.0

func (o *AccountCreateRequest) HasCashSurrenderValue() bool

HasCashSurrenderValue returns a boolean if a field has been set.

func (*AccountCreateRequest) HasCreditLimit added in v0.13.0

func (o *AccountCreateRequest) HasCreditLimit() bool

HasCreditLimit returns a boolean if a field has been set.

func (*AccountCreateRequest) HasCurrencyCode added in v0.13.0

func (o *AccountCreateRequest) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*AccountCreateRequest) HasDeathBenefit added in v0.13.0

func (o *AccountCreateRequest) HasDeathBenefit() bool

HasDeathBenefit returns a boolean if a field has been set.

func (*AccountCreateRequest) HasInterestRate added in v0.13.0

func (o *AccountCreateRequest) HasInterestRate() bool

HasInterestRate returns a boolean if a field has been set.

func (*AccountCreateRequest) HasIsBusiness added in v0.14.0

func (o *AccountCreateRequest) HasIsBusiness() bool

HasIsBusiness returns a boolean if a field has been set.

func (*AccountCreateRequest) HasIsClosed added in v0.13.0

func (o *AccountCreateRequest) HasIsClosed() bool

HasIsClosed returns a boolean if a field has been set.

func (*AccountCreateRequest) HasIsHidden added in v0.13.0

func (o *AccountCreateRequest) HasIsHidden() bool

HasIsHidden returns a boolean if a field has been set.

func (*AccountCreateRequest) HasLoanAmount added in v0.13.0

func (o *AccountCreateRequest) HasLoanAmount() bool

HasLoanAmount returns a boolean if a field has been set.

func (*AccountCreateRequest) HasMetadata added in v0.13.0

func (o *AccountCreateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*AccountCreateRequest) HasNickname added in v0.13.0

func (o *AccountCreateRequest) HasNickname() bool

HasNickname returns a boolean if a field has been set.

func (*AccountCreateRequest) HasOriginalBalance added in v0.13.0

func (o *AccountCreateRequest) HasOriginalBalance() bool

HasOriginalBalance returns a boolean if a field has been set.

func (*AccountCreateRequest) HasPropertyType added in v0.14.0

func (o *AccountCreateRequest) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*AccountCreateRequest) HasSkipWebhook added in v0.14.0

func (o *AccountCreateRequest) HasSkipWebhook() bool

HasSkipWebhook returns a boolean if a field has been set.

func (AccountCreateRequest) MarshalJSON added in v0.13.0

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

func (*AccountCreateRequest) SetAccountSubtype added in v0.15.0

func (o *AccountCreateRequest) SetAccountSubtype(v string)

SetAccountSubtype gets a reference to the given string and assigns it to the AccountSubtype field.

func (*AccountCreateRequest) SetAccountType added in v0.14.0

func (o *AccountCreateRequest) SetAccountType(v string)

SetAccountType sets field value

func (*AccountCreateRequest) SetApr added in v0.13.0

func (o *AccountCreateRequest) SetApr(v float32)

SetApr gets a reference to the given float32 and assigns it to the Apr field.

func (*AccountCreateRequest) SetApy added in v0.13.0

func (o *AccountCreateRequest) SetApy(v float32)

SetApy gets a reference to the given float32 and assigns it to the Apy field.

func (*AccountCreateRequest) SetAvailableBalance added in v0.13.0

func (o *AccountCreateRequest) SetAvailableBalance(v float32)

SetAvailableBalance gets a reference to the given float32 and assigns it to the AvailableBalance field.

func (*AccountCreateRequest) SetBalance added in v0.13.0

func (o *AccountCreateRequest) SetBalance(v float32)

SetBalance gets a reference to the given float32 and assigns it to the Balance field.

func (*AccountCreateRequest) SetCashSurrenderValue added in v0.13.0

func (o *AccountCreateRequest) SetCashSurrenderValue(v float32)

SetCashSurrenderValue gets a reference to the given float32 and assigns it to the CashSurrenderValue field.

func (*AccountCreateRequest) SetCreditLimit added in v0.13.0

func (o *AccountCreateRequest) SetCreditLimit(v float32)

SetCreditLimit gets a reference to the given float32 and assigns it to the CreditLimit field.

func (*AccountCreateRequest) SetCurrencyCode added in v0.13.0

func (o *AccountCreateRequest) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given string and assigns it to the CurrencyCode field.

func (*AccountCreateRequest) SetDeathBenefit added in v0.13.0

func (o *AccountCreateRequest) SetDeathBenefit(v int32)

SetDeathBenefit gets a reference to the given int32 and assigns it to the DeathBenefit field.

func (*AccountCreateRequest) SetInterestRate added in v0.13.0

func (o *AccountCreateRequest) SetInterestRate(v float32)

SetInterestRate gets a reference to the given float32 and assigns it to the InterestRate field.

func (*AccountCreateRequest) SetIsBusiness added in v0.14.0

func (o *AccountCreateRequest) SetIsBusiness(v bool)

SetIsBusiness gets a reference to the given bool and assigns it to the IsBusiness field.

func (*AccountCreateRequest) SetIsClosed added in v0.13.0

func (o *AccountCreateRequest) SetIsClosed(v bool)

SetIsClosed gets a reference to the given bool and assigns it to the IsClosed field.

func (*AccountCreateRequest) SetIsHidden added in v0.13.0

func (o *AccountCreateRequest) SetIsHidden(v bool)

SetIsHidden gets a reference to the given bool and assigns it to the IsHidden field.

func (*AccountCreateRequest) SetLoanAmount added in v0.13.0

func (o *AccountCreateRequest) SetLoanAmount(v float32)

SetLoanAmount gets a reference to the given float32 and assigns it to the LoanAmount field.

func (*AccountCreateRequest) SetMetadata added in v0.13.0

func (o *AccountCreateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*AccountCreateRequest) SetName added in v0.13.0

func (o *AccountCreateRequest) SetName(v string)

SetName sets field value

func (*AccountCreateRequest) SetNickname added in v0.13.0

func (o *AccountCreateRequest) SetNickname(v string)

SetNickname gets a reference to the given string and assigns it to the Nickname field.

func (*AccountCreateRequest) SetOriginalBalance added in v0.13.0

func (o *AccountCreateRequest) SetOriginalBalance(v float32)

SetOriginalBalance gets a reference to the given float32 and assigns it to the OriginalBalance field.

func (*AccountCreateRequest) SetPropertyType added in v0.14.0

func (o *AccountCreateRequest) SetPropertyType(v string)

SetPropertyType gets a reference to the given string and assigns it to the PropertyType field.

func (*AccountCreateRequest) SetSkipWebhook added in v0.14.0

func (o *AccountCreateRequest) SetSkipWebhook(v bool)

SetSkipWebhook gets a reference to the given bool and assigns it to the SkipWebhook field.

func (AccountCreateRequest) ToMap added in v0.17.1

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

type AccountCreateRequestBody added in v0.13.0

type AccountCreateRequestBody struct {
	Account *AccountCreateRequest `json:"account,omitempty"`
}

AccountCreateRequestBody struct for AccountCreateRequestBody

func NewAccountCreateRequestBody added in v0.13.0

func NewAccountCreateRequestBody() *AccountCreateRequestBody

NewAccountCreateRequestBody instantiates a new AccountCreateRequestBody 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 NewAccountCreateRequestBodyWithDefaults added in v0.13.0

func NewAccountCreateRequestBodyWithDefaults() *AccountCreateRequestBody

NewAccountCreateRequestBodyWithDefaults instantiates a new AccountCreateRequestBody 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 (*AccountCreateRequestBody) GetAccount added in v0.13.0

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

func (*AccountCreateRequestBody) GetAccountOk added in v0.13.0

func (o *AccountCreateRequestBody) GetAccountOk() (*AccountCreateRequest, 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 (*AccountCreateRequestBody) HasAccount added in v0.13.0

func (o *AccountCreateRequestBody) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (AccountCreateRequestBody) MarshalJSON added in v0.13.0

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

func (*AccountCreateRequestBody) SetAccount added in v0.13.0

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

func (AccountCreateRequestBody) ToMap added in v0.17.1

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

type AccountNumberResponse

type AccountNumberResponse struct {
	AccountGuid       NullableString `json:"account_guid,omitempty"`
	AccountNumber     NullableString `json:"account_number,omitempty"`
	Guid              NullableString `json:"guid,omitempty"`
	InstitutionNumber NullableString `json:"institution_number,omitempty"`
	MemberGuid        NullableString `json:"member_guid,omitempty"`
	PassedValidation  NullableBool   `json:"passed_validation,omitempty"`
	RoutingNumber     NullableString `json:"routing_number,omitempty"`
	TransitNumber     NullableString `json:"transit_number,omitempty"`
	UserGuid          NullableString `json:"user_guid,omitempty"`
}

AccountNumberResponse struct for AccountNumberResponse

func NewAccountNumberResponse

func NewAccountNumberResponse() *AccountNumberResponse

NewAccountNumberResponse instantiates a new AccountNumberResponse 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 NewAccountNumberResponseWithDefaults

func NewAccountNumberResponseWithDefaults() *AccountNumberResponse

NewAccountNumberResponseWithDefaults instantiates a new AccountNumberResponse 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 (*AccountNumberResponse) GetAccountGuid

func (o *AccountNumberResponse) GetAccountGuid() string

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

func (*AccountNumberResponse) GetAccountGuidOk

func (o *AccountNumberResponse) GetAccountGuidOk() (*string, bool)

GetAccountGuidOk returns a tuple with the AccountGuid 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 (*AccountNumberResponse) GetAccountNumber

func (o *AccountNumberResponse) GetAccountNumber() string

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

func (*AccountNumberResponse) GetAccountNumberOk

func (o *AccountNumberResponse) GetAccountNumberOk() (*string, bool)

GetAccountNumberOk returns a tuple with the AccountNumber 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 (*AccountNumberResponse) GetGuid

func (o *AccountNumberResponse) GetGuid() string

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

func (*AccountNumberResponse) GetGuidOk

func (o *AccountNumberResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*AccountNumberResponse) GetInstitutionNumber

func (o *AccountNumberResponse) GetInstitutionNumber() string

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

func (*AccountNumberResponse) GetInstitutionNumberOk

func (o *AccountNumberResponse) GetInstitutionNumberOk() (*string, bool)

GetInstitutionNumberOk returns a tuple with the InstitutionNumber 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 (*AccountNumberResponse) GetMemberGuid

func (o *AccountNumberResponse) GetMemberGuid() string

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

func (*AccountNumberResponse) GetMemberGuidOk

func (o *AccountNumberResponse) GetMemberGuidOk() (*string, bool)

GetMemberGuidOk returns a tuple with the MemberGuid 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 (*AccountNumberResponse) GetPassedValidation added in v0.9.0

func (o *AccountNumberResponse) GetPassedValidation() bool

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

func (*AccountNumberResponse) GetPassedValidationOk added in v0.9.0

func (o *AccountNumberResponse) GetPassedValidationOk() (*bool, bool)

GetPassedValidationOk returns a tuple with the PassedValidation 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 (*AccountNumberResponse) GetRoutingNumber

func (o *AccountNumberResponse) GetRoutingNumber() string

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

func (*AccountNumberResponse) GetRoutingNumberOk

func (o *AccountNumberResponse) GetRoutingNumberOk() (*string, bool)

GetRoutingNumberOk returns a tuple with the RoutingNumber 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 (*AccountNumberResponse) GetTransitNumber

func (o *AccountNumberResponse) GetTransitNumber() string

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

func (*AccountNumberResponse) GetTransitNumberOk

func (o *AccountNumberResponse) GetTransitNumberOk() (*string, bool)

GetTransitNumberOk returns a tuple with the TransitNumber 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 (*AccountNumberResponse) GetUserGuid

func (o *AccountNumberResponse) GetUserGuid() string

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

func (*AccountNumberResponse) GetUserGuidOk

func (o *AccountNumberResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*AccountNumberResponse) HasAccountGuid

func (o *AccountNumberResponse) HasAccountGuid() bool

HasAccountGuid returns a boolean if a field has been set.

func (*AccountNumberResponse) HasAccountNumber

func (o *AccountNumberResponse) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

func (*AccountNumberResponse) HasGuid

func (o *AccountNumberResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*AccountNumberResponse) HasInstitutionNumber

func (o *AccountNumberResponse) HasInstitutionNumber() bool

HasInstitutionNumber returns a boolean if a field has been set.

func (*AccountNumberResponse) HasMemberGuid

func (o *AccountNumberResponse) HasMemberGuid() bool

HasMemberGuid returns a boolean if a field has been set.

func (*AccountNumberResponse) HasPassedValidation added in v0.9.0

func (o *AccountNumberResponse) HasPassedValidation() bool

HasPassedValidation returns a boolean if a field has been set.

func (*AccountNumberResponse) HasRoutingNumber

func (o *AccountNumberResponse) HasRoutingNumber() bool

HasRoutingNumber returns a boolean if a field has been set.

func (*AccountNumberResponse) HasTransitNumber

func (o *AccountNumberResponse) HasTransitNumber() bool

HasTransitNumber returns a boolean if a field has been set.

func (*AccountNumberResponse) HasUserGuid

func (o *AccountNumberResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (AccountNumberResponse) MarshalJSON

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

func (*AccountNumberResponse) SetAccountGuid

func (o *AccountNumberResponse) SetAccountGuid(v string)

SetAccountGuid gets a reference to the given NullableString and assigns it to the AccountGuid field.

func (*AccountNumberResponse) SetAccountGuidNil added in v0.4.1

func (o *AccountNumberResponse) SetAccountGuidNil()

SetAccountGuidNil sets the value for AccountGuid to be an explicit nil

func (*AccountNumberResponse) SetAccountNumber

func (o *AccountNumberResponse) SetAccountNumber(v string)

SetAccountNumber gets a reference to the given NullableString and assigns it to the AccountNumber field.

func (*AccountNumberResponse) SetAccountNumberNil

func (o *AccountNumberResponse) SetAccountNumberNil()

SetAccountNumberNil sets the value for AccountNumber to be an explicit nil

func (*AccountNumberResponse) SetGuid

func (o *AccountNumberResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*AccountNumberResponse) SetGuidNil added in v0.4.1

func (o *AccountNumberResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*AccountNumberResponse) SetInstitutionNumber

func (o *AccountNumberResponse) SetInstitutionNumber(v string)

SetInstitutionNumber gets a reference to the given NullableString and assigns it to the InstitutionNumber field.

func (*AccountNumberResponse) SetInstitutionNumberNil

func (o *AccountNumberResponse) SetInstitutionNumberNil()

SetInstitutionNumberNil sets the value for InstitutionNumber to be an explicit nil

func (*AccountNumberResponse) SetMemberGuid

func (o *AccountNumberResponse) SetMemberGuid(v string)

SetMemberGuid gets a reference to the given NullableString and assigns it to the MemberGuid field.

func (*AccountNumberResponse) SetMemberGuidNil added in v0.4.1

func (o *AccountNumberResponse) SetMemberGuidNil()

SetMemberGuidNil sets the value for MemberGuid to be an explicit nil

func (*AccountNumberResponse) SetPassedValidation added in v0.9.0

func (o *AccountNumberResponse) SetPassedValidation(v bool)

SetPassedValidation gets a reference to the given NullableBool and assigns it to the PassedValidation field.

func (*AccountNumberResponse) SetPassedValidationNil added in v0.9.0

func (o *AccountNumberResponse) SetPassedValidationNil()

SetPassedValidationNil sets the value for PassedValidation to be an explicit nil

func (*AccountNumberResponse) SetRoutingNumber

func (o *AccountNumberResponse) SetRoutingNumber(v string)

SetRoutingNumber gets a reference to the given NullableString and assigns it to the RoutingNumber field.

func (*AccountNumberResponse) SetRoutingNumberNil

func (o *AccountNumberResponse) SetRoutingNumberNil()

SetRoutingNumberNil sets the value for RoutingNumber to be an explicit nil

func (*AccountNumberResponse) SetTransitNumber

func (o *AccountNumberResponse) SetTransitNumber(v string)

SetTransitNumber gets a reference to the given NullableString and assigns it to the TransitNumber field.

func (*AccountNumberResponse) SetTransitNumberNil

func (o *AccountNumberResponse) SetTransitNumberNil()

SetTransitNumberNil sets the value for TransitNumber to be an explicit nil

func (*AccountNumberResponse) SetUserGuid

func (o *AccountNumberResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*AccountNumberResponse) SetUserGuidNil added in v0.4.1

func (o *AccountNumberResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (AccountNumberResponse) ToMap added in v0.17.1

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

func (*AccountNumberResponse) UnsetAccountGuid added in v0.4.1

func (o *AccountNumberResponse) UnsetAccountGuid()

UnsetAccountGuid ensures that no value is present for AccountGuid, not even an explicit nil

func (*AccountNumberResponse) UnsetAccountNumber

func (o *AccountNumberResponse) UnsetAccountNumber()

UnsetAccountNumber ensures that no value is present for AccountNumber, not even an explicit nil

func (*AccountNumberResponse) UnsetGuid added in v0.4.1

func (o *AccountNumberResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*AccountNumberResponse) UnsetInstitutionNumber

func (o *AccountNumberResponse) UnsetInstitutionNumber()

UnsetInstitutionNumber ensures that no value is present for InstitutionNumber, not even an explicit nil

func (*AccountNumberResponse) UnsetMemberGuid added in v0.4.1

func (o *AccountNumberResponse) UnsetMemberGuid()

UnsetMemberGuid ensures that no value is present for MemberGuid, not even an explicit nil

func (*AccountNumberResponse) UnsetPassedValidation added in v0.9.0

func (o *AccountNumberResponse) UnsetPassedValidation()

UnsetPassedValidation ensures that no value is present for PassedValidation, not even an explicit nil

func (*AccountNumberResponse) UnsetRoutingNumber

func (o *AccountNumberResponse) UnsetRoutingNumber()

UnsetRoutingNumber ensures that no value is present for RoutingNumber, not even an explicit nil

func (*AccountNumberResponse) UnsetTransitNumber

func (o *AccountNumberResponse) UnsetTransitNumber()

UnsetTransitNumber ensures that no value is present for TransitNumber, not even an explicit nil

func (*AccountNumberResponse) UnsetUserGuid added in v0.4.1

func (o *AccountNumberResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type AccountNumbersResponseBody

type AccountNumbersResponseBody struct {
	AccountNumbers []AccountNumberResponse `json:"account_numbers,omitempty"`
	Pagination     *PaginationResponse     `json:"pagination,omitempty"`
}

AccountNumbersResponseBody struct for AccountNumbersResponseBody

func NewAccountNumbersResponseBody

func NewAccountNumbersResponseBody() *AccountNumbersResponseBody

NewAccountNumbersResponseBody instantiates a new AccountNumbersResponseBody 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 NewAccountNumbersResponseBodyWithDefaults

func NewAccountNumbersResponseBodyWithDefaults() *AccountNumbersResponseBody

NewAccountNumbersResponseBodyWithDefaults instantiates a new AccountNumbersResponseBody 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 (*AccountNumbersResponseBody) GetAccountNumbers

func (o *AccountNumbersResponseBody) GetAccountNumbers() []AccountNumberResponse

GetAccountNumbers returns the AccountNumbers field value if set, zero value otherwise.

func (*AccountNumbersResponseBody) GetAccountNumbersOk

func (o *AccountNumbersResponseBody) GetAccountNumbersOk() ([]AccountNumberResponse, bool)

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

func (*AccountNumbersResponseBody) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AccountNumbersResponseBody) GetPaginationOk

func (o *AccountNumbersResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*AccountNumbersResponseBody) HasAccountNumbers

func (o *AccountNumbersResponseBody) HasAccountNumbers() bool

HasAccountNumbers returns a boolean if a field has been set.

func (*AccountNumbersResponseBody) HasPagination

func (o *AccountNumbersResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (AccountNumbersResponseBody) MarshalJSON

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

func (*AccountNumbersResponseBody) SetAccountNumbers

func (o *AccountNumbersResponseBody) SetAccountNumbers(v []AccountNumberResponse)

SetAccountNumbers gets a reference to the given []AccountNumberResponse and assigns it to the AccountNumbers field.

func (*AccountNumbersResponseBody) SetPagination

func (o *AccountNumbersResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (AccountNumbersResponseBody) ToMap added in v0.17.1

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

type AccountOwnerResponse

type AccountOwnerResponse struct {
	AccountGuid NullableString `json:"account_guid,omitempty"`
	Address     NullableString `json:"address,omitempty"`
	City        NullableString `json:"city,omitempty"`
	Country     NullableString `json:"country,omitempty"`
	Email       NullableString `json:"email,omitempty"`
	FirstName   NullableString `json:"first_name,omitempty"`
	Guid        NullableString `json:"guid,omitempty"`
	LastName    NullableString `json:"last_name,omitempty"`
	MemberGuid  NullableString `json:"member_guid,omitempty"`
	OwnerName   NullableString `json:"owner_name,omitempty"`
	Phone       NullableString `json:"phone,omitempty"`
	PostalCode  NullableString `json:"postal_code,omitempty"`
	State       NullableString `json:"state,omitempty"`
	UserGuid    NullableString `json:"user_guid,omitempty"`
}

AccountOwnerResponse struct for AccountOwnerResponse

func NewAccountOwnerResponse

func NewAccountOwnerResponse() *AccountOwnerResponse

NewAccountOwnerResponse instantiates a new AccountOwnerResponse 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 NewAccountOwnerResponseWithDefaults

func NewAccountOwnerResponseWithDefaults() *AccountOwnerResponse

NewAccountOwnerResponseWithDefaults instantiates a new AccountOwnerResponse 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 (*AccountOwnerResponse) GetAccountGuid

func (o *AccountOwnerResponse) GetAccountGuid() string

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

func (*AccountOwnerResponse) GetAccountGuidOk

func (o *AccountOwnerResponse) GetAccountGuidOk() (*string, bool)

GetAccountGuidOk returns a tuple with the AccountGuid 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 (*AccountOwnerResponse) GetAddress

func (o *AccountOwnerResponse) GetAddress() string

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

func (*AccountOwnerResponse) GetAddressOk

func (o *AccountOwnerResponse) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address 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 (*AccountOwnerResponse) GetCity

func (o *AccountOwnerResponse) GetCity() string

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

func (*AccountOwnerResponse) GetCityOk

func (o *AccountOwnerResponse) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City 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 (*AccountOwnerResponse) GetCountry

func (o *AccountOwnerResponse) GetCountry() string

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

func (*AccountOwnerResponse) GetCountryOk

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

func (*AccountOwnerResponse) GetEmail

func (o *AccountOwnerResponse) GetEmail() string

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

func (*AccountOwnerResponse) GetEmailOk

func (o *AccountOwnerResponse) GetEmailOk() (*string, bool)

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

func (*AccountOwnerResponse) GetFirstName added in v0.9.0

func (o *AccountOwnerResponse) GetFirstName() string

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

func (*AccountOwnerResponse) GetFirstNameOk added in v0.9.0

func (o *AccountOwnerResponse) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName 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 (*AccountOwnerResponse) GetGuid

func (o *AccountOwnerResponse) GetGuid() string

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

func (*AccountOwnerResponse) GetGuidOk

func (o *AccountOwnerResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*AccountOwnerResponse) GetLastName added in v0.9.0

func (o *AccountOwnerResponse) GetLastName() string

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

func (*AccountOwnerResponse) GetLastNameOk added in v0.9.0

func (o *AccountOwnerResponse) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName 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 (*AccountOwnerResponse) GetMemberGuid

func (o *AccountOwnerResponse) GetMemberGuid() string

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

func (*AccountOwnerResponse) GetMemberGuidOk

func (o *AccountOwnerResponse) GetMemberGuidOk() (*string, bool)

GetMemberGuidOk returns a tuple with the MemberGuid 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 (*AccountOwnerResponse) GetOwnerName

func (o *AccountOwnerResponse) GetOwnerName() string

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

func (*AccountOwnerResponse) GetOwnerNameOk

func (o *AccountOwnerResponse) 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 (*AccountOwnerResponse) GetPhone

func (o *AccountOwnerResponse) GetPhone() string

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

func (*AccountOwnerResponse) GetPhoneOk

func (o *AccountOwnerResponse) GetPhoneOk() (*string, bool)

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

func (*AccountOwnerResponse) GetPostalCode

func (o *AccountOwnerResponse) GetPostalCode() string

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

func (*AccountOwnerResponse) GetPostalCodeOk

func (o *AccountOwnerResponse) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode 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 (*AccountOwnerResponse) GetState

func (o *AccountOwnerResponse) GetState() string

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

func (*AccountOwnerResponse) GetStateOk

func (o *AccountOwnerResponse) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State 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 (*AccountOwnerResponse) GetUserGuid

func (o *AccountOwnerResponse) GetUserGuid() string

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

func (*AccountOwnerResponse) GetUserGuidOk

func (o *AccountOwnerResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*AccountOwnerResponse) HasAccountGuid

func (o *AccountOwnerResponse) HasAccountGuid() bool

HasAccountGuid returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasAddress

func (o *AccountOwnerResponse) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasCity

func (o *AccountOwnerResponse) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasCountry

func (o *AccountOwnerResponse) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasEmail

func (o *AccountOwnerResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasFirstName added in v0.9.0

func (o *AccountOwnerResponse) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasGuid

func (o *AccountOwnerResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasLastName added in v0.9.0

func (o *AccountOwnerResponse) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasMemberGuid

func (o *AccountOwnerResponse) HasMemberGuid() bool

HasMemberGuid returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasOwnerName

func (o *AccountOwnerResponse) HasOwnerName() bool

HasOwnerName returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasPhone

func (o *AccountOwnerResponse) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasPostalCode

func (o *AccountOwnerResponse) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasState

func (o *AccountOwnerResponse) HasState() bool

HasState returns a boolean if a field has been set.

func (*AccountOwnerResponse) HasUserGuid

func (o *AccountOwnerResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (AccountOwnerResponse) MarshalJSON

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

func (*AccountOwnerResponse) SetAccountGuid

func (o *AccountOwnerResponse) SetAccountGuid(v string)

SetAccountGuid gets a reference to the given NullableString and assigns it to the AccountGuid field.

func (*AccountOwnerResponse) SetAccountGuidNil added in v0.4.1

func (o *AccountOwnerResponse) SetAccountGuidNil()

SetAccountGuidNil sets the value for AccountGuid to be an explicit nil

func (*AccountOwnerResponse) SetAddress

func (o *AccountOwnerResponse) SetAddress(v string)

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

func (*AccountOwnerResponse) SetAddressNil

func (o *AccountOwnerResponse) SetAddressNil()

SetAddressNil sets the value for Address to be an explicit nil

func (*AccountOwnerResponse) SetCity

func (o *AccountOwnerResponse) SetCity(v string)

SetCity gets a reference to the given NullableString and assigns it to the City field.

func (*AccountOwnerResponse) SetCityNil

func (o *AccountOwnerResponse) SetCityNil()

SetCityNil sets the value for City to be an explicit nil

func (*AccountOwnerResponse) SetCountry

func (o *AccountOwnerResponse) SetCountry(v string)

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

func (*AccountOwnerResponse) SetCountryNil

func (o *AccountOwnerResponse) SetCountryNil()

SetCountryNil sets the value for Country to be an explicit nil

func (*AccountOwnerResponse) SetEmail

func (o *AccountOwnerResponse) SetEmail(v string)

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

func (*AccountOwnerResponse) SetEmailNil

func (o *AccountOwnerResponse) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*AccountOwnerResponse) SetFirstName added in v0.9.0

func (o *AccountOwnerResponse) SetFirstName(v string)

SetFirstName gets a reference to the given NullableString and assigns it to the FirstName field.

func (*AccountOwnerResponse) SetFirstNameNil added in v0.9.0

func (o *AccountOwnerResponse) SetFirstNameNil()

SetFirstNameNil sets the value for FirstName to be an explicit nil

func (*AccountOwnerResponse) SetGuid

func (o *AccountOwnerResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*AccountOwnerResponse) SetGuidNil added in v0.4.1

func (o *AccountOwnerResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*AccountOwnerResponse) SetLastName added in v0.9.0

func (o *AccountOwnerResponse) SetLastName(v string)

SetLastName gets a reference to the given NullableString and assigns it to the LastName field.

func (*AccountOwnerResponse) SetLastNameNil added in v0.9.0

func (o *AccountOwnerResponse) SetLastNameNil()

SetLastNameNil sets the value for LastName to be an explicit nil

func (*AccountOwnerResponse) SetMemberGuid

func (o *AccountOwnerResponse) SetMemberGuid(v string)

SetMemberGuid gets a reference to the given NullableString and assigns it to the MemberGuid field.

func (*AccountOwnerResponse) SetMemberGuidNil added in v0.4.1

func (o *AccountOwnerResponse) SetMemberGuidNil()

SetMemberGuidNil sets the value for MemberGuid to be an explicit nil

func (*AccountOwnerResponse) SetOwnerName

func (o *AccountOwnerResponse) SetOwnerName(v string)

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

func (*AccountOwnerResponse) SetOwnerNameNil

func (o *AccountOwnerResponse) SetOwnerNameNil()

SetOwnerNameNil sets the value for OwnerName to be an explicit nil

func (*AccountOwnerResponse) SetPhone

func (o *AccountOwnerResponse) SetPhone(v string)

SetPhone gets a reference to the given NullableString and assigns it to the Phone field.

func (*AccountOwnerResponse) SetPhoneNil

func (o *AccountOwnerResponse) SetPhoneNil()

SetPhoneNil sets the value for Phone to be an explicit nil

func (*AccountOwnerResponse) SetPostalCode

func (o *AccountOwnerResponse) SetPostalCode(v string)

SetPostalCode gets a reference to the given NullableString and assigns it to the PostalCode field.

func (*AccountOwnerResponse) SetPostalCodeNil

func (o *AccountOwnerResponse) SetPostalCodeNil()

SetPostalCodeNil sets the value for PostalCode to be an explicit nil

func (*AccountOwnerResponse) SetState

func (o *AccountOwnerResponse) SetState(v string)

SetState gets a reference to the given NullableString and assigns it to the State field.

func (*AccountOwnerResponse) SetStateNil

func (o *AccountOwnerResponse) SetStateNil()

SetStateNil sets the value for State to be an explicit nil

func (*AccountOwnerResponse) SetUserGuid

func (o *AccountOwnerResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*AccountOwnerResponse) SetUserGuidNil added in v0.4.1

func (o *AccountOwnerResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (AccountOwnerResponse) ToMap added in v0.17.1

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

func (*AccountOwnerResponse) UnsetAccountGuid added in v0.4.1

func (o *AccountOwnerResponse) UnsetAccountGuid()

UnsetAccountGuid ensures that no value is present for AccountGuid, not even an explicit nil

func (*AccountOwnerResponse) UnsetAddress

func (o *AccountOwnerResponse) UnsetAddress()

UnsetAddress ensures that no value is present for Address, not even an explicit nil

func (*AccountOwnerResponse) UnsetCity

func (o *AccountOwnerResponse) UnsetCity()

UnsetCity ensures that no value is present for City, not even an explicit nil

func (*AccountOwnerResponse) UnsetCountry

func (o *AccountOwnerResponse) UnsetCountry()

UnsetCountry ensures that no value is present for Country, not even an explicit nil

func (*AccountOwnerResponse) UnsetEmail

func (o *AccountOwnerResponse) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*AccountOwnerResponse) UnsetFirstName added in v0.9.0

func (o *AccountOwnerResponse) UnsetFirstName()

UnsetFirstName ensures that no value is present for FirstName, not even an explicit nil

func (*AccountOwnerResponse) UnsetGuid added in v0.4.1

func (o *AccountOwnerResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*AccountOwnerResponse) UnsetLastName added in v0.9.0

func (o *AccountOwnerResponse) UnsetLastName()

UnsetLastName ensures that no value is present for LastName, not even an explicit nil

func (*AccountOwnerResponse) UnsetMemberGuid added in v0.4.1

func (o *AccountOwnerResponse) UnsetMemberGuid()

UnsetMemberGuid ensures that no value is present for MemberGuid, not even an explicit nil

func (*AccountOwnerResponse) UnsetOwnerName

func (o *AccountOwnerResponse) UnsetOwnerName()

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

func (*AccountOwnerResponse) UnsetPhone

func (o *AccountOwnerResponse) UnsetPhone()

UnsetPhone ensures that no value is present for Phone, not even an explicit nil

func (*AccountOwnerResponse) UnsetPostalCode

func (o *AccountOwnerResponse) UnsetPostalCode()

UnsetPostalCode ensures that no value is present for PostalCode, not even an explicit nil

func (*AccountOwnerResponse) UnsetState

func (o *AccountOwnerResponse) UnsetState()

UnsetState ensures that no value is present for State, not even an explicit nil

func (*AccountOwnerResponse) UnsetUserGuid added in v0.4.1

func (o *AccountOwnerResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type AccountOwnersResponseBody

type AccountOwnersResponseBody struct {
	AccountOwners []AccountOwnerResponse `json:"account_owners,omitempty"`
	Pagination    *PaginationResponse    `json:"pagination,omitempty"`
}

AccountOwnersResponseBody struct for AccountOwnersResponseBody

func NewAccountOwnersResponseBody

func NewAccountOwnersResponseBody() *AccountOwnersResponseBody

NewAccountOwnersResponseBody instantiates a new AccountOwnersResponseBody 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 NewAccountOwnersResponseBodyWithDefaults

func NewAccountOwnersResponseBodyWithDefaults() *AccountOwnersResponseBody

NewAccountOwnersResponseBodyWithDefaults instantiates a new AccountOwnersResponseBody 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 (*AccountOwnersResponseBody) GetAccountOwners

func (o *AccountOwnersResponseBody) GetAccountOwners() []AccountOwnerResponse

GetAccountOwners returns the AccountOwners field value if set, zero value otherwise.

func (*AccountOwnersResponseBody) GetAccountOwnersOk

func (o *AccountOwnersResponseBody) GetAccountOwnersOk() ([]AccountOwnerResponse, bool)

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

func (*AccountOwnersResponseBody) GetPagination

func (o *AccountOwnersResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AccountOwnersResponseBody) GetPaginationOk

func (o *AccountOwnersResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*AccountOwnersResponseBody) HasAccountOwners

func (o *AccountOwnersResponseBody) HasAccountOwners() bool

HasAccountOwners returns a boolean if a field has been set.

func (*AccountOwnersResponseBody) HasPagination

func (o *AccountOwnersResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (AccountOwnersResponseBody) MarshalJSON

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

func (*AccountOwnersResponseBody) SetAccountOwners

func (o *AccountOwnersResponseBody) SetAccountOwners(v []AccountOwnerResponse)

SetAccountOwners gets a reference to the given []AccountOwnerResponse and assigns it to the AccountOwners field.

func (*AccountOwnersResponseBody) SetPagination

func (o *AccountOwnersResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (AccountOwnersResponseBody) ToMap added in v0.17.1

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

type AccountResponse

type AccountResponse struct {
	AccountNumber         NullableString  `json:"account_number,omitempty"`
	AccountOwnership      NullableString  `json:"account_ownership,omitempty"`
	AnnuityPolicyToDate   NullableString  `json:"annuity_policy_to_date,omitempty"`
	AnnuityProvider       NullableString  `json:"annuity_provider,omitempty"`
	AnnuityTermYear       NullableFloat32 `json:"annuity_term_year,omitempty"`
	Apr                   NullableFloat32 `json:"apr,omitempty"`
	Apy                   NullableFloat32 `json:"apy,omitempty"`
	AvailableBalance      NullableFloat32 `json:"available_balance,omitempty"`
	AvailableCredit       NullableFloat32 `json:"available_credit,omitempty"`
	Balance               NullableFloat32 `json:"balance,omitempty"`
	CashBalance           NullableFloat32 `json:"cash_balance,omitempty"`
	CashSurrenderValue    NullableFloat32 `json:"cash_surrender_value,omitempty"`
	CreatedAt             *string         `json:"created_at,omitempty"`
	CreditLimit           NullableFloat32 `json:"credit_limit,omitempty"`
	CurrencyCode          NullableString  `json:"currency_code,omitempty"`
	DayPaymentIsDue       NullableInt32   `json:"day_payment_is_due,omitempty"`
	DeathBenefit          NullableInt32   `json:"death_benefit,omitempty"`
	Guid                  NullableString  `json:"guid,omitempty"`
	HoldingsValue         NullableFloat32 `json:"holdings_value,omitempty"`
	Id                    NullableString  `json:"id,omitempty"`
	ImportedAt            NullableString  `json:"imported_at,omitempty"`
	InterestRate          NullableFloat32 `json:"interest_rate,omitempty"`
	InstitutionCode       NullableString  `json:"institution_code,omitempty"`
	InsuredName           NullableString  `json:"insured_name,omitempty"`
	IsClosed              NullableBool    `json:"is_closed,omitempty"`
	IsHidden              NullableBool    `json:"is_hidden,omitempty"`
	IsManual              NullableBool    `json:"is_manual,omitempty"`
	LastPayment           NullableFloat32 `json:"last_payment,omitempty"`
	LastPaymentAt         NullableString  `json:"last_payment_at,omitempty"`
	LoanAmount            NullableFloat32 `json:"loan_amount,omitempty"`
	MarginBalance         NullableFloat32 `json:"margin_balance,omitempty"`
	MaturesOn             NullableString  `json:"matures_on,omitempty"`
	MemberGuid            NullableString  `json:"member_guid,omitempty"`
	MemberId              NullableString  `json:"member_id,omitempty"`
	MemberIsManagedByUser NullableBool    `json:"member_is_managed_by_user,omitempty"`
	Metadata              NullableString  `json:"metadata,omitempty"`
	MinimumBalance        NullableFloat32 `json:"minimum_balance,omitempty"`
	MinimumPayment        NullableFloat32 `json:"minimum_payment,omitempty"`
	Name                  NullableString  `json:"name,omitempty"`
	Nickname              NullableString  `json:"nickname,omitempty"`
	OriginalBalance       NullableFloat32 `json:"original_balance,omitempty"`
	PayOutAmount          NullableFloat32 `json:"pay_out_amount,omitempty"`
	PaymentDueAt          NullableString  `json:"payment_due_at,omitempty"`
	PayoffBalance         NullableFloat32 `json:"payoff_balance,omitempty"`
	PremiumAmount         NullableFloat32 `json:"premium_amount,omitempty"`
	PropertyType          NullableString  `json:"property_type,omitempty"`
	RoutingNumber         NullableString  `json:"routing_number,omitempty"`
	StartedOn             NullableString  `json:"started_on,omitempty"`
	Subtype               NullableString  `json:"subtype,omitempty"`
	TodayUglAmount        NullableFloat32 `json:"today_ugl_amount,omitempty"`
	TodayUglPercentage    NullableFloat32 `json:"today_ugl_percentage,omitempty"`
	TotalAccountValue     NullableFloat32 `json:"total_account_value,omitempty"`
	Type                  NullableString  `json:"type,omitempty"`
	UpdatedAt             NullableString  `json:"updated_at,omitempty"`
	UserGuid              NullableString  `json:"user_guid,omitempty"`
	UserId                NullableString  `json:"user_id,omitempty"`
}

AccountResponse struct for AccountResponse

func NewAccountResponse

func NewAccountResponse() *AccountResponse

NewAccountResponse instantiates a new AccountResponse 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 NewAccountResponseWithDefaults

func NewAccountResponseWithDefaults() *AccountResponse

NewAccountResponseWithDefaults instantiates a new AccountResponse 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 (*AccountResponse) GetAccountNumber

func (o *AccountResponse) GetAccountNumber() string

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

func (*AccountResponse) GetAccountNumberOk

func (o *AccountResponse) GetAccountNumberOk() (*string, bool)

GetAccountNumberOk returns a tuple with the AccountNumber 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 (*AccountResponse) GetAccountOwnership added in v0.14.0

func (o *AccountResponse) GetAccountOwnership() string

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

func (*AccountResponse) GetAccountOwnershipOk added in v0.14.0

func (o *AccountResponse) GetAccountOwnershipOk() (*string, bool)

GetAccountOwnershipOk returns a tuple with the AccountOwnership 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 (*AccountResponse) GetAnnuityPolicyToDate added in v0.14.0

func (o *AccountResponse) GetAnnuityPolicyToDate() string

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

func (*AccountResponse) GetAnnuityPolicyToDateOk added in v0.14.0

func (o *AccountResponse) GetAnnuityPolicyToDateOk() (*string, bool)

GetAnnuityPolicyToDateOk returns a tuple with the AnnuityPolicyToDate 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 (*AccountResponse) GetAnnuityProvider added in v0.14.0

func (o *AccountResponse) GetAnnuityProvider() string

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

func (*AccountResponse) GetAnnuityProviderOk added in v0.14.0

func (o *AccountResponse) GetAnnuityProviderOk() (*string, bool)

GetAnnuityProviderOk returns a tuple with the AnnuityProvider 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 (*AccountResponse) GetAnnuityTermYear added in v0.14.0

func (o *AccountResponse) GetAnnuityTermYear() float32

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

func (*AccountResponse) GetAnnuityTermYearOk added in v0.14.0

func (o *AccountResponse) GetAnnuityTermYearOk() (*float32, bool)

GetAnnuityTermYearOk returns a tuple with the AnnuityTermYear 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 (*AccountResponse) GetApr

func (o *AccountResponse) GetApr() float32

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

func (*AccountResponse) GetAprOk

func (o *AccountResponse) GetAprOk() (*float32, bool)

GetAprOk returns a tuple with the Apr 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 (*AccountResponse) GetApy

func (o *AccountResponse) GetApy() float32

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

func (*AccountResponse) GetApyOk

func (o *AccountResponse) GetApyOk() (*float32, bool)

GetApyOk returns a tuple with the Apy 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 (*AccountResponse) GetAvailableBalance

func (o *AccountResponse) GetAvailableBalance() float32

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

func (*AccountResponse) GetAvailableBalanceOk

func (o *AccountResponse) GetAvailableBalanceOk() (*float32, bool)

GetAvailableBalanceOk returns a tuple with the AvailableBalance 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 (*AccountResponse) GetAvailableCredit

func (o *AccountResponse) GetAvailableCredit() float32

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

func (*AccountResponse) GetAvailableCreditOk

func (o *AccountResponse) GetAvailableCreditOk() (*float32, bool)

GetAvailableCreditOk returns a tuple with the AvailableCredit 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 (*AccountResponse) GetBalance

func (o *AccountResponse) GetBalance() float32

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

func (*AccountResponse) GetBalanceOk

func (o *AccountResponse) GetBalanceOk() (*float32, bool)

GetBalanceOk returns a tuple with the Balance 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 (*AccountResponse) GetCashBalance

func (o *AccountResponse) GetCashBalance() float32

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

func (*AccountResponse) GetCashBalanceOk

func (o *AccountResponse) GetCashBalanceOk() (*float32, bool)

GetCashBalanceOk returns a tuple with the CashBalance 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 (*AccountResponse) GetCashSurrenderValue

func (o *AccountResponse) GetCashSurrenderValue() float32

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

func (*AccountResponse) GetCashSurrenderValueOk

func (o *AccountResponse) GetCashSurrenderValueOk() (*float32, bool)

GetCashSurrenderValueOk returns a tuple with the CashSurrenderValue 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 (*AccountResponse) GetCreatedAt

func (o *AccountResponse) GetCreatedAt() string

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

func (*AccountResponse) GetCreatedAtOk

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

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

func (*AccountResponse) GetCreditLimit

func (o *AccountResponse) GetCreditLimit() float32

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

func (*AccountResponse) GetCreditLimitOk

func (o *AccountResponse) GetCreditLimitOk() (*float32, bool)

GetCreditLimitOk returns a tuple with the CreditLimit 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 (*AccountResponse) GetCurrencyCode

func (o *AccountResponse) GetCurrencyCode() string

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

func (*AccountResponse) GetCurrencyCodeOk

func (o *AccountResponse) GetCurrencyCodeOk() (*string, bool)

GetCurrencyCodeOk returns a tuple with the CurrencyCode 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 (*AccountResponse) GetDayPaymentIsDue

func (o *AccountResponse) GetDayPaymentIsDue() int32

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

func (*AccountResponse) GetDayPaymentIsDueOk

func (o *AccountResponse) GetDayPaymentIsDueOk() (*int32, bool)

GetDayPaymentIsDueOk returns a tuple with the DayPaymentIsDue 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 (*AccountResponse) GetDeathBenefit

func (o *AccountResponse) GetDeathBenefit() int32

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

func (*AccountResponse) GetDeathBenefitOk

func (o *AccountResponse) GetDeathBenefitOk() (*int32, bool)

GetDeathBenefitOk returns a tuple with the DeathBenefit 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 (*AccountResponse) GetGuid

func (o *AccountResponse) GetGuid() string

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

func (*AccountResponse) GetGuidOk

func (o *AccountResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*AccountResponse) GetHoldingsValue

func (o *AccountResponse) GetHoldingsValue() float32

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

func (*AccountResponse) GetHoldingsValueOk

func (o *AccountResponse) GetHoldingsValueOk() (*float32, bool)

GetHoldingsValueOk returns a tuple with the HoldingsValue 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 (*AccountResponse) GetId

func (o *AccountResponse) GetId() string

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

func (*AccountResponse) GetIdOk

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

func (*AccountResponse) GetImportedAt

func (o *AccountResponse) GetImportedAt() string

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

func (*AccountResponse) GetImportedAtOk

func (o *AccountResponse) GetImportedAtOk() (*string, bool)

GetImportedAtOk returns a tuple with the ImportedAt 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 (*AccountResponse) GetInstitutionCode

func (o *AccountResponse) GetInstitutionCode() string

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

func (*AccountResponse) GetInstitutionCodeOk

func (o *AccountResponse) GetInstitutionCodeOk() (*string, bool)

GetInstitutionCodeOk returns a tuple with the InstitutionCode 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 (*AccountResponse) GetInsuredName

func (o *AccountResponse) GetInsuredName() string

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

func (*AccountResponse) GetInsuredNameOk

func (o *AccountResponse) GetInsuredNameOk() (*string, bool)

GetInsuredNameOk returns a tuple with the InsuredName 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 (*AccountResponse) GetInterestRate

func (o *AccountResponse) GetInterestRate() float32

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

func (*AccountResponse) GetInterestRateOk

func (o *AccountResponse) GetInterestRateOk() (*float32, bool)

GetInterestRateOk returns a tuple with the InterestRate 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 (*AccountResponse) GetIsClosed

func (o *AccountResponse) GetIsClosed() bool

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

func (*AccountResponse) GetIsClosedOk

func (o *AccountResponse) GetIsClosedOk() (*bool, bool)

GetIsClosedOk returns a tuple with the IsClosed 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 (*AccountResponse) GetIsHidden

func (o *AccountResponse) GetIsHidden() bool

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

func (*AccountResponse) GetIsHiddenOk

func (o *AccountResponse) GetIsHiddenOk() (*bool, bool)

GetIsHiddenOk returns a tuple with the IsHidden 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 (*AccountResponse) GetIsManual added in v0.13.0

func (o *AccountResponse) GetIsManual() bool

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

func (*AccountResponse) GetIsManualOk added in v0.13.0

func (o *AccountResponse) GetIsManualOk() (*bool, bool)

GetIsManualOk returns a tuple with the IsManual 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 (*AccountResponse) GetLastPayment

func (o *AccountResponse) GetLastPayment() float32

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

func (*AccountResponse) GetLastPaymentAt

func (o *AccountResponse) GetLastPaymentAt() string

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

func (*AccountResponse) GetLastPaymentAtOk

func (o *AccountResponse) GetLastPaymentAtOk() (*string, bool)

GetLastPaymentAtOk returns a tuple with the LastPaymentAt 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 (*AccountResponse) GetLastPaymentOk

func (o *AccountResponse) GetLastPaymentOk() (*float32, bool)

GetLastPaymentOk returns a tuple with the LastPayment 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 (*AccountResponse) GetLoanAmount

func (o *AccountResponse) GetLoanAmount() float32

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

func (*AccountResponse) GetLoanAmountOk

func (o *AccountResponse) GetLoanAmountOk() (*float32, bool)

GetLoanAmountOk returns a tuple with the LoanAmount 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 (*AccountResponse) GetMarginBalance added in v0.14.0

func (o *AccountResponse) GetMarginBalance() float32

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

func (*AccountResponse) GetMarginBalanceOk added in v0.14.0

func (o *AccountResponse) GetMarginBalanceOk() (*float32, bool)

GetMarginBalanceOk returns a tuple with the MarginBalance 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 (*AccountResponse) GetMaturesOn

func (o *AccountResponse) GetMaturesOn() string

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

func (*AccountResponse) GetMaturesOnOk

func (o *AccountResponse) GetMaturesOnOk() (*string, bool)

GetMaturesOnOk returns a tuple with the MaturesOn 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 (*AccountResponse) GetMemberGuid

func (o *AccountResponse) GetMemberGuid() string

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

func (*AccountResponse) GetMemberGuidOk

func (o *AccountResponse) GetMemberGuidOk() (*string, bool)

GetMemberGuidOk returns a tuple with the MemberGuid 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 (*AccountResponse) GetMemberId

func (o *AccountResponse) GetMemberId() string

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

func (*AccountResponse) GetMemberIdOk

func (o *AccountResponse) GetMemberIdOk() (*string, bool)

GetMemberIdOk returns a tuple with the MemberId 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 (*AccountResponse) GetMemberIsManagedByUser

func (o *AccountResponse) GetMemberIsManagedByUser() bool

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

func (*AccountResponse) GetMemberIsManagedByUserOk

func (o *AccountResponse) GetMemberIsManagedByUserOk() (*bool, bool)

GetMemberIsManagedByUserOk returns a tuple with the MemberIsManagedByUser 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 (*AccountResponse) GetMetadata

func (o *AccountResponse) GetMetadata() string

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

func (*AccountResponse) GetMetadataOk

func (o *AccountResponse) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata 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 (*AccountResponse) GetMinimumBalance

func (o *AccountResponse) GetMinimumBalance() float32

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

func (*AccountResponse) GetMinimumBalanceOk

func (o *AccountResponse) GetMinimumBalanceOk() (*float32, bool)

GetMinimumBalanceOk returns a tuple with the MinimumBalance 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 (*AccountResponse) GetMinimumPayment

func (o *AccountResponse) GetMinimumPayment() float32

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

func (*AccountResponse) GetMinimumPaymentOk

func (o *AccountResponse) GetMinimumPaymentOk() (*float32, bool)

GetMinimumPaymentOk returns a tuple with the MinimumPayment 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 (*AccountResponse) GetName

func (o *AccountResponse) GetName() string

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

func (*AccountResponse) GetNameOk

func (o *AccountResponse) 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 (*AccountResponse) GetNickname

func (o *AccountResponse) GetNickname() string

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

func (*AccountResponse) GetNicknameOk

func (o *AccountResponse) GetNicknameOk() (*string, bool)

GetNicknameOk returns a tuple with the Nickname 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 (*AccountResponse) GetOriginalBalance

func (o *AccountResponse) GetOriginalBalance() float32

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

func (*AccountResponse) GetOriginalBalanceOk

func (o *AccountResponse) GetOriginalBalanceOk() (*float32, bool)

GetOriginalBalanceOk returns a tuple with the OriginalBalance 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 (*AccountResponse) GetPayOutAmount

func (o *AccountResponse) GetPayOutAmount() float32

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

func (*AccountResponse) GetPayOutAmountOk

func (o *AccountResponse) GetPayOutAmountOk() (*float32, bool)

GetPayOutAmountOk returns a tuple with the PayOutAmount 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 (*AccountResponse) GetPaymentDueAt

func (o *AccountResponse) GetPaymentDueAt() string

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

func (*AccountResponse) GetPaymentDueAtOk

func (o *AccountResponse) GetPaymentDueAtOk() (*string, bool)

GetPaymentDueAtOk returns a tuple with the PaymentDueAt 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 (*AccountResponse) GetPayoffBalance

func (o *AccountResponse) GetPayoffBalance() float32

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

func (*AccountResponse) GetPayoffBalanceOk

func (o *AccountResponse) GetPayoffBalanceOk() (*float32, bool)

GetPayoffBalanceOk returns a tuple with the PayoffBalance 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 (*AccountResponse) GetPremiumAmount

func (o *AccountResponse) GetPremiumAmount() float32

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

func (*AccountResponse) GetPremiumAmountOk

func (o *AccountResponse) GetPremiumAmountOk() (*float32, bool)

GetPremiumAmountOk returns a tuple with the PremiumAmount 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 (*AccountResponse) GetPropertyType added in v0.13.0

func (o *AccountResponse) GetPropertyType() string

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

func (*AccountResponse) GetPropertyTypeOk added in v0.13.0

func (o *AccountResponse) GetPropertyTypeOk() (*string, bool)

GetPropertyTypeOk returns a tuple with the PropertyType 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 (*AccountResponse) GetRoutingNumber

func (o *AccountResponse) GetRoutingNumber() string

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

func (*AccountResponse) GetRoutingNumberOk

func (o *AccountResponse) GetRoutingNumberOk() (*string, bool)

GetRoutingNumberOk returns a tuple with the RoutingNumber 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 (*AccountResponse) GetStartedOn

func (o *AccountResponse) GetStartedOn() string

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

func (*AccountResponse) GetStartedOnOk

func (o *AccountResponse) GetStartedOnOk() (*string, bool)

GetStartedOnOk returns a tuple with the StartedOn 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 (*AccountResponse) GetSubtype

func (o *AccountResponse) GetSubtype() string

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

func (*AccountResponse) GetSubtypeOk

func (o *AccountResponse) GetSubtypeOk() (*string, bool)

GetSubtypeOk returns a tuple with the Subtype 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 (*AccountResponse) GetTodayUglAmount added in v0.14.0

func (o *AccountResponse) GetTodayUglAmount() float32

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

func (*AccountResponse) GetTodayUglAmountOk added in v0.14.0

func (o *AccountResponse) GetTodayUglAmountOk() (*float32, bool)

GetTodayUglAmountOk returns a tuple with the TodayUglAmount 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 (*AccountResponse) GetTodayUglPercentage added in v0.14.0

func (o *AccountResponse) GetTodayUglPercentage() float32

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

func (*AccountResponse) GetTodayUglPercentageOk added in v0.14.0

func (o *AccountResponse) GetTodayUglPercentageOk() (*float32, bool)

GetTodayUglPercentageOk returns a tuple with the TodayUglPercentage 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 (*AccountResponse) GetTotalAccountValue

func (o *AccountResponse) GetTotalAccountValue() float32

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

func (*AccountResponse) GetTotalAccountValueOk

func (o *AccountResponse) GetTotalAccountValueOk() (*float32, bool)

GetTotalAccountValueOk returns a tuple with the TotalAccountValue 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 (*AccountResponse) GetType

func (o *AccountResponse) GetType() string

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

func (*AccountResponse) GetTypeOk

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

GetTypeOk returns a tuple with the Type 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 (*AccountResponse) GetUpdatedAt

func (o *AccountResponse) GetUpdatedAt() string

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

func (*AccountResponse) GetUpdatedAtOk

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

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

func (*AccountResponse) GetUserGuid

func (o *AccountResponse) GetUserGuid() string

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

func (*AccountResponse) GetUserGuidOk

func (o *AccountResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*AccountResponse) GetUserId

func (o *AccountResponse) GetUserId() string

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

func (*AccountResponse) GetUserIdOk

func (o *AccountResponse) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId 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 (*AccountResponse) HasAccountNumber

func (o *AccountResponse) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

func (*AccountResponse) HasAccountOwnership added in v0.14.0

func (o *AccountResponse) HasAccountOwnership() bool

HasAccountOwnership returns a boolean if a field has been set.

func (*AccountResponse) HasAnnuityPolicyToDate added in v0.14.0

func (o *AccountResponse) HasAnnuityPolicyToDate() bool

HasAnnuityPolicyToDate returns a boolean if a field has been set.

func (*AccountResponse) HasAnnuityProvider added in v0.14.0

func (o *AccountResponse) HasAnnuityProvider() bool

HasAnnuityProvider returns a boolean if a field has been set.

func (*AccountResponse) HasAnnuityTermYear added in v0.14.0

func (o *AccountResponse) HasAnnuityTermYear() bool

HasAnnuityTermYear returns a boolean if a field has been set.

func (*AccountResponse) HasApr

func (o *AccountResponse) HasApr() bool

HasApr returns a boolean if a field has been set.

func (*AccountResponse) HasApy

func (o *AccountResponse) HasApy() bool

HasApy returns a boolean if a field has been set.

func (*AccountResponse) HasAvailableBalance

func (o *AccountResponse) HasAvailableBalance() bool

HasAvailableBalance returns a boolean if a field has been set.

func (*AccountResponse) HasAvailableCredit

func (o *AccountResponse) HasAvailableCredit() bool

HasAvailableCredit returns a boolean if a field has been set.

func (*AccountResponse) HasBalance

func (o *AccountResponse) HasBalance() bool

HasBalance returns a boolean if a field has been set.

func (*AccountResponse) HasCashBalance

func (o *AccountResponse) HasCashBalance() bool

HasCashBalance returns a boolean if a field has been set.

func (*AccountResponse) HasCashSurrenderValue

func (o *AccountResponse) HasCashSurrenderValue() bool

HasCashSurrenderValue returns a boolean if a field has been set.

func (*AccountResponse) HasCreatedAt

func (o *AccountResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*AccountResponse) HasCreditLimit

func (o *AccountResponse) HasCreditLimit() bool

HasCreditLimit returns a boolean if a field has been set.

func (*AccountResponse) HasCurrencyCode

func (o *AccountResponse) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*AccountResponse) HasDayPaymentIsDue

func (o *AccountResponse) HasDayPaymentIsDue() bool

HasDayPaymentIsDue returns a boolean if a field has been set.

func (*AccountResponse) HasDeathBenefit

func (o *AccountResponse) HasDeathBenefit() bool

HasDeathBenefit returns a boolean if a field has been set.

func (*AccountResponse) HasGuid

func (o *AccountResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*AccountResponse) HasHoldingsValue

func (o *AccountResponse) HasHoldingsValue() bool

HasHoldingsValue returns a boolean if a field has been set.

func (*AccountResponse) HasId

func (o *AccountResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*AccountResponse) HasImportedAt

func (o *AccountResponse) HasImportedAt() bool

HasImportedAt returns a boolean if a field has been set.

func (*AccountResponse) HasInstitutionCode

func (o *AccountResponse) HasInstitutionCode() bool

HasInstitutionCode returns a boolean if a field has been set.

func (*AccountResponse) HasInsuredName

func (o *AccountResponse) HasInsuredName() bool

HasInsuredName returns a boolean if a field has been set.

func (*AccountResponse) HasInterestRate

func (o *AccountResponse) HasInterestRate() bool

HasInterestRate returns a boolean if a field has been set.

func (*AccountResponse) HasIsClosed

func (o *AccountResponse) HasIsClosed() bool

HasIsClosed returns a boolean if a field has been set.

func (*AccountResponse) HasIsHidden

func (o *AccountResponse) HasIsHidden() bool

HasIsHidden returns a boolean if a field has been set.

func (*AccountResponse) HasIsManual added in v0.13.0

func (o *AccountResponse) HasIsManual() bool

HasIsManual returns a boolean if a field has been set.

func (*AccountResponse) HasLastPayment

func (o *AccountResponse) HasLastPayment() bool

HasLastPayment returns a boolean if a field has been set.

func (*AccountResponse) HasLastPaymentAt

func (o *AccountResponse) HasLastPaymentAt() bool

HasLastPaymentAt returns a boolean if a field has been set.

func (*AccountResponse) HasLoanAmount

func (o *AccountResponse) HasLoanAmount() bool

HasLoanAmount returns a boolean if a field has been set.

func (*AccountResponse) HasMarginBalance added in v0.14.0

func (o *AccountResponse) HasMarginBalance() bool

HasMarginBalance returns a boolean if a field has been set.

func (*AccountResponse) HasMaturesOn

func (o *AccountResponse) HasMaturesOn() bool

HasMaturesOn returns a boolean if a field has been set.

func (*AccountResponse) HasMemberGuid

func (o *AccountResponse) HasMemberGuid() bool

HasMemberGuid returns a boolean if a field has been set.

func (*AccountResponse) HasMemberId

func (o *AccountResponse) HasMemberId() bool

HasMemberId returns a boolean if a field has been set.

func (*AccountResponse) HasMemberIsManagedByUser

func (o *AccountResponse) HasMemberIsManagedByUser() bool

HasMemberIsManagedByUser returns a boolean if a field has been set.

func (*AccountResponse) HasMetadata

func (o *AccountResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*AccountResponse) HasMinimumBalance

func (o *AccountResponse) HasMinimumBalance() bool

HasMinimumBalance returns a boolean if a field has been set.

func (*AccountResponse) HasMinimumPayment

func (o *AccountResponse) HasMinimumPayment() bool

HasMinimumPayment returns a boolean if a field has been set.

func (*AccountResponse) HasName

func (o *AccountResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*AccountResponse) HasNickname

func (o *AccountResponse) HasNickname() bool

HasNickname returns a boolean if a field has been set.

func (*AccountResponse) HasOriginalBalance

func (o *AccountResponse) HasOriginalBalance() bool

HasOriginalBalance returns a boolean if a field has been set.

func (*AccountResponse) HasPayOutAmount

func (o *AccountResponse) HasPayOutAmount() bool

HasPayOutAmount returns a boolean if a field has been set.

func (*AccountResponse) HasPaymentDueAt

func (o *AccountResponse) HasPaymentDueAt() bool

HasPaymentDueAt returns a boolean if a field has been set.

func (*AccountResponse) HasPayoffBalance

func (o *AccountResponse) HasPayoffBalance() bool

HasPayoffBalance returns a boolean if a field has been set.

func (*AccountResponse) HasPremiumAmount

func (o *AccountResponse) HasPremiumAmount() bool

HasPremiumAmount returns a boolean if a field has been set.

func (*AccountResponse) HasPropertyType added in v0.13.0

func (o *AccountResponse) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*AccountResponse) HasRoutingNumber

func (o *AccountResponse) HasRoutingNumber() bool

HasRoutingNumber returns a boolean if a field has been set.

func (*AccountResponse) HasStartedOn

func (o *AccountResponse) HasStartedOn() bool

HasStartedOn returns a boolean if a field has been set.

func (*AccountResponse) HasSubtype

func (o *AccountResponse) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*AccountResponse) HasTodayUglAmount added in v0.14.0

func (o *AccountResponse) HasTodayUglAmount() bool

HasTodayUglAmount returns a boolean if a field has been set.

func (*AccountResponse) HasTodayUglPercentage added in v0.14.0

func (o *AccountResponse) HasTodayUglPercentage() bool

HasTodayUglPercentage returns a boolean if a field has been set.

func (*AccountResponse) HasTotalAccountValue

func (o *AccountResponse) HasTotalAccountValue() bool

HasTotalAccountValue returns a boolean if a field has been set.

func (*AccountResponse) HasType

func (o *AccountResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (*AccountResponse) HasUpdatedAt

func (o *AccountResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*AccountResponse) HasUserGuid

func (o *AccountResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (*AccountResponse) HasUserId

func (o *AccountResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (AccountResponse) MarshalJSON

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

func (*AccountResponse) SetAccountNumber

func (o *AccountResponse) SetAccountNumber(v string)

SetAccountNumber gets a reference to the given NullableString and assigns it to the AccountNumber field.

func (*AccountResponse) SetAccountNumberNil

func (o *AccountResponse) SetAccountNumberNil()

SetAccountNumberNil sets the value for AccountNumber to be an explicit nil

func (*AccountResponse) SetAccountOwnership added in v0.14.0

func (o *AccountResponse) SetAccountOwnership(v string)

SetAccountOwnership gets a reference to the given NullableString and assigns it to the AccountOwnership field.

func (*AccountResponse) SetAccountOwnershipNil added in v0.14.0

func (o *AccountResponse) SetAccountOwnershipNil()

SetAccountOwnershipNil sets the value for AccountOwnership to be an explicit nil

func (*AccountResponse) SetAnnuityPolicyToDate added in v0.14.0

func (o *AccountResponse) SetAnnuityPolicyToDate(v string)

SetAnnuityPolicyToDate gets a reference to the given NullableString and assigns it to the AnnuityPolicyToDate field.

func (*AccountResponse) SetAnnuityPolicyToDateNil added in v0.14.0

func (o *AccountResponse) SetAnnuityPolicyToDateNil()

SetAnnuityPolicyToDateNil sets the value for AnnuityPolicyToDate to be an explicit nil

func (*AccountResponse) SetAnnuityProvider added in v0.14.0

func (o *AccountResponse) SetAnnuityProvider(v string)

SetAnnuityProvider gets a reference to the given NullableString and assigns it to the AnnuityProvider field.

func (*AccountResponse) SetAnnuityProviderNil added in v0.14.0

func (o *AccountResponse) SetAnnuityProviderNil()

SetAnnuityProviderNil sets the value for AnnuityProvider to be an explicit nil

func (*AccountResponse) SetAnnuityTermYear added in v0.14.0

func (o *AccountResponse) SetAnnuityTermYear(v float32)

SetAnnuityTermYear gets a reference to the given NullableFloat32 and assigns it to the AnnuityTermYear field.

func (*AccountResponse) SetAnnuityTermYearNil added in v0.14.0

func (o *AccountResponse) SetAnnuityTermYearNil()

SetAnnuityTermYearNil sets the value for AnnuityTermYear to be an explicit nil

func (*AccountResponse) SetApr

func (o *AccountResponse) SetApr(v float32)

SetApr gets a reference to the given NullableFloat32 and assigns it to the Apr field.

func (*AccountResponse) SetAprNil

func (o *AccountResponse) SetAprNil()

SetAprNil sets the value for Apr to be an explicit nil

func (*AccountResponse) SetApy

func (o *AccountResponse) SetApy(v float32)

SetApy gets a reference to the given NullableFloat32 and assigns it to the Apy field.

func (*AccountResponse) SetApyNil

func (o *AccountResponse) SetApyNil()

SetApyNil sets the value for Apy to be an explicit nil

func (*AccountResponse) SetAvailableBalance

func (o *AccountResponse) SetAvailableBalance(v float32)

SetAvailableBalance gets a reference to the given NullableFloat32 and assigns it to the AvailableBalance field.

func (*AccountResponse) SetAvailableBalanceNil

func (o *AccountResponse) SetAvailableBalanceNil()

SetAvailableBalanceNil sets the value for AvailableBalance to be an explicit nil

func (*AccountResponse) SetAvailableCredit

func (o *AccountResponse) SetAvailableCredit(v float32)

SetAvailableCredit gets a reference to the given NullableFloat32 and assigns it to the AvailableCredit field.

func (*AccountResponse) SetAvailableCreditNil

func (o *AccountResponse) SetAvailableCreditNil()

SetAvailableCreditNil sets the value for AvailableCredit to be an explicit nil

func (*AccountResponse) SetBalance

func (o *AccountResponse) SetBalance(v float32)

SetBalance gets a reference to the given NullableFloat32 and assigns it to the Balance field.

func (*AccountResponse) SetBalanceNil

func (o *AccountResponse) SetBalanceNil()

SetBalanceNil sets the value for Balance to be an explicit nil

func (*AccountResponse) SetCashBalance

func (o *AccountResponse) SetCashBalance(v float32)

SetCashBalance gets a reference to the given NullableFloat32 and assigns it to the CashBalance field.

func (*AccountResponse) SetCashBalanceNil

func (o *AccountResponse) SetCashBalanceNil()

SetCashBalanceNil sets the value for CashBalance to be an explicit nil

func (*AccountResponse) SetCashSurrenderValue

func (o *AccountResponse) SetCashSurrenderValue(v float32)

SetCashSurrenderValue gets a reference to the given NullableFloat32 and assigns it to the CashSurrenderValue field.

func (*AccountResponse) SetCashSurrenderValueNil

func (o *AccountResponse) SetCashSurrenderValueNil()

SetCashSurrenderValueNil sets the value for CashSurrenderValue to be an explicit nil

func (*AccountResponse) SetCreatedAt

func (o *AccountResponse) SetCreatedAt(v string)

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

func (*AccountResponse) SetCreditLimit

func (o *AccountResponse) SetCreditLimit(v float32)

SetCreditLimit gets a reference to the given NullableFloat32 and assigns it to the CreditLimit field.

func (*AccountResponse) SetCreditLimitNil

func (o *AccountResponse) SetCreditLimitNil()

SetCreditLimitNil sets the value for CreditLimit to be an explicit nil

func (*AccountResponse) SetCurrencyCode

func (o *AccountResponse) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given NullableString and assigns it to the CurrencyCode field.

func (*AccountResponse) SetCurrencyCodeNil

func (o *AccountResponse) SetCurrencyCodeNil()

SetCurrencyCodeNil sets the value for CurrencyCode to be an explicit nil

func (*AccountResponse) SetDayPaymentIsDue

func (o *AccountResponse) SetDayPaymentIsDue(v int32)

SetDayPaymentIsDue gets a reference to the given NullableInt32 and assigns it to the DayPaymentIsDue field.

func (*AccountResponse) SetDayPaymentIsDueNil

func (o *AccountResponse) SetDayPaymentIsDueNil()

SetDayPaymentIsDueNil sets the value for DayPaymentIsDue to be an explicit nil

func (*AccountResponse) SetDeathBenefit

func (o *AccountResponse) SetDeathBenefit(v int32)

SetDeathBenefit gets a reference to the given NullableInt32 and assigns it to the DeathBenefit field.

func (*AccountResponse) SetDeathBenefitNil

func (o *AccountResponse) SetDeathBenefitNil()

SetDeathBenefitNil sets the value for DeathBenefit to be an explicit nil

func (*AccountResponse) SetGuid

func (o *AccountResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*AccountResponse) SetGuidNil added in v0.4.1

func (o *AccountResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*AccountResponse) SetHoldingsValue

func (o *AccountResponse) SetHoldingsValue(v float32)

SetHoldingsValue gets a reference to the given NullableFloat32 and assigns it to the HoldingsValue field.

func (*AccountResponse) SetHoldingsValueNil

func (o *AccountResponse) SetHoldingsValueNil()

SetHoldingsValueNil sets the value for HoldingsValue to be an explicit nil

func (*AccountResponse) SetId

func (o *AccountResponse) SetId(v string)

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

func (*AccountResponse) SetIdNil

func (o *AccountResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*AccountResponse) SetImportedAt

func (o *AccountResponse) SetImportedAt(v string)

SetImportedAt gets a reference to the given NullableString and assigns it to the ImportedAt field.

func (*AccountResponse) SetImportedAtNil

func (o *AccountResponse) SetImportedAtNil()

SetImportedAtNil sets the value for ImportedAt to be an explicit nil

func (*AccountResponse) SetInstitutionCode

func (o *AccountResponse) SetInstitutionCode(v string)

SetInstitutionCode gets a reference to the given NullableString and assigns it to the InstitutionCode field.

func (*AccountResponse) SetInstitutionCodeNil

func (o *AccountResponse) SetInstitutionCodeNil()

SetInstitutionCodeNil sets the value for InstitutionCode to be an explicit nil

func (*AccountResponse) SetInsuredName

func (o *AccountResponse) SetInsuredName(v string)

SetInsuredName gets a reference to the given NullableString and assigns it to the InsuredName field.

func (*AccountResponse) SetInsuredNameNil

func (o *AccountResponse) SetInsuredNameNil()

SetInsuredNameNil sets the value for InsuredName to be an explicit nil

func (*AccountResponse) SetInterestRate

func (o *AccountResponse) SetInterestRate(v float32)

SetInterestRate gets a reference to the given NullableFloat32 and assigns it to the InterestRate field.

func (*AccountResponse) SetInterestRateNil

func (o *AccountResponse) SetInterestRateNil()

SetInterestRateNil sets the value for InterestRate to be an explicit nil

func (*AccountResponse) SetIsClosed

func (o *AccountResponse) SetIsClosed(v bool)

SetIsClosed gets a reference to the given NullableBool and assigns it to the IsClosed field.

func (*AccountResponse) SetIsClosedNil

func (o *AccountResponse) SetIsClosedNil()

SetIsClosedNil sets the value for IsClosed to be an explicit nil

func (*AccountResponse) SetIsHidden

func (o *AccountResponse) SetIsHidden(v bool)

SetIsHidden gets a reference to the given NullableBool and assigns it to the IsHidden field.

func (*AccountResponse) SetIsHiddenNil

func (o *AccountResponse) SetIsHiddenNil()

SetIsHiddenNil sets the value for IsHidden to be an explicit nil

func (*AccountResponse) SetIsManual added in v0.13.0

func (o *AccountResponse) SetIsManual(v bool)

SetIsManual gets a reference to the given NullableBool and assigns it to the IsManual field.

func (*AccountResponse) SetIsManualNil added in v0.13.0

func (o *AccountResponse) SetIsManualNil()

SetIsManualNil sets the value for IsManual to be an explicit nil

func (*AccountResponse) SetLastPayment

func (o *AccountResponse) SetLastPayment(v float32)

SetLastPayment gets a reference to the given NullableFloat32 and assigns it to the LastPayment field.

func (*AccountResponse) SetLastPaymentAt

func (o *AccountResponse) SetLastPaymentAt(v string)

SetLastPaymentAt gets a reference to the given NullableString and assigns it to the LastPaymentAt field.

func (*AccountResponse) SetLastPaymentAtNil

func (o *AccountResponse) SetLastPaymentAtNil()

SetLastPaymentAtNil sets the value for LastPaymentAt to be an explicit nil

func (*AccountResponse) SetLastPaymentNil

func (o *AccountResponse) SetLastPaymentNil()

SetLastPaymentNil sets the value for LastPayment to be an explicit nil

func (*AccountResponse) SetLoanAmount

func (o *AccountResponse) SetLoanAmount(v float32)

SetLoanAmount gets a reference to the given NullableFloat32 and assigns it to the LoanAmount field.

func (*AccountResponse) SetLoanAmountNil

func (o *AccountResponse) SetLoanAmountNil()

SetLoanAmountNil sets the value for LoanAmount to be an explicit nil

func (*AccountResponse) SetMarginBalance added in v0.14.0

func (o *AccountResponse) SetMarginBalance(v float32)

SetMarginBalance gets a reference to the given NullableFloat32 and assigns it to the MarginBalance field.

func (*AccountResponse) SetMarginBalanceNil added in v0.14.0

func (o *AccountResponse) SetMarginBalanceNil()

SetMarginBalanceNil sets the value for MarginBalance to be an explicit nil

func (*AccountResponse) SetMaturesOn

func (o *AccountResponse) SetMaturesOn(v string)

SetMaturesOn gets a reference to the given NullableString and assigns it to the MaturesOn field.

func (*AccountResponse) SetMaturesOnNil

func (o *AccountResponse) SetMaturesOnNil()

SetMaturesOnNil sets the value for MaturesOn to be an explicit nil

func (*AccountResponse) SetMemberGuid

func (o *AccountResponse) SetMemberGuid(v string)

SetMemberGuid gets a reference to the given NullableString and assigns it to the MemberGuid field.

func (*AccountResponse) SetMemberGuidNil added in v0.4.1

func (o *AccountResponse) SetMemberGuidNil()

SetMemberGuidNil sets the value for MemberGuid to be an explicit nil

func (*AccountResponse) SetMemberId

func (o *AccountResponse) SetMemberId(v string)

SetMemberId gets a reference to the given NullableString and assigns it to the MemberId field.

func (*AccountResponse) SetMemberIdNil

func (o *AccountResponse) SetMemberIdNil()

SetMemberIdNil sets the value for MemberId to be an explicit nil

func (*AccountResponse) SetMemberIsManagedByUser

func (o *AccountResponse) SetMemberIsManagedByUser(v bool)

SetMemberIsManagedByUser gets a reference to the given NullableBool and assigns it to the MemberIsManagedByUser field.

func (*AccountResponse) SetMemberIsManagedByUserNil

func (o *AccountResponse) SetMemberIsManagedByUserNil()

SetMemberIsManagedByUserNil sets the value for MemberIsManagedByUser to be an explicit nil

func (*AccountResponse) SetMetadata

func (o *AccountResponse) SetMetadata(v string)

SetMetadata gets a reference to the given NullableString and assigns it to the Metadata field.

func (*AccountResponse) SetMetadataNil

func (o *AccountResponse) SetMetadataNil()

SetMetadataNil sets the value for Metadata to be an explicit nil

func (*AccountResponse) SetMinimumBalance

func (o *AccountResponse) SetMinimumBalance(v float32)

SetMinimumBalance gets a reference to the given NullableFloat32 and assigns it to the MinimumBalance field.

func (*AccountResponse) SetMinimumBalanceNil

func (o *AccountResponse) SetMinimumBalanceNil()

SetMinimumBalanceNil sets the value for MinimumBalance to be an explicit nil

func (*AccountResponse) SetMinimumPayment

func (o *AccountResponse) SetMinimumPayment(v float32)

SetMinimumPayment gets a reference to the given NullableFloat32 and assigns it to the MinimumPayment field.

func (*AccountResponse) SetMinimumPaymentNil

func (o *AccountResponse) SetMinimumPaymentNil()

SetMinimumPaymentNil sets the value for MinimumPayment to be an explicit nil

func (*AccountResponse) SetName

func (o *AccountResponse) SetName(v string)

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

func (*AccountResponse) SetNameNil

func (o *AccountResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AccountResponse) SetNickname

func (o *AccountResponse) SetNickname(v string)

SetNickname gets a reference to the given NullableString and assigns it to the Nickname field.

func (*AccountResponse) SetNicknameNil

func (o *AccountResponse) SetNicknameNil()

SetNicknameNil sets the value for Nickname to be an explicit nil

func (*AccountResponse) SetOriginalBalance

func (o *AccountResponse) SetOriginalBalance(v float32)

SetOriginalBalance gets a reference to the given NullableFloat32 and assigns it to the OriginalBalance field.

func (*AccountResponse) SetOriginalBalanceNil

func (o *AccountResponse) SetOriginalBalanceNil()

SetOriginalBalanceNil sets the value for OriginalBalance to be an explicit nil

func (*AccountResponse) SetPayOutAmount

func (o *AccountResponse) SetPayOutAmount(v float32)

SetPayOutAmount gets a reference to the given NullableFloat32 and assigns it to the PayOutAmount field.

func (*AccountResponse) SetPayOutAmountNil

func (o *AccountResponse) SetPayOutAmountNil()

SetPayOutAmountNil sets the value for PayOutAmount to be an explicit nil

func (*AccountResponse) SetPaymentDueAt

func (o *AccountResponse) SetPaymentDueAt(v string)

SetPaymentDueAt gets a reference to the given NullableString and assigns it to the PaymentDueAt field.

func (*AccountResponse) SetPaymentDueAtNil

func (o *AccountResponse) SetPaymentDueAtNil()

SetPaymentDueAtNil sets the value for PaymentDueAt to be an explicit nil

func (*AccountResponse) SetPayoffBalance

func (o *AccountResponse) SetPayoffBalance(v float32)

SetPayoffBalance gets a reference to the given NullableFloat32 and assigns it to the PayoffBalance field.

func (*AccountResponse) SetPayoffBalanceNil

func (o *AccountResponse) SetPayoffBalanceNil()

SetPayoffBalanceNil sets the value for PayoffBalance to be an explicit nil

func (*AccountResponse) SetPremiumAmount

func (o *AccountResponse) SetPremiumAmount(v float32)

SetPremiumAmount gets a reference to the given NullableFloat32 and assigns it to the PremiumAmount field.

func (*AccountResponse) SetPremiumAmountNil

func (o *AccountResponse) SetPremiumAmountNil()

SetPremiumAmountNil sets the value for PremiumAmount to be an explicit nil

func (*AccountResponse) SetPropertyType added in v0.13.0

func (o *AccountResponse) SetPropertyType(v string)

SetPropertyType gets a reference to the given NullableString and assigns it to the PropertyType field.

func (*AccountResponse) SetPropertyTypeNil added in v0.13.0

func (o *AccountResponse) SetPropertyTypeNil()

SetPropertyTypeNil sets the value for PropertyType to be an explicit nil

func (*AccountResponse) SetRoutingNumber

func (o *AccountResponse) SetRoutingNumber(v string)

SetRoutingNumber gets a reference to the given NullableString and assigns it to the RoutingNumber field.

func (*AccountResponse) SetRoutingNumberNil

func (o *AccountResponse) SetRoutingNumberNil()

SetRoutingNumberNil sets the value for RoutingNumber to be an explicit nil

func (*AccountResponse) SetStartedOn

func (o *AccountResponse) SetStartedOn(v string)

SetStartedOn gets a reference to the given NullableString and assigns it to the StartedOn field.

func (*AccountResponse) SetStartedOnNil

func (o *AccountResponse) SetStartedOnNil()

SetStartedOnNil sets the value for StartedOn to be an explicit nil

func (*AccountResponse) SetSubtype

func (o *AccountResponse) SetSubtype(v string)

SetSubtype gets a reference to the given NullableString and assigns it to the Subtype field.

func (*AccountResponse) SetSubtypeNil

func (o *AccountResponse) SetSubtypeNil()

SetSubtypeNil sets the value for Subtype to be an explicit nil

func (*AccountResponse) SetTodayUglAmount added in v0.14.0

func (o *AccountResponse) SetTodayUglAmount(v float32)

SetTodayUglAmount gets a reference to the given NullableFloat32 and assigns it to the TodayUglAmount field.

func (*AccountResponse) SetTodayUglAmountNil added in v0.14.0

func (o *AccountResponse) SetTodayUglAmountNil()

SetTodayUglAmountNil sets the value for TodayUglAmount to be an explicit nil

func (*AccountResponse) SetTodayUglPercentage added in v0.14.0

func (o *AccountResponse) SetTodayUglPercentage(v float32)

SetTodayUglPercentage gets a reference to the given NullableFloat32 and assigns it to the TodayUglPercentage field.

func (*AccountResponse) SetTodayUglPercentageNil added in v0.14.0

func (o *AccountResponse) SetTodayUglPercentageNil()

SetTodayUglPercentageNil sets the value for TodayUglPercentage to be an explicit nil

func (*AccountResponse) SetTotalAccountValue

func (o *AccountResponse) SetTotalAccountValue(v float32)

SetTotalAccountValue gets a reference to the given NullableFloat32 and assigns it to the TotalAccountValue field.

func (*AccountResponse) SetTotalAccountValueNil

func (o *AccountResponse) SetTotalAccountValueNil()

SetTotalAccountValueNil sets the value for TotalAccountValue to be an explicit nil

func (*AccountResponse) SetType

func (o *AccountResponse) SetType(v string)

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

func (*AccountResponse) SetTypeNil

func (o *AccountResponse) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*AccountResponse) SetUpdatedAt

func (o *AccountResponse) SetUpdatedAt(v string)

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

func (*AccountResponse) SetUpdatedAtNil

func (o *AccountResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*AccountResponse) SetUserGuid

func (o *AccountResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*AccountResponse) SetUserGuidNil added in v0.4.1

func (o *AccountResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (*AccountResponse) SetUserId

func (o *AccountResponse) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*AccountResponse) SetUserIdNil

func (o *AccountResponse) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (AccountResponse) ToMap added in v0.17.1

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

func (*AccountResponse) UnsetAccountNumber

func (o *AccountResponse) UnsetAccountNumber()

UnsetAccountNumber ensures that no value is present for AccountNumber, not even an explicit nil

func (*AccountResponse) UnsetAccountOwnership added in v0.14.0

func (o *AccountResponse) UnsetAccountOwnership()

UnsetAccountOwnership ensures that no value is present for AccountOwnership, not even an explicit nil

func (*AccountResponse) UnsetAnnuityPolicyToDate added in v0.14.0

func (o *AccountResponse) UnsetAnnuityPolicyToDate()

UnsetAnnuityPolicyToDate ensures that no value is present for AnnuityPolicyToDate, not even an explicit nil

func (*AccountResponse) UnsetAnnuityProvider added in v0.14.0

func (o *AccountResponse) UnsetAnnuityProvider()

UnsetAnnuityProvider ensures that no value is present for AnnuityProvider, not even an explicit nil

func (*AccountResponse) UnsetAnnuityTermYear added in v0.14.0

func (o *AccountResponse) UnsetAnnuityTermYear()

UnsetAnnuityTermYear ensures that no value is present for AnnuityTermYear, not even an explicit nil

func (*AccountResponse) UnsetApr

func (o *AccountResponse) UnsetApr()

UnsetApr ensures that no value is present for Apr, not even an explicit nil

func (*AccountResponse) UnsetApy

func (o *AccountResponse) UnsetApy()

UnsetApy ensures that no value is present for Apy, not even an explicit nil

func (*AccountResponse) UnsetAvailableBalance

func (o *AccountResponse) UnsetAvailableBalance()

UnsetAvailableBalance ensures that no value is present for AvailableBalance, not even an explicit nil

func (*AccountResponse) UnsetAvailableCredit

func (o *AccountResponse) UnsetAvailableCredit()

UnsetAvailableCredit ensures that no value is present for AvailableCredit, not even an explicit nil

func (*AccountResponse) UnsetBalance

func (o *AccountResponse) UnsetBalance()

UnsetBalance ensures that no value is present for Balance, not even an explicit nil

func (*AccountResponse) UnsetCashBalance

func (o *AccountResponse) UnsetCashBalance()

UnsetCashBalance ensures that no value is present for CashBalance, not even an explicit nil

func (*AccountResponse) UnsetCashSurrenderValue

func (o *AccountResponse) UnsetCashSurrenderValue()

UnsetCashSurrenderValue ensures that no value is present for CashSurrenderValue, not even an explicit nil

func (*AccountResponse) UnsetCreditLimit

func (o *AccountResponse) UnsetCreditLimit()

UnsetCreditLimit ensures that no value is present for CreditLimit, not even an explicit nil

func (*AccountResponse) UnsetCurrencyCode

func (o *AccountResponse) UnsetCurrencyCode()

UnsetCurrencyCode ensures that no value is present for CurrencyCode, not even an explicit nil

func (*AccountResponse) UnsetDayPaymentIsDue

func (o *AccountResponse) UnsetDayPaymentIsDue()

UnsetDayPaymentIsDue ensures that no value is present for DayPaymentIsDue, not even an explicit nil

func (*AccountResponse) UnsetDeathBenefit

func (o *AccountResponse) UnsetDeathBenefit()

UnsetDeathBenefit ensures that no value is present for DeathBenefit, not even an explicit nil

func (*AccountResponse) UnsetGuid added in v0.4.1

func (o *AccountResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*AccountResponse) UnsetHoldingsValue

func (o *AccountResponse) UnsetHoldingsValue()

UnsetHoldingsValue ensures that no value is present for HoldingsValue, not even an explicit nil

func (*AccountResponse) UnsetId

func (o *AccountResponse) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*AccountResponse) UnsetImportedAt

func (o *AccountResponse) UnsetImportedAt()

UnsetImportedAt ensures that no value is present for ImportedAt, not even an explicit nil

func (*AccountResponse) UnsetInstitutionCode

func (o *AccountResponse) UnsetInstitutionCode()

UnsetInstitutionCode ensures that no value is present for InstitutionCode, not even an explicit nil

func (*AccountResponse) UnsetInsuredName

func (o *AccountResponse) UnsetInsuredName()

UnsetInsuredName ensures that no value is present for InsuredName, not even an explicit nil

func (*AccountResponse) UnsetInterestRate

func (o *AccountResponse) UnsetInterestRate()

UnsetInterestRate ensures that no value is present for InterestRate, not even an explicit nil

func (*AccountResponse) UnsetIsClosed

func (o *AccountResponse) UnsetIsClosed()

UnsetIsClosed ensures that no value is present for IsClosed, not even an explicit nil

func (*AccountResponse) UnsetIsHidden

func (o *AccountResponse) UnsetIsHidden()

UnsetIsHidden ensures that no value is present for IsHidden, not even an explicit nil

func (*AccountResponse) UnsetIsManual added in v0.13.0

func (o *AccountResponse) UnsetIsManual()

UnsetIsManual ensures that no value is present for IsManual, not even an explicit nil

func (*AccountResponse) UnsetLastPayment

func (o *AccountResponse) UnsetLastPayment()

UnsetLastPayment ensures that no value is present for LastPayment, not even an explicit nil

func (*AccountResponse) UnsetLastPaymentAt

func (o *AccountResponse) UnsetLastPaymentAt()

UnsetLastPaymentAt ensures that no value is present for LastPaymentAt, not even an explicit nil

func (*AccountResponse) UnsetLoanAmount

func (o *AccountResponse) UnsetLoanAmount()

UnsetLoanAmount ensures that no value is present for LoanAmount, not even an explicit nil

func (*AccountResponse) UnsetMarginBalance added in v0.14.0

func (o *AccountResponse) UnsetMarginBalance()

UnsetMarginBalance ensures that no value is present for MarginBalance, not even an explicit nil

func (*AccountResponse) UnsetMaturesOn

func (o *AccountResponse) UnsetMaturesOn()

UnsetMaturesOn ensures that no value is present for MaturesOn, not even an explicit nil

func (*AccountResponse) UnsetMemberGuid added in v0.4.1

func (o *AccountResponse) UnsetMemberGuid()

UnsetMemberGuid ensures that no value is present for MemberGuid, not even an explicit nil

func (*AccountResponse) UnsetMemberId

func (o *AccountResponse) UnsetMemberId()

UnsetMemberId ensures that no value is present for MemberId, not even an explicit nil

func (*AccountResponse) UnsetMemberIsManagedByUser

func (o *AccountResponse) UnsetMemberIsManagedByUser()

UnsetMemberIsManagedByUser ensures that no value is present for MemberIsManagedByUser, not even an explicit nil

func (*AccountResponse) UnsetMetadata

func (o *AccountResponse) UnsetMetadata()

UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil

func (*AccountResponse) UnsetMinimumBalance

func (o *AccountResponse) UnsetMinimumBalance()

UnsetMinimumBalance ensures that no value is present for MinimumBalance, not even an explicit nil

func (*AccountResponse) UnsetMinimumPayment

func (o *AccountResponse) UnsetMinimumPayment()

UnsetMinimumPayment ensures that no value is present for MinimumPayment, not even an explicit nil

func (*AccountResponse) UnsetName

func (o *AccountResponse) UnsetName()

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

func (*AccountResponse) UnsetNickname

func (o *AccountResponse) UnsetNickname()

UnsetNickname ensures that no value is present for Nickname, not even an explicit nil

func (*AccountResponse) UnsetOriginalBalance

func (o *AccountResponse) UnsetOriginalBalance()

UnsetOriginalBalance ensures that no value is present for OriginalBalance, not even an explicit nil

func (*AccountResponse) UnsetPayOutAmount

func (o *AccountResponse) UnsetPayOutAmount()

UnsetPayOutAmount ensures that no value is present for PayOutAmount, not even an explicit nil

func (*AccountResponse) UnsetPaymentDueAt

func (o *AccountResponse) UnsetPaymentDueAt()

UnsetPaymentDueAt ensures that no value is present for PaymentDueAt, not even an explicit nil

func (*AccountResponse) UnsetPayoffBalance

func (o *AccountResponse) UnsetPayoffBalance()

UnsetPayoffBalance ensures that no value is present for PayoffBalance, not even an explicit nil

func (*AccountResponse) UnsetPremiumAmount

func (o *AccountResponse) UnsetPremiumAmount()

UnsetPremiumAmount ensures that no value is present for PremiumAmount, not even an explicit nil

func (*AccountResponse) UnsetPropertyType added in v0.13.0

func (o *AccountResponse) UnsetPropertyType()

UnsetPropertyType ensures that no value is present for PropertyType, not even an explicit nil

func (*AccountResponse) UnsetRoutingNumber

func (o *AccountResponse) UnsetRoutingNumber()

UnsetRoutingNumber ensures that no value is present for RoutingNumber, not even an explicit nil

func (*AccountResponse) UnsetStartedOn

func (o *AccountResponse) UnsetStartedOn()

UnsetStartedOn ensures that no value is present for StartedOn, not even an explicit nil

func (*AccountResponse) UnsetSubtype

func (o *AccountResponse) UnsetSubtype()

UnsetSubtype ensures that no value is present for Subtype, not even an explicit nil

func (*AccountResponse) UnsetTodayUglAmount added in v0.14.0

func (o *AccountResponse) UnsetTodayUglAmount()

UnsetTodayUglAmount ensures that no value is present for TodayUglAmount, not even an explicit nil

func (*AccountResponse) UnsetTodayUglPercentage added in v0.14.0

func (o *AccountResponse) UnsetTodayUglPercentage()

UnsetTodayUglPercentage ensures that no value is present for TodayUglPercentage, not even an explicit nil

func (*AccountResponse) UnsetTotalAccountValue

func (o *AccountResponse) UnsetTotalAccountValue()

UnsetTotalAccountValue ensures that no value is present for TotalAccountValue, not even an explicit nil

func (*AccountResponse) UnsetType

func (o *AccountResponse) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

func (*AccountResponse) UnsetUpdatedAt

func (o *AccountResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*AccountResponse) UnsetUserGuid added in v0.4.1

func (o *AccountResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

func (*AccountResponse) UnsetUserId

func (o *AccountResponse) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type AccountResponseBody

type AccountResponseBody struct {
	Account *AccountResponse `json:"account,omitempty"`
}

AccountResponseBody struct for AccountResponseBody

func NewAccountResponseBody

func NewAccountResponseBody() *AccountResponseBody

NewAccountResponseBody instantiates a new AccountResponseBody 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 NewAccountResponseBodyWithDefaults

func NewAccountResponseBodyWithDefaults() *AccountResponseBody

NewAccountResponseBodyWithDefaults instantiates a new AccountResponseBody 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 (*AccountResponseBody) GetAccount

func (o *AccountResponseBody) GetAccount() AccountResponse

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

func (*AccountResponseBody) GetAccountOk

func (o *AccountResponseBody) GetAccountOk() (*AccountResponse, 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 (*AccountResponseBody) HasAccount

func (o *AccountResponseBody) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (AccountResponseBody) MarshalJSON

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

func (*AccountResponseBody) SetAccount

func (o *AccountResponseBody) SetAccount(v AccountResponse)

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

func (AccountResponseBody) ToMap added in v0.17.1

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

type AccountUpdateRequest

type AccountUpdateRequest struct {
	AccountSubtype     *string  `json:"account_subtype,omitempty"`
	AccountType        *string  `json:"account_type,omitempty"`
	Apr                *float32 `json:"apr,omitempty"`
	Apy                *float32 `json:"apy,omitempty"`
	AvailableBalance   *float32 `json:"available_balance,omitempty"`
	Balance            *float32 `json:"balance,omitempty"`
	CashSurrenderValue *float32 `json:"cash_surrender_value,omitempty"`
	CreditLimit        *float32 `json:"credit_limit,omitempty"`
	CurrencyCode       *string  `json:"currency_code,omitempty"`
	DeathBenefit       *int32   `json:"death_benefit,omitempty"`
	InterestRate       *float32 `json:"interest_rate,omitempty"`
	IsBusiness         *bool    `json:"is_business,omitempty"`
	IsClosed           *bool    `json:"is_closed,omitempty"`
	IsHidden           *bool    `json:"is_hidden,omitempty"`
	LoanAmount         *float32 `json:"loan_amount,omitempty"`
	Metadata           *string  `json:"metadata,omitempty"`
	Name               *string  `json:"name,omitempty"`
	Nickname           *string  `json:"nickname,omitempty"`
	OriginalBalance    *float32 `json:"original_balance,omitempty"`
	PropertyType       *string  `json:"property_type,omitempty"`
	SkipWebhook        *bool    `json:"skip_webhook,omitempty"`
}

AccountUpdateRequest struct for AccountUpdateRequest

func NewAccountUpdateRequest

func NewAccountUpdateRequest() *AccountUpdateRequest

NewAccountUpdateRequest instantiates a new AccountUpdateRequest 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 NewAccountUpdateRequestWithDefaults

func NewAccountUpdateRequestWithDefaults() *AccountUpdateRequest

NewAccountUpdateRequestWithDefaults instantiates a new AccountUpdateRequest 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 (*AccountUpdateRequest) GetAccountSubtype added in v0.15.0

func (o *AccountUpdateRequest) GetAccountSubtype() string

GetAccountSubtype returns the AccountSubtype field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetAccountSubtypeOk added in v0.15.0

func (o *AccountUpdateRequest) GetAccountSubtypeOk() (*string, bool)

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

func (*AccountUpdateRequest) GetAccountType added in v0.15.0

func (o *AccountUpdateRequest) GetAccountType() string

GetAccountType returns the AccountType field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetAccountTypeOk added in v0.15.0

func (o *AccountUpdateRequest) GetAccountTypeOk() (*string, bool)

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

func (*AccountUpdateRequest) GetApr added in v0.15.0

func (o *AccountUpdateRequest) GetApr() float32

GetApr returns the Apr field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetAprOk added in v0.15.0

func (o *AccountUpdateRequest) GetAprOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetApy added in v0.15.0

func (o *AccountUpdateRequest) GetApy() float32

GetApy returns the Apy field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetApyOk added in v0.15.0

func (o *AccountUpdateRequest) GetApyOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetAvailableBalance added in v0.15.0

func (o *AccountUpdateRequest) GetAvailableBalance() float32

GetAvailableBalance returns the AvailableBalance field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetAvailableBalanceOk added in v0.15.0

func (o *AccountUpdateRequest) GetAvailableBalanceOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetBalance added in v0.15.0

func (o *AccountUpdateRequest) GetBalance() float32

GetBalance returns the Balance field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetBalanceOk added in v0.15.0

func (o *AccountUpdateRequest) GetBalanceOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetCashSurrenderValue added in v0.15.0

func (o *AccountUpdateRequest) GetCashSurrenderValue() float32

GetCashSurrenderValue returns the CashSurrenderValue field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetCashSurrenderValueOk added in v0.15.0

func (o *AccountUpdateRequest) GetCashSurrenderValueOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetCreditLimit added in v0.15.0

func (o *AccountUpdateRequest) GetCreditLimit() float32

GetCreditLimit returns the CreditLimit field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetCreditLimitOk added in v0.15.0

func (o *AccountUpdateRequest) GetCreditLimitOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetCurrencyCode added in v0.15.0

func (o *AccountUpdateRequest) GetCurrencyCode() string

GetCurrencyCode returns the CurrencyCode field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetCurrencyCodeOk added in v0.15.0

func (o *AccountUpdateRequest) GetCurrencyCodeOk() (*string, bool)

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

func (*AccountUpdateRequest) GetDeathBenefit added in v0.15.0

func (o *AccountUpdateRequest) GetDeathBenefit() int32

GetDeathBenefit returns the DeathBenefit field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetDeathBenefitOk added in v0.15.0

func (o *AccountUpdateRequest) GetDeathBenefitOk() (*int32, bool)

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

func (*AccountUpdateRequest) GetInterestRate added in v0.15.0

func (o *AccountUpdateRequest) GetInterestRate() float32

GetInterestRate returns the InterestRate field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetInterestRateOk added in v0.15.0

func (o *AccountUpdateRequest) GetInterestRateOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetIsBusiness added in v0.15.0

func (o *AccountUpdateRequest) GetIsBusiness() bool

GetIsBusiness returns the IsBusiness field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetIsBusinessOk added in v0.15.0

func (o *AccountUpdateRequest) GetIsBusinessOk() (*bool, bool)

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

func (*AccountUpdateRequest) GetIsClosed added in v0.15.0

func (o *AccountUpdateRequest) GetIsClosed() bool

GetIsClosed returns the IsClosed field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetIsClosedOk added in v0.15.0

func (o *AccountUpdateRequest) GetIsClosedOk() (*bool, bool)

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

func (*AccountUpdateRequest) GetIsHidden

func (o *AccountUpdateRequest) GetIsHidden() bool

GetIsHidden returns the IsHidden field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetIsHiddenOk

func (o *AccountUpdateRequest) GetIsHiddenOk() (*bool, bool)

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

func (*AccountUpdateRequest) GetLoanAmount added in v0.15.0

func (o *AccountUpdateRequest) GetLoanAmount() float32

GetLoanAmount returns the LoanAmount field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetLoanAmountOk added in v0.15.0

func (o *AccountUpdateRequest) GetLoanAmountOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetMetadata added in v0.15.0

func (o *AccountUpdateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetMetadataOk added in v0.15.0

func (o *AccountUpdateRequest) GetMetadataOk() (*string, bool)

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

func (*AccountUpdateRequest) GetName added in v0.15.0

func (o *AccountUpdateRequest) GetName() string

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

func (*AccountUpdateRequest) GetNameOk added in v0.15.0

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

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

func (*AccountUpdateRequest) GetNickname added in v0.15.0

func (o *AccountUpdateRequest) GetNickname() string

GetNickname returns the Nickname field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetNicknameOk added in v0.15.0

func (o *AccountUpdateRequest) GetNicknameOk() (*string, bool)

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

func (*AccountUpdateRequest) GetOriginalBalance added in v0.15.0

func (o *AccountUpdateRequest) GetOriginalBalance() float32

GetOriginalBalance returns the OriginalBalance field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetOriginalBalanceOk added in v0.15.0

func (o *AccountUpdateRequest) GetOriginalBalanceOk() (*float32, bool)

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

func (*AccountUpdateRequest) GetPropertyType added in v0.15.0

func (o *AccountUpdateRequest) GetPropertyType() string

GetPropertyType returns the PropertyType field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetPropertyTypeOk added in v0.15.0

func (o *AccountUpdateRequest) GetPropertyTypeOk() (*string, bool)

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

func (*AccountUpdateRequest) GetSkipWebhook added in v0.15.0

func (o *AccountUpdateRequest) GetSkipWebhook() bool

GetSkipWebhook returns the SkipWebhook field value if set, zero value otherwise.

func (*AccountUpdateRequest) GetSkipWebhookOk added in v0.15.0

func (o *AccountUpdateRequest) GetSkipWebhookOk() (*bool, bool)

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

func (*AccountUpdateRequest) HasAccountSubtype added in v0.15.0

func (o *AccountUpdateRequest) HasAccountSubtype() bool

HasAccountSubtype returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasAccountType added in v0.15.0

func (o *AccountUpdateRequest) HasAccountType() bool

HasAccountType returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasApr added in v0.15.0

func (o *AccountUpdateRequest) HasApr() bool

HasApr returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasApy added in v0.15.0

func (o *AccountUpdateRequest) HasApy() bool

HasApy returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasAvailableBalance added in v0.15.0

func (o *AccountUpdateRequest) HasAvailableBalance() bool

HasAvailableBalance returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasBalance added in v0.15.0

func (o *AccountUpdateRequest) HasBalance() bool

HasBalance returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasCashSurrenderValue added in v0.15.0

func (o *AccountUpdateRequest) HasCashSurrenderValue() bool

HasCashSurrenderValue returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasCreditLimit added in v0.15.0

func (o *AccountUpdateRequest) HasCreditLimit() bool

HasCreditLimit returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasCurrencyCode added in v0.15.0

func (o *AccountUpdateRequest) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasDeathBenefit added in v0.15.0

func (o *AccountUpdateRequest) HasDeathBenefit() bool

HasDeathBenefit returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasInterestRate added in v0.15.0

func (o *AccountUpdateRequest) HasInterestRate() bool

HasInterestRate returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasIsBusiness added in v0.15.0

func (o *AccountUpdateRequest) HasIsBusiness() bool

HasIsBusiness returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasIsClosed added in v0.15.0

func (o *AccountUpdateRequest) HasIsClosed() bool

HasIsClosed returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasIsHidden

func (o *AccountUpdateRequest) HasIsHidden() bool

HasIsHidden returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasLoanAmount added in v0.15.0

func (o *AccountUpdateRequest) HasLoanAmount() bool

HasLoanAmount returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasMetadata added in v0.15.0

func (o *AccountUpdateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasName added in v0.15.0

func (o *AccountUpdateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasNickname added in v0.15.0

func (o *AccountUpdateRequest) HasNickname() bool

HasNickname returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasOriginalBalance added in v0.15.0

func (o *AccountUpdateRequest) HasOriginalBalance() bool

HasOriginalBalance returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasPropertyType added in v0.15.0

func (o *AccountUpdateRequest) HasPropertyType() bool

HasPropertyType returns a boolean if a field has been set.

func (*AccountUpdateRequest) HasSkipWebhook added in v0.15.0

func (o *AccountUpdateRequest) HasSkipWebhook() bool

HasSkipWebhook returns a boolean if a field has been set.

func (AccountUpdateRequest) MarshalJSON

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

func (*AccountUpdateRequest) SetAccountSubtype added in v0.15.0

func (o *AccountUpdateRequest) SetAccountSubtype(v string)

SetAccountSubtype gets a reference to the given string and assigns it to the AccountSubtype field.

func (*AccountUpdateRequest) SetAccountType added in v0.15.0

func (o *AccountUpdateRequest) SetAccountType(v string)

SetAccountType gets a reference to the given string and assigns it to the AccountType field.

func (*AccountUpdateRequest) SetApr added in v0.15.0

func (o *AccountUpdateRequest) SetApr(v float32)

SetApr gets a reference to the given float32 and assigns it to the Apr field.

func (*AccountUpdateRequest) SetApy added in v0.15.0

func (o *AccountUpdateRequest) SetApy(v float32)

SetApy gets a reference to the given float32 and assigns it to the Apy field.

func (*AccountUpdateRequest) SetAvailableBalance added in v0.15.0

func (o *AccountUpdateRequest) SetAvailableBalance(v float32)

SetAvailableBalance gets a reference to the given float32 and assigns it to the AvailableBalance field.

func (*AccountUpdateRequest) SetBalance added in v0.15.0

func (o *AccountUpdateRequest) SetBalance(v float32)

SetBalance gets a reference to the given float32 and assigns it to the Balance field.

func (*AccountUpdateRequest) SetCashSurrenderValue added in v0.15.0

func (o *AccountUpdateRequest) SetCashSurrenderValue(v float32)

SetCashSurrenderValue gets a reference to the given float32 and assigns it to the CashSurrenderValue field.

func (*AccountUpdateRequest) SetCreditLimit added in v0.15.0

func (o *AccountUpdateRequest) SetCreditLimit(v float32)

SetCreditLimit gets a reference to the given float32 and assigns it to the CreditLimit field.

func (*AccountUpdateRequest) SetCurrencyCode added in v0.15.0

func (o *AccountUpdateRequest) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given string and assigns it to the CurrencyCode field.

func (*AccountUpdateRequest) SetDeathBenefit added in v0.15.0

func (o *AccountUpdateRequest) SetDeathBenefit(v int32)

SetDeathBenefit gets a reference to the given int32 and assigns it to the DeathBenefit field.

func (*AccountUpdateRequest) SetInterestRate added in v0.15.0

func (o *AccountUpdateRequest) SetInterestRate(v float32)

SetInterestRate gets a reference to the given float32 and assigns it to the InterestRate field.

func (*AccountUpdateRequest) SetIsBusiness added in v0.15.0

func (o *AccountUpdateRequest) SetIsBusiness(v bool)

SetIsBusiness gets a reference to the given bool and assigns it to the IsBusiness field.

func (*AccountUpdateRequest) SetIsClosed added in v0.15.0

func (o *AccountUpdateRequest) SetIsClosed(v bool)

SetIsClosed gets a reference to the given bool and assigns it to the IsClosed field.

func (*AccountUpdateRequest) SetIsHidden

func (o *AccountUpdateRequest) SetIsHidden(v bool)

SetIsHidden gets a reference to the given bool and assigns it to the IsHidden field.

func (*AccountUpdateRequest) SetLoanAmount added in v0.15.0

func (o *AccountUpdateRequest) SetLoanAmount(v float32)

SetLoanAmount gets a reference to the given float32 and assigns it to the LoanAmount field.

func (*AccountUpdateRequest) SetMetadata added in v0.15.0

func (o *AccountUpdateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*AccountUpdateRequest) SetName added in v0.15.0

func (o *AccountUpdateRequest) SetName(v string)

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

func (*AccountUpdateRequest) SetNickname added in v0.15.0

func (o *AccountUpdateRequest) SetNickname(v string)

SetNickname gets a reference to the given string and assigns it to the Nickname field.

func (*AccountUpdateRequest) SetOriginalBalance added in v0.15.0

func (o *AccountUpdateRequest) SetOriginalBalance(v float32)

SetOriginalBalance gets a reference to the given float32 and assigns it to the OriginalBalance field.

func (*AccountUpdateRequest) SetPropertyType added in v0.15.0

func (o *AccountUpdateRequest) SetPropertyType(v string)

SetPropertyType gets a reference to the given string and assigns it to the PropertyType field.

func (*AccountUpdateRequest) SetSkipWebhook added in v0.15.0

func (o *AccountUpdateRequest) SetSkipWebhook(v bool)

SetSkipWebhook gets a reference to the given bool and assigns it to the SkipWebhook field.

func (AccountUpdateRequest) ToMap added in v0.17.1

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

type AccountUpdateRequestBody

type AccountUpdateRequestBody struct {
	Account *AccountUpdateRequest `json:"account,omitempty"`
}

AccountUpdateRequestBody struct for AccountUpdateRequestBody

func NewAccountUpdateRequestBody

func NewAccountUpdateRequestBody() *AccountUpdateRequestBody

NewAccountUpdateRequestBody instantiates a new AccountUpdateRequestBody 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 NewAccountUpdateRequestBodyWithDefaults

func NewAccountUpdateRequestBodyWithDefaults() *AccountUpdateRequestBody

NewAccountUpdateRequestBodyWithDefaults instantiates a new AccountUpdateRequestBody 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 (*AccountUpdateRequestBody) GetAccount

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

func (*AccountUpdateRequestBody) GetAccountOk

func (o *AccountUpdateRequestBody) GetAccountOk() (*AccountUpdateRequest, 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 (*AccountUpdateRequestBody) HasAccount

func (o *AccountUpdateRequestBody) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (AccountUpdateRequestBody) MarshalJSON

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

func (*AccountUpdateRequestBody) SetAccount

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

func (AccountUpdateRequestBody) ToMap added in v0.17.1

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

type AccountsResponseBody

type AccountsResponseBody struct {
	Accounts   []AccountResponse   `json:"accounts,omitempty"`
	Pagination *PaginationResponse `json:"pagination,omitempty"`
}

AccountsResponseBody struct for AccountsResponseBody

func NewAccountsResponseBody

func NewAccountsResponseBody() *AccountsResponseBody

NewAccountsResponseBody instantiates a new AccountsResponseBody 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 NewAccountsResponseBodyWithDefaults

func NewAccountsResponseBodyWithDefaults() *AccountsResponseBody

NewAccountsResponseBodyWithDefaults instantiates a new AccountsResponseBody 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 (*AccountsResponseBody) GetAccounts

func (o *AccountsResponseBody) GetAccounts() []AccountResponse

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

func (*AccountsResponseBody) GetAccountsOk

func (o *AccountsResponseBody) GetAccountsOk() ([]AccountResponse, 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 (*AccountsResponseBody) GetPagination

func (o *AccountsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*AccountsResponseBody) GetPaginationOk

func (o *AccountsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*AccountsResponseBody) HasAccounts

func (o *AccountsResponseBody) HasAccounts() bool

HasAccounts returns a boolean if a field has been set.

func (*AccountsResponseBody) HasPagination

func (o *AccountsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (AccountsResponseBody) MarshalJSON

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

func (*AccountsResponseBody) SetAccounts

func (o *AccountsResponseBody) SetAccounts(v []AccountResponse)

SetAccounts gets a reference to the given []AccountResponse and assigns it to the Accounts field.

func (*AccountsResponseBody) SetPagination

func (o *AccountsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (AccountsResponseBody) ToMap added in v0.17.1

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

type ApiAggregateMemberRequest

type ApiAggregateMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiAggregateMemberRequest) Execute

type ApiCheckBalancesRequest

type ApiCheckBalancesRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCheckBalancesRequest) Execute

type ApiCreateCategoryRequest

type ApiCreateCategoryRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCategoryRequest) CategoryCreateRequestBody

func (r ApiCreateCategoryRequest) CategoryCreateRequestBody(categoryCreateRequestBody CategoryCreateRequestBody) ApiCreateCategoryRequest

Custom category object to be created

func (ApiCreateCategoryRequest) Execute

type ApiCreateManagedAccountRequest

type ApiCreateManagedAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateManagedAccountRequest) Execute

func (ApiCreateManagedAccountRequest) ManagedAccountCreateRequestBody

func (r ApiCreateManagedAccountRequest) ManagedAccountCreateRequestBody(managedAccountCreateRequestBody ManagedAccountCreateRequestBody) ApiCreateManagedAccountRequest

Managed account to be created.

type ApiCreateManagedMemberRequest

type ApiCreateManagedMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateManagedMemberRequest) Execute

func (ApiCreateManagedMemberRequest) ManagedMemberCreateRequestBody

func (r ApiCreateManagedMemberRequest) ManagedMemberCreateRequestBody(managedMemberCreateRequestBody ManagedMemberCreateRequestBody) ApiCreateManagedMemberRequest

Managed member to be created.

type ApiCreateManagedTransactionRequest

type ApiCreateManagedTransactionRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateManagedTransactionRequest) Execute

func (ApiCreateManagedTransactionRequest) ManagedTransactionCreateRequestBody

func (r ApiCreateManagedTransactionRequest) ManagedTransactionCreateRequestBody(managedTransactionCreateRequestBody ManagedTransactionCreateRequestBody) ApiCreateManagedTransactionRequest

Managed transaction to be created.

type ApiCreateManualAccountRequest added in v0.13.0

type ApiCreateManualAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateManualAccountRequest) AccountCreateRequestBody added in v0.13.0

func (r ApiCreateManualAccountRequest) AccountCreateRequestBody(accountCreateRequestBody AccountCreateRequestBody) ApiCreateManualAccountRequest

Manual account object to be created.

func (ApiCreateManualAccountRequest) Execute added in v0.13.0

type ApiCreateMemberRequest

type ApiCreateMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateMemberRequest) Execute

func (ApiCreateMemberRequest) MemberCreateRequestBody

func (r ApiCreateMemberRequest) MemberCreateRequestBody(memberCreateRequestBody MemberCreateRequestBody) ApiCreateMemberRequest

Member object to be created with optional parameters (id and metadata) and required parameters (credentials and institution_code)

type ApiCreateSpendingPlanIterationItemRequest added in v0.17.0

type ApiCreateSpendingPlanIterationItemRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSpendingPlanIterationItemRequest) Execute added in v0.17.0

func (ApiCreateSpendingPlanIterationItemRequest) SpendingPlanIterationItemCreateRequestBody added in v0.17.0

func (r ApiCreateSpendingPlanIterationItemRequest) SpendingPlanIterationItemCreateRequestBody(spendingPlanIterationItemCreateRequestBody SpendingPlanIterationItemCreateRequestBody) ApiCreateSpendingPlanIterationItemRequest

Iteration item to be created with required parameter (planned_amount)

type ApiCreateSpendingPlanRequest added in v0.17.0

type ApiCreateSpendingPlanRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSpendingPlanRequest) Execute added in v0.17.0

type ApiCreateTagRequest

type ApiCreateTagRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateTagRequest) Execute

func (ApiCreateTagRequest) TagCreateRequestBody

func (r ApiCreateTagRequest) TagCreateRequestBody(tagCreateRequestBody TagCreateRequestBody) ApiCreateTagRequest

Tag object to be created with required parameters (tag_guid)

type ApiCreateTaggingRequest

type ApiCreateTaggingRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateTaggingRequest) Execute

func (ApiCreateTaggingRequest) TaggingCreateRequestBody

func (r ApiCreateTaggingRequest) TaggingCreateRequestBody(taggingCreateRequestBody TaggingCreateRequestBody) ApiCreateTaggingRequest

Tagging object to be created with required parameters (tag_guid and transaction_guid)

type ApiCreateTransactionRuleRequest

type ApiCreateTransactionRuleRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateTransactionRuleRequest) Execute

func (ApiCreateTransactionRuleRequest) TransactionRuleCreateRequestBody

func (r ApiCreateTransactionRuleRequest) TransactionRuleCreateRequestBody(transactionRuleCreateRequestBody TransactionRuleCreateRequestBody) ApiCreateTransactionRuleRequest

TransactionRule object to be created with optional parameters (description) and required parameters (category_guid and match_description)

type ApiCreateUserRequest

type ApiCreateUserRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUserRequest) Execute

func (ApiCreateUserRequest) UserCreateRequestBody

func (r ApiCreateUserRequest) UserCreateRequestBody(userCreateRequestBody UserCreateRequestBody) ApiCreateUserRequest

User object to be created. (None of these parameters are required, but the user object cannot be empty)

type ApiDeleteCategoryRequest

type ApiDeleteCategoryRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCategoryRequest) Execute

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

type ApiDeleteManagedAccountRequest

type ApiDeleteManagedAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteManagedAccountRequest) Execute

type ApiDeleteManagedMemberRequest

type ApiDeleteManagedMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteManagedMemberRequest) Execute

type ApiDeleteManagedTransactionRequest

type ApiDeleteManagedTransactionRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteManagedTransactionRequest) Execute

type ApiDeleteManualAccountRequest added in v0.13.0

type ApiDeleteManualAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteManualAccountRequest) Execute added in v0.13.0

type ApiDeleteMemberRequest

type ApiDeleteMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMemberRequest) Execute

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

type ApiDeleteSpendingPlanAccountRequest added in v0.17.0

type ApiDeleteSpendingPlanAccountRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSpendingPlanAccountRequest) Execute added in v0.17.0

type ApiDeleteSpendingPlanIterationItemRequest added in v0.17.0

type ApiDeleteSpendingPlanIterationItemRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSpendingPlanIterationItemRequest) Execute added in v0.17.0

type ApiDeleteSpendingPlanRequest added in v0.17.0

type ApiDeleteSpendingPlanRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSpendingPlanRequest) Execute added in v0.17.0

type ApiDeleteTagRequest

type ApiDeleteTagRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTagRequest) Execute

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

type ApiDeleteTaggingRequest

type ApiDeleteTaggingRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTaggingRequest) Execute

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

type ApiDeleteTransactionRuleRequest

type ApiDeleteTransactionRuleRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTransactionRuleRequest) Execute

type ApiDeleteUserRequest

type ApiDeleteUserRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUserRequest) Execute

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

type ApiDeprecatedRequestPaymentProcessorAuthorizationCodeRequest added in v0.10.0

type ApiDeprecatedRequestPaymentProcessorAuthorizationCodeRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDeprecatedRequestPaymentProcessorAuthorizationCodeRequest) Execute added in v0.10.0

func (ApiDeprecatedRequestPaymentProcessorAuthorizationCodeRequest) PaymentProcessorAuthorizationCodeRequestBody added in v0.10.0

The scope for the authorization code.

type ApiDownloadStatementPDFRequest

type ApiDownloadStatementPDFRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadStatementPDFRequest) Execute

type ApiDownloadTaxDocumentRequest added in v0.11.0

type ApiDownloadTaxDocumentRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadTaxDocumentRequest) Execute added in v0.11.0

type ApiEnhanceTransactionsRequest

type ApiEnhanceTransactionsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiEnhanceTransactionsRequest) EnhanceTransactionsRequestBody

func (r ApiEnhanceTransactionsRequest) EnhanceTransactionsRequestBody(enhanceTransactionsRequestBody EnhanceTransactionsRequestBody) ApiEnhanceTransactionsRequest

Transaction object to be enhanced

func (ApiEnhanceTransactionsRequest) Execute

type ApiExtendHistoryRequest

type ApiExtendHistoryRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiExtendHistoryRequest) Execute

type ApiFetchStatementsRequest

type ApiFetchStatementsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiFetchStatementsRequest) Execute

type ApiFetchTaxDocumentsRequest added in v0.11.0

type ApiFetchTaxDocumentsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiFetchTaxDocumentsRequest) Execute added in v0.11.0

type ApiIdentifyMemberRequest

type ApiIdentifyMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiIdentifyMemberRequest) Execute

type ApiListAccountNumbersByAccountRequest

type ApiListAccountNumbersByAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListAccountNumbersByAccountRequest) Execute

func (ApiListAccountNumbersByAccountRequest) Page

Specify current page.

func (ApiListAccountNumbersByAccountRequest) RecordsPerPage

Specify records per page.

type ApiListAccountNumbersByMemberRequest

type ApiListAccountNumbersByMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListAccountNumbersByMemberRequest) Execute

func (ApiListAccountNumbersByMemberRequest) Page

Specify current page.

func (ApiListAccountNumbersByMemberRequest) RecordsPerPage

Specify records per page.

type ApiListAccountOwnersByMemberRequest

type ApiListAccountOwnersByMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListAccountOwnersByMemberRequest) Execute

func (ApiListAccountOwnersByMemberRequest) Page

Specify current page.

func (ApiListAccountOwnersByMemberRequest) RecordsPerPage

Specify records per page.

type ApiListCategoriesRequest

type ApiListCategoriesRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListCategoriesRequest) Execute

func (ApiListCategoriesRequest) Page

Specify current page.

func (ApiListCategoriesRequest) RecordsPerPage

func (r ApiListCategoriesRequest) RecordsPerPage(recordsPerPage int32) ApiListCategoriesRequest

Specify records per page.

type ApiListDefaultCategoriesByUserRequest

type ApiListDefaultCategoriesByUserRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListDefaultCategoriesByUserRequest) Execute

func (ApiListDefaultCategoriesByUserRequest) Page

Specify current page.

func (ApiListDefaultCategoriesByUserRequest) RecordsPerPage

Specify records per page.

type ApiListDefaultCategoriesRequest

type ApiListDefaultCategoriesRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListDefaultCategoriesRequest) Execute

func (ApiListDefaultCategoriesRequest) Page

Specify current page.

func (ApiListDefaultCategoriesRequest) RecordsPerPage

Specify records per page.

type ApiListFavoriteInstitutionsRequest

type ApiListFavoriteInstitutionsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListFavoriteInstitutionsRequest) Execute

func (ApiListFavoriteInstitutionsRequest) Page

Specify current page.

func (ApiListFavoriteInstitutionsRequest) RecordsPerPage

Specify records per page.

type ApiListHoldingsByAccountRequest added in v0.3.3

type ApiListHoldingsByAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListHoldingsByAccountRequest) Execute added in v0.3.3

func (ApiListHoldingsByAccountRequest) FromDate added in v0.3.3

Filter holdings from this date.

func (ApiListHoldingsByAccountRequest) Page added in v0.3.3

Specify current page.

func (ApiListHoldingsByAccountRequest) RecordsPerPage added in v0.3.3

Specify records per page.

func (ApiListHoldingsByAccountRequest) ToDate added in v0.3.3

Filter holdings to this date.

type ApiListHoldingsByMemberRequest

type ApiListHoldingsByMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListHoldingsByMemberRequest) Execute

func (ApiListHoldingsByMemberRequest) FromDate

Filter holdings from this date.

func (ApiListHoldingsByMemberRequest) Page

Specify current page.

func (ApiListHoldingsByMemberRequest) RecordsPerPage

func (r ApiListHoldingsByMemberRequest) RecordsPerPage(recordsPerPage int32) ApiListHoldingsByMemberRequest

Specify records per page.

func (ApiListHoldingsByMemberRequest) ToDate

Filter holdings to this date.

type ApiListHoldingsRequest

type ApiListHoldingsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListHoldingsRequest) Execute

func (ApiListHoldingsRequest) FromDate

Filter holdings from this date.

func (ApiListHoldingsRequest) Page

Specify current page.

func (ApiListHoldingsRequest) RecordsPerPage

func (r ApiListHoldingsRequest) RecordsPerPage(recordsPerPage int32) ApiListHoldingsRequest

Specify records per page.

func (ApiListHoldingsRequest) ToDate

Filter holdings to this date.

type ApiListInstitutionCredentialsRequest

type ApiListInstitutionCredentialsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListInstitutionCredentialsRequest) Execute

func (ApiListInstitutionCredentialsRequest) Page

Specify current page.

func (ApiListInstitutionCredentialsRequest) RecordsPerPage

Specify records per page.

type ApiListInstitutionsRequest

type ApiListInstitutionsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListInstitutionsRequest) Execute

func (ApiListInstitutionsRequest) Name

This will list only institutions in which the appended string appears.

func (ApiListInstitutionsRequest) Page

Specify current page.

func (ApiListInstitutionsRequest) RecordsPerPage

func (r ApiListInstitutionsRequest) RecordsPerPage(recordsPerPage int32) ApiListInstitutionsRequest

Specify records per page.

func (ApiListInstitutionsRequest) SupportsAccountIdentification

func (r ApiListInstitutionsRequest) SupportsAccountIdentification(supportsAccountIdentification bool) ApiListInstitutionsRequest

Filter only institutions which support account identification.

func (ApiListInstitutionsRequest) SupportsAccountStatement

func (r ApiListInstitutionsRequest) SupportsAccountStatement(supportsAccountStatement bool) ApiListInstitutionsRequest

Filter only institutions which support account statements.

func (ApiListInstitutionsRequest) SupportsAccountVerification

func (r ApiListInstitutionsRequest) SupportsAccountVerification(supportsAccountVerification bool) ApiListInstitutionsRequest

Filter only institutions which support account verification.

func (ApiListInstitutionsRequest) SupportsTransactionHistory

func (r ApiListInstitutionsRequest) SupportsTransactionHistory(supportsTransactionHistory bool) ApiListInstitutionsRequest

Filter only institutions which support extended transaction history.

type ApiListManagedAccountsRequest

type ApiListManagedAccountsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListManagedAccountsRequest) Execute

func (ApiListManagedAccountsRequest) Page

Specify current page.

func (ApiListManagedAccountsRequest) RecordsPerPage

func (r ApiListManagedAccountsRequest) RecordsPerPage(recordsPerPage int32) ApiListManagedAccountsRequest

Specify records per page.

type ApiListManagedInstitutionsRequest

type ApiListManagedInstitutionsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListManagedInstitutionsRequest) Execute

func (ApiListManagedInstitutionsRequest) Page

Specify current page.

func (ApiListManagedInstitutionsRequest) RecordsPerPage

Specify records per page.

type ApiListManagedMembersRequest

type ApiListManagedMembersRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListManagedMembersRequest) Execute

func (ApiListManagedMembersRequest) Page

Specify current page.

func (ApiListManagedMembersRequest) RecordsPerPage

func (r ApiListManagedMembersRequest) RecordsPerPage(recordsPerPage int32) ApiListManagedMembersRequest

Specify records per page.

type ApiListManagedTransactionsRequest

type ApiListManagedTransactionsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListManagedTransactionsRequest) Execute

func (ApiListManagedTransactionsRequest) Page

Specify current page.

func (ApiListManagedTransactionsRequest) RecordsPerPage

Specify records per page.

type ApiListMemberAccountsRequest added in v0.9.0

type ApiListMemberAccountsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListMemberAccountsRequest) Execute added in v0.9.0

func (ApiListMemberAccountsRequest) MemberIsManagedByUser added in v0.9.0

func (r ApiListMemberAccountsRequest) MemberIsManagedByUser(memberIsManagedByUser bool) ApiListMemberAccountsRequest

List only accounts whose member is managed by the user.

func (ApiListMemberAccountsRequest) Page added in v0.9.0

Specify current page.

func (ApiListMemberAccountsRequest) RecordsPerPage added in v0.9.0

func (r ApiListMemberAccountsRequest) RecordsPerPage(recordsPerPage int32) ApiListMemberAccountsRequest

Specify records per page.

type ApiListMemberChallengesRequest

type ApiListMemberChallengesRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListMemberChallengesRequest) Execute

func (ApiListMemberChallengesRequest) Page

Specify current page.

func (ApiListMemberChallengesRequest) RecordsPerPage

func (r ApiListMemberChallengesRequest) RecordsPerPage(recordsPerPage int32) ApiListMemberChallengesRequest

Specify records per page.

type ApiListMemberCredentialsRequest

type ApiListMemberCredentialsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListMemberCredentialsRequest) Execute

func (ApiListMemberCredentialsRequest) Page

Specify current page.

func (ApiListMemberCredentialsRequest) RecordsPerPage

Specify records per page.

type ApiListMembersRequest

type ApiListMembersRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListMembersRequest) Execute

func (ApiListMembersRequest) Page

Specify current page.

func (ApiListMembersRequest) RecordsPerPage

func (r ApiListMembersRequest) RecordsPerPage(recordsPerPage int32) ApiListMembersRequest

Specify records per page.

type ApiListMerchantsRequest

type ApiListMerchantsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListMerchantsRequest) Execute

func (ApiListMerchantsRequest) Page

Specify current page.

func (ApiListMerchantsRequest) RecordsPerPage

func (r ApiListMerchantsRequest) RecordsPerPage(recordsPerPage int32) ApiListMerchantsRequest

Specify records per page.

type ApiListSpendingPlanAccountsRequest added in v0.17.0

type ApiListSpendingPlanAccountsRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiListSpendingPlanAccountsRequest) Execute added in v0.17.0

func (ApiListSpendingPlanAccountsRequest) Page added in v0.17.0

Specify current page.

func (ApiListSpendingPlanAccountsRequest) RecordsPerPage added in v0.17.0

Specify records per page.

type ApiListSpendingPlanIterationItemsRequest added in v0.17.0

type ApiListSpendingPlanIterationItemsRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiListSpendingPlanIterationItemsRequest) Execute added in v0.17.0

func (ApiListSpendingPlanIterationItemsRequest) Page added in v0.17.0

Specify current page.

func (ApiListSpendingPlanIterationItemsRequest) RecordsPerPage added in v0.17.0

Specify records per page.

type ApiListSpendingPlanIterationsRequest added in v0.17.0

type ApiListSpendingPlanIterationsRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiListSpendingPlanIterationsRequest) Execute added in v0.17.0

func (ApiListSpendingPlanIterationsRequest) Page added in v0.17.0

Specify current page.

func (ApiListSpendingPlanIterationsRequest) RecordsPerPage added in v0.17.0

Specify records per page.

type ApiListSpendingPlansRequest added in v0.17.0

type ApiListSpendingPlansRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiListSpendingPlansRequest) Execute added in v0.17.0

func (ApiListSpendingPlansRequest) Page added in v0.17.0

Specify current page.

func (ApiListSpendingPlansRequest) RecordsPerPage added in v0.17.0

func (r ApiListSpendingPlansRequest) RecordsPerPage(recordsPerPage int32) ApiListSpendingPlansRequest

Specify records per page.

type ApiListStatementsByMemberRequest

type ApiListStatementsByMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListStatementsByMemberRequest) Execute

func (ApiListStatementsByMemberRequest) Page

Specify current page.

func (ApiListStatementsByMemberRequest) RecordsPerPage

Specify records per page.

type ApiListTaggingsRequest

type ApiListTaggingsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListTaggingsRequest) Execute

func (ApiListTaggingsRequest) Page

Specify current page.

func (ApiListTaggingsRequest) RecordsPerPage

func (r ApiListTaggingsRequest) RecordsPerPage(recordsPerPage int32) ApiListTaggingsRequest

Specify records per page.

type ApiListTagsRequest

type ApiListTagsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListTagsRequest) Execute

func (ApiListTagsRequest) Page

Specify current page.

func (ApiListTagsRequest) RecordsPerPage

func (r ApiListTagsRequest) RecordsPerPage(recordsPerPage int32) ApiListTagsRequest

Specify records per page.

type ApiListTaxDocumentsRequest added in v0.11.0

type ApiListTaxDocumentsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListTaxDocumentsRequest) Execute added in v0.11.0

func (ApiListTaxDocumentsRequest) Page added in v0.11.0

Specify current page.

func (ApiListTaxDocumentsRequest) RecordsPerPage added in v0.11.0

func (r ApiListTaxDocumentsRequest) RecordsPerPage(recordsPerPage int32) ApiListTaxDocumentsRequest

Specify records per page.

type ApiListTransactionRulesRequest

type ApiListTransactionRulesRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListTransactionRulesRequest) Execute

func (ApiListTransactionRulesRequest) Page

Specify current page.

func (ApiListTransactionRulesRequest) RecordsPerPage

func (r ApiListTransactionRulesRequest) RecordsPerPage(recordsPerPage int32) ApiListTransactionRulesRequest

Specify records per page.

type ApiListTransactionsByAccountRequest

type ApiListTransactionsByAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListTransactionsByAccountRequest) Execute

func (ApiListTransactionsByAccountRequest) FromDate

Filter transactions from this date.

func (ApiListTransactionsByAccountRequest) Page

Specify current page.

func (ApiListTransactionsByAccountRequest) RecordsPerPage

Specify records per page.

func (ApiListTransactionsByAccountRequest) ToDate

Filter transactions to this date.

type ApiListTransactionsByMemberRequest

type ApiListTransactionsByMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListTransactionsByMemberRequest) Execute

func (ApiListTransactionsByMemberRequest) FromDate

Filter transactions from this date.

func (ApiListTransactionsByMemberRequest) Page

Specify current page.

func (ApiListTransactionsByMemberRequest) RecordsPerPage

Specify records per page.

func (ApiListTransactionsByMemberRequest) ToDate

Filter transactions to this date.

type ApiListTransactionsByTagRequest

type ApiListTransactionsByTagRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListTransactionsByTagRequest) Execute

func (ApiListTransactionsByTagRequest) FromDate

Filter transactions from this date.

func (ApiListTransactionsByTagRequest) Page

Specify current page.

func (ApiListTransactionsByTagRequest) RecordsPerPage

Specify records per page.

func (ApiListTransactionsByTagRequest) ToDate

Filter transactions to this date.

type ApiListTransactionsRequest

type ApiListTransactionsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListTransactionsRequest) Execute

func (ApiListTransactionsRequest) FromDate

Filter transactions from this date.

func (ApiListTransactionsRequest) Page

Specify current page.

func (ApiListTransactionsRequest) RecordsPerPage

func (r ApiListTransactionsRequest) RecordsPerPage(recordsPerPage int32) ApiListTransactionsRequest

Specify records per page.

func (ApiListTransactionsRequest) ToDate

Filter transactions to this date.

type ApiListUserAccountsRequest

type ApiListUserAccountsRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListUserAccountsRequest) Execute

func (ApiListUserAccountsRequest) IsManual added in v0.15.0

List only accounts that were manually created.

func (ApiListUserAccountsRequest) MemberIsManagedByUser added in v0.9.0

func (r ApiListUserAccountsRequest) MemberIsManagedByUser(memberIsManagedByUser bool) ApiListUserAccountsRequest

List only accounts whose member is managed by the user.

func (ApiListUserAccountsRequest) Page

Specify current page.

func (ApiListUserAccountsRequest) RecordsPerPage

func (r ApiListUserAccountsRequest) RecordsPerPage(recordsPerPage int32) ApiListUserAccountsRequest

Specify records per page.

type ApiListUsersRequest

type ApiListUsersRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiListUsersRequest) Email added in v0.9.0

The user `email` to search for.

func (ApiListUsersRequest) Execute

func (ApiListUsersRequest) Id added in v0.9.0

The user `id` to search for.

func (ApiListUsersRequest) IsDisabled added in v0.9.0

func (r ApiListUsersRequest) IsDisabled(isDisabled bool) ApiListUsersRequest

Search for users that are diabled.

func (ApiListUsersRequest) Page

Specify current page.

func (ApiListUsersRequest) RecordsPerPage

func (r ApiListUsersRequest) RecordsPerPage(recordsPerPage int32) ApiListUsersRequest

Specify records per page.

type ApiReadAccountByMemberRequest added in v0.9.0

type ApiReadAccountByMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadAccountByMemberRequest) Execute added in v0.9.0

type ApiReadAccountRequest

type ApiReadAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadAccountRequest) Execute

type ApiReadCategoryRequest

type ApiReadCategoryRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadCategoryRequest) Execute

type ApiReadDefaultCategoryRequest

type ApiReadDefaultCategoryRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadDefaultCategoryRequest) Execute

type ApiReadHoldingRequest

type ApiReadHoldingRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadHoldingRequest) Execute

type ApiReadInstitutionRequest

type ApiReadInstitutionRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadInstitutionRequest) Execute

type ApiReadManagedAccountRequest

type ApiReadManagedAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadManagedAccountRequest) Execute

type ApiReadManagedMemberRequest

type ApiReadManagedMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadManagedMemberRequest) Execute

type ApiReadManagedTransactionRequest

type ApiReadManagedTransactionRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadManagedTransactionRequest) Execute

type ApiReadMemberRequest

type ApiReadMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadMemberRequest) Execute

type ApiReadMemberStatusRequest

type ApiReadMemberStatusRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadMemberStatusRequest) Execute

type ApiReadMerchantLocationRequest

type ApiReadMerchantLocationRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadMerchantLocationRequest) Execute

type ApiReadMerchantRequest

type ApiReadMerchantRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadMerchantRequest) Execute

type ApiReadSpendingPlanAccountRequest added in v0.17.0

type ApiReadSpendingPlanAccountRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiReadSpendingPlanAccountRequest) Execute added in v0.17.0

func (ApiReadSpendingPlanAccountRequest) Page added in v0.17.0

Specify current page.

func (ApiReadSpendingPlanAccountRequest) RecordsPerPage added in v0.17.0

Specify records per page.

type ApiReadSpendingPlanIterationItemRequest added in v0.17.0

type ApiReadSpendingPlanIterationItemRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiReadSpendingPlanIterationItemRequest) Execute added in v0.17.0

func (ApiReadSpendingPlanIterationItemRequest) Page added in v0.17.0

Specify current page.

func (ApiReadSpendingPlanIterationItemRequest) RecordsPerPage added in v0.17.0

Specify records per page.

type ApiReadSpendingPlanIterationRequest added in v0.17.0

type ApiReadSpendingPlanIterationRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiReadSpendingPlanIterationRequest) Execute added in v0.17.0

func (ApiReadSpendingPlanIterationRequest) Page added in v0.17.0

Specify current page.

func (ApiReadSpendingPlanIterationRequest) RecordsPerPage added in v0.17.0

Specify records per page.

type ApiReadSpendingPlanUserRequest added in v0.17.0

type ApiReadSpendingPlanUserRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiReadSpendingPlanUserRequest) Execute added in v0.17.0

func (ApiReadSpendingPlanUserRequest) Page added in v0.17.0

Specify current page.

func (ApiReadSpendingPlanUserRequest) RecordsPerPage added in v0.17.0

func (r ApiReadSpendingPlanUserRequest) RecordsPerPage(recordsPerPage int32) ApiReadSpendingPlanUserRequest

Specify records per page.

type ApiReadStatementByMemberRequest

type ApiReadStatementByMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadStatementByMemberRequest) Execute

type ApiReadTagRequest

type ApiReadTagRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadTagRequest) Execute

type ApiReadTaggingRequest

type ApiReadTaggingRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadTaggingRequest) Execute

type ApiReadTaxDocumentRequest added in v0.11.0

type ApiReadTaxDocumentRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadTaxDocumentRequest) Execute added in v0.11.0

type ApiReadTransactionRequest

type ApiReadTransactionRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadTransactionRequest) Execute

type ApiReadTransactionRuleRequest

type ApiReadTransactionRuleRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadTransactionRuleRequest) Execute

type ApiReadUserRequest

type ApiReadUserRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiReadUserRequest) Execute

type ApiRequestAuthorizationCodeRequest added in v0.10.0

type ApiRequestAuthorizationCodeRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiRequestAuthorizationCodeRequest) AuthorizationCodeRequestBody added in v0.10.0

func (r ApiRequestAuthorizationCodeRequest) AuthorizationCodeRequestBody(authorizationCodeRequestBody AuthorizationCodeRequestBody) ApiRequestAuthorizationCodeRequest

The scope for the authorization code.

func (ApiRequestAuthorizationCodeRequest) Execute added in v0.10.0

type ApiRequestConnectWidgetURLRequest

type ApiRequestConnectWidgetURLRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiRequestConnectWidgetURLRequest) ConnectWidgetRequestBody

func (r ApiRequestConnectWidgetURLRequest) ConnectWidgetRequestBody(connectWidgetRequestBody ConnectWidgetRequestBody) ApiRequestConnectWidgetURLRequest

Optional config options for WebView (is_mobile_webview, current_institution_code, current_member_guid, update_credentials)

func (ApiRequestConnectWidgetURLRequest) Execute

type ApiRequestOAuthWindowURIRequest

type ApiRequestOAuthWindowURIRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiRequestOAuthWindowURIRequest) ClientRedirectUrl added in v0.8.2

func (r ApiRequestOAuthWindowURIRequest) ClientRedirectUrl(clientRedirectUrl string) ApiRequestOAuthWindowURIRequest

A URL that MX will redirect to at the end of OAuth with additional query parameters. Only available with `referral_source=APP`.

func (ApiRequestOAuthWindowURIRequest) EnableApp2app added in v0.16.0

This indicates whether OAuth app2app behavior is enabled for institutions that support it. Defaults to `true`. This setting is not persistent.

func (ApiRequestOAuthWindowURIRequest) Execute

func (ApiRequestOAuthWindowURIRequest) ReferralSource

Must be either `BROWSER` or `APP` depending on the implementation. Defaults to `BROWSER`.

func (ApiRequestOAuthWindowURIRequest) SkipAggregation

func (r ApiRequestOAuthWindowURIRequest) SkipAggregation(skipAggregation bool) ApiRequestOAuthWindowURIRequest

Setting this parameter to `true` will prevent the member from automatically aggregating after being redirected from the authorization page.

func (ApiRequestOAuthWindowURIRequest) UiMessageWebviewUrlScheme

func (r ApiRequestOAuthWindowURIRequest) UiMessageWebviewUrlScheme(uiMessageWebviewUrlScheme string) ApiRequestOAuthWindowURIRequest

A scheme for routing the user back to the application state they were previously in. Only available with `referral_source=APP`.

type ApiRequestWidgetURLRequest

type ApiRequestWidgetURLRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiRequestWidgetURLRequest) AcceptLanguage

func (r ApiRequestWidgetURLRequest) AcceptLanguage(acceptLanguage string) ApiRequestWidgetURLRequest

The desired language of the widget.

func (ApiRequestWidgetURLRequest) Execute

func (ApiRequestWidgetURLRequest) WidgetRequestBody

func (r ApiRequestWidgetURLRequest) WidgetRequestBody(widgetRequestBody WidgetRequestBody) ApiRequestWidgetURLRequest

The widget url configuration options.

type ApiResumeAggregationRequest

type ApiResumeAggregationRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiResumeAggregationRequest) Execute

func (ApiResumeAggregationRequest) MemberResumeRequestBody

func (r ApiResumeAggregationRequest) MemberResumeRequestBody(memberResumeRequestBody MemberResumeRequestBody) ApiResumeAggregationRequest

Member object with MFA challenge answers

type ApiUpdateAccountByMemberRequest

type ApiUpdateAccountByMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateAccountByMemberRequest) AccountUpdateRequestBody

func (r ApiUpdateAccountByMemberRequest) AccountUpdateRequestBody(accountUpdateRequestBody AccountUpdateRequestBody) ApiUpdateAccountByMemberRequest

Account object to be created with optional parameters (is_hidden)

func (ApiUpdateAccountByMemberRequest) Execute

type ApiUpdateCategoryRequest

type ApiUpdateCategoryRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateCategoryRequest) CategoryUpdateRequestBody

func (r ApiUpdateCategoryRequest) CategoryUpdateRequestBody(categoryUpdateRequestBody CategoryUpdateRequestBody) ApiUpdateCategoryRequest

Category object to be updated (While no single parameter is required, the `category` object cannot be empty)

func (ApiUpdateCategoryRequest) Execute

type ApiUpdateManagedAccountRequest

type ApiUpdateManagedAccountRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateManagedAccountRequest) Execute

func (ApiUpdateManagedAccountRequest) ManagedAccountUpdateRequestBody

func (r ApiUpdateManagedAccountRequest) ManagedAccountUpdateRequestBody(managedAccountUpdateRequestBody ManagedAccountUpdateRequestBody) ApiUpdateManagedAccountRequest

Managed account object to be updated (While no single parameter is required, the request body can't be empty)

type ApiUpdateManagedMemberRequest

type ApiUpdateManagedMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateManagedMemberRequest) Execute

func (ApiUpdateManagedMemberRequest) ManagedMemberUpdateRequestBody

func (r ApiUpdateManagedMemberRequest) ManagedMemberUpdateRequestBody(managedMemberUpdateRequestBody ManagedMemberUpdateRequestBody) ApiUpdateManagedMemberRequest

Managed member object to be updated (While no single parameter is required, the request body can't be empty)

type ApiUpdateManagedTransactionRequest

type ApiUpdateManagedTransactionRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateManagedTransactionRequest) Execute

func (ApiUpdateManagedTransactionRequest) ManagedTransactionUpdateRequestBody

func (r ApiUpdateManagedTransactionRequest) ManagedTransactionUpdateRequestBody(managedTransactionUpdateRequestBody ManagedTransactionUpdateRequestBody) ApiUpdateManagedTransactionRequest

Managed transaction object to be updated (While no single parameter is required, the request body can't be empty)

type ApiUpdateMemberRequest

type ApiUpdateMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateMemberRequest) Execute

func (ApiUpdateMemberRequest) MemberUpdateRequestBody

func (r ApiUpdateMemberRequest) MemberUpdateRequestBody(memberUpdateRequestBody MemberUpdateRequestBody) ApiUpdateMemberRequest

Member object to be updated (While no single parameter is required, the request body can't be empty)

type ApiUpdateSpendingPlanIterationItemRequest added in v0.17.0

type ApiUpdateSpendingPlanIterationItemRequest struct {
	ApiService *SpendingPlanAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateSpendingPlanIterationItemRequest) Execute added in v0.17.0

func (ApiUpdateSpendingPlanIterationItemRequest) SpendingPlanIterationItemCreateRequestBody added in v0.17.0

func (r ApiUpdateSpendingPlanIterationItemRequest) SpendingPlanIterationItemCreateRequestBody(spendingPlanIterationItemCreateRequestBody SpendingPlanIterationItemCreateRequestBody) ApiUpdateSpendingPlanIterationItemRequest

Iteration item to be updated with required parameter (planned_amount)

type ApiUpdateTagRequest

type ApiUpdateTagRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTagRequest) Execute

func (ApiUpdateTagRequest) TagUpdateRequestBody

func (r ApiUpdateTagRequest) TagUpdateRequestBody(tagUpdateRequestBody TagUpdateRequestBody) ApiUpdateTagRequest

Tag object to be updated with required parameter (tag_guid)

type ApiUpdateTaggingRequest

type ApiUpdateTaggingRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTaggingRequest) Execute

func (ApiUpdateTaggingRequest) TaggingUpdateRequestBody

func (r ApiUpdateTaggingRequest) TaggingUpdateRequestBody(taggingUpdateRequestBody TaggingUpdateRequestBody) ApiUpdateTaggingRequest

Tagging object to be updated with required parameter (tag_guid)

type ApiUpdateTransactionRequest

type ApiUpdateTransactionRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTransactionRequest) Execute

func (ApiUpdateTransactionRequest) TransactionUpdateRequestBody

func (r ApiUpdateTransactionRequest) TransactionUpdateRequestBody(transactionUpdateRequestBody TransactionUpdateRequestBody) ApiUpdateTransactionRequest

Transaction object to be updated with a new description

type ApiUpdateTransactionRuleRequest

type ApiUpdateTransactionRuleRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTransactionRuleRequest) Execute

func (ApiUpdateTransactionRuleRequest) TransactionRuleUpdateRequestBody

func (r ApiUpdateTransactionRuleRequest) TransactionRuleUpdateRequestBody(transactionRuleUpdateRequestBody TransactionRuleUpdateRequestBody) ApiUpdateTransactionRuleRequest

TransactionRule object to be updated

type ApiUpdateUserRequest

type ApiUpdateUserRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateUserRequest) Execute

func (ApiUpdateUserRequest) UserUpdateRequestBody

func (r ApiUpdateUserRequest) UserUpdateRequestBody(userUpdateRequestBody UserUpdateRequestBody) ApiUpdateUserRequest

User object to be updated (None of these parameters are required, but the user object cannot be empty.)

type ApiVerifyMemberRequest

type ApiVerifyMemberRequest struct {
	ApiService *MxPlatformAPIService
	// contains filtered or unexported fields
}

func (ApiVerifyMemberRequest) Execute

type AuthorizationCodeRequest added in v0.10.0

type AuthorizationCodeRequest struct {
	Scope NullableString `json:"scope,omitempty"`
}

AuthorizationCodeRequest struct for AuthorizationCodeRequest

func NewAuthorizationCodeRequest added in v0.10.0

func NewAuthorizationCodeRequest() *AuthorizationCodeRequest

NewAuthorizationCodeRequest instantiates a new AuthorizationCodeRequest 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 NewAuthorizationCodeRequestWithDefaults added in v0.10.0

func NewAuthorizationCodeRequestWithDefaults() *AuthorizationCodeRequest

NewAuthorizationCodeRequestWithDefaults instantiates a new AuthorizationCodeRequest 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 (*AuthorizationCodeRequest) GetScope added in v0.10.0

func (o *AuthorizationCodeRequest) GetScope() string

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

func (*AuthorizationCodeRequest) GetScopeOk added in v0.10.0

func (o *AuthorizationCodeRequest) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope 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 (*AuthorizationCodeRequest) HasScope added in v0.10.0

func (o *AuthorizationCodeRequest) HasScope() bool

HasScope returns a boolean if a field has been set.

func (AuthorizationCodeRequest) MarshalJSON added in v0.10.0

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

func (*AuthorizationCodeRequest) SetScope added in v0.10.0

func (o *AuthorizationCodeRequest) SetScope(v string)

SetScope gets a reference to the given NullableString and assigns it to the Scope field.

func (*AuthorizationCodeRequest) SetScopeNil added in v0.10.0

func (o *AuthorizationCodeRequest) SetScopeNil()

SetScopeNil sets the value for Scope to be an explicit nil

func (AuthorizationCodeRequest) ToMap added in v0.17.1

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

func (*AuthorizationCodeRequest) UnsetScope added in v0.10.0

func (o *AuthorizationCodeRequest) UnsetScope()

UnsetScope ensures that no value is present for Scope, not even an explicit nil

type AuthorizationCodeRequestBody added in v0.10.0

type AuthorizationCodeRequestBody struct {
	AuthorizationCode *AuthorizationCodeRequest `json:"authorization_code,omitempty"`
}

AuthorizationCodeRequestBody struct for AuthorizationCodeRequestBody

func NewAuthorizationCodeRequestBody added in v0.10.0

func NewAuthorizationCodeRequestBody() *AuthorizationCodeRequestBody

NewAuthorizationCodeRequestBody instantiates a new AuthorizationCodeRequestBody 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 NewAuthorizationCodeRequestBodyWithDefaults added in v0.10.0

func NewAuthorizationCodeRequestBodyWithDefaults() *AuthorizationCodeRequestBody

NewAuthorizationCodeRequestBodyWithDefaults instantiates a new AuthorizationCodeRequestBody 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 (*AuthorizationCodeRequestBody) GetAuthorizationCode added in v0.10.0

func (o *AuthorizationCodeRequestBody) GetAuthorizationCode() AuthorizationCodeRequest

GetAuthorizationCode returns the AuthorizationCode field value if set, zero value otherwise.

func (*AuthorizationCodeRequestBody) GetAuthorizationCodeOk added in v0.10.0

func (o *AuthorizationCodeRequestBody) GetAuthorizationCodeOk() (*AuthorizationCodeRequest, bool)

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

func (*AuthorizationCodeRequestBody) HasAuthorizationCode added in v0.10.0

func (o *AuthorizationCodeRequestBody) HasAuthorizationCode() bool

HasAuthorizationCode returns a boolean if a field has been set.

func (AuthorizationCodeRequestBody) MarshalJSON added in v0.10.0

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

func (*AuthorizationCodeRequestBody) SetAuthorizationCode added in v0.10.0

func (o *AuthorizationCodeRequestBody) SetAuthorizationCode(v AuthorizationCodeRequest)

SetAuthorizationCode gets a reference to the given AuthorizationCodeRequest and assigns it to the AuthorizationCode field.

func (AuthorizationCodeRequestBody) ToMap added in v0.17.1

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

type AuthorizationCodeResponse added in v0.10.0

type AuthorizationCodeResponse struct {
	Code NullableString `json:"code,omitempty"`
}

AuthorizationCodeResponse struct for AuthorizationCodeResponse

func NewAuthorizationCodeResponse added in v0.10.0

func NewAuthorizationCodeResponse() *AuthorizationCodeResponse

NewAuthorizationCodeResponse instantiates a new AuthorizationCodeResponse 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 NewAuthorizationCodeResponseWithDefaults added in v0.10.0

func NewAuthorizationCodeResponseWithDefaults() *AuthorizationCodeResponse

NewAuthorizationCodeResponseWithDefaults instantiates a new AuthorizationCodeResponse 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 (*AuthorizationCodeResponse) GetCode added in v0.10.0

func (o *AuthorizationCodeResponse) GetCode() string

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

func (*AuthorizationCodeResponse) GetCodeOk added in v0.10.0

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

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

func (*AuthorizationCodeResponse) HasCode added in v0.10.0

func (o *AuthorizationCodeResponse) HasCode() bool

HasCode returns a boolean if a field has been set.

func (AuthorizationCodeResponse) MarshalJSON added in v0.10.0

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

func (*AuthorizationCodeResponse) SetCode added in v0.10.0

func (o *AuthorizationCodeResponse) SetCode(v string)

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

func (*AuthorizationCodeResponse) SetCodeNil added in v0.10.0

func (o *AuthorizationCodeResponse) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (AuthorizationCodeResponse) ToMap added in v0.17.1

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

func (*AuthorizationCodeResponse) UnsetCode added in v0.10.0

func (o *AuthorizationCodeResponse) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

type AuthorizationCodeResponseBody added in v0.10.0

type AuthorizationCodeResponseBody struct {
	AuthorizationCode []AuthorizationCodeResponse `json:"authorization_code,omitempty"`
}

AuthorizationCodeResponseBody struct for AuthorizationCodeResponseBody

func NewAuthorizationCodeResponseBody added in v0.10.0

func NewAuthorizationCodeResponseBody() *AuthorizationCodeResponseBody

NewAuthorizationCodeResponseBody instantiates a new AuthorizationCodeResponseBody 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 NewAuthorizationCodeResponseBodyWithDefaults added in v0.10.0

func NewAuthorizationCodeResponseBodyWithDefaults() *AuthorizationCodeResponseBody

NewAuthorizationCodeResponseBodyWithDefaults instantiates a new AuthorizationCodeResponseBody 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 (*AuthorizationCodeResponseBody) GetAuthorizationCode added in v0.10.0

func (o *AuthorizationCodeResponseBody) GetAuthorizationCode() []AuthorizationCodeResponse

GetAuthorizationCode returns the AuthorizationCode field value if set, zero value otherwise.

func (*AuthorizationCodeResponseBody) GetAuthorizationCodeOk added in v0.10.0

func (o *AuthorizationCodeResponseBody) GetAuthorizationCodeOk() ([]AuthorizationCodeResponse, bool)

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

func (*AuthorizationCodeResponseBody) HasAuthorizationCode added in v0.10.0

func (o *AuthorizationCodeResponseBody) HasAuthorizationCode() bool

HasAuthorizationCode returns a boolean if a field has been set.

func (AuthorizationCodeResponseBody) MarshalJSON added in v0.10.0

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

func (*AuthorizationCodeResponseBody) SetAuthorizationCode added in v0.10.0

func (o *AuthorizationCodeResponseBody) SetAuthorizationCode(v []AuthorizationCodeResponse)

SetAuthorizationCode gets a reference to the given []AuthorizationCodeResponse and assigns it to the AuthorizationCode field.

func (AuthorizationCodeResponseBody) ToMap added in v0.17.1

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

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 CategoriesResponseBody

type CategoriesResponseBody struct {
	Categories []CategoryResponse  `json:"categories,omitempty"`
	Pagination *PaginationResponse `json:"pagination,omitempty"`
}

CategoriesResponseBody struct for CategoriesResponseBody

func NewCategoriesResponseBody

func NewCategoriesResponseBody() *CategoriesResponseBody

NewCategoriesResponseBody instantiates a new CategoriesResponseBody 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 NewCategoriesResponseBodyWithDefaults

func NewCategoriesResponseBodyWithDefaults() *CategoriesResponseBody

NewCategoriesResponseBodyWithDefaults instantiates a new CategoriesResponseBody 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 (*CategoriesResponseBody) GetCategories

func (o *CategoriesResponseBody) GetCategories() []CategoryResponse

GetCategories returns the Categories field value if set, zero value otherwise.

func (*CategoriesResponseBody) GetCategoriesOk

func (o *CategoriesResponseBody) GetCategoriesOk() ([]CategoryResponse, bool)

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

func (*CategoriesResponseBody) GetPagination

func (o *CategoriesResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*CategoriesResponseBody) GetPaginationOk

func (o *CategoriesResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*CategoriesResponseBody) HasCategories

func (o *CategoriesResponseBody) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*CategoriesResponseBody) HasPagination

func (o *CategoriesResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (CategoriesResponseBody) MarshalJSON

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

func (*CategoriesResponseBody) SetCategories

func (o *CategoriesResponseBody) SetCategories(v []CategoryResponse)

SetCategories gets a reference to the given []CategoryResponse and assigns it to the Categories field.

func (*CategoriesResponseBody) SetPagination

func (o *CategoriesResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (CategoriesResponseBody) ToMap added in v0.17.1

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

type CategoryCreateRequest

type CategoryCreateRequest struct {
	Metadata   *string `json:"metadata,omitempty"`
	Name       string  `json:"name"`
	ParentGuid *string `json:"parent_guid,omitempty"`
}

CategoryCreateRequest struct for CategoryCreateRequest

func NewCategoryCreateRequest

func NewCategoryCreateRequest(name string) *CategoryCreateRequest

NewCategoryCreateRequest instantiates a new CategoryCreateRequest 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 NewCategoryCreateRequestWithDefaults

func NewCategoryCreateRequestWithDefaults() *CategoryCreateRequest

NewCategoryCreateRequestWithDefaults instantiates a new CategoryCreateRequest 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 (*CategoryCreateRequest) GetMetadata

func (o *CategoryCreateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CategoryCreateRequest) GetMetadataOk

func (o *CategoryCreateRequest) GetMetadataOk() (*string, bool)

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

func (*CategoryCreateRequest) GetName

func (o *CategoryCreateRequest) GetName() string

GetName returns the Name field value

func (*CategoryCreateRequest) GetNameOk

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

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

func (*CategoryCreateRequest) GetParentGuid

func (o *CategoryCreateRequest) GetParentGuid() string

GetParentGuid returns the ParentGuid field value if set, zero value otherwise.

func (*CategoryCreateRequest) GetParentGuidOk

func (o *CategoryCreateRequest) GetParentGuidOk() (*string, bool)

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

func (*CategoryCreateRequest) HasMetadata

func (o *CategoryCreateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CategoryCreateRequest) HasParentGuid

func (o *CategoryCreateRequest) HasParentGuid() bool

HasParentGuid returns a boolean if a field has been set.

func (CategoryCreateRequest) MarshalJSON

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

func (*CategoryCreateRequest) SetMetadata

func (o *CategoryCreateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*CategoryCreateRequest) SetName

func (o *CategoryCreateRequest) SetName(v string)

SetName sets field value

func (*CategoryCreateRequest) SetParentGuid

func (o *CategoryCreateRequest) SetParentGuid(v string)

SetParentGuid gets a reference to the given string and assigns it to the ParentGuid field.

func (CategoryCreateRequest) ToMap added in v0.17.1

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

type CategoryCreateRequestBody

type CategoryCreateRequestBody struct {
	Category *CategoryCreateRequest `json:"category,omitempty"`
}

CategoryCreateRequestBody struct for CategoryCreateRequestBody

func NewCategoryCreateRequestBody

func NewCategoryCreateRequestBody() *CategoryCreateRequestBody

NewCategoryCreateRequestBody instantiates a new CategoryCreateRequestBody 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 NewCategoryCreateRequestBodyWithDefaults

func NewCategoryCreateRequestBodyWithDefaults() *CategoryCreateRequestBody

NewCategoryCreateRequestBodyWithDefaults instantiates a new CategoryCreateRequestBody 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 (*CategoryCreateRequestBody) GetCategory

GetCategory returns the Category field value if set, zero value otherwise.

func (*CategoryCreateRequestBody) GetCategoryOk

func (o *CategoryCreateRequestBody) GetCategoryOk() (*CategoryCreateRequest, bool)

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

func (*CategoryCreateRequestBody) HasCategory

func (o *CategoryCreateRequestBody) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (CategoryCreateRequestBody) MarshalJSON

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

func (*CategoryCreateRequestBody) SetCategory

SetCategory gets a reference to the given CategoryCreateRequest and assigns it to the Category field.

func (CategoryCreateRequestBody) ToMap added in v0.17.1

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

type CategoryResponse

type CategoryResponse struct {
	CreatedAt  NullableString `json:"created_at,omitempty"`
	Guid       NullableString `json:"guid,omitempty"`
	IsDefault  NullableBool   `json:"is_default,omitempty"`
	IsIncome   NullableBool   `json:"is_income,omitempty"`
	Metadata   NullableString `json:"metadata,omitempty"`
	Name       NullableString `json:"name,omitempty"`
	ParentGuid NullableString `json:"parent_guid,omitempty"`
	UpdatedAt  NullableString `json:"updated_at,omitempty"`
}

CategoryResponse struct for CategoryResponse

func NewCategoryResponse

func NewCategoryResponse() *CategoryResponse

NewCategoryResponse instantiates a new CategoryResponse 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 NewCategoryResponseWithDefaults

func NewCategoryResponseWithDefaults() *CategoryResponse

NewCategoryResponseWithDefaults instantiates a new CategoryResponse 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 (*CategoryResponse) GetCreatedAt

func (o *CategoryResponse) GetCreatedAt() string

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

func (*CategoryResponse) GetCreatedAtOk

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

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

func (*CategoryResponse) GetGuid

func (o *CategoryResponse) GetGuid() string

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

func (*CategoryResponse) GetGuidOk

func (o *CategoryResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*CategoryResponse) GetIsDefault

func (o *CategoryResponse) GetIsDefault() bool

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

func (*CategoryResponse) GetIsDefaultOk

func (o *CategoryResponse) GetIsDefaultOk() (*bool, bool)

GetIsDefaultOk returns a tuple with the IsDefault 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 (*CategoryResponse) GetIsIncome

func (o *CategoryResponse) GetIsIncome() bool

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

func (*CategoryResponse) GetIsIncomeOk

func (o *CategoryResponse) GetIsIncomeOk() (*bool, bool)

GetIsIncomeOk returns a tuple with the IsIncome 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 (*CategoryResponse) GetMetadata

func (o *CategoryResponse) GetMetadata() string

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

func (*CategoryResponse) GetMetadataOk

func (o *CategoryResponse) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata 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 (*CategoryResponse) GetName

func (o *CategoryResponse) GetName() string

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

func (*CategoryResponse) GetNameOk

func (o *CategoryResponse) 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 (*CategoryResponse) GetParentGuid

func (o *CategoryResponse) GetParentGuid() string

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

func (*CategoryResponse) GetParentGuidOk

func (o *CategoryResponse) GetParentGuidOk() (*string, bool)

GetParentGuidOk returns a tuple with the ParentGuid 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 (*CategoryResponse) GetUpdatedAt

func (o *CategoryResponse) GetUpdatedAt() string

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

func (*CategoryResponse) GetUpdatedAtOk

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

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

func (*CategoryResponse) HasCreatedAt

func (o *CategoryResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CategoryResponse) HasGuid

func (o *CategoryResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*CategoryResponse) HasIsDefault

func (o *CategoryResponse) HasIsDefault() bool

HasIsDefault returns a boolean if a field has been set.

func (*CategoryResponse) HasIsIncome

func (o *CategoryResponse) HasIsIncome() bool

HasIsIncome returns a boolean if a field has been set.

func (*CategoryResponse) HasMetadata

func (o *CategoryResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CategoryResponse) HasName

func (o *CategoryResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*CategoryResponse) HasParentGuid

func (o *CategoryResponse) HasParentGuid() bool

HasParentGuid returns a boolean if a field has been set.

func (*CategoryResponse) HasUpdatedAt

func (o *CategoryResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (CategoryResponse) MarshalJSON

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

func (*CategoryResponse) SetCreatedAt

func (o *CategoryResponse) SetCreatedAt(v string)

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

func (*CategoryResponse) SetCreatedAtNil

func (o *CategoryResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*CategoryResponse) SetGuid

func (o *CategoryResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*CategoryResponse) SetGuidNil added in v0.4.1

func (o *CategoryResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*CategoryResponse) SetIsDefault

func (o *CategoryResponse) SetIsDefault(v bool)

SetIsDefault gets a reference to the given NullableBool and assigns it to the IsDefault field.

func (*CategoryResponse) SetIsDefaultNil

func (o *CategoryResponse) SetIsDefaultNil()

SetIsDefaultNil sets the value for IsDefault to be an explicit nil

func (*CategoryResponse) SetIsIncome

func (o *CategoryResponse) SetIsIncome(v bool)

SetIsIncome gets a reference to the given NullableBool and assigns it to the IsIncome field.

func (*CategoryResponse) SetIsIncomeNil

func (o *CategoryResponse) SetIsIncomeNil()

SetIsIncomeNil sets the value for IsIncome to be an explicit nil

func (*CategoryResponse) SetMetadata

func (o *CategoryResponse) SetMetadata(v string)

SetMetadata gets a reference to the given NullableString and assigns it to the Metadata field.

func (*CategoryResponse) SetMetadataNil

func (o *CategoryResponse) SetMetadataNil()

SetMetadataNil sets the value for Metadata to be an explicit nil

func (*CategoryResponse) SetName

func (o *CategoryResponse) SetName(v string)

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

func (*CategoryResponse) SetNameNil

func (o *CategoryResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CategoryResponse) SetParentGuid

func (o *CategoryResponse) SetParentGuid(v string)

SetParentGuid gets a reference to the given NullableString and assigns it to the ParentGuid field.

func (*CategoryResponse) SetParentGuidNil added in v0.4.1

func (o *CategoryResponse) SetParentGuidNil()

SetParentGuidNil sets the value for ParentGuid to be an explicit nil

func (*CategoryResponse) SetUpdatedAt

func (o *CategoryResponse) SetUpdatedAt(v string)

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

func (*CategoryResponse) SetUpdatedAtNil

func (o *CategoryResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (CategoryResponse) ToMap added in v0.17.1

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

func (*CategoryResponse) UnsetCreatedAt

func (o *CategoryResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*CategoryResponse) UnsetGuid added in v0.4.1

func (o *CategoryResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*CategoryResponse) UnsetIsDefault

func (o *CategoryResponse) UnsetIsDefault()

UnsetIsDefault ensures that no value is present for IsDefault, not even an explicit nil

func (*CategoryResponse) UnsetIsIncome

func (o *CategoryResponse) UnsetIsIncome()

UnsetIsIncome ensures that no value is present for IsIncome, not even an explicit nil

func (*CategoryResponse) UnsetMetadata

func (o *CategoryResponse) UnsetMetadata()

UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil

func (*CategoryResponse) UnsetName

func (o *CategoryResponse) UnsetName()

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

func (*CategoryResponse) UnsetParentGuid added in v0.4.1

func (o *CategoryResponse) UnsetParentGuid()

UnsetParentGuid ensures that no value is present for ParentGuid, not even an explicit nil

func (*CategoryResponse) UnsetUpdatedAt

func (o *CategoryResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

type CategoryResponseBody

type CategoryResponseBody struct {
	Category *CategoryResponse `json:"category,omitempty"`
}

CategoryResponseBody struct for CategoryResponseBody

func NewCategoryResponseBody

func NewCategoryResponseBody() *CategoryResponseBody

NewCategoryResponseBody instantiates a new CategoryResponseBody 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 NewCategoryResponseBodyWithDefaults

func NewCategoryResponseBodyWithDefaults() *CategoryResponseBody

NewCategoryResponseBodyWithDefaults instantiates a new CategoryResponseBody 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 (*CategoryResponseBody) GetCategory

func (o *CategoryResponseBody) GetCategory() CategoryResponse

GetCategory returns the Category field value if set, zero value otherwise.

func (*CategoryResponseBody) GetCategoryOk

func (o *CategoryResponseBody) GetCategoryOk() (*CategoryResponse, bool)

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

func (*CategoryResponseBody) HasCategory

func (o *CategoryResponseBody) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (CategoryResponseBody) MarshalJSON

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

func (*CategoryResponseBody) SetCategory

func (o *CategoryResponseBody) SetCategory(v CategoryResponse)

SetCategory gets a reference to the given CategoryResponse and assigns it to the Category field.

func (CategoryResponseBody) ToMap added in v0.17.1

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

type CategoryUpdateRequest

type CategoryUpdateRequest struct {
	Metadata *string `json:"metadata,omitempty"`
	Name     *string `json:"name,omitempty"`
}

CategoryUpdateRequest struct for CategoryUpdateRequest

func NewCategoryUpdateRequest

func NewCategoryUpdateRequest() *CategoryUpdateRequest

NewCategoryUpdateRequest instantiates a new CategoryUpdateRequest 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 NewCategoryUpdateRequestWithDefaults

func NewCategoryUpdateRequestWithDefaults() *CategoryUpdateRequest

NewCategoryUpdateRequestWithDefaults instantiates a new CategoryUpdateRequest 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 (*CategoryUpdateRequest) GetMetadata

func (o *CategoryUpdateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*CategoryUpdateRequest) GetMetadataOk

func (o *CategoryUpdateRequest) GetMetadataOk() (*string, bool)

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

func (*CategoryUpdateRequest) GetName

func (o *CategoryUpdateRequest) GetName() string

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

func (*CategoryUpdateRequest) GetNameOk

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

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

func (*CategoryUpdateRequest) HasMetadata

func (o *CategoryUpdateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CategoryUpdateRequest) HasName

func (o *CategoryUpdateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (CategoryUpdateRequest) MarshalJSON

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

func (*CategoryUpdateRequest) SetMetadata

func (o *CategoryUpdateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*CategoryUpdateRequest) SetName

func (o *CategoryUpdateRequest) SetName(v string)

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

func (CategoryUpdateRequest) ToMap added in v0.17.1

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

type CategoryUpdateRequestBody

type CategoryUpdateRequestBody struct {
	Category *CategoryUpdateRequest `json:"category,omitempty"`
}

CategoryUpdateRequestBody struct for CategoryUpdateRequestBody

func NewCategoryUpdateRequestBody

func NewCategoryUpdateRequestBody() *CategoryUpdateRequestBody

NewCategoryUpdateRequestBody instantiates a new CategoryUpdateRequestBody 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 NewCategoryUpdateRequestBodyWithDefaults

func NewCategoryUpdateRequestBodyWithDefaults() *CategoryUpdateRequestBody

NewCategoryUpdateRequestBodyWithDefaults instantiates a new CategoryUpdateRequestBody 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 (*CategoryUpdateRequestBody) GetCategory

GetCategory returns the Category field value if set, zero value otherwise.

func (*CategoryUpdateRequestBody) GetCategoryOk

func (o *CategoryUpdateRequestBody) GetCategoryOk() (*CategoryUpdateRequest, bool)

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

func (*CategoryUpdateRequestBody) HasCategory

func (o *CategoryUpdateRequestBody) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (CategoryUpdateRequestBody) MarshalJSON

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

func (*CategoryUpdateRequestBody) SetCategory

SetCategory gets a reference to the given CategoryUpdateRequest and assigns it to the Category field.

func (CategoryUpdateRequestBody) ToMap added in v0.17.1

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

type ChallengeResponse

type ChallengeResponse struct {
	FieldName    NullableString        `json:"field_name,omitempty"`
	Guid         NullableString        `json:"guid,omitempty"`
	ImageData    NullableString        `json:"image_data,omitempty"`
	ImageOptions []ImageOptionResponse `json:"image_options,omitempty"`
	Label        NullableString        `json:"label,omitempty"`
	Options      []OptionResponse      `json:"options,omitempty"`
	Type         NullableString        `json:"type,omitempty"`
}

ChallengeResponse struct for ChallengeResponse

func NewChallengeResponse

func NewChallengeResponse() *ChallengeResponse

NewChallengeResponse instantiates a new ChallengeResponse 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 NewChallengeResponseWithDefaults

func NewChallengeResponseWithDefaults() *ChallengeResponse

NewChallengeResponseWithDefaults instantiates a new ChallengeResponse 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 (*ChallengeResponse) GetFieldName

func (o *ChallengeResponse) GetFieldName() string

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

func (*ChallengeResponse) GetFieldNameOk

func (o *ChallengeResponse) GetFieldNameOk() (*string, bool)

GetFieldNameOk returns a tuple with the FieldName 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 (*ChallengeResponse) GetGuid

func (o *ChallengeResponse) GetGuid() string

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

func (*ChallengeResponse) GetGuidOk

func (o *ChallengeResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*ChallengeResponse) GetImageData

func (o *ChallengeResponse) GetImageData() string

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

func (*ChallengeResponse) GetImageDataOk

func (o *ChallengeResponse) GetImageDataOk() (*string, bool)

GetImageDataOk returns a tuple with the ImageData 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 (*ChallengeResponse) GetImageOptions

func (o *ChallengeResponse) GetImageOptions() []ImageOptionResponse

GetImageOptions returns the ImageOptions field value if set, zero value otherwise.

func (*ChallengeResponse) GetImageOptionsOk

func (o *ChallengeResponse) GetImageOptionsOk() ([]ImageOptionResponse, bool)

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

func (*ChallengeResponse) GetLabel

func (o *ChallengeResponse) GetLabel() string

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

func (*ChallengeResponse) GetLabelOk

func (o *ChallengeResponse) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label 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 (*ChallengeResponse) GetOptions

func (o *ChallengeResponse) GetOptions() []OptionResponse

GetOptions returns the Options field value if set, zero value otherwise.

func (*ChallengeResponse) GetOptionsOk

func (o *ChallengeResponse) GetOptionsOk() ([]OptionResponse, bool)

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

func (*ChallengeResponse) GetType

func (o *ChallengeResponse) GetType() string

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

func (*ChallengeResponse) GetTypeOk

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

GetTypeOk returns a tuple with the Type 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 (*ChallengeResponse) HasFieldName

func (o *ChallengeResponse) HasFieldName() bool

HasFieldName returns a boolean if a field has been set.

func (*ChallengeResponse) HasGuid

func (o *ChallengeResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*ChallengeResponse) HasImageData

func (o *ChallengeResponse) HasImageData() bool

HasImageData returns a boolean if a field has been set.

func (*ChallengeResponse) HasImageOptions

func (o *ChallengeResponse) HasImageOptions() bool

HasImageOptions returns a boolean if a field has been set.

func (*ChallengeResponse) HasLabel

func (o *ChallengeResponse) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ChallengeResponse) HasOptions

func (o *ChallengeResponse) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*ChallengeResponse) HasType

func (o *ChallengeResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (ChallengeResponse) MarshalJSON

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

func (*ChallengeResponse) SetFieldName

func (o *ChallengeResponse) SetFieldName(v string)

SetFieldName gets a reference to the given NullableString and assigns it to the FieldName field.

func (*ChallengeResponse) SetFieldNameNil

func (o *ChallengeResponse) SetFieldNameNil()

SetFieldNameNil sets the value for FieldName to be an explicit nil

func (*ChallengeResponse) SetGuid

func (o *ChallengeResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*ChallengeResponse) SetGuidNil added in v0.4.1

func (o *ChallengeResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*ChallengeResponse) SetImageData

func (o *ChallengeResponse) SetImageData(v string)

SetImageData gets a reference to the given NullableString and assigns it to the ImageData field.

func (*ChallengeResponse) SetImageDataNil

func (o *ChallengeResponse) SetImageDataNil()

SetImageDataNil sets the value for ImageData to be an explicit nil

func (*ChallengeResponse) SetImageOptions

func (o *ChallengeResponse) SetImageOptions(v []ImageOptionResponse)

SetImageOptions gets a reference to the given []ImageOptionResponse and assigns it to the ImageOptions field.

func (*ChallengeResponse) SetLabel

func (o *ChallengeResponse) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*ChallengeResponse) SetLabelNil

func (o *ChallengeResponse) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*ChallengeResponse) SetOptions

func (o *ChallengeResponse) SetOptions(v []OptionResponse)

SetOptions gets a reference to the given []OptionResponse and assigns it to the Options field.

func (*ChallengeResponse) SetType

func (o *ChallengeResponse) SetType(v string)

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

func (*ChallengeResponse) SetTypeNil

func (o *ChallengeResponse) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ChallengeResponse) ToMap added in v0.17.1

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

func (*ChallengeResponse) UnsetFieldName

func (o *ChallengeResponse) UnsetFieldName()

UnsetFieldName ensures that no value is present for FieldName, not even an explicit nil

func (*ChallengeResponse) UnsetGuid added in v0.4.1

func (o *ChallengeResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*ChallengeResponse) UnsetImageData

func (o *ChallengeResponse) UnsetImageData()

UnsetImageData ensures that no value is present for ImageData, not even an explicit nil

func (*ChallengeResponse) UnsetLabel

func (o *ChallengeResponse) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

func (*ChallengeResponse) UnsetType

func (o *ChallengeResponse) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type ChallengesResponseBody

type ChallengesResponseBody struct {
	Challenges []ChallengeResponse `json:"challenges,omitempty"`
	Pagination *PaginationResponse `json:"pagination,omitempty"`
}

ChallengesResponseBody struct for ChallengesResponseBody

func NewChallengesResponseBody

func NewChallengesResponseBody() *ChallengesResponseBody

NewChallengesResponseBody instantiates a new ChallengesResponseBody 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 NewChallengesResponseBodyWithDefaults

func NewChallengesResponseBodyWithDefaults() *ChallengesResponseBody

NewChallengesResponseBodyWithDefaults instantiates a new ChallengesResponseBody 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 (*ChallengesResponseBody) GetChallenges

func (o *ChallengesResponseBody) GetChallenges() []ChallengeResponse

GetChallenges returns the Challenges field value if set, zero value otherwise.

func (*ChallengesResponseBody) GetChallengesOk

func (o *ChallengesResponseBody) GetChallengesOk() ([]ChallengeResponse, bool)

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

func (*ChallengesResponseBody) GetPagination

func (o *ChallengesResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*ChallengesResponseBody) GetPaginationOk

func (o *ChallengesResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*ChallengesResponseBody) HasChallenges

func (o *ChallengesResponseBody) HasChallenges() bool

HasChallenges returns a boolean if a field has been set.

func (*ChallengesResponseBody) HasPagination

func (o *ChallengesResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (ChallengesResponseBody) MarshalJSON

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

func (*ChallengesResponseBody) SetChallenges

func (o *ChallengesResponseBody) SetChallenges(v []ChallengeResponse)

SetChallenges gets a reference to the given []ChallengeResponse and assigns it to the Challenges field.

func (*ChallengesResponseBody) SetPagination

func (o *ChallengesResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (ChallengesResponseBody) ToMap added in v0.17.1

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

type ConnectWidgetRequest struct {
	ClientRedirectUrl         *string `json:"client_redirect_url,omitempty"`
	ColorScheme               *string `json:"color_scheme,omitempty"`
	CurrentInstitutionCode    *string `json:"current_institution_code,omitempty"`
	CurrentMemberGuid         *string `json:"current_member_guid,omitempty"`
	DisableBackgroundAgg      *bool   `json:"disable_background_agg,omitempty"`
	DisableInstitutionSearch  *bool   `json:"disable_institution_search,omitempty"`
	IncludeIdentity           *bool   `json:"include_identity,omitempty"`
	IncludeTransactions       *bool   `json:"include_transactions,omitempty"`
	IsMobileWebview           *bool   `json:"is_mobile_webview,omitempty"`
	Mode                      *string `json:"mode,omitempty"`
	OauthReferralSource       *string `json:"oauth_referral_source,omitempty"`
	UiMessageVersion          *int32  `json:"ui_message_version,omitempty"`
	UiMessageWebviewUrlScheme *string `json:"ui_message_webview_url_scheme,omitempty"`
	UpdateCredentials         *bool   `json:"update_credentials,omitempty"`
}

ConnectWidgetRequest struct for ConnectWidgetRequest

func NewConnectWidgetRequest

func NewConnectWidgetRequest() *ConnectWidgetRequest

NewConnectWidgetRequest instantiates a new ConnectWidgetRequest 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 NewConnectWidgetRequestWithDefaults

func NewConnectWidgetRequestWithDefaults() *ConnectWidgetRequest

NewConnectWidgetRequestWithDefaults instantiates a new ConnectWidgetRequest 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 (*ConnectWidgetRequest) GetClientRedirectUrl added in v0.8.2

func (o *ConnectWidgetRequest) GetClientRedirectUrl() string

GetClientRedirectUrl returns the ClientRedirectUrl field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetClientRedirectUrlOk added in v0.8.2

func (o *ConnectWidgetRequest) GetClientRedirectUrlOk() (*string, bool)

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

func (*ConnectWidgetRequest) GetColorScheme

func (o *ConnectWidgetRequest) GetColorScheme() string

GetColorScheme returns the ColorScheme field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetColorSchemeOk

func (o *ConnectWidgetRequest) GetColorSchemeOk() (*string, bool)

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

func (*ConnectWidgetRequest) GetCurrentInstitutionCode

func (o *ConnectWidgetRequest) GetCurrentInstitutionCode() string

GetCurrentInstitutionCode returns the CurrentInstitutionCode field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetCurrentInstitutionCodeOk

func (o *ConnectWidgetRequest) GetCurrentInstitutionCodeOk() (*string, bool)

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

func (*ConnectWidgetRequest) GetCurrentMemberGuid

func (o *ConnectWidgetRequest) GetCurrentMemberGuid() string

GetCurrentMemberGuid returns the CurrentMemberGuid field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetCurrentMemberGuidOk

func (o *ConnectWidgetRequest) GetCurrentMemberGuidOk() (*string, bool)

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

func (*ConnectWidgetRequest) GetDisableBackgroundAgg added in v0.9.0

func (o *ConnectWidgetRequest) GetDisableBackgroundAgg() bool

GetDisableBackgroundAgg returns the DisableBackgroundAgg field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetDisableBackgroundAggOk added in v0.9.0

func (o *ConnectWidgetRequest) GetDisableBackgroundAggOk() (*bool, bool)

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

func (*ConnectWidgetRequest) GetDisableInstitutionSearch

func (o *ConnectWidgetRequest) GetDisableInstitutionSearch() bool

GetDisableInstitutionSearch returns the DisableInstitutionSearch field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetDisableInstitutionSearchOk

func (o *ConnectWidgetRequest) GetDisableInstitutionSearchOk() (*bool, bool)

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

func (*ConnectWidgetRequest) GetIncludeIdentity added in v0.9.0

func (o *ConnectWidgetRequest) GetIncludeIdentity() bool

GetIncludeIdentity returns the IncludeIdentity field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetIncludeIdentityOk added in v0.9.0

func (o *ConnectWidgetRequest) GetIncludeIdentityOk() (*bool, bool)

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

func (*ConnectWidgetRequest) GetIncludeTransactions

func (o *ConnectWidgetRequest) GetIncludeTransactions() bool

GetIncludeTransactions returns the IncludeTransactions field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetIncludeTransactionsOk

func (o *ConnectWidgetRequest) GetIncludeTransactionsOk() (*bool, bool)

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

func (*ConnectWidgetRequest) GetIsMobileWebview

func (o *ConnectWidgetRequest) GetIsMobileWebview() bool

GetIsMobileWebview returns the IsMobileWebview field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetIsMobileWebviewOk

func (o *ConnectWidgetRequest) GetIsMobileWebviewOk() (*bool, bool)

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

func (*ConnectWidgetRequest) GetMode

func (o *ConnectWidgetRequest) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetModeOk

func (o *ConnectWidgetRequest) GetModeOk() (*string, bool)

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

func (*ConnectWidgetRequest) GetOauthReferralSource added in v0.9.0

func (o *ConnectWidgetRequest) GetOauthReferralSource() string

GetOauthReferralSource returns the OauthReferralSource field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetOauthReferralSourceOk added in v0.9.0

func (o *ConnectWidgetRequest) GetOauthReferralSourceOk() (*string, bool)

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

func (*ConnectWidgetRequest) GetUiMessageVersion

func (o *ConnectWidgetRequest) GetUiMessageVersion() int32

GetUiMessageVersion returns the UiMessageVersion field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetUiMessageVersionOk

func (o *ConnectWidgetRequest) GetUiMessageVersionOk() (*int32, bool)

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

func (*ConnectWidgetRequest) GetUiMessageWebviewUrlScheme

func (o *ConnectWidgetRequest) GetUiMessageWebviewUrlScheme() string

GetUiMessageWebviewUrlScheme returns the UiMessageWebviewUrlScheme field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetUiMessageWebviewUrlSchemeOk

func (o *ConnectWidgetRequest) GetUiMessageWebviewUrlSchemeOk() (*string, bool)

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

func (*ConnectWidgetRequest) GetUpdateCredentials

func (o *ConnectWidgetRequest) GetUpdateCredentials() bool

GetUpdateCredentials returns the UpdateCredentials field value if set, zero value otherwise.

func (*ConnectWidgetRequest) GetUpdateCredentialsOk

func (o *ConnectWidgetRequest) GetUpdateCredentialsOk() (*bool, bool)

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

func (*ConnectWidgetRequest) HasClientRedirectUrl added in v0.8.2

func (o *ConnectWidgetRequest) HasClientRedirectUrl() bool

HasClientRedirectUrl returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasColorScheme

func (o *ConnectWidgetRequest) HasColorScheme() bool

HasColorScheme returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasCurrentInstitutionCode

func (o *ConnectWidgetRequest) HasCurrentInstitutionCode() bool

HasCurrentInstitutionCode returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasCurrentMemberGuid

func (o *ConnectWidgetRequest) HasCurrentMemberGuid() bool

HasCurrentMemberGuid returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasDisableBackgroundAgg added in v0.9.0

func (o *ConnectWidgetRequest) HasDisableBackgroundAgg() bool

HasDisableBackgroundAgg returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasDisableInstitutionSearch

func (o *ConnectWidgetRequest) HasDisableInstitutionSearch() bool

HasDisableInstitutionSearch returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasIncludeIdentity added in v0.9.0

func (o *ConnectWidgetRequest) HasIncludeIdentity() bool

HasIncludeIdentity returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasIncludeTransactions

func (o *ConnectWidgetRequest) HasIncludeTransactions() bool

HasIncludeTransactions returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasIsMobileWebview

func (o *ConnectWidgetRequest) HasIsMobileWebview() bool

HasIsMobileWebview returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasMode

func (o *ConnectWidgetRequest) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasOauthReferralSource added in v0.9.0

func (o *ConnectWidgetRequest) HasOauthReferralSource() bool

HasOauthReferralSource returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasUiMessageVersion

func (o *ConnectWidgetRequest) HasUiMessageVersion() bool

HasUiMessageVersion returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasUiMessageWebviewUrlScheme

func (o *ConnectWidgetRequest) HasUiMessageWebviewUrlScheme() bool

HasUiMessageWebviewUrlScheme returns a boolean if a field has been set.

func (*ConnectWidgetRequest) HasUpdateCredentials

func (o *ConnectWidgetRequest) HasUpdateCredentials() bool

HasUpdateCredentials returns a boolean if a field has been set.

func (ConnectWidgetRequest) MarshalJSON

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

func (*ConnectWidgetRequest) SetClientRedirectUrl added in v0.8.2

func (o *ConnectWidgetRequest) SetClientRedirectUrl(v string)

SetClientRedirectUrl gets a reference to the given string and assigns it to the ClientRedirectUrl field.

func (*ConnectWidgetRequest) SetColorScheme

func (o *ConnectWidgetRequest) SetColorScheme(v string)

SetColorScheme gets a reference to the given string and assigns it to the ColorScheme field.

func (*ConnectWidgetRequest) SetCurrentInstitutionCode

func (o *ConnectWidgetRequest) SetCurrentInstitutionCode(v string)

SetCurrentInstitutionCode gets a reference to the given string and assigns it to the CurrentInstitutionCode field.

func (*ConnectWidgetRequest) SetCurrentMemberGuid

func (o *ConnectWidgetRequest) SetCurrentMemberGuid(v string)

SetCurrentMemberGuid gets a reference to the given string and assigns it to the CurrentMemberGuid field.

func (*ConnectWidgetRequest) SetDisableBackgroundAgg added in v0.9.0

func (o *ConnectWidgetRequest) SetDisableBackgroundAgg(v bool)

SetDisableBackgroundAgg gets a reference to the given bool and assigns it to the DisableBackgroundAgg field.

func (*ConnectWidgetRequest) SetDisableInstitutionSearch

func (o *ConnectWidgetRequest) SetDisableInstitutionSearch(v bool)

SetDisableInstitutionSearch gets a reference to the given bool and assigns it to the DisableInstitutionSearch field.

func (*ConnectWidgetRequest) SetIncludeIdentity added in v0.9.0

func (o *ConnectWidgetRequest) SetIncludeIdentity(v bool)

SetIncludeIdentity gets a reference to the given bool and assigns it to the IncludeIdentity field.

func (*ConnectWidgetRequest) SetIncludeTransactions

func (o *ConnectWidgetRequest) SetIncludeTransactions(v bool)

SetIncludeTransactions gets a reference to the given bool and assigns it to the IncludeTransactions field.

func (*ConnectWidgetRequest) SetIsMobileWebview

func (o *ConnectWidgetRequest) SetIsMobileWebview(v bool)

SetIsMobileWebview gets a reference to the given bool and assigns it to the IsMobileWebview field.

func (*ConnectWidgetRequest) SetMode

func (o *ConnectWidgetRequest) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*ConnectWidgetRequest) SetOauthReferralSource added in v0.9.0

func (o *ConnectWidgetRequest) SetOauthReferralSource(v string)

SetOauthReferralSource gets a reference to the given string and assigns it to the OauthReferralSource field.

func (*ConnectWidgetRequest) SetUiMessageVersion

func (o *ConnectWidgetRequest) SetUiMessageVersion(v int32)

SetUiMessageVersion gets a reference to the given int32 and assigns it to the UiMessageVersion field.

func (*ConnectWidgetRequest) SetUiMessageWebviewUrlScheme

func (o *ConnectWidgetRequest) SetUiMessageWebviewUrlScheme(v string)

SetUiMessageWebviewUrlScheme gets a reference to the given string and assigns it to the UiMessageWebviewUrlScheme field.

func (*ConnectWidgetRequest) SetUpdateCredentials

func (o *ConnectWidgetRequest) SetUpdateCredentials(v bool)

SetUpdateCredentials gets a reference to the given bool and assigns it to the UpdateCredentials field.

func (ConnectWidgetRequest) ToMap added in v0.17.1

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

type ConnectWidgetRequestBody

type ConnectWidgetRequestBody struct {
	Config *ConnectWidgetRequest `json:"config,omitempty"`
}

ConnectWidgetRequestBody struct for ConnectWidgetRequestBody

func NewConnectWidgetRequestBody

func NewConnectWidgetRequestBody() *ConnectWidgetRequestBody

NewConnectWidgetRequestBody instantiates a new ConnectWidgetRequestBody 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 NewConnectWidgetRequestBodyWithDefaults

func NewConnectWidgetRequestBodyWithDefaults() *ConnectWidgetRequestBody

NewConnectWidgetRequestBodyWithDefaults instantiates a new ConnectWidgetRequestBody 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 (*ConnectWidgetRequestBody) GetConfig

GetConfig returns the Config field value if set, zero value otherwise.

func (*ConnectWidgetRequestBody) GetConfigOk

func (o *ConnectWidgetRequestBody) GetConfigOk() (*ConnectWidgetRequest, bool)

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

func (*ConnectWidgetRequestBody) HasConfig

func (o *ConnectWidgetRequestBody) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (ConnectWidgetRequestBody) MarshalJSON

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

func (*ConnectWidgetRequestBody) SetConfig

SetConfig gets a reference to the given ConnectWidgetRequest and assigns it to the Config field.

func (ConnectWidgetRequestBody) ToMap added in v0.17.1

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

type ConnectWidgetResponse

type ConnectWidgetResponse struct {
	ConnectWidgetUrl NullableString `json:"connect_widget_url,omitempty"`
	Guid             NullableString `json:"guid,omitempty"`
}

ConnectWidgetResponse struct for ConnectWidgetResponse

func NewConnectWidgetResponse

func NewConnectWidgetResponse() *ConnectWidgetResponse

NewConnectWidgetResponse instantiates a new ConnectWidgetResponse 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 NewConnectWidgetResponseWithDefaults

func NewConnectWidgetResponseWithDefaults() *ConnectWidgetResponse

NewConnectWidgetResponseWithDefaults instantiates a new ConnectWidgetResponse 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 (*ConnectWidgetResponse) GetConnectWidgetUrl

func (o *ConnectWidgetResponse) GetConnectWidgetUrl() string

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

func (*ConnectWidgetResponse) GetConnectWidgetUrlOk

func (o *ConnectWidgetResponse) GetConnectWidgetUrlOk() (*string, bool)

GetConnectWidgetUrlOk returns a tuple with the ConnectWidgetUrl 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 (*ConnectWidgetResponse) GetGuid

func (o *ConnectWidgetResponse) GetGuid() string

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

func (*ConnectWidgetResponse) GetGuidOk

func (o *ConnectWidgetResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*ConnectWidgetResponse) HasConnectWidgetUrl

func (o *ConnectWidgetResponse) HasConnectWidgetUrl() bool

HasConnectWidgetUrl returns a boolean if a field has been set.

func (*ConnectWidgetResponse) HasGuid

func (o *ConnectWidgetResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (ConnectWidgetResponse) MarshalJSON

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

func (*ConnectWidgetResponse) SetConnectWidgetUrl

func (o *ConnectWidgetResponse) SetConnectWidgetUrl(v string)

SetConnectWidgetUrl gets a reference to the given NullableString and assigns it to the ConnectWidgetUrl field.

func (*ConnectWidgetResponse) SetConnectWidgetUrlNil

func (o *ConnectWidgetResponse) SetConnectWidgetUrlNil()

SetConnectWidgetUrlNil sets the value for ConnectWidgetUrl to be an explicit nil

func (*ConnectWidgetResponse) SetGuid

func (o *ConnectWidgetResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*ConnectWidgetResponse) SetGuidNil added in v0.4.1

func (o *ConnectWidgetResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (ConnectWidgetResponse) ToMap added in v0.17.1

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

func (*ConnectWidgetResponse) UnsetConnectWidgetUrl

func (o *ConnectWidgetResponse) UnsetConnectWidgetUrl()

UnsetConnectWidgetUrl ensures that no value is present for ConnectWidgetUrl, not even an explicit nil

func (*ConnectWidgetResponse) UnsetGuid added in v0.4.1

func (o *ConnectWidgetResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

type ConnectWidgetResponseBody

type ConnectWidgetResponseBody struct {
	User *ConnectWidgetResponse `json:"user,omitempty"`
}

ConnectWidgetResponseBody struct for ConnectWidgetResponseBody

func NewConnectWidgetResponseBody

func NewConnectWidgetResponseBody() *ConnectWidgetResponseBody

NewConnectWidgetResponseBody instantiates a new ConnectWidgetResponseBody 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 NewConnectWidgetResponseBodyWithDefaults

func NewConnectWidgetResponseBodyWithDefaults() *ConnectWidgetResponseBody

NewConnectWidgetResponseBodyWithDefaults instantiates a new ConnectWidgetResponseBody 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 (*ConnectWidgetResponseBody) GetUser

GetUser returns the User field value if set, zero value otherwise.

func (*ConnectWidgetResponseBody) GetUserOk

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

func (*ConnectWidgetResponseBody) HasUser

func (o *ConnectWidgetResponseBody) HasUser() bool

HasUser returns a boolean if a field has been set.

func (ConnectWidgetResponseBody) MarshalJSON

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

func (*ConnectWidgetResponseBody) SetUser

SetUser gets a reference to the given ConnectWidgetResponse and assigns it to the User field.

func (ConnectWidgetResponseBody) ToMap added in v0.17.1

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

type CredentialRequest

type CredentialRequest struct {
	Guid  *string `json:"guid,omitempty"`
	Value *string `json:"value,omitempty"`
}

CredentialRequest struct for CredentialRequest

func NewCredentialRequest

func NewCredentialRequest() *CredentialRequest

NewCredentialRequest instantiates a new CredentialRequest 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 NewCredentialRequestWithDefaults

func NewCredentialRequestWithDefaults() *CredentialRequest

NewCredentialRequestWithDefaults instantiates a new CredentialRequest 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 (*CredentialRequest) GetGuid

func (o *CredentialRequest) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise.

func (*CredentialRequest) GetGuidOk

func (o *CredentialRequest) GetGuidOk() (*string, bool)

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

func (*CredentialRequest) GetValue

func (o *CredentialRequest) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*CredentialRequest) GetValueOk

func (o *CredentialRequest) GetValueOk() (*string, bool)

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

func (*CredentialRequest) HasGuid

func (o *CredentialRequest) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*CredentialRequest) HasValue

func (o *CredentialRequest) HasValue() bool

HasValue returns a boolean if a field has been set.

func (CredentialRequest) MarshalJSON

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

func (*CredentialRequest) SetGuid

func (o *CredentialRequest) SetGuid(v string)

SetGuid gets a reference to the given string and assigns it to the Guid field.

func (*CredentialRequest) SetValue

func (o *CredentialRequest) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (CredentialRequest) ToMap added in v0.17.1

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

type CredentialResponse

type CredentialResponse struct {
	DisplayOrder NullableInt32  `json:"display_order,omitempty"`
	FieldName    NullableString `json:"field_name,omitempty"`
	FieldType    NullableString `json:"field_type,omitempty"`
	Guid         NullableString `json:"guid,omitempty"`
	Label        NullableString `json:"label,omitempty"`
	Type         NullableString `json:"type,omitempty"`
}

CredentialResponse struct for CredentialResponse

func NewCredentialResponse

func NewCredentialResponse() *CredentialResponse

NewCredentialResponse instantiates a new CredentialResponse 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 NewCredentialResponseWithDefaults

func NewCredentialResponseWithDefaults() *CredentialResponse

NewCredentialResponseWithDefaults instantiates a new CredentialResponse 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 (*CredentialResponse) GetDisplayOrder

func (o *CredentialResponse) GetDisplayOrder() int32

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

func (*CredentialResponse) GetDisplayOrderOk

func (o *CredentialResponse) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder 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 (*CredentialResponse) GetFieldName

func (o *CredentialResponse) GetFieldName() string

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

func (*CredentialResponse) GetFieldNameOk

func (o *CredentialResponse) GetFieldNameOk() (*string, bool)

GetFieldNameOk returns a tuple with the FieldName 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 (*CredentialResponse) GetFieldType

func (o *CredentialResponse) GetFieldType() string

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

func (*CredentialResponse) GetFieldTypeOk

func (o *CredentialResponse) GetFieldTypeOk() (*string, bool)

GetFieldTypeOk returns a tuple with the FieldType 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 (*CredentialResponse) GetGuid

func (o *CredentialResponse) GetGuid() string

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

func (*CredentialResponse) GetGuidOk

func (o *CredentialResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*CredentialResponse) GetLabel

func (o *CredentialResponse) GetLabel() string

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

func (*CredentialResponse) GetLabelOk

func (o *CredentialResponse) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label 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 (*CredentialResponse) GetType added in v0.6.2

func (o *CredentialResponse) GetType() string

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

func (*CredentialResponse) GetTypeOk added in v0.6.2

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

GetTypeOk returns a tuple with the Type 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 (*CredentialResponse) HasDisplayOrder

func (o *CredentialResponse) HasDisplayOrder() bool

HasDisplayOrder returns a boolean if a field has been set.

func (*CredentialResponse) HasFieldName

func (o *CredentialResponse) HasFieldName() bool

HasFieldName returns a boolean if a field has been set.

func (*CredentialResponse) HasFieldType

func (o *CredentialResponse) HasFieldType() bool

HasFieldType returns a boolean if a field has been set.

func (*CredentialResponse) HasGuid

func (o *CredentialResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*CredentialResponse) HasLabel

func (o *CredentialResponse) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*CredentialResponse) HasType added in v0.6.2

func (o *CredentialResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (CredentialResponse) MarshalJSON

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

func (*CredentialResponse) SetDisplayOrder

func (o *CredentialResponse) SetDisplayOrder(v int32)

SetDisplayOrder gets a reference to the given NullableInt32 and assigns it to the DisplayOrder field.

func (*CredentialResponse) SetDisplayOrderNil

func (o *CredentialResponse) SetDisplayOrderNil()

SetDisplayOrderNil sets the value for DisplayOrder to be an explicit nil

func (*CredentialResponse) SetFieldName

func (o *CredentialResponse) SetFieldName(v string)

SetFieldName gets a reference to the given NullableString and assigns it to the FieldName field.

func (*CredentialResponse) SetFieldNameNil

func (o *CredentialResponse) SetFieldNameNil()

SetFieldNameNil sets the value for FieldName to be an explicit nil

func (*CredentialResponse) SetFieldType

func (o *CredentialResponse) SetFieldType(v string)

SetFieldType gets a reference to the given NullableString and assigns it to the FieldType field.

func (*CredentialResponse) SetFieldTypeNil

func (o *CredentialResponse) SetFieldTypeNil()

SetFieldTypeNil sets the value for FieldType to be an explicit nil

func (*CredentialResponse) SetGuid

func (o *CredentialResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*CredentialResponse) SetGuidNil added in v0.4.1

func (o *CredentialResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*CredentialResponse) SetLabel

func (o *CredentialResponse) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*CredentialResponse) SetLabelNil added in v0.4.1

func (o *CredentialResponse) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*CredentialResponse) SetType added in v0.6.2

func (o *CredentialResponse) SetType(v string)

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

func (*CredentialResponse) SetTypeNil added in v0.6.2

func (o *CredentialResponse) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (CredentialResponse) ToMap added in v0.17.1

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

func (*CredentialResponse) UnsetDisplayOrder

func (o *CredentialResponse) UnsetDisplayOrder()

UnsetDisplayOrder ensures that no value is present for DisplayOrder, not even an explicit nil

func (*CredentialResponse) UnsetFieldName

func (o *CredentialResponse) UnsetFieldName()

UnsetFieldName ensures that no value is present for FieldName, not even an explicit nil

func (*CredentialResponse) UnsetFieldType

func (o *CredentialResponse) UnsetFieldType()

UnsetFieldType ensures that no value is present for FieldType, not even an explicit nil

func (*CredentialResponse) UnsetGuid added in v0.4.1

func (o *CredentialResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*CredentialResponse) UnsetLabel added in v0.4.1

func (o *CredentialResponse) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

func (*CredentialResponse) UnsetType added in v0.6.2

func (o *CredentialResponse) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type CredentialsResponseBody

type CredentialsResponseBody struct {
	Credentials []CredentialResponse `json:"credentials,omitempty"`
	Pagination  *PaginationResponse  `json:"pagination,omitempty"`
}

CredentialsResponseBody struct for CredentialsResponseBody

func NewCredentialsResponseBody

func NewCredentialsResponseBody() *CredentialsResponseBody

NewCredentialsResponseBody instantiates a new CredentialsResponseBody 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 NewCredentialsResponseBodyWithDefaults

func NewCredentialsResponseBodyWithDefaults() *CredentialsResponseBody

NewCredentialsResponseBodyWithDefaults instantiates a new CredentialsResponseBody 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 (*CredentialsResponseBody) GetCredentials

func (o *CredentialsResponseBody) GetCredentials() []CredentialResponse

GetCredentials returns the Credentials field value if set, zero value otherwise.

func (*CredentialsResponseBody) GetCredentialsOk

func (o *CredentialsResponseBody) GetCredentialsOk() ([]CredentialResponse, bool)

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

func (*CredentialsResponseBody) GetPagination

func (o *CredentialsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*CredentialsResponseBody) GetPaginationOk

func (o *CredentialsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*CredentialsResponseBody) HasCredentials

func (o *CredentialsResponseBody) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*CredentialsResponseBody) HasPagination

func (o *CredentialsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (CredentialsResponseBody) MarshalJSON

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

func (*CredentialsResponseBody) SetCredentials

func (o *CredentialsResponseBody) SetCredentials(v []CredentialResponse)

SetCredentials gets a reference to the given []CredentialResponse and assigns it to the Credentials field.

func (*CredentialsResponseBody) SetPagination

func (o *CredentialsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (CredentialsResponseBody) ToMap added in v0.17.1

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

type EnhanceTransactionResponse

type EnhanceTransactionResponse struct {
	Amount                  NullableFloat32 `json:"amount,omitempty"`
	CategorizedBy           NullableInt32   `json:"categorized_by,omitempty"`
	Category                NullableString  `json:"category,omitempty"`
	CategoryGuid            NullableString  `json:"category_guid,omitempty"`
	DescribedBy             NullableInt32   `json:"described_by,omitempty"`
	Description             NullableString  `json:"description,omitempty"`
	ExtendedTransactionType NullableString  `json:"extended_transaction_type,omitempty"`
	Id                      NullableString  `json:"id,omitempty"`
	IsBillPay               NullableBool    `json:"is_bill_pay,omitempty"`
	IsDirectDeposit         NullableBool    `json:"is_direct_deposit,omitempty"`
	IsExpense               NullableBool    `json:"is_expense,omitempty"`
	IsFee                   NullableBool    `json:"is_fee,omitempty"`
	IsIncome                NullableBool    `json:"is_income,omitempty"`
	IsInternational         NullableBool    `json:"is_international,omitempty"`
	IsOverdraftFee          NullableBool    `json:"is_overdraft_fee,omitempty"`
	IsPayrollAdvance        NullableBool    `json:"is_payroll_advance,omitempty"`
	IsSubscription          NullableBool    `json:"is_subscription,omitempty"`
	Memo                    NullableString  `json:"memo,omitempty"`
	MerchantCategoryCode    NullableInt32   `json:"merchant_category_code,omitempty"`
	MerchantGuid            NullableString  `json:"merchant_guid,omitempty"`
	MerchantLocationGuid    NullableString  `json:"merchant_location_guid,omitempty"`
	OriginalDescription     NullableString  `json:"original_description,omitempty"`
	Type                    NullableString  `json:"type,omitempty"`
}

EnhanceTransactionResponse struct for EnhanceTransactionResponse

func NewEnhanceTransactionResponse

func NewEnhanceTransactionResponse() *EnhanceTransactionResponse

NewEnhanceTransactionResponse instantiates a new EnhanceTransactionResponse 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 NewEnhanceTransactionResponseWithDefaults

func NewEnhanceTransactionResponseWithDefaults() *EnhanceTransactionResponse

NewEnhanceTransactionResponseWithDefaults instantiates a new EnhanceTransactionResponse 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 (*EnhanceTransactionResponse) GetAmount

func (o *EnhanceTransactionResponse) GetAmount() float32

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

func (*EnhanceTransactionResponse) GetAmountOk

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

func (*EnhanceTransactionResponse) GetCategorizedBy

func (o *EnhanceTransactionResponse) GetCategorizedBy() int32

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

func (*EnhanceTransactionResponse) GetCategorizedByOk

func (o *EnhanceTransactionResponse) GetCategorizedByOk() (*int32, bool)

GetCategorizedByOk returns a tuple with the CategorizedBy 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 (*EnhanceTransactionResponse) GetCategory

func (o *EnhanceTransactionResponse) GetCategory() string

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

func (*EnhanceTransactionResponse) GetCategoryGuid

func (o *EnhanceTransactionResponse) GetCategoryGuid() string

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

func (*EnhanceTransactionResponse) GetCategoryGuidOk

func (o *EnhanceTransactionResponse) GetCategoryGuidOk() (*string, bool)

GetCategoryGuidOk returns a tuple with the CategoryGuid 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 (*EnhanceTransactionResponse) GetCategoryOk

func (o *EnhanceTransactionResponse) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category 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 (*EnhanceTransactionResponse) GetDescribedBy

func (o *EnhanceTransactionResponse) GetDescribedBy() int32

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

func (*EnhanceTransactionResponse) GetDescribedByOk

func (o *EnhanceTransactionResponse) GetDescribedByOk() (*int32, bool)

GetDescribedByOk returns a tuple with the DescribedBy 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 (*EnhanceTransactionResponse) GetDescription

func (o *EnhanceTransactionResponse) GetDescription() string

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

func (*EnhanceTransactionResponse) GetDescriptionOk

func (o *EnhanceTransactionResponse) GetDescriptionOk() (*string, bool)

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

func (*EnhanceTransactionResponse) GetExtendedTransactionType

func (o *EnhanceTransactionResponse) GetExtendedTransactionType() string

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

func (*EnhanceTransactionResponse) GetExtendedTransactionTypeOk

func (o *EnhanceTransactionResponse) GetExtendedTransactionTypeOk() (*string, bool)

GetExtendedTransactionTypeOk returns a tuple with the ExtendedTransactionType 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 (*EnhanceTransactionResponse) GetId

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

func (*EnhanceTransactionResponse) GetIdOk

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

func (*EnhanceTransactionResponse) GetIsBillPay

func (o *EnhanceTransactionResponse) GetIsBillPay() bool

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

func (*EnhanceTransactionResponse) GetIsBillPayOk

func (o *EnhanceTransactionResponse) GetIsBillPayOk() (*bool, bool)

GetIsBillPayOk returns a tuple with the IsBillPay 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 (*EnhanceTransactionResponse) GetIsDirectDeposit

func (o *EnhanceTransactionResponse) GetIsDirectDeposit() bool

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

func (*EnhanceTransactionResponse) GetIsDirectDepositOk

func (o *EnhanceTransactionResponse) GetIsDirectDepositOk() (*bool, bool)

GetIsDirectDepositOk returns a tuple with the IsDirectDeposit 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 (*EnhanceTransactionResponse) GetIsExpense

func (o *EnhanceTransactionResponse) GetIsExpense() bool

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

func (*EnhanceTransactionResponse) GetIsExpenseOk

func (o *EnhanceTransactionResponse) GetIsExpenseOk() (*bool, bool)

GetIsExpenseOk returns a tuple with the IsExpense 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 (*EnhanceTransactionResponse) GetIsFee

func (o *EnhanceTransactionResponse) GetIsFee() bool

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

func (*EnhanceTransactionResponse) GetIsFeeOk

func (o *EnhanceTransactionResponse) GetIsFeeOk() (*bool, bool)

GetIsFeeOk returns a tuple with the IsFee 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 (*EnhanceTransactionResponse) GetIsIncome

func (o *EnhanceTransactionResponse) GetIsIncome() bool

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

func (*EnhanceTransactionResponse) GetIsIncomeOk

func (o *EnhanceTransactionResponse) GetIsIncomeOk() (*bool, bool)

GetIsIncomeOk returns a tuple with the IsIncome 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 (*EnhanceTransactionResponse) GetIsInternational

func (o *EnhanceTransactionResponse) GetIsInternational() bool

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

func (*EnhanceTransactionResponse) GetIsInternationalOk

func (o *EnhanceTransactionResponse) GetIsInternationalOk() (*bool, bool)

GetIsInternationalOk returns a tuple with the IsInternational 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 (*EnhanceTransactionResponse) GetIsOverdraftFee

func (o *EnhanceTransactionResponse) GetIsOverdraftFee() bool

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

func (*EnhanceTransactionResponse) GetIsOverdraftFeeOk

func (o *EnhanceTransactionResponse) GetIsOverdraftFeeOk() (*bool, bool)

GetIsOverdraftFeeOk returns a tuple with the IsOverdraftFee 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 (*EnhanceTransactionResponse) GetIsPayrollAdvance

func (o *EnhanceTransactionResponse) GetIsPayrollAdvance() bool

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

func (*EnhanceTransactionResponse) GetIsPayrollAdvanceOk

func (o *EnhanceTransactionResponse) GetIsPayrollAdvanceOk() (*bool, bool)

GetIsPayrollAdvanceOk returns a tuple with the IsPayrollAdvance 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 (*EnhanceTransactionResponse) GetIsSubscription

func (o *EnhanceTransactionResponse) GetIsSubscription() bool

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

func (*EnhanceTransactionResponse) GetIsSubscriptionOk

func (o *EnhanceTransactionResponse) GetIsSubscriptionOk() (*bool, bool)

GetIsSubscriptionOk returns a tuple with the IsSubscription 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 (*EnhanceTransactionResponse) GetMemo

func (o *EnhanceTransactionResponse) GetMemo() string

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

func (*EnhanceTransactionResponse) GetMemoOk

func (o *EnhanceTransactionResponse) GetMemoOk() (*string, bool)

GetMemoOk returns a tuple with the Memo 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 (*EnhanceTransactionResponse) GetMerchantCategoryCode

func (o *EnhanceTransactionResponse) GetMerchantCategoryCode() int32

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

func (*EnhanceTransactionResponse) GetMerchantCategoryCodeOk

func (o *EnhanceTransactionResponse) GetMerchantCategoryCodeOk() (*int32, bool)

GetMerchantCategoryCodeOk returns a tuple with the MerchantCategoryCode 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 (*EnhanceTransactionResponse) GetMerchantGuid

func (o *EnhanceTransactionResponse) GetMerchantGuid() string

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

func (*EnhanceTransactionResponse) GetMerchantGuidOk

func (o *EnhanceTransactionResponse) GetMerchantGuidOk() (*string, bool)

GetMerchantGuidOk returns a tuple with the MerchantGuid 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 (*EnhanceTransactionResponse) GetMerchantLocationGuid

func (o *EnhanceTransactionResponse) GetMerchantLocationGuid() string

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

func (*EnhanceTransactionResponse) GetMerchantLocationGuidOk

func (o *EnhanceTransactionResponse) GetMerchantLocationGuidOk() (*string, bool)

GetMerchantLocationGuidOk returns a tuple with the MerchantLocationGuid 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 (*EnhanceTransactionResponse) GetOriginalDescription

func (o *EnhanceTransactionResponse) GetOriginalDescription() string

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

func (*EnhanceTransactionResponse) GetOriginalDescriptionOk

func (o *EnhanceTransactionResponse) GetOriginalDescriptionOk() (*string, bool)

GetOriginalDescriptionOk returns a tuple with the OriginalDescription 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 (*EnhanceTransactionResponse) GetType

func (o *EnhanceTransactionResponse) GetType() string

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

func (*EnhanceTransactionResponse) GetTypeOk

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

GetTypeOk returns a tuple with the Type 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 (*EnhanceTransactionResponse) HasAmount

func (o *EnhanceTransactionResponse) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasCategorizedBy

func (o *EnhanceTransactionResponse) HasCategorizedBy() bool

HasCategorizedBy returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasCategory

func (o *EnhanceTransactionResponse) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasCategoryGuid

func (o *EnhanceTransactionResponse) HasCategoryGuid() bool

HasCategoryGuid returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasDescribedBy

func (o *EnhanceTransactionResponse) HasDescribedBy() bool

HasDescribedBy returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasDescription

func (o *EnhanceTransactionResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasExtendedTransactionType

func (o *EnhanceTransactionResponse) HasExtendedTransactionType() bool

HasExtendedTransactionType returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasId

func (o *EnhanceTransactionResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsBillPay

func (o *EnhanceTransactionResponse) HasIsBillPay() bool

HasIsBillPay returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsDirectDeposit

func (o *EnhanceTransactionResponse) HasIsDirectDeposit() bool

HasIsDirectDeposit returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsExpense

func (o *EnhanceTransactionResponse) HasIsExpense() bool

HasIsExpense returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsFee

func (o *EnhanceTransactionResponse) HasIsFee() bool

HasIsFee returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsIncome

func (o *EnhanceTransactionResponse) HasIsIncome() bool

HasIsIncome returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsInternational

func (o *EnhanceTransactionResponse) HasIsInternational() bool

HasIsInternational returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsOverdraftFee

func (o *EnhanceTransactionResponse) HasIsOverdraftFee() bool

HasIsOverdraftFee returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsPayrollAdvance

func (o *EnhanceTransactionResponse) HasIsPayrollAdvance() bool

HasIsPayrollAdvance returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasIsSubscription

func (o *EnhanceTransactionResponse) HasIsSubscription() bool

HasIsSubscription returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasMemo

func (o *EnhanceTransactionResponse) HasMemo() bool

HasMemo returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasMerchantCategoryCode

func (o *EnhanceTransactionResponse) HasMerchantCategoryCode() bool

HasMerchantCategoryCode returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasMerchantGuid

func (o *EnhanceTransactionResponse) HasMerchantGuid() bool

HasMerchantGuid returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasMerchantLocationGuid

func (o *EnhanceTransactionResponse) HasMerchantLocationGuid() bool

HasMerchantLocationGuid returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasOriginalDescription

func (o *EnhanceTransactionResponse) HasOriginalDescription() bool

HasOriginalDescription returns a boolean if a field has been set.

func (*EnhanceTransactionResponse) HasType

func (o *EnhanceTransactionResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (EnhanceTransactionResponse) MarshalJSON

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

func (*EnhanceTransactionResponse) SetAmount

func (o *EnhanceTransactionResponse) SetAmount(v float32)

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

func (*EnhanceTransactionResponse) SetAmountNil

func (o *EnhanceTransactionResponse) SetAmountNil()

SetAmountNil sets the value for Amount to be an explicit nil

func (*EnhanceTransactionResponse) SetCategorizedBy

func (o *EnhanceTransactionResponse) SetCategorizedBy(v int32)

SetCategorizedBy gets a reference to the given NullableInt32 and assigns it to the CategorizedBy field.

func (*EnhanceTransactionResponse) SetCategorizedByNil

func (o *EnhanceTransactionResponse) SetCategorizedByNil()

SetCategorizedByNil sets the value for CategorizedBy to be an explicit nil

func (*EnhanceTransactionResponse) SetCategory

func (o *EnhanceTransactionResponse) SetCategory(v string)

SetCategory gets a reference to the given NullableString and assigns it to the Category field.

func (*EnhanceTransactionResponse) SetCategoryGuid

func (o *EnhanceTransactionResponse) SetCategoryGuid(v string)

SetCategoryGuid gets a reference to the given NullableString and assigns it to the CategoryGuid field.

func (*EnhanceTransactionResponse) SetCategoryGuidNil

func (o *EnhanceTransactionResponse) SetCategoryGuidNil()

SetCategoryGuidNil sets the value for CategoryGuid to be an explicit nil

func (*EnhanceTransactionResponse) SetCategoryNil

func (o *EnhanceTransactionResponse) SetCategoryNil()

SetCategoryNil sets the value for Category to be an explicit nil

func (*EnhanceTransactionResponse) SetDescribedBy

func (o *EnhanceTransactionResponse) SetDescribedBy(v int32)

SetDescribedBy gets a reference to the given NullableInt32 and assigns it to the DescribedBy field.

func (*EnhanceTransactionResponse) SetDescribedByNil

func (o *EnhanceTransactionResponse) SetDescribedByNil()

SetDescribedByNil sets the value for DescribedBy to be an explicit nil

func (*EnhanceTransactionResponse) SetDescription

func (o *EnhanceTransactionResponse) SetDescription(v string)

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

func (*EnhanceTransactionResponse) SetDescriptionNil

func (o *EnhanceTransactionResponse) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*EnhanceTransactionResponse) SetExtendedTransactionType

func (o *EnhanceTransactionResponse) SetExtendedTransactionType(v string)

SetExtendedTransactionType gets a reference to the given NullableString and assigns it to the ExtendedTransactionType field.

func (*EnhanceTransactionResponse) SetExtendedTransactionTypeNil

func (o *EnhanceTransactionResponse) SetExtendedTransactionTypeNil()

SetExtendedTransactionTypeNil sets the value for ExtendedTransactionType to be an explicit nil

func (*EnhanceTransactionResponse) SetId

func (o *EnhanceTransactionResponse) SetId(v string)

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

func (*EnhanceTransactionResponse) SetIdNil

func (o *EnhanceTransactionResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*EnhanceTransactionResponse) SetIsBillPay

func (o *EnhanceTransactionResponse) SetIsBillPay(v bool)

SetIsBillPay gets a reference to the given NullableBool and assigns it to the IsBillPay field.

func (*EnhanceTransactionResponse) SetIsBillPayNil

func (o *EnhanceTransactionResponse) SetIsBillPayNil()

SetIsBillPayNil sets the value for IsBillPay to be an explicit nil

func (*EnhanceTransactionResponse) SetIsDirectDeposit

func (o *EnhanceTransactionResponse) SetIsDirectDeposit(v bool)

SetIsDirectDeposit gets a reference to the given NullableBool and assigns it to the IsDirectDeposit field.

func (*EnhanceTransactionResponse) SetIsDirectDepositNil

func (o *EnhanceTransactionResponse) SetIsDirectDepositNil()

SetIsDirectDepositNil sets the value for IsDirectDeposit to be an explicit nil

func (*EnhanceTransactionResponse) SetIsExpense

func (o *EnhanceTransactionResponse) SetIsExpense(v bool)

SetIsExpense gets a reference to the given NullableBool and assigns it to the IsExpense field.

func (*EnhanceTransactionResponse) SetIsExpenseNil

func (o *EnhanceTransactionResponse) SetIsExpenseNil()

SetIsExpenseNil sets the value for IsExpense to be an explicit nil

func (*EnhanceTransactionResponse) SetIsFee

func (o *EnhanceTransactionResponse) SetIsFee(v bool)

SetIsFee gets a reference to the given NullableBool and assigns it to the IsFee field.

func (*EnhanceTransactionResponse) SetIsFeeNil

func (o *EnhanceTransactionResponse) SetIsFeeNil()

SetIsFeeNil sets the value for IsFee to be an explicit nil

func (*EnhanceTransactionResponse) SetIsIncome

func (o *EnhanceTransactionResponse) SetIsIncome(v bool)

SetIsIncome gets a reference to the given NullableBool and assigns it to the IsIncome field.

func (*EnhanceTransactionResponse) SetIsIncomeNil

func (o *EnhanceTransactionResponse) SetIsIncomeNil()

SetIsIncomeNil sets the value for IsIncome to be an explicit nil

func (*EnhanceTransactionResponse) SetIsInternational

func (o *EnhanceTransactionResponse) SetIsInternational(v bool)

SetIsInternational gets a reference to the given NullableBool and assigns it to the IsInternational field.

func (*EnhanceTransactionResponse) SetIsInternationalNil

func (o *EnhanceTransactionResponse) SetIsInternationalNil()

SetIsInternationalNil sets the value for IsInternational to be an explicit nil

func (*EnhanceTransactionResponse) SetIsOverdraftFee

func (o *EnhanceTransactionResponse) SetIsOverdraftFee(v bool)

SetIsOverdraftFee gets a reference to the given NullableBool and assigns it to the IsOverdraftFee field.

func (*EnhanceTransactionResponse) SetIsOverdraftFeeNil

func (o *EnhanceTransactionResponse) SetIsOverdraftFeeNil()

SetIsOverdraftFeeNil sets the value for IsOverdraftFee to be an explicit nil

func (*EnhanceTransactionResponse) SetIsPayrollAdvance

func (o *EnhanceTransactionResponse) SetIsPayrollAdvance(v bool)

SetIsPayrollAdvance gets a reference to the given NullableBool and assigns it to the IsPayrollAdvance field.

func (*EnhanceTransactionResponse) SetIsPayrollAdvanceNil

func (o *EnhanceTransactionResponse) SetIsPayrollAdvanceNil()

SetIsPayrollAdvanceNil sets the value for IsPayrollAdvance to be an explicit nil

func (*EnhanceTransactionResponse) SetIsSubscription

func (o *EnhanceTransactionResponse) SetIsSubscription(v bool)

SetIsSubscription gets a reference to the given NullableBool and assigns it to the IsSubscription field.

func (*EnhanceTransactionResponse) SetIsSubscriptionNil

func (o *EnhanceTransactionResponse) SetIsSubscriptionNil()

SetIsSubscriptionNil sets the value for IsSubscription to be an explicit nil

func (*EnhanceTransactionResponse) SetMemo

func (o *EnhanceTransactionResponse) SetMemo(v string)

SetMemo gets a reference to the given NullableString and assigns it to the Memo field.

func (*EnhanceTransactionResponse) SetMemoNil

func (o *EnhanceTransactionResponse) SetMemoNil()

SetMemoNil sets the value for Memo to be an explicit nil

func (*EnhanceTransactionResponse) SetMerchantCategoryCode

func (o *EnhanceTransactionResponse) SetMerchantCategoryCode(v int32)

SetMerchantCategoryCode gets a reference to the given NullableInt32 and assigns it to the MerchantCategoryCode field.

func (*EnhanceTransactionResponse) SetMerchantCategoryCodeNil

func (o *EnhanceTransactionResponse) SetMerchantCategoryCodeNil()

SetMerchantCategoryCodeNil sets the value for MerchantCategoryCode to be an explicit nil

func (*EnhanceTransactionResponse) SetMerchantGuid

func (o *EnhanceTransactionResponse) SetMerchantGuid(v string)

SetMerchantGuid gets a reference to the given NullableString and assigns it to the MerchantGuid field.

func (*EnhanceTransactionResponse) SetMerchantGuidNil added in v0.4.1

func (o *EnhanceTransactionResponse) SetMerchantGuidNil()

SetMerchantGuidNil sets the value for MerchantGuid to be an explicit nil

func (*EnhanceTransactionResponse) SetMerchantLocationGuid

func (o *EnhanceTransactionResponse) SetMerchantLocationGuid(v string)

SetMerchantLocationGuid gets a reference to the given NullableString and assigns it to the MerchantLocationGuid field.

func (*EnhanceTransactionResponse) SetMerchantLocationGuidNil

func (o *EnhanceTransactionResponse) SetMerchantLocationGuidNil()

SetMerchantLocationGuidNil sets the value for MerchantLocationGuid to be an explicit nil

func (*EnhanceTransactionResponse) SetOriginalDescription

func (o *EnhanceTransactionResponse) SetOriginalDescription(v string)

SetOriginalDescription gets a reference to the given NullableString and assigns it to the OriginalDescription field.

func (*EnhanceTransactionResponse) SetOriginalDescriptionNil

func (o *EnhanceTransactionResponse) SetOriginalDescriptionNil()

SetOriginalDescriptionNil sets the value for OriginalDescription to be an explicit nil

func (*EnhanceTransactionResponse) SetType

func (o *EnhanceTransactionResponse) SetType(v string)

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

func (*EnhanceTransactionResponse) SetTypeNil

func (o *EnhanceTransactionResponse) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (EnhanceTransactionResponse) ToMap added in v0.17.1

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

func (*EnhanceTransactionResponse) UnsetAmount

func (o *EnhanceTransactionResponse) UnsetAmount()

UnsetAmount ensures that no value is present for Amount, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetCategorizedBy

func (o *EnhanceTransactionResponse) UnsetCategorizedBy()

UnsetCategorizedBy ensures that no value is present for CategorizedBy, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetCategory

func (o *EnhanceTransactionResponse) UnsetCategory()

UnsetCategory ensures that no value is present for Category, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetCategoryGuid

func (o *EnhanceTransactionResponse) UnsetCategoryGuid()

UnsetCategoryGuid ensures that no value is present for CategoryGuid, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetDescribedBy

func (o *EnhanceTransactionResponse) UnsetDescribedBy()

UnsetDescribedBy ensures that no value is present for DescribedBy, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetDescription

func (o *EnhanceTransactionResponse) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetExtendedTransactionType

func (o *EnhanceTransactionResponse) UnsetExtendedTransactionType()

UnsetExtendedTransactionType ensures that no value is present for ExtendedTransactionType, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetId

func (o *EnhanceTransactionResponse) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsBillPay

func (o *EnhanceTransactionResponse) UnsetIsBillPay()

UnsetIsBillPay ensures that no value is present for IsBillPay, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsDirectDeposit

func (o *EnhanceTransactionResponse) UnsetIsDirectDeposit()

UnsetIsDirectDeposit ensures that no value is present for IsDirectDeposit, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsExpense

func (o *EnhanceTransactionResponse) UnsetIsExpense()

UnsetIsExpense ensures that no value is present for IsExpense, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsFee

func (o *EnhanceTransactionResponse) UnsetIsFee()

UnsetIsFee ensures that no value is present for IsFee, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsIncome

func (o *EnhanceTransactionResponse) UnsetIsIncome()

UnsetIsIncome ensures that no value is present for IsIncome, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsInternational

func (o *EnhanceTransactionResponse) UnsetIsInternational()

UnsetIsInternational ensures that no value is present for IsInternational, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsOverdraftFee

func (o *EnhanceTransactionResponse) UnsetIsOverdraftFee()

UnsetIsOverdraftFee ensures that no value is present for IsOverdraftFee, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsPayrollAdvance

func (o *EnhanceTransactionResponse) UnsetIsPayrollAdvance()

UnsetIsPayrollAdvance ensures that no value is present for IsPayrollAdvance, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetIsSubscription

func (o *EnhanceTransactionResponse) UnsetIsSubscription()

UnsetIsSubscription ensures that no value is present for IsSubscription, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetMemo

func (o *EnhanceTransactionResponse) UnsetMemo()

UnsetMemo ensures that no value is present for Memo, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetMerchantCategoryCode

func (o *EnhanceTransactionResponse) UnsetMerchantCategoryCode()

UnsetMerchantCategoryCode ensures that no value is present for MerchantCategoryCode, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetMerchantGuid added in v0.4.1

func (o *EnhanceTransactionResponse) UnsetMerchantGuid()

UnsetMerchantGuid ensures that no value is present for MerchantGuid, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetMerchantLocationGuid

func (o *EnhanceTransactionResponse) UnsetMerchantLocationGuid()

UnsetMerchantLocationGuid ensures that no value is present for MerchantLocationGuid, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetOriginalDescription

func (o *EnhanceTransactionResponse) UnsetOriginalDescription()

UnsetOriginalDescription ensures that no value is present for OriginalDescription, not even an explicit nil

func (*EnhanceTransactionResponse) UnsetType

func (o *EnhanceTransactionResponse) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type EnhanceTransactionsRequest

type EnhanceTransactionsRequest struct {
	Amount                  *float32 `json:"amount,omitempty"`
	Description             string   `json:"description"`
	ExtendedTransactionType *string  `json:"extended_transaction_type,omitempty"`
	Id                      string   `json:"id"`
	Memo                    *string  `json:"memo,omitempty"`
	MerchantCategoryCode    *int32   `json:"merchant_category_code,omitempty"`
	Type                    *string  `json:"type,omitempty"`
}

EnhanceTransactionsRequest struct for EnhanceTransactionsRequest

func NewEnhanceTransactionsRequest

func NewEnhanceTransactionsRequest(description string, id string) *EnhanceTransactionsRequest

NewEnhanceTransactionsRequest instantiates a new EnhanceTransactionsRequest 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 NewEnhanceTransactionsRequestWithDefaults

func NewEnhanceTransactionsRequestWithDefaults() *EnhanceTransactionsRequest

NewEnhanceTransactionsRequestWithDefaults instantiates a new EnhanceTransactionsRequest 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 (*EnhanceTransactionsRequest) GetAmount

func (o *EnhanceTransactionsRequest) GetAmount() float32

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

func (*EnhanceTransactionsRequest) GetAmountOk

func (o *EnhanceTransactionsRequest) GetAmountOk() (*float32, 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 (*EnhanceTransactionsRequest) GetDescription

func (o *EnhanceTransactionsRequest) GetDescription() string

GetDescription returns the Description field value

func (*EnhanceTransactionsRequest) GetDescriptionOk

func (o *EnhanceTransactionsRequest) GetDescriptionOk() (*string, bool)

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

func (*EnhanceTransactionsRequest) GetExtendedTransactionType

func (o *EnhanceTransactionsRequest) GetExtendedTransactionType() string

GetExtendedTransactionType returns the ExtendedTransactionType field value if set, zero value otherwise.

func (*EnhanceTransactionsRequest) GetExtendedTransactionTypeOk

func (o *EnhanceTransactionsRequest) GetExtendedTransactionTypeOk() (*string, bool)

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

func (*EnhanceTransactionsRequest) GetId

GetId returns the Id field value

func (*EnhanceTransactionsRequest) GetIdOk

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

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

func (*EnhanceTransactionsRequest) GetMemo

func (o *EnhanceTransactionsRequest) GetMemo() string

GetMemo returns the Memo field value if set, zero value otherwise.

func (*EnhanceTransactionsRequest) GetMemoOk

func (o *EnhanceTransactionsRequest) GetMemoOk() (*string, bool)

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

func (*EnhanceTransactionsRequest) GetMerchantCategoryCode

func (o *EnhanceTransactionsRequest) GetMerchantCategoryCode() int32

GetMerchantCategoryCode returns the MerchantCategoryCode field value if set, zero value otherwise.

func (*EnhanceTransactionsRequest) GetMerchantCategoryCodeOk

func (o *EnhanceTransactionsRequest) GetMerchantCategoryCodeOk() (*int32, bool)

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

func (*EnhanceTransactionsRequest) GetType

func (o *EnhanceTransactionsRequest) GetType() string

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

func (*EnhanceTransactionsRequest) GetTypeOk

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

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

func (*EnhanceTransactionsRequest) HasAmount

func (o *EnhanceTransactionsRequest) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*EnhanceTransactionsRequest) HasExtendedTransactionType

func (o *EnhanceTransactionsRequest) HasExtendedTransactionType() bool

HasExtendedTransactionType returns a boolean if a field has been set.

func (*EnhanceTransactionsRequest) HasMemo

func (o *EnhanceTransactionsRequest) HasMemo() bool

HasMemo returns a boolean if a field has been set.

func (*EnhanceTransactionsRequest) HasMerchantCategoryCode

func (o *EnhanceTransactionsRequest) HasMerchantCategoryCode() bool

HasMerchantCategoryCode returns a boolean if a field has been set.

func (*EnhanceTransactionsRequest) HasType

func (o *EnhanceTransactionsRequest) HasType() bool

HasType returns a boolean if a field has been set.

func (EnhanceTransactionsRequest) MarshalJSON

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

func (*EnhanceTransactionsRequest) SetAmount

func (o *EnhanceTransactionsRequest) SetAmount(v float32)

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

func (*EnhanceTransactionsRequest) SetDescription

func (o *EnhanceTransactionsRequest) SetDescription(v string)

SetDescription sets field value

func (*EnhanceTransactionsRequest) SetExtendedTransactionType

func (o *EnhanceTransactionsRequest) SetExtendedTransactionType(v string)

SetExtendedTransactionType gets a reference to the given string and assigns it to the ExtendedTransactionType field.

func (*EnhanceTransactionsRequest) SetId

func (o *EnhanceTransactionsRequest) SetId(v string)

SetId sets field value

func (*EnhanceTransactionsRequest) SetMemo

func (o *EnhanceTransactionsRequest) SetMemo(v string)

SetMemo gets a reference to the given string and assigns it to the Memo field.

func (*EnhanceTransactionsRequest) SetMerchantCategoryCode

func (o *EnhanceTransactionsRequest) SetMerchantCategoryCode(v int32)

SetMerchantCategoryCode gets a reference to the given int32 and assigns it to the MerchantCategoryCode field.

func (*EnhanceTransactionsRequest) SetType

func (o *EnhanceTransactionsRequest) SetType(v string)

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

func (EnhanceTransactionsRequest) ToMap added in v0.17.1

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

type EnhanceTransactionsRequestBody

type EnhanceTransactionsRequestBody struct {
	Transactions []EnhanceTransactionsRequest `json:"transactions,omitempty"`
}

EnhanceTransactionsRequestBody struct for EnhanceTransactionsRequestBody

func NewEnhanceTransactionsRequestBody

func NewEnhanceTransactionsRequestBody() *EnhanceTransactionsRequestBody

NewEnhanceTransactionsRequestBody instantiates a new EnhanceTransactionsRequestBody 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 NewEnhanceTransactionsRequestBodyWithDefaults

func NewEnhanceTransactionsRequestBodyWithDefaults() *EnhanceTransactionsRequestBody

NewEnhanceTransactionsRequestBodyWithDefaults instantiates a new EnhanceTransactionsRequestBody 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 (*EnhanceTransactionsRequestBody) GetTransactions

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

func (*EnhanceTransactionsRequestBody) 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 (*EnhanceTransactionsRequestBody) HasTransactions

func (o *EnhanceTransactionsRequestBody) HasTransactions() bool

HasTransactions returns a boolean if a field has been set.

func (EnhanceTransactionsRequestBody) MarshalJSON

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

func (*EnhanceTransactionsRequestBody) SetTransactions

SetTransactions gets a reference to the given []EnhanceTransactionsRequest and assigns it to the Transactions field.

func (EnhanceTransactionsRequestBody) ToMap added in v0.17.1

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

type EnhanceTransactionsResponseBody

type EnhanceTransactionsResponseBody struct {
	Transactions []EnhanceTransactionResponse `json:"transactions,omitempty"`
}

EnhanceTransactionsResponseBody struct for EnhanceTransactionsResponseBody

func NewEnhanceTransactionsResponseBody

func NewEnhanceTransactionsResponseBody() *EnhanceTransactionsResponseBody

NewEnhanceTransactionsResponseBody instantiates a new EnhanceTransactionsResponseBody 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 NewEnhanceTransactionsResponseBodyWithDefaults

func NewEnhanceTransactionsResponseBodyWithDefaults() *EnhanceTransactionsResponseBody

NewEnhanceTransactionsResponseBodyWithDefaults instantiates a new EnhanceTransactionsResponseBody 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 (*EnhanceTransactionsResponseBody) GetTransactions

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

func (*EnhanceTransactionsResponseBody) 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 (*EnhanceTransactionsResponseBody) HasTransactions

func (o *EnhanceTransactionsResponseBody) HasTransactions() bool

HasTransactions returns a boolean if a field has been set.

func (EnhanceTransactionsResponseBody) MarshalJSON

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

func (*EnhanceTransactionsResponseBody) SetTransactions

SetTransactions gets a reference to the given []EnhanceTransactionResponse and assigns it to the Transactions field.

func (EnhanceTransactionsResponseBody) ToMap added in v0.17.1

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

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type HoldingResponse

type HoldingResponse struct {
	AccountGuid   NullableString  `json:"account_guid,omitempty"`
	CostBasis     NullableFloat32 `json:"cost_basis,omitempty"`
	CreatedAt     NullableString  `json:"created_at,omitempty"`
	CurrencyCode  NullableString  `json:"currency_code,omitempty"`
	Cusip         NullableString  `json:"cusip,omitempty"`
	DailyChange   NullableFloat32 `json:"daily_change,omitempty"`
	Description   NullableString  `json:"description,omitempty"`
	Guid          NullableString  `json:"guid,omitempty"`
	HoldingType   NullableString  `json:"holding_type,omitempty"`
	HoldingTypeId NullableInt32   `json:"holding_type_id,omitempty"`
	Id            NullableString  `json:"id,omitempty"`
	MarketValue   NullableFloat32 `json:"market_value,omitempty"`
	MemberGuid    NullableString  `json:"member_guid,omitempty"`
	Metadata      NullableString  `json:"metadata,omitempty"`
	PurchasePrice NullableFloat32 `json:"purchase_price,omitempty"`
	Shares        NullableFloat32 `json:"shares,omitempty"`
	Symbol        NullableString  `json:"symbol,omitempty"`
	UpdatedAt     NullableString  `json:"updated_at,omitempty"`
	UserGuid      NullableString  `json:"user_guid,omitempty"`
}

HoldingResponse struct for HoldingResponse

func NewHoldingResponse

func NewHoldingResponse() *HoldingResponse

NewHoldingResponse instantiates a new HoldingResponse 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 NewHoldingResponseWithDefaults

func NewHoldingResponseWithDefaults() *HoldingResponse

NewHoldingResponseWithDefaults instantiates a new HoldingResponse 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 (*HoldingResponse) GetAccountGuid

func (o *HoldingResponse) GetAccountGuid() string

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

func (*HoldingResponse) GetAccountGuidOk

func (o *HoldingResponse) GetAccountGuidOk() (*string, bool)

GetAccountGuidOk returns a tuple with the AccountGuid 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 (*HoldingResponse) GetCostBasis

func (o *HoldingResponse) GetCostBasis() float32

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

func (*HoldingResponse) GetCostBasisOk

func (o *HoldingResponse) GetCostBasisOk() (*float32, bool)

GetCostBasisOk returns a tuple with the CostBasis 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 (*HoldingResponse) GetCreatedAt

func (o *HoldingResponse) GetCreatedAt() string

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

func (*HoldingResponse) GetCreatedAtOk

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

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

func (*HoldingResponse) GetCurrencyCode

func (o *HoldingResponse) GetCurrencyCode() string

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

func (*HoldingResponse) GetCurrencyCodeOk

func (o *HoldingResponse) GetCurrencyCodeOk() (*string, bool)

GetCurrencyCodeOk returns a tuple with the CurrencyCode 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 (*HoldingResponse) GetCusip

func (o *HoldingResponse) GetCusip() string

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

func (*HoldingResponse) GetCusipOk

func (o *HoldingResponse) GetCusipOk() (*string, bool)

GetCusipOk returns a tuple with the Cusip 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 (*HoldingResponse) GetDailyChange

func (o *HoldingResponse) GetDailyChange() float32

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

func (*HoldingResponse) GetDailyChangeOk

func (o *HoldingResponse) GetDailyChangeOk() (*float32, bool)

GetDailyChangeOk returns a tuple with the DailyChange 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 (*HoldingResponse) GetDescription

func (o *HoldingResponse) GetDescription() string

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

func (*HoldingResponse) GetDescriptionOk

func (o *HoldingResponse) GetDescriptionOk() (*string, bool)

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

func (*HoldingResponse) GetGuid

func (o *HoldingResponse) GetGuid() string

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

func (*HoldingResponse) GetGuidOk

func (o *HoldingResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*HoldingResponse) GetHoldingType

func (o *HoldingResponse) GetHoldingType() string

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

func (*HoldingResponse) GetHoldingTypeId added in v0.8.2

func (o *HoldingResponse) GetHoldingTypeId() int32

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

func (*HoldingResponse) GetHoldingTypeIdOk added in v0.8.2

func (o *HoldingResponse) GetHoldingTypeIdOk() (*int32, bool)

GetHoldingTypeIdOk returns a tuple with the HoldingTypeId 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 (*HoldingResponse) GetHoldingTypeOk

func (o *HoldingResponse) GetHoldingTypeOk() (*string, bool)

GetHoldingTypeOk returns a tuple with the HoldingType 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 (*HoldingResponse) GetId

func (o *HoldingResponse) GetId() string

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

func (*HoldingResponse) GetIdOk

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

func (*HoldingResponse) GetMarketValue

func (o *HoldingResponse) GetMarketValue() float32

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

func (*HoldingResponse) GetMarketValueOk

func (o *HoldingResponse) GetMarketValueOk() (*float32, bool)

GetMarketValueOk returns a tuple with the MarketValue 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 (*HoldingResponse) GetMemberGuid

func (o *HoldingResponse) GetMemberGuid() string

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

func (*HoldingResponse) GetMemberGuidOk

func (o *HoldingResponse) GetMemberGuidOk() (*string, bool)

GetMemberGuidOk returns a tuple with the MemberGuid 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 (*HoldingResponse) GetMetadata

func (o *HoldingResponse) GetMetadata() string

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

func (*HoldingResponse) GetMetadataOk

func (o *HoldingResponse) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata 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 (*HoldingResponse) GetPurchasePrice

func (o *HoldingResponse) GetPurchasePrice() float32

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

func (*HoldingResponse) GetPurchasePriceOk

func (o *HoldingResponse) GetPurchasePriceOk() (*float32, bool)

GetPurchasePriceOk returns a tuple with the PurchasePrice 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 (*HoldingResponse) GetShares

func (o *HoldingResponse) GetShares() float32

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

func (*HoldingResponse) GetSharesOk

func (o *HoldingResponse) GetSharesOk() (*float32, bool)

GetSharesOk returns a tuple with the Shares 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 (*HoldingResponse) GetSymbol

func (o *HoldingResponse) GetSymbol() string

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

func (*HoldingResponse) GetSymbolOk

func (o *HoldingResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol 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 (*HoldingResponse) GetUpdatedAt

func (o *HoldingResponse) GetUpdatedAt() string

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

func (*HoldingResponse) GetUpdatedAtOk

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

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

func (*HoldingResponse) GetUserGuid

func (o *HoldingResponse) GetUserGuid() string

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

func (*HoldingResponse) GetUserGuidOk

func (o *HoldingResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*HoldingResponse) HasAccountGuid

func (o *HoldingResponse) HasAccountGuid() bool

HasAccountGuid returns a boolean if a field has been set.

func (*HoldingResponse) HasCostBasis

func (o *HoldingResponse) HasCostBasis() bool

HasCostBasis returns a boolean if a field has been set.

func (*HoldingResponse) HasCreatedAt

func (o *HoldingResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*HoldingResponse) HasCurrencyCode

func (o *HoldingResponse) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*HoldingResponse) HasCusip

func (o *HoldingResponse) HasCusip() bool

HasCusip returns a boolean if a field has been set.

func (*HoldingResponse) HasDailyChange

func (o *HoldingResponse) HasDailyChange() bool

HasDailyChange returns a boolean if a field has been set.

func (*HoldingResponse) HasDescription

func (o *HoldingResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*HoldingResponse) HasGuid

func (o *HoldingResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*HoldingResponse) HasHoldingType

func (o *HoldingResponse) HasHoldingType() bool

HasHoldingType returns a boolean if a field has been set.

func (*HoldingResponse) HasHoldingTypeId added in v0.8.2

func (o *HoldingResponse) HasHoldingTypeId() bool

HasHoldingTypeId returns a boolean if a field has been set.

func (*HoldingResponse) HasId

func (o *HoldingResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*HoldingResponse) HasMarketValue

func (o *HoldingResponse) HasMarketValue() bool

HasMarketValue returns a boolean if a field has been set.

func (*HoldingResponse) HasMemberGuid

func (o *HoldingResponse) HasMemberGuid() bool

HasMemberGuid returns a boolean if a field has been set.

func (*HoldingResponse) HasMetadata

func (o *HoldingResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*HoldingResponse) HasPurchasePrice

func (o *HoldingResponse) HasPurchasePrice() bool

HasPurchasePrice returns a boolean if a field has been set.

func (*HoldingResponse) HasShares

func (o *HoldingResponse) HasShares() bool

HasShares returns a boolean if a field has been set.

func (*HoldingResponse) HasSymbol

func (o *HoldingResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*HoldingResponse) HasUpdatedAt

func (o *HoldingResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*HoldingResponse) HasUserGuid

func (o *HoldingResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (HoldingResponse) MarshalJSON

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

func (*HoldingResponse) SetAccountGuid

func (o *HoldingResponse) SetAccountGuid(v string)

SetAccountGuid gets a reference to the given NullableString and assigns it to the AccountGuid field.

func (*HoldingResponse) SetAccountGuidNil added in v0.4.1

func (o *HoldingResponse) SetAccountGuidNil()

SetAccountGuidNil sets the value for AccountGuid to be an explicit nil

func (*HoldingResponse) SetCostBasis

func (o *HoldingResponse) SetCostBasis(v float32)

SetCostBasis gets a reference to the given NullableFloat32 and assigns it to the CostBasis field.

func (*HoldingResponse) SetCostBasisNil

func (o *HoldingResponse) SetCostBasisNil()

SetCostBasisNil sets the value for CostBasis to be an explicit nil

func (*HoldingResponse) SetCreatedAt

func (o *HoldingResponse) SetCreatedAt(v string)

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

func (*HoldingResponse) SetCreatedAtNil

func (o *HoldingResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*HoldingResponse) SetCurrencyCode

func (o *HoldingResponse) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given NullableString and assigns it to the CurrencyCode field.

func (*HoldingResponse) SetCurrencyCodeNil

func (o *HoldingResponse) SetCurrencyCodeNil()

SetCurrencyCodeNil sets the value for CurrencyCode to be an explicit nil

func (*HoldingResponse) SetCusip

func (o *HoldingResponse) SetCusip(v string)

SetCusip gets a reference to the given NullableString and assigns it to the Cusip field.

func (*HoldingResponse) SetCusipNil

func (o *HoldingResponse) SetCusipNil()

SetCusipNil sets the value for Cusip to be an explicit nil

func (*HoldingResponse) SetDailyChange

func (o *HoldingResponse) SetDailyChange(v float32)

SetDailyChange gets a reference to the given NullableFloat32 and assigns it to the DailyChange field.

func (*HoldingResponse) SetDailyChangeNil

func (o *HoldingResponse) SetDailyChangeNil()

SetDailyChangeNil sets the value for DailyChange to be an explicit nil

func (*HoldingResponse) SetDescription

func (o *HoldingResponse) SetDescription(v string)

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

func (*HoldingResponse) SetDescriptionNil

func (o *HoldingResponse) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*HoldingResponse) SetGuid

func (o *HoldingResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*HoldingResponse) SetGuidNil added in v0.4.1

func (o *HoldingResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*HoldingResponse) SetHoldingType

func (o *HoldingResponse) SetHoldingType(v string)

SetHoldingType gets a reference to the given NullableString and assigns it to the HoldingType field.

func (*HoldingResponse) SetHoldingTypeId added in v0.8.2

func (o *HoldingResponse) SetHoldingTypeId(v int32)

SetHoldingTypeId gets a reference to the given NullableInt32 and assigns it to the HoldingTypeId field.

func (*HoldingResponse) SetHoldingTypeIdNil added in v0.8.2

func (o *HoldingResponse) SetHoldingTypeIdNil()

SetHoldingTypeIdNil sets the value for HoldingTypeId to be an explicit nil

func (*HoldingResponse) SetHoldingTypeNil

func (o *HoldingResponse) SetHoldingTypeNil()

SetHoldingTypeNil sets the value for HoldingType to be an explicit nil

func (*HoldingResponse) SetId

func (o *HoldingResponse) SetId(v string)

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

func (*HoldingResponse) SetIdNil

func (o *HoldingResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*HoldingResponse) SetMarketValue

func (o *HoldingResponse) SetMarketValue(v float32)

SetMarketValue gets a reference to the given NullableFloat32 and assigns it to the MarketValue field.

func (*HoldingResponse) SetMarketValueNil

func (o *HoldingResponse) SetMarketValueNil()

SetMarketValueNil sets the value for MarketValue to be an explicit nil

func (*HoldingResponse) SetMemberGuid

func (o *HoldingResponse) SetMemberGuid(v string)

SetMemberGuid gets a reference to the given NullableString and assigns it to the MemberGuid field.

func (*HoldingResponse) SetMemberGuidNil added in v0.4.1

func (o *HoldingResponse) SetMemberGuidNil()

SetMemberGuidNil sets the value for MemberGuid to be an explicit nil

func (*HoldingResponse) SetMetadata

func (o *HoldingResponse) SetMetadata(v string)

SetMetadata gets a reference to the given NullableString and assigns it to the Metadata field.

func (*HoldingResponse) SetMetadataNil

func (o *HoldingResponse) SetMetadataNil()

SetMetadataNil sets the value for Metadata to be an explicit nil

func (*HoldingResponse) SetPurchasePrice

func (o *HoldingResponse) SetPurchasePrice(v float32)

SetPurchasePrice gets a reference to the given NullableFloat32 and assigns it to the PurchasePrice field.

func (*HoldingResponse) SetPurchasePriceNil

func (o *HoldingResponse) SetPurchasePriceNil()

SetPurchasePriceNil sets the value for PurchasePrice to be an explicit nil

func (*HoldingResponse) SetShares

func (o *HoldingResponse) SetShares(v float32)

SetShares gets a reference to the given NullableFloat32 and assigns it to the Shares field.

func (*HoldingResponse) SetSharesNil

func (o *HoldingResponse) SetSharesNil()

SetSharesNil sets the value for Shares to be an explicit nil

func (*HoldingResponse) SetSymbol

func (o *HoldingResponse) SetSymbol(v string)

SetSymbol gets a reference to the given NullableString and assigns it to the Symbol field.

func (*HoldingResponse) SetSymbolNil

func (o *HoldingResponse) SetSymbolNil()

SetSymbolNil sets the value for Symbol to be an explicit nil

func (*HoldingResponse) SetUpdatedAt

func (o *HoldingResponse) SetUpdatedAt(v string)

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

func (*HoldingResponse) SetUpdatedAtNil

func (o *HoldingResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*HoldingResponse) SetUserGuid

func (o *HoldingResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*HoldingResponse) SetUserGuidNil added in v0.4.1

func (o *HoldingResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (HoldingResponse) ToMap added in v0.17.1

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

func (*HoldingResponse) UnsetAccountGuid added in v0.4.1

func (o *HoldingResponse) UnsetAccountGuid()

UnsetAccountGuid ensures that no value is present for AccountGuid, not even an explicit nil

func (*HoldingResponse) UnsetCostBasis

func (o *HoldingResponse) UnsetCostBasis()

UnsetCostBasis ensures that no value is present for CostBasis, not even an explicit nil

func (*HoldingResponse) UnsetCreatedAt

func (o *HoldingResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*HoldingResponse) UnsetCurrencyCode

func (o *HoldingResponse) UnsetCurrencyCode()

UnsetCurrencyCode ensures that no value is present for CurrencyCode, not even an explicit nil

func (*HoldingResponse) UnsetCusip

func (o *HoldingResponse) UnsetCusip()

UnsetCusip ensures that no value is present for Cusip, not even an explicit nil

func (*HoldingResponse) UnsetDailyChange

func (o *HoldingResponse) UnsetDailyChange()

UnsetDailyChange ensures that no value is present for DailyChange, not even an explicit nil

func (*HoldingResponse) UnsetDescription

func (o *HoldingResponse) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*HoldingResponse) UnsetGuid added in v0.4.1

func (o *HoldingResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*HoldingResponse) UnsetHoldingType

func (o *HoldingResponse) UnsetHoldingType()

UnsetHoldingType ensures that no value is present for HoldingType, not even an explicit nil

func (*HoldingResponse) UnsetHoldingTypeId added in v0.8.2

func (o *HoldingResponse) UnsetHoldingTypeId()

UnsetHoldingTypeId ensures that no value is present for HoldingTypeId, not even an explicit nil

func (*HoldingResponse) UnsetId

func (o *HoldingResponse) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*HoldingResponse) UnsetMarketValue

func (o *HoldingResponse) UnsetMarketValue()

UnsetMarketValue ensures that no value is present for MarketValue, not even an explicit nil

func (*HoldingResponse) UnsetMemberGuid added in v0.4.1

func (o *HoldingResponse) UnsetMemberGuid()

UnsetMemberGuid ensures that no value is present for MemberGuid, not even an explicit nil

func (*HoldingResponse) UnsetMetadata

func (o *HoldingResponse) UnsetMetadata()

UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil

func (*HoldingResponse) UnsetPurchasePrice

func (o *HoldingResponse) UnsetPurchasePrice()

UnsetPurchasePrice ensures that no value is present for PurchasePrice, not even an explicit nil

func (*HoldingResponse) UnsetShares

func (o *HoldingResponse) UnsetShares()

UnsetShares ensures that no value is present for Shares, not even an explicit nil

func (*HoldingResponse) UnsetSymbol

func (o *HoldingResponse) UnsetSymbol()

UnsetSymbol ensures that no value is present for Symbol, not even an explicit nil

func (*HoldingResponse) UnsetUpdatedAt

func (o *HoldingResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*HoldingResponse) UnsetUserGuid added in v0.4.1

func (o *HoldingResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type HoldingResponseBody

type HoldingResponseBody struct {
	Holding *HoldingResponse `json:"holding,omitempty"`
}

HoldingResponseBody struct for HoldingResponseBody

func NewHoldingResponseBody

func NewHoldingResponseBody() *HoldingResponseBody

NewHoldingResponseBody instantiates a new HoldingResponseBody 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 NewHoldingResponseBodyWithDefaults

func NewHoldingResponseBodyWithDefaults() *HoldingResponseBody

NewHoldingResponseBodyWithDefaults instantiates a new HoldingResponseBody 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 (*HoldingResponseBody) GetHolding

func (o *HoldingResponseBody) GetHolding() HoldingResponse

GetHolding returns the Holding field value if set, zero value otherwise.

func (*HoldingResponseBody) GetHoldingOk

func (o *HoldingResponseBody) GetHoldingOk() (*HoldingResponse, bool)

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

func (*HoldingResponseBody) HasHolding

func (o *HoldingResponseBody) HasHolding() bool

HasHolding returns a boolean if a field has been set.

func (HoldingResponseBody) MarshalJSON

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

func (*HoldingResponseBody) SetHolding

func (o *HoldingResponseBody) SetHolding(v HoldingResponse)

SetHolding gets a reference to the given HoldingResponse and assigns it to the Holding field.

func (HoldingResponseBody) ToMap added in v0.17.1

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

type HoldingsResponseBody

type HoldingsResponseBody struct {
	Holdings   []HoldingResponse   `json:"holdings,omitempty"`
	Pagination *PaginationResponse `json:"pagination,omitempty"`
}

HoldingsResponseBody struct for HoldingsResponseBody

func NewHoldingsResponseBody

func NewHoldingsResponseBody() *HoldingsResponseBody

NewHoldingsResponseBody instantiates a new HoldingsResponseBody 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 NewHoldingsResponseBodyWithDefaults

func NewHoldingsResponseBodyWithDefaults() *HoldingsResponseBody

NewHoldingsResponseBodyWithDefaults instantiates a new HoldingsResponseBody 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 (*HoldingsResponseBody) GetHoldings

func (o *HoldingsResponseBody) GetHoldings() []HoldingResponse

GetHoldings returns the Holdings field value if set, zero value otherwise.

func (*HoldingsResponseBody) GetHoldingsOk

func (o *HoldingsResponseBody) GetHoldingsOk() ([]HoldingResponse, bool)

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

func (*HoldingsResponseBody) GetPagination

func (o *HoldingsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*HoldingsResponseBody) GetPaginationOk

func (o *HoldingsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*HoldingsResponseBody) HasHoldings

func (o *HoldingsResponseBody) HasHoldings() bool

HasHoldings returns a boolean if a field has been set.

func (*HoldingsResponseBody) HasPagination

func (o *HoldingsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (HoldingsResponseBody) MarshalJSON

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

func (*HoldingsResponseBody) SetHoldings

func (o *HoldingsResponseBody) SetHoldings(v []HoldingResponse)

SetHoldings gets a reference to the given []HoldingResponse and assigns it to the Holdings field.

func (*HoldingsResponseBody) SetPagination

func (o *HoldingsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (HoldingsResponseBody) ToMap added in v0.17.1

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

type ImageOptionResponse

type ImageOptionResponse struct {
	DataUri NullableString `json:"data_uri,omitempty"`
	Label   NullableString `json:"label,omitempty"`
	Value   NullableString `json:"value,omitempty"`
}

ImageOptionResponse struct for ImageOptionResponse

func NewImageOptionResponse

func NewImageOptionResponse() *ImageOptionResponse

NewImageOptionResponse instantiates a new ImageOptionResponse 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 NewImageOptionResponseWithDefaults

func NewImageOptionResponseWithDefaults() *ImageOptionResponse

NewImageOptionResponseWithDefaults instantiates a new ImageOptionResponse 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 (*ImageOptionResponse) GetDataUri

func (o *ImageOptionResponse) GetDataUri() string

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

func (*ImageOptionResponse) GetDataUriOk

func (o *ImageOptionResponse) GetDataUriOk() (*string, bool)

GetDataUriOk returns a tuple with the DataUri 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 (*ImageOptionResponse) GetLabel

func (o *ImageOptionResponse) GetLabel() string

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

func (*ImageOptionResponse) GetLabelOk

func (o *ImageOptionResponse) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label 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 (*ImageOptionResponse) GetValue

func (o *ImageOptionResponse) GetValue() string

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

func (*ImageOptionResponse) GetValueOk

func (o *ImageOptionResponse) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value 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 (*ImageOptionResponse) HasDataUri

func (o *ImageOptionResponse) HasDataUri() bool

HasDataUri returns a boolean if a field has been set.

func (*ImageOptionResponse) HasLabel

func (o *ImageOptionResponse) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ImageOptionResponse) HasValue

func (o *ImageOptionResponse) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ImageOptionResponse) MarshalJSON

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

func (*ImageOptionResponse) SetDataUri

func (o *ImageOptionResponse) SetDataUri(v string)

SetDataUri gets a reference to the given NullableString and assigns it to the DataUri field.

func (*ImageOptionResponse) SetDataUriNil

func (o *ImageOptionResponse) SetDataUriNil()

SetDataUriNil sets the value for DataUri to be an explicit nil

func (*ImageOptionResponse) SetLabel

func (o *ImageOptionResponse) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*ImageOptionResponse) SetLabelNil

func (o *ImageOptionResponse) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*ImageOptionResponse) SetValue

func (o *ImageOptionResponse) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*ImageOptionResponse) SetValueNil

func (o *ImageOptionResponse) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (ImageOptionResponse) ToMap added in v0.17.1

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

func (*ImageOptionResponse) UnsetDataUri

func (o *ImageOptionResponse) UnsetDataUri()

UnsetDataUri ensures that no value is present for DataUri, not even an explicit nil

func (*ImageOptionResponse) UnsetLabel

func (o *ImageOptionResponse) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

func (*ImageOptionResponse) UnsetValue

func (o *ImageOptionResponse) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type InstitutionResponse

type InstitutionResponse struct {
	Code                          NullableString `json:"code,omitempty"`
	ForgotPasswordUrl             NullableString `json:"forgot_password_url,omitempty"`
	ForgotUsernameUrl             NullableString `json:"forgot_username_url,omitempty"`
	InstructionalText             NullableString `json:"instructional_text,omitempty"`
	MediumLogoUrl                 NullableString `json:"medium_logo_url,omitempty"`
	Name                          NullableString `json:"name,omitempty"`
	SmallLogoUrl                  NullableString `json:"small_logo_url,omitempty"`
	SupportsAccountIdentification NullableBool   `json:"supports_account_identification,omitempty"`
	SupportsAccountStatement      NullableBool   `json:"supports_account_statement,omitempty"`
	SupportsAccountVerification   NullableBool   `json:"supports_account_verification,omitempty"`
	SupportsOauth                 NullableBool   `json:"supports_oauth,omitempty"`
	SupportsTransactionHistory    NullableBool   `json:"supports_transaction_history,omitempty"`
	TroubleSigningInUrl           NullableString `json:"trouble_signing_in_url,omitempty"`
	Url                           NullableString `json:"url,omitempty"`
}

InstitutionResponse struct for InstitutionResponse

func NewInstitutionResponse

func NewInstitutionResponse() *InstitutionResponse

NewInstitutionResponse instantiates a new InstitutionResponse 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 NewInstitutionResponseWithDefaults

func NewInstitutionResponseWithDefaults() *InstitutionResponse

NewInstitutionResponseWithDefaults instantiates a new InstitutionResponse 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 (*InstitutionResponse) GetCode

func (o *InstitutionResponse) GetCode() string

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

func (*InstitutionResponse) GetCodeOk

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

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

func (*InstitutionResponse) GetForgotPasswordUrl added in v0.12.0

func (o *InstitutionResponse) GetForgotPasswordUrl() string

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

func (*InstitutionResponse) GetForgotPasswordUrlOk added in v0.12.0

func (o *InstitutionResponse) GetForgotPasswordUrlOk() (*string, bool)

GetForgotPasswordUrlOk returns a tuple with the ForgotPasswordUrl 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 (*InstitutionResponse) GetForgotUsernameUrl added in v0.12.0

func (o *InstitutionResponse) GetForgotUsernameUrl() string

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

func (*InstitutionResponse) GetForgotUsernameUrlOk added in v0.12.0

func (o *InstitutionResponse) GetForgotUsernameUrlOk() (*string, bool)

GetForgotUsernameUrlOk returns a tuple with the ForgotUsernameUrl 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 (*InstitutionResponse) GetInstructionalText added in v0.8.1

func (o *InstitutionResponse) GetInstructionalText() string

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

func (*InstitutionResponse) GetInstructionalTextOk added in v0.8.1

func (o *InstitutionResponse) GetInstructionalTextOk() (*string, bool)

GetInstructionalTextOk returns a tuple with the InstructionalText 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 (*InstitutionResponse) GetMediumLogoUrl

func (o *InstitutionResponse) GetMediumLogoUrl() string

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

func (*InstitutionResponse) GetMediumLogoUrlOk

func (o *InstitutionResponse) GetMediumLogoUrlOk() (*string, bool)

GetMediumLogoUrlOk returns a tuple with the MediumLogoUrl 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 (*InstitutionResponse) GetName

func (o *InstitutionResponse) GetName() string

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

func (*InstitutionResponse) GetNameOk

func (o *InstitutionResponse) 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 (*InstitutionResponse) GetSmallLogoUrl

func (o *InstitutionResponse) GetSmallLogoUrl() string

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

func (*InstitutionResponse) GetSmallLogoUrlOk

func (o *InstitutionResponse) GetSmallLogoUrlOk() (*string, bool)

GetSmallLogoUrlOk returns a tuple with the SmallLogoUrl 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 (*InstitutionResponse) GetSupportsAccountIdentification

func (o *InstitutionResponse) GetSupportsAccountIdentification() bool

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

func (*InstitutionResponse) GetSupportsAccountIdentificationOk

func (o *InstitutionResponse) GetSupportsAccountIdentificationOk() (*bool, bool)

GetSupportsAccountIdentificationOk returns a tuple with the SupportsAccountIdentification 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 (*InstitutionResponse) GetSupportsAccountStatement

func (o *InstitutionResponse) GetSupportsAccountStatement() bool

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

func (*InstitutionResponse) GetSupportsAccountStatementOk

func (o *InstitutionResponse) GetSupportsAccountStatementOk() (*bool, bool)

GetSupportsAccountStatementOk returns a tuple with the SupportsAccountStatement 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 (*InstitutionResponse) GetSupportsAccountVerification

func (o *InstitutionResponse) GetSupportsAccountVerification() bool

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

func (*InstitutionResponse) GetSupportsAccountVerificationOk

func (o *InstitutionResponse) GetSupportsAccountVerificationOk() (*bool, bool)

GetSupportsAccountVerificationOk returns a tuple with the SupportsAccountVerification 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 (*InstitutionResponse) GetSupportsOauth

func (o *InstitutionResponse) GetSupportsOauth() bool

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

func (*InstitutionResponse) GetSupportsOauthOk

func (o *InstitutionResponse) GetSupportsOauthOk() (*bool, bool)

GetSupportsOauthOk returns a tuple with the SupportsOauth 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 (*InstitutionResponse) GetSupportsTransactionHistory

func (o *InstitutionResponse) GetSupportsTransactionHistory() bool

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

func (*InstitutionResponse) GetSupportsTransactionHistoryOk

func (o *InstitutionResponse) GetSupportsTransactionHistoryOk() (*bool, bool)

GetSupportsTransactionHistoryOk returns a tuple with the SupportsTransactionHistory 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 (*InstitutionResponse) GetTroubleSigningInUrl added in v0.12.0

func (o *InstitutionResponse) GetTroubleSigningInUrl() string

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

func (*InstitutionResponse) GetTroubleSigningInUrlOk added in v0.12.0

func (o *InstitutionResponse) GetTroubleSigningInUrlOk() (*string, bool)

GetTroubleSigningInUrlOk returns a tuple with the TroubleSigningInUrl 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 (*InstitutionResponse) GetUrl

func (o *InstitutionResponse) GetUrl() string

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

func (*InstitutionResponse) GetUrlOk

func (o *InstitutionResponse) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url 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 (*InstitutionResponse) HasCode

func (o *InstitutionResponse) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*InstitutionResponse) HasForgotPasswordUrl added in v0.12.0

func (o *InstitutionResponse) HasForgotPasswordUrl() bool

HasForgotPasswordUrl returns a boolean if a field has been set.

func (*InstitutionResponse) HasForgotUsernameUrl added in v0.12.0

func (o *InstitutionResponse) HasForgotUsernameUrl() bool

HasForgotUsernameUrl returns a boolean if a field has been set.

func (*InstitutionResponse) HasInstructionalText added in v0.8.1

func (o *InstitutionResponse) HasInstructionalText() bool

HasInstructionalText returns a boolean if a field has been set.

func (*InstitutionResponse) HasMediumLogoUrl

func (o *InstitutionResponse) HasMediumLogoUrl() bool

HasMediumLogoUrl returns a boolean if a field has been set.

func (*InstitutionResponse) HasName

func (o *InstitutionResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*InstitutionResponse) HasSmallLogoUrl

func (o *InstitutionResponse) HasSmallLogoUrl() bool

HasSmallLogoUrl returns a boolean if a field has been set.

func (*InstitutionResponse) HasSupportsAccountIdentification

func (o *InstitutionResponse) HasSupportsAccountIdentification() bool

HasSupportsAccountIdentification returns a boolean if a field has been set.

func (*InstitutionResponse) HasSupportsAccountStatement

func (o *InstitutionResponse) HasSupportsAccountStatement() bool

HasSupportsAccountStatement returns a boolean if a field has been set.

func (*InstitutionResponse) HasSupportsAccountVerification

func (o *InstitutionResponse) HasSupportsAccountVerification() bool

HasSupportsAccountVerification returns a boolean if a field has been set.

func (*InstitutionResponse) HasSupportsOauth

func (o *InstitutionResponse) HasSupportsOauth() bool

HasSupportsOauth returns a boolean if a field has been set.

func (*InstitutionResponse) HasSupportsTransactionHistory

func (o *InstitutionResponse) HasSupportsTransactionHistory() bool

HasSupportsTransactionHistory returns a boolean if a field has been set.

func (*InstitutionResponse) HasTroubleSigningInUrl added in v0.12.0

func (o *InstitutionResponse) HasTroubleSigningInUrl() bool

HasTroubleSigningInUrl returns a boolean if a field has been set.

func (*InstitutionResponse) HasUrl

func (o *InstitutionResponse) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (InstitutionResponse) MarshalJSON

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

func (*InstitutionResponse) SetCode

func (o *InstitutionResponse) SetCode(v string)

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

func (*InstitutionResponse) SetCodeNil

func (o *InstitutionResponse) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*InstitutionResponse) SetForgotPasswordUrl added in v0.12.0

func (o *InstitutionResponse) SetForgotPasswordUrl(v string)

SetForgotPasswordUrl gets a reference to the given NullableString and assigns it to the ForgotPasswordUrl field.

func (*InstitutionResponse) SetForgotPasswordUrlNil added in v0.12.0

func (o *InstitutionResponse) SetForgotPasswordUrlNil()

SetForgotPasswordUrlNil sets the value for ForgotPasswordUrl to be an explicit nil

func (*InstitutionResponse) SetForgotUsernameUrl added in v0.12.0

func (o *InstitutionResponse) SetForgotUsernameUrl(v string)

SetForgotUsernameUrl gets a reference to the given NullableString and assigns it to the ForgotUsernameUrl field.

func (*InstitutionResponse) SetForgotUsernameUrlNil added in v0.12.0

func (o *InstitutionResponse) SetForgotUsernameUrlNil()

SetForgotUsernameUrlNil sets the value for ForgotUsernameUrl to be an explicit nil

func (*InstitutionResponse) SetInstructionalText added in v0.8.1

func (o *InstitutionResponse) SetInstructionalText(v string)

SetInstructionalText gets a reference to the given NullableString and assigns it to the InstructionalText field.

func (*InstitutionResponse) SetInstructionalTextNil added in v0.8.1

func (o *InstitutionResponse) SetInstructionalTextNil()

SetInstructionalTextNil sets the value for InstructionalText to be an explicit nil

func (*InstitutionResponse) SetMediumLogoUrl

func (o *InstitutionResponse) SetMediumLogoUrl(v string)

SetMediumLogoUrl gets a reference to the given NullableString and assigns it to the MediumLogoUrl field.

func (*InstitutionResponse) SetMediumLogoUrlNil

func (o *InstitutionResponse) SetMediumLogoUrlNil()

SetMediumLogoUrlNil sets the value for MediumLogoUrl to be an explicit nil

func (*InstitutionResponse) SetName

func (o *InstitutionResponse) SetName(v string)

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

func (*InstitutionResponse) SetNameNil

func (o *InstitutionResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*InstitutionResponse) SetSmallLogoUrl

func (o *InstitutionResponse) SetSmallLogoUrl(v string)

SetSmallLogoUrl gets a reference to the given NullableString and assigns it to the SmallLogoUrl field.

func (*InstitutionResponse) SetSmallLogoUrlNil

func (o *InstitutionResponse) SetSmallLogoUrlNil()

SetSmallLogoUrlNil sets the value for SmallLogoUrl to be an explicit nil

func (*InstitutionResponse) SetSupportsAccountIdentification

func (o *InstitutionResponse) SetSupportsAccountIdentification(v bool)

SetSupportsAccountIdentification gets a reference to the given NullableBool and assigns it to the SupportsAccountIdentification field.

func (*InstitutionResponse) SetSupportsAccountIdentificationNil

func (o *InstitutionResponse) SetSupportsAccountIdentificationNil()

SetSupportsAccountIdentificationNil sets the value for SupportsAccountIdentification to be an explicit nil

func (*InstitutionResponse) SetSupportsAccountStatement

func (o *InstitutionResponse) SetSupportsAccountStatement(v bool)

SetSupportsAccountStatement gets a reference to the given NullableBool and assigns it to the SupportsAccountStatement field.

func (*InstitutionResponse) SetSupportsAccountStatementNil

func (o *InstitutionResponse) SetSupportsAccountStatementNil()

SetSupportsAccountStatementNil sets the value for SupportsAccountStatement to be an explicit nil

func (*InstitutionResponse) SetSupportsAccountVerification

func (o *InstitutionResponse) SetSupportsAccountVerification(v bool)

SetSupportsAccountVerification gets a reference to the given NullableBool and assigns it to the SupportsAccountVerification field.

func (*InstitutionResponse) SetSupportsAccountVerificationNil

func (o *InstitutionResponse) SetSupportsAccountVerificationNil()

SetSupportsAccountVerificationNil sets the value for SupportsAccountVerification to be an explicit nil

func (*InstitutionResponse) SetSupportsOauth

func (o *InstitutionResponse) SetSupportsOauth(v bool)

SetSupportsOauth gets a reference to the given NullableBool and assigns it to the SupportsOauth field.

func (*InstitutionResponse) SetSupportsOauthNil

func (o *InstitutionResponse) SetSupportsOauthNil()

SetSupportsOauthNil sets the value for SupportsOauth to be an explicit nil

func (*InstitutionResponse) SetSupportsTransactionHistory

func (o *InstitutionResponse) SetSupportsTransactionHistory(v bool)

SetSupportsTransactionHistory gets a reference to the given NullableBool and assigns it to the SupportsTransactionHistory field.

func (*InstitutionResponse) SetSupportsTransactionHistoryNil

func (o *InstitutionResponse) SetSupportsTransactionHistoryNil()

SetSupportsTransactionHistoryNil sets the value for SupportsTransactionHistory to be an explicit nil

func (*InstitutionResponse) SetTroubleSigningInUrl added in v0.12.0

func (o *InstitutionResponse) SetTroubleSigningInUrl(v string)

SetTroubleSigningInUrl gets a reference to the given NullableString and assigns it to the TroubleSigningInUrl field.

func (*InstitutionResponse) SetTroubleSigningInUrlNil added in v0.12.0

func (o *InstitutionResponse) SetTroubleSigningInUrlNil()

SetTroubleSigningInUrlNil sets the value for TroubleSigningInUrl to be an explicit nil

func (*InstitutionResponse) SetUrl

func (o *InstitutionResponse) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*InstitutionResponse) SetUrlNil

func (o *InstitutionResponse) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (InstitutionResponse) ToMap added in v0.17.1

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

func (*InstitutionResponse) UnsetCode

func (o *InstitutionResponse) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

func (*InstitutionResponse) UnsetForgotPasswordUrl added in v0.12.0

func (o *InstitutionResponse) UnsetForgotPasswordUrl()

UnsetForgotPasswordUrl ensures that no value is present for ForgotPasswordUrl, not even an explicit nil

func (*InstitutionResponse) UnsetForgotUsernameUrl added in v0.12.0

func (o *InstitutionResponse) UnsetForgotUsernameUrl()

UnsetForgotUsernameUrl ensures that no value is present for ForgotUsernameUrl, not even an explicit nil

func (*InstitutionResponse) UnsetInstructionalText added in v0.8.1

func (o *InstitutionResponse) UnsetInstructionalText()

UnsetInstructionalText ensures that no value is present for InstructionalText, not even an explicit nil

func (*InstitutionResponse) UnsetMediumLogoUrl

func (o *InstitutionResponse) UnsetMediumLogoUrl()

UnsetMediumLogoUrl ensures that no value is present for MediumLogoUrl, not even an explicit nil

func (*InstitutionResponse) UnsetName

func (o *InstitutionResponse) UnsetName()

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

func (*InstitutionResponse) UnsetSmallLogoUrl

func (o *InstitutionResponse) UnsetSmallLogoUrl()

UnsetSmallLogoUrl ensures that no value is present for SmallLogoUrl, not even an explicit nil

func (*InstitutionResponse) UnsetSupportsAccountIdentification

func (o *InstitutionResponse) UnsetSupportsAccountIdentification()

UnsetSupportsAccountIdentification ensures that no value is present for SupportsAccountIdentification, not even an explicit nil

func (*InstitutionResponse) UnsetSupportsAccountStatement

func (o *InstitutionResponse) UnsetSupportsAccountStatement()

UnsetSupportsAccountStatement ensures that no value is present for SupportsAccountStatement, not even an explicit nil

func (*InstitutionResponse) UnsetSupportsAccountVerification

func (o *InstitutionResponse) UnsetSupportsAccountVerification()

UnsetSupportsAccountVerification ensures that no value is present for SupportsAccountVerification, not even an explicit nil

func (*InstitutionResponse) UnsetSupportsOauth

func (o *InstitutionResponse) UnsetSupportsOauth()

UnsetSupportsOauth ensures that no value is present for SupportsOauth, not even an explicit nil

func (*InstitutionResponse) UnsetSupportsTransactionHistory

func (o *InstitutionResponse) UnsetSupportsTransactionHistory()

UnsetSupportsTransactionHistory ensures that no value is present for SupportsTransactionHistory, not even an explicit nil

func (*InstitutionResponse) UnsetTroubleSigningInUrl added in v0.12.0

func (o *InstitutionResponse) UnsetTroubleSigningInUrl()

UnsetTroubleSigningInUrl ensures that no value is present for TroubleSigningInUrl, not even an explicit nil

func (*InstitutionResponse) UnsetUrl

func (o *InstitutionResponse) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type InstitutionResponseBody

type InstitutionResponseBody struct {
	Institution *InstitutionResponse `json:"institution,omitempty"`
}

InstitutionResponseBody struct for InstitutionResponseBody

func NewInstitutionResponseBody

func NewInstitutionResponseBody() *InstitutionResponseBody

NewInstitutionResponseBody instantiates a new InstitutionResponseBody 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 NewInstitutionResponseBodyWithDefaults

func NewInstitutionResponseBodyWithDefaults() *InstitutionResponseBody

NewInstitutionResponseBodyWithDefaults instantiates a new InstitutionResponseBody 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 (*InstitutionResponseBody) GetInstitution

func (o *InstitutionResponseBody) GetInstitution() InstitutionResponse

GetInstitution returns the Institution field value if set, zero value otherwise.

func (*InstitutionResponseBody) GetInstitutionOk

func (o *InstitutionResponseBody) GetInstitutionOk() (*InstitutionResponse, bool)

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

func (*InstitutionResponseBody) HasInstitution

func (o *InstitutionResponseBody) HasInstitution() bool

HasInstitution returns a boolean if a field has been set.

func (InstitutionResponseBody) MarshalJSON

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

func (*InstitutionResponseBody) SetInstitution

func (o *InstitutionResponseBody) SetInstitution(v InstitutionResponse)

SetInstitution gets a reference to the given InstitutionResponse and assigns it to the Institution field.

func (InstitutionResponseBody) ToMap added in v0.17.1

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

type InstitutionsResponseBody

type InstitutionsResponseBody struct {
	Institutions []InstitutionResponse `json:"institutions,omitempty"`
	Pagination   *PaginationResponse   `json:"pagination,omitempty"`
}

InstitutionsResponseBody struct for InstitutionsResponseBody

func NewInstitutionsResponseBody

func NewInstitutionsResponseBody() *InstitutionsResponseBody

NewInstitutionsResponseBody instantiates a new InstitutionsResponseBody 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 NewInstitutionsResponseBodyWithDefaults

func NewInstitutionsResponseBodyWithDefaults() *InstitutionsResponseBody

NewInstitutionsResponseBodyWithDefaults instantiates a new InstitutionsResponseBody 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 (*InstitutionsResponseBody) GetInstitutions

func (o *InstitutionsResponseBody) GetInstitutions() []InstitutionResponse

GetInstitutions returns the Institutions field value if set, zero value otherwise.

func (*InstitutionsResponseBody) GetInstitutionsOk

func (o *InstitutionsResponseBody) GetInstitutionsOk() ([]InstitutionResponse, bool)

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

func (*InstitutionsResponseBody) GetPagination

func (o *InstitutionsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*InstitutionsResponseBody) GetPaginationOk

func (o *InstitutionsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*InstitutionsResponseBody) HasInstitutions

func (o *InstitutionsResponseBody) HasInstitutions() bool

HasInstitutions returns a boolean if a field has been set.

func (*InstitutionsResponseBody) HasPagination

func (o *InstitutionsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (InstitutionsResponseBody) MarshalJSON

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

func (*InstitutionsResponseBody) SetInstitutions

func (o *InstitutionsResponseBody) SetInstitutions(v []InstitutionResponse)

SetInstitutions gets a reference to the given []InstitutionResponse and assigns it to the Institutions field.

func (*InstitutionsResponseBody) SetPagination

func (o *InstitutionsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (InstitutionsResponseBody) ToMap added in v0.17.1

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

type ManagedAccountCreateRequest

type ManagedAccountCreateRequest struct {
	AccountNumber      *string  `json:"account_number,omitempty"`
	Apr                *float32 `json:"apr,omitempty"`
	Apy                *float32 `json:"apy,omitempty"`
	AvailableBalance   *float32 `json:"available_balance,omitempty"`
	AvailableCredit    *float32 `json:"available_credit,omitempty"`
	Balance            float32  `json:"balance"`
	CashSurrenderValue *float32 `json:"cash_surrender_value,omitempty"`
	CreditLimit        *float32 `json:"credit_limit,omitempty"`
	CurrencyCode       *string  `json:"currency_code,omitempty"`
	DayPaymentIsDue    *int32   `json:"day_payment_is_due,omitempty"`
	DeathBenefit       *int32   `json:"death_benefit,omitempty"`
	Id                 *string  `json:"id,omitempty"`
	InterestRate       *float32 `json:"interest_rate,omitempty"`
	IsClosed           *bool    `json:"is_closed,omitempty"`
	IsHidden           *bool    `json:"is_hidden,omitempty"`
	LastPayment        *float32 `json:"last_payment,omitempty"`
	LastPaymentAt      *string  `json:"last_payment_at,omitempty"`
	LoanAmount         *float32 `json:"loan_amount,omitempty"`
	MaturesOn          *string  `json:"matures_on,omitempty"`
	Metadata           *string  `json:"metadata,omitempty"`
	MinimumBalance     *float32 `json:"minimum_balance,omitempty"`
	MinimumPayment     *float32 `json:"minimum_payment,omitempty"`
	Name               string   `json:"name"`
	Nickname           *string  `json:"nickname,omitempty"`
	OriginalBalance    *float32 `json:"original_balance,omitempty"`
	PaymentDueAt       *string  `json:"payment_due_at,omitempty"`
	PayoffBalance      *float32 `json:"payoff_balance,omitempty"`
	RoutingNumber      *string  `json:"routing_number,omitempty"`
	StartedOn          *string  `json:"started_on,omitempty"`
	Subtype            *string  `json:"subtype,omitempty"`
	Type               string   `json:"type"`
}

ManagedAccountCreateRequest struct for ManagedAccountCreateRequest

func NewManagedAccountCreateRequest

func NewManagedAccountCreateRequest(balance float32, name string, type_ string) *ManagedAccountCreateRequest

NewManagedAccountCreateRequest instantiates a new ManagedAccountCreateRequest 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 NewManagedAccountCreateRequestWithDefaults

func NewManagedAccountCreateRequestWithDefaults() *ManagedAccountCreateRequest

NewManagedAccountCreateRequestWithDefaults instantiates a new ManagedAccountCreateRequest 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 (*ManagedAccountCreateRequest) GetAccountNumber

func (o *ManagedAccountCreateRequest) GetAccountNumber() string

GetAccountNumber returns the AccountNumber field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetAccountNumberOk

func (o *ManagedAccountCreateRequest) GetAccountNumberOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetApr

GetApr returns the Apr field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetAprOk

func (o *ManagedAccountCreateRequest) GetAprOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetApy

GetApy returns the Apy field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetApyOk

func (o *ManagedAccountCreateRequest) GetApyOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetAvailableBalance

func (o *ManagedAccountCreateRequest) GetAvailableBalance() float32

GetAvailableBalance returns the AvailableBalance field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetAvailableBalanceOk

func (o *ManagedAccountCreateRequest) GetAvailableBalanceOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetAvailableCredit

func (o *ManagedAccountCreateRequest) GetAvailableCredit() float32

GetAvailableCredit returns the AvailableCredit field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetAvailableCreditOk

func (o *ManagedAccountCreateRequest) GetAvailableCreditOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetBalance

func (o *ManagedAccountCreateRequest) GetBalance() float32

GetBalance returns the Balance field value

func (*ManagedAccountCreateRequest) GetBalanceOk

func (o *ManagedAccountCreateRequest) GetBalanceOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetCashSurrenderValue

func (o *ManagedAccountCreateRequest) GetCashSurrenderValue() float32

GetCashSurrenderValue returns the CashSurrenderValue field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetCashSurrenderValueOk

func (o *ManagedAccountCreateRequest) GetCashSurrenderValueOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetCreditLimit

func (o *ManagedAccountCreateRequest) GetCreditLimit() float32

GetCreditLimit returns the CreditLimit field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetCreditLimitOk

func (o *ManagedAccountCreateRequest) GetCreditLimitOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetCurrencyCode

func (o *ManagedAccountCreateRequest) GetCurrencyCode() string

GetCurrencyCode returns the CurrencyCode field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetCurrencyCodeOk

func (o *ManagedAccountCreateRequest) GetCurrencyCodeOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetDayPaymentIsDue

func (o *ManagedAccountCreateRequest) GetDayPaymentIsDue() int32

GetDayPaymentIsDue returns the DayPaymentIsDue field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetDayPaymentIsDueOk

func (o *ManagedAccountCreateRequest) GetDayPaymentIsDueOk() (*int32, bool)

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

func (*ManagedAccountCreateRequest) GetDeathBenefit

func (o *ManagedAccountCreateRequest) GetDeathBenefit() int32

GetDeathBenefit returns the DeathBenefit field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetDeathBenefitOk

func (o *ManagedAccountCreateRequest) GetDeathBenefitOk() (*int32, bool)

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

func (*ManagedAccountCreateRequest) GetId

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

func (*ManagedAccountCreateRequest) GetIdOk

func (o *ManagedAccountCreateRequest) 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 (*ManagedAccountCreateRequest) GetInterestRate

func (o *ManagedAccountCreateRequest) GetInterestRate() float32

GetInterestRate returns the InterestRate field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetInterestRateOk

func (o *ManagedAccountCreateRequest) GetInterestRateOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetIsClosed

func (o *ManagedAccountCreateRequest) GetIsClosed() bool

GetIsClosed returns the IsClosed field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetIsClosedOk

func (o *ManagedAccountCreateRequest) GetIsClosedOk() (*bool, bool)

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

func (*ManagedAccountCreateRequest) GetIsHidden

func (o *ManagedAccountCreateRequest) GetIsHidden() bool

GetIsHidden returns the IsHidden field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetIsHiddenOk

func (o *ManagedAccountCreateRequest) GetIsHiddenOk() (*bool, bool)

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

func (*ManagedAccountCreateRequest) GetLastPayment

func (o *ManagedAccountCreateRequest) GetLastPayment() float32

GetLastPayment returns the LastPayment field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetLastPaymentAt

func (o *ManagedAccountCreateRequest) GetLastPaymentAt() string

GetLastPaymentAt returns the LastPaymentAt field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetLastPaymentAtOk

func (o *ManagedAccountCreateRequest) GetLastPaymentAtOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetLastPaymentOk

func (o *ManagedAccountCreateRequest) GetLastPaymentOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetLoanAmount

func (o *ManagedAccountCreateRequest) GetLoanAmount() float32

GetLoanAmount returns the LoanAmount field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetLoanAmountOk

func (o *ManagedAccountCreateRequest) GetLoanAmountOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetMaturesOn

func (o *ManagedAccountCreateRequest) GetMaturesOn() string

GetMaturesOn returns the MaturesOn field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetMaturesOnOk

func (o *ManagedAccountCreateRequest) GetMaturesOnOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetMetadata

func (o *ManagedAccountCreateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetMetadataOk

func (o *ManagedAccountCreateRequest) GetMetadataOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetMinimumBalance

func (o *ManagedAccountCreateRequest) GetMinimumBalance() float32

GetMinimumBalance returns the MinimumBalance field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetMinimumBalanceOk

func (o *ManagedAccountCreateRequest) GetMinimumBalanceOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetMinimumPayment

func (o *ManagedAccountCreateRequest) GetMinimumPayment() float32

GetMinimumPayment returns the MinimumPayment field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetMinimumPaymentOk

func (o *ManagedAccountCreateRequest) GetMinimumPaymentOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetName

func (o *ManagedAccountCreateRequest) GetName() string

GetName returns the Name field value

func (*ManagedAccountCreateRequest) GetNameOk

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

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

func (*ManagedAccountCreateRequest) GetNickname

func (o *ManagedAccountCreateRequest) GetNickname() string

GetNickname returns the Nickname field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetNicknameOk

func (o *ManagedAccountCreateRequest) GetNicknameOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetOriginalBalance

func (o *ManagedAccountCreateRequest) GetOriginalBalance() float32

GetOriginalBalance returns the OriginalBalance field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetOriginalBalanceOk

func (o *ManagedAccountCreateRequest) GetOriginalBalanceOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetPaymentDueAt

func (o *ManagedAccountCreateRequest) GetPaymentDueAt() string

GetPaymentDueAt returns the PaymentDueAt field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetPaymentDueAtOk

func (o *ManagedAccountCreateRequest) GetPaymentDueAtOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetPayoffBalance

func (o *ManagedAccountCreateRequest) GetPayoffBalance() float32

GetPayoffBalance returns the PayoffBalance field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetPayoffBalanceOk

func (o *ManagedAccountCreateRequest) GetPayoffBalanceOk() (*float32, bool)

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

func (*ManagedAccountCreateRequest) GetRoutingNumber

func (o *ManagedAccountCreateRequest) GetRoutingNumber() string

GetRoutingNumber returns the RoutingNumber field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetRoutingNumberOk

func (o *ManagedAccountCreateRequest) GetRoutingNumberOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetStartedOn

func (o *ManagedAccountCreateRequest) GetStartedOn() string

GetStartedOn returns the StartedOn field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetStartedOnOk

func (o *ManagedAccountCreateRequest) GetStartedOnOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetSubtype

func (o *ManagedAccountCreateRequest) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*ManagedAccountCreateRequest) GetSubtypeOk

func (o *ManagedAccountCreateRequest) GetSubtypeOk() (*string, bool)

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

func (*ManagedAccountCreateRequest) GetType

func (o *ManagedAccountCreateRequest) GetType() string

GetType returns the Type field value

func (*ManagedAccountCreateRequest) GetTypeOk

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

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

func (*ManagedAccountCreateRequest) HasAccountNumber

func (o *ManagedAccountCreateRequest) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasApr

func (o *ManagedAccountCreateRequest) HasApr() bool

HasApr returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasApy

func (o *ManagedAccountCreateRequest) HasApy() bool

HasApy returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasAvailableBalance

func (o *ManagedAccountCreateRequest) HasAvailableBalance() bool

HasAvailableBalance returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasAvailableCredit

func (o *ManagedAccountCreateRequest) HasAvailableCredit() bool

HasAvailableCredit returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasCashSurrenderValue

func (o *ManagedAccountCreateRequest) HasCashSurrenderValue() bool

HasCashSurrenderValue returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasCreditLimit

func (o *ManagedAccountCreateRequest) HasCreditLimit() bool

HasCreditLimit returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasCurrencyCode

func (o *ManagedAccountCreateRequest) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasDayPaymentIsDue

func (o *ManagedAccountCreateRequest) HasDayPaymentIsDue() bool

HasDayPaymentIsDue returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasDeathBenefit

func (o *ManagedAccountCreateRequest) HasDeathBenefit() bool

HasDeathBenefit returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasId

func (o *ManagedAccountCreateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasInterestRate

func (o *ManagedAccountCreateRequest) HasInterestRate() bool

HasInterestRate returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasIsClosed

func (o *ManagedAccountCreateRequest) HasIsClosed() bool

HasIsClosed returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasIsHidden

func (o *ManagedAccountCreateRequest) HasIsHidden() bool

HasIsHidden returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasLastPayment

func (o *ManagedAccountCreateRequest) HasLastPayment() bool

HasLastPayment returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasLastPaymentAt

func (o *ManagedAccountCreateRequest) HasLastPaymentAt() bool

HasLastPaymentAt returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasLoanAmount

func (o *ManagedAccountCreateRequest) HasLoanAmount() bool

HasLoanAmount returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasMaturesOn

func (o *ManagedAccountCreateRequest) HasMaturesOn() bool

HasMaturesOn returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasMetadata

func (o *ManagedAccountCreateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasMinimumBalance

func (o *ManagedAccountCreateRequest) HasMinimumBalance() bool

HasMinimumBalance returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasMinimumPayment

func (o *ManagedAccountCreateRequest) HasMinimumPayment() bool

HasMinimumPayment returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasNickname

func (o *ManagedAccountCreateRequest) HasNickname() bool

HasNickname returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasOriginalBalance

func (o *ManagedAccountCreateRequest) HasOriginalBalance() bool

HasOriginalBalance returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasPaymentDueAt

func (o *ManagedAccountCreateRequest) HasPaymentDueAt() bool

HasPaymentDueAt returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasPayoffBalance

func (o *ManagedAccountCreateRequest) HasPayoffBalance() bool

HasPayoffBalance returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasRoutingNumber

func (o *ManagedAccountCreateRequest) HasRoutingNumber() bool

HasRoutingNumber returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasStartedOn

func (o *ManagedAccountCreateRequest) HasStartedOn() bool

HasStartedOn returns a boolean if a field has been set.

func (*ManagedAccountCreateRequest) HasSubtype

func (o *ManagedAccountCreateRequest) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (ManagedAccountCreateRequest) MarshalJSON

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

func (*ManagedAccountCreateRequest) SetAccountNumber

func (o *ManagedAccountCreateRequest) SetAccountNumber(v string)

SetAccountNumber gets a reference to the given string and assigns it to the AccountNumber field.

func (*ManagedAccountCreateRequest) SetApr

func (o *ManagedAccountCreateRequest) SetApr(v float32)

SetApr gets a reference to the given float32 and assigns it to the Apr field.

func (*ManagedAccountCreateRequest) SetApy

func (o *ManagedAccountCreateRequest) SetApy(v float32)

SetApy gets a reference to the given float32 and assigns it to the Apy field.

func (*ManagedAccountCreateRequest) SetAvailableBalance

func (o *ManagedAccountCreateRequest) SetAvailableBalance(v float32)

SetAvailableBalance gets a reference to the given float32 and assigns it to the AvailableBalance field.

func (*ManagedAccountCreateRequest) SetAvailableCredit

func (o *ManagedAccountCreateRequest) SetAvailableCredit(v float32)

SetAvailableCredit gets a reference to the given float32 and assigns it to the AvailableCredit field.

func (*ManagedAccountCreateRequest) SetBalance

func (o *ManagedAccountCreateRequest) SetBalance(v float32)

SetBalance sets field value

func (*ManagedAccountCreateRequest) SetCashSurrenderValue

func (o *ManagedAccountCreateRequest) SetCashSurrenderValue(v float32)

SetCashSurrenderValue gets a reference to the given float32 and assigns it to the CashSurrenderValue field.

func (*ManagedAccountCreateRequest) SetCreditLimit

func (o *ManagedAccountCreateRequest) SetCreditLimit(v float32)

SetCreditLimit gets a reference to the given float32 and assigns it to the CreditLimit field.

func (*ManagedAccountCreateRequest) SetCurrencyCode

func (o *ManagedAccountCreateRequest) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given string and assigns it to the CurrencyCode field.

func (*ManagedAccountCreateRequest) SetDayPaymentIsDue

func (o *ManagedAccountCreateRequest) SetDayPaymentIsDue(v int32)

SetDayPaymentIsDue gets a reference to the given int32 and assigns it to the DayPaymentIsDue field.

func (*ManagedAccountCreateRequest) SetDeathBenefit

func (o *ManagedAccountCreateRequest) SetDeathBenefit(v int32)

SetDeathBenefit gets a reference to the given int32 and assigns it to the DeathBenefit field.

func (*ManagedAccountCreateRequest) SetId

func (o *ManagedAccountCreateRequest) SetId(v string)

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

func (*ManagedAccountCreateRequest) SetInterestRate

func (o *ManagedAccountCreateRequest) SetInterestRate(v float32)

SetInterestRate gets a reference to the given float32 and assigns it to the InterestRate field.

func (*ManagedAccountCreateRequest) SetIsClosed

func (o *ManagedAccountCreateRequest) SetIsClosed(v bool)

SetIsClosed gets a reference to the given bool and assigns it to the IsClosed field.

func (*ManagedAccountCreateRequest) SetIsHidden

func (o *ManagedAccountCreateRequest) SetIsHidden(v bool)

SetIsHidden gets a reference to the given bool and assigns it to the IsHidden field.

func (*ManagedAccountCreateRequest) SetLastPayment

func (o *ManagedAccountCreateRequest) SetLastPayment(v float32)

SetLastPayment gets a reference to the given float32 and assigns it to the LastPayment field.

func (*ManagedAccountCreateRequest) SetLastPaymentAt

func (o *ManagedAccountCreateRequest) SetLastPaymentAt(v string)

SetLastPaymentAt gets a reference to the given string and assigns it to the LastPaymentAt field.

func (*ManagedAccountCreateRequest) SetLoanAmount

func (o *ManagedAccountCreateRequest) SetLoanAmount(v float32)

SetLoanAmount gets a reference to the given float32 and assigns it to the LoanAmount field.

func (*ManagedAccountCreateRequest) SetMaturesOn

func (o *ManagedAccountCreateRequest) SetMaturesOn(v string)

SetMaturesOn gets a reference to the given string and assigns it to the MaturesOn field.

func (*ManagedAccountCreateRequest) SetMetadata

func (o *ManagedAccountCreateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*ManagedAccountCreateRequest) SetMinimumBalance

func (o *ManagedAccountCreateRequest) SetMinimumBalance(v float32)

SetMinimumBalance gets a reference to the given float32 and assigns it to the MinimumBalance field.

func (*ManagedAccountCreateRequest) SetMinimumPayment

func (o *ManagedAccountCreateRequest) SetMinimumPayment(v float32)

SetMinimumPayment gets a reference to the given float32 and assigns it to the MinimumPayment field.

func (*ManagedAccountCreateRequest) SetName

func (o *ManagedAccountCreateRequest) SetName(v string)

SetName sets field value

func (*ManagedAccountCreateRequest) SetNickname

func (o *ManagedAccountCreateRequest) SetNickname(v string)

SetNickname gets a reference to the given string and assigns it to the Nickname field.

func (*ManagedAccountCreateRequest) SetOriginalBalance

func (o *ManagedAccountCreateRequest) SetOriginalBalance(v float32)

SetOriginalBalance gets a reference to the given float32 and assigns it to the OriginalBalance field.

func (*ManagedAccountCreateRequest) SetPaymentDueAt

func (o *ManagedAccountCreateRequest) SetPaymentDueAt(v string)

SetPaymentDueAt gets a reference to the given string and assigns it to the PaymentDueAt field.

func (*ManagedAccountCreateRequest) SetPayoffBalance

func (o *ManagedAccountCreateRequest) SetPayoffBalance(v float32)

SetPayoffBalance gets a reference to the given float32 and assigns it to the PayoffBalance field.

func (*ManagedAccountCreateRequest) SetRoutingNumber

func (o *ManagedAccountCreateRequest) SetRoutingNumber(v string)

SetRoutingNumber gets a reference to the given string and assigns it to the RoutingNumber field.

func (*ManagedAccountCreateRequest) SetStartedOn

func (o *ManagedAccountCreateRequest) SetStartedOn(v string)

SetStartedOn gets a reference to the given string and assigns it to the StartedOn field.

func (*ManagedAccountCreateRequest) SetSubtype

func (o *ManagedAccountCreateRequest) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*ManagedAccountCreateRequest) SetType

func (o *ManagedAccountCreateRequest) SetType(v string)

SetType sets field value

func (ManagedAccountCreateRequest) ToMap added in v0.17.1

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

type ManagedAccountCreateRequestBody

type ManagedAccountCreateRequestBody struct {
	Account *ManagedAccountCreateRequest `json:"account,omitempty"`
}

ManagedAccountCreateRequestBody struct for ManagedAccountCreateRequestBody

func NewManagedAccountCreateRequestBody

func NewManagedAccountCreateRequestBody() *ManagedAccountCreateRequestBody

NewManagedAccountCreateRequestBody instantiates a new ManagedAccountCreateRequestBody 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 NewManagedAccountCreateRequestBodyWithDefaults

func NewManagedAccountCreateRequestBodyWithDefaults() *ManagedAccountCreateRequestBody

NewManagedAccountCreateRequestBodyWithDefaults instantiates a new ManagedAccountCreateRequestBody 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 (*ManagedAccountCreateRequestBody) GetAccount

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

func (*ManagedAccountCreateRequestBody) GetAccountOk

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 (*ManagedAccountCreateRequestBody) HasAccount

func (o *ManagedAccountCreateRequestBody) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (ManagedAccountCreateRequestBody) MarshalJSON

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

func (*ManagedAccountCreateRequestBody) SetAccount

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

func (ManagedAccountCreateRequestBody) ToMap added in v0.17.1

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

type ManagedAccountUpdateRequest

type ManagedAccountUpdateRequest struct {
	AccountNumber      *string  `json:"account_number,omitempty"`
	Apr                *float32 `json:"apr,omitempty"`
	Apy                *float32 `json:"apy,omitempty"`
	AvailableBalance   *float32 `json:"available_balance,omitempty"`
	AvailableCredit    *float32 `json:"available_credit,omitempty"`
	Balance            *float32 `json:"balance,omitempty"`
	CashSurrenderValue *float32 `json:"cash_surrender_value,omitempty"`
	CreditLimit        *float32 `json:"credit_limit,omitempty"`
	CurrencyCode       *string  `json:"currency_code,omitempty"`
	DayPaymentIsDue    *int32   `json:"day_payment_is_due,omitempty"`
	DeathBenefit       *int32   `json:"death_benefit,omitempty"`
	Id                 *string  `json:"id,omitempty"`
	InterestRate       *float32 `json:"interest_rate,omitempty"`
	IsClosed           *bool    `json:"is_closed,omitempty"`
	IsHidden           *bool    `json:"is_hidden,omitempty"`
	LastPayment        *float32 `json:"last_payment,omitempty"`
	LastPaymentAt      *string  `json:"last_payment_at,omitempty"`
	LoanAmount         *float32 `json:"loan_amount,omitempty"`
	MaturesOn          *string  `json:"matures_on,omitempty"`
	Metadata           *string  `json:"metadata,omitempty"`
	MinimumBalance     *float32 `json:"minimum_balance,omitempty"`
	MinimumPayment     *float32 `json:"minimum_payment,omitempty"`
	Name               *string  `json:"name,omitempty"`
	Nickname           *string  `json:"nickname,omitempty"`
	OriginalBalance    *float32 `json:"original_balance,omitempty"`
	PaymentDueAt       *string  `json:"payment_due_at,omitempty"`
	PayoffBalance      *float32 `json:"payoff_balance,omitempty"`
	RoutingNumber      *string  `json:"routing_number,omitempty"`
	StartedOn          *string  `json:"started_on,omitempty"`
	Subtype            *string  `json:"subtype,omitempty"`
	Type               *string  `json:"type,omitempty"`
}

ManagedAccountUpdateRequest struct for ManagedAccountUpdateRequest

func NewManagedAccountUpdateRequest

func NewManagedAccountUpdateRequest() *ManagedAccountUpdateRequest

NewManagedAccountUpdateRequest instantiates a new ManagedAccountUpdateRequest 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 NewManagedAccountUpdateRequestWithDefaults

func NewManagedAccountUpdateRequestWithDefaults() *ManagedAccountUpdateRequest

NewManagedAccountUpdateRequestWithDefaults instantiates a new ManagedAccountUpdateRequest 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 (*ManagedAccountUpdateRequest) GetAccountNumber

func (o *ManagedAccountUpdateRequest) GetAccountNumber() string

GetAccountNumber returns the AccountNumber field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetAccountNumberOk

func (o *ManagedAccountUpdateRequest) GetAccountNumberOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetApr

GetApr returns the Apr field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetAprOk

func (o *ManagedAccountUpdateRequest) GetAprOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetApy

GetApy returns the Apy field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetApyOk

func (o *ManagedAccountUpdateRequest) GetApyOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetAvailableBalance

func (o *ManagedAccountUpdateRequest) GetAvailableBalance() float32

GetAvailableBalance returns the AvailableBalance field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetAvailableBalanceOk

func (o *ManagedAccountUpdateRequest) GetAvailableBalanceOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetAvailableCredit

func (o *ManagedAccountUpdateRequest) GetAvailableCredit() float32

GetAvailableCredit returns the AvailableCredit field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetAvailableCreditOk

func (o *ManagedAccountUpdateRequest) GetAvailableCreditOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetBalance

func (o *ManagedAccountUpdateRequest) GetBalance() float32

GetBalance returns the Balance field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetBalanceOk

func (o *ManagedAccountUpdateRequest) GetBalanceOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetCashSurrenderValue

func (o *ManagedAccountUpdateRequest) GetCashSurrenderValue() float32

GetCashSurrenderValue returns the CashSurrenderValue field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetCashSurrenderValueOk

func (o *ManagedAccountUpdateRequest) GetCashSurrenderValueOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetCreditLimit

func (o *ManagedAccountUpdateRequest) GetCreditLimit() float32

GetCreditLimit returns the CreditLimit field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetCreditLimitOk

func (o *ManagedAccountUpdateRequest) GetCreditLimitOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetCurrencyCode

func (o *ManagedAccountUpdateRequest) GetCurrencyCode() string

GetCurrencyCode returns the CurrencyCode field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetCurrencyCodeOk

func (o *ManagedAccountUpdateRequest) GetCurrencyCodeOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetDayPaymentIsDue

func (o *ManagedAccountUpdateRequest) GetDayPaymentIsDue() int32

GetDayPaymentIsDue returns the DayPaymentIsDue field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetDayPaymentIsDueOk

func (o *ManagedAccountUpdateRequest) GetDayPaymentIsDueOk() (*int32, bool)

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

func (*ManagedAccountUpdateRequest) GetDeathBenefit

func (o *ManagedAccountUpdateRequest) GetDeathBenefit() int32

GetDeathBenefit returns the DeathBenefit field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetDeathBenefitOk

func (o *ManagedAccountUpdateRequest) GetDeathBenefitOk() (*int32, bool)

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

func (*ManagedAccountUpdateRequest) GetId

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

func (*ManagedAccountUpdateRequest) GetIdOk

func (o *ManagedAccountUpdateRequest) 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 (*ManagedAccountUpdateRequest) GetInterestRate

func (o *ManagedAccountUpdateRequest) GetInterestRate() float32

GetInterestRate returns the InterestRate field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetInterestRateOk

func (o *ManagedAccountUpdateRequest) GetInterestRateOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetIsClosed

func (o *ManagedAccountUpdateRequest) GetIsClosed() bool

GetIsClosed returns the IsClosed field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetIsClosedOk

func (o *ManagedAccountUpdateRequest) GetIsClosedOk() (*bool, bool)

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

func (*ManagedAccountUpdateRequest) GetIsHidden

func (o *ManagedAccountUpdateRequest) GetIsHidden() bool

GetIsHidden returns the IsHidden field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetIsHiddenOk

func (o *ManagedAccountUpdateRequest) GetIsHiddenOk() (*bool, bool)

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

func (*ManagedAccountUpdateRequest) GetLastPayment

func (o *ManagedAccountUpdateRequest) GetLastPayment() float32

GetLastPayment returns the LastPayment field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetLastPaymentAt

func (o *ManagedAccountUpdateRequest) GetLastPaymentAt() string

GetLastPaymentAt returns the LastPaymentAt field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetLastPaymentAtOk

func (o *ManagedAccountUpdateRequest) GetLastPaymentAtOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetLastPaymentOk

func (o *ManagedAccountUpdateRequest) GetLastPaymentOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetLoanAmount

func (o *ManagedAccountUpdateRequest) GetLoanAmount() float32

GetLoanAmount returns the LoanAmount field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetLoanAmountOk

func (o *ManagedAccountUpdateRequest) GetLoanAmountOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetMaturesOn

func (o *ManagedAccountUpdateRequest) GetMaturesOn() string

GetMaturesOn returns the MaturesOn field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetMaturesOnOk

func (o *ManagedAccountUpdateRequest) GetMaturesOnOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetMetadata

func (o *ManagedAccountUpdateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetMetadataOk

func (o *ManagedAccountUpdateRequest) GetMetadataOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetMinimumBalance

func (o *ManagedAccountUpdateRequest) GetMinimumBalance() float32

GetMinimumBalance returns the MinimumBalance field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetMinimumBalanceOk

func (o *ManagedAccountUpdateRequest) GetMinimumBalanceOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetMinimumPayment

func (o *ManagedAccountUpdateRequest) GetMinimumPayment() float32

GetMinimumPayment returns the MinimumPayment field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetMinimumPaymentOk

func (o *ManagedAccountUpdateRequest) GetMinimumPaymentOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetName

func (o *ManagedAccountUpdateRequest) GetName() string

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

func (*ManagedAccountUpdateRequest) GetNameOk

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

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

func (*ManagedAccountUpdateRequest) GetNickname

func (o *ManagedAccountUpdateRequest) GetNickname() string

GetNickname returns the Nickname field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetNicknameOk

func (o *ManagedAccountUpdateRequest) GetNicknameOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetOriginalBalance

func (o *ManagedAccountUpdateRequest) GetOriginalBalance() float32

GetOriginalBalance returns the OriginalBalance field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetOriginalBalanceOk

func (o *ManagedAccountUpdateRequest) GetOriginalBalanceOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetPaymentDueAt

func (o *ManagedAccountUpdateRequest) GetPaymentDueAt() string

GetPaymentDueAt returns the PaymentDueAt field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetPaymentDueAtOk

func (o *ManagedAccountUpdateRequest) GetPaymentDueAtOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetPayoffBalance

func (o *ManagedAccountUpdateRequest) GetPayoffBalance() float32

GetPayoffBalance returns the PayoffBalance field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetPayoffBalanceOk

func (o *ManagedAccountUpdateRequest) GetPayoffBalanceOk() (*float32, bool)

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

func (*ManagedAccountUpdateRequest) GetRoutingNumber

func (o *ManagedAccountUpdateRequest) GetRoutingNumber() string

GetRoutingNumber returns the RoutingNumber field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetRoutingNumberOk

func (o *ManagedAccountUpdateRequest) GetRoutingNumberOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetStartedOn

func (o *ManagedAccountUpdateRequest) GetStartedOn() string

GetStartedOn returns the StartedOn field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetStartedOnOk

func (o *ManagedAccountUpdateRequest) GetStartedOnOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetSubtype

func (o *ManagedAccountUpdateRequest) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*ManagedAccountUpdateRequest) GetSubtypeOk

func (o *ManagedAccountUpdateRequest) GetSubtypeOk() (*string, bool)

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

func (*ManagedAccountUpdateRequest) GetType

func (o *ManagedAccountUpdateRequest) GetType() string

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

func (*ManagedAccountUpdateRequest) GetTypeOk

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

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

func (*ManagedAccountUpdateRequest) HasAccountNumber

func (o *ManagedAccountUpdateRequest) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasApr

func (o *ManagedAccountUpdateRequest) HasApr() bool

HasApr returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasApy

func (o *ManagedAccountUpdateRequest) HasApy() bool

HasApy returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasAvailableBalance

func (o *ManagedAccountUpdateRequest) HasAvailableBalance() bool

HasAvailableBalance returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasAvailableCredit

func (o *ManagedAccountUpdateRequest) HasAvailableCredit() bool

HasAvailableCredit returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasBalance

func (o *ManagedAccountUpdateRequest) HasBalance() bool

HasBalance returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasCashSurrenderValue

func (o *ManagedAccountUpdateRequest) HasCashSurrenderValue() bool

HasCashSurrenderValue returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasCreditLimit

func (o *ManagedAccountUpdateRequest) HasCreditLimit() bool

HasCreditLimit returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasCurrencyCode

func (o *ManagedAccountUpdateRequest) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasDayPaymentIsDue

func (o *ManagedAccountUpdateRequest) HasDayPaymentIsDue() bool

HasDayPaymentIsDue returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasDeathBenefit

func (o *ManagedAccountUpdateRequest) HasDeathBenefit() bool

HasDeathBenefit returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasId

func (o *ManagedAccountUpdateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasInterestRate

func (o *ManagedAccountUpdateRequest) HasInterestRate() bool

HasInterestRate returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasIsClosed

func (o *ManagedAccountUpdateRequest) HasIsClosed() bool

HasIsClosed returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasIsHidden

func (o *ManagedAccountUpdateRequest) HasIsHidden() bool

HasIsHidden returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasLastPayment

func (o *ManagedAccountUpdateRequest) HasLastPayment() bool

HasLastPayment returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasLastPaymentAt

func (o *ManagedAccountUpdateRequest) HasLastPaymentAt() bool

HasLastPaymentAt returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasLoanAmount

func (o *ManagedAccountUpdateRequest) HasLoanAmount() bool

HasLoanAmount returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasMaturesOn

func (o *ManagedAccountUpdateRequest) HasMaturesOn() bool

HasMaturesOn returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasMetadata

func (o *ManagedAccountUpdateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasMinimumBalance

func (o *ManagedAccountUpdateRequest) HasMinimumBalance() bool

HasMinimumBalance returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasMinimumPayment

func (o *ManagedAccountUpdateRequest) HasMinimumPayment() bool

HasMinimumPayment returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasName

func (o *ManagedAccountUpdateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasNickname

func (o *ManagedAccountUpdateRequest) HasNickname() bool

HasNickname returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasOriginalBalance

func (o *ManagedAccountUpdateRequest) HasOriginalBalance() bool

HasOriginalBalance returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasPaymentDueAt

func (o *ManagedAccountUpdateRequest) HasPaymentDueAt() bool

HasPaymentDueAt returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasPayoffBalance

func (o *ManagedAccountUpdateRequest) HasPayoffBalance() bool

HasPayoffBalance returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasRoutingNumber

func (o *ManagedAccountUpdateRequest) HasRoutingNumber() bool

HasRoutingNumber returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasStartedOn

func (o *ManagedAccountUpdateRequest) HasStartedOn() bool

HasStartedOn returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasSubtype

func (o *ManagedAccountUpdateRequest) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*ManagedAccountUpdateRequest) HasType

func (o *ManagedAccountUpdateRequest) HasType() bool

HasType returns a boolean if a field has been set.

func (ManagedAccountUpdateRequest) MarshalJSON

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

func (*ManagedAccountUpdateRequest) SetAccountNumber

func (o *ManagedAccountUpdateRequest) SetAccountNumber(v string)

SetAccountNumber gets a reference to the given string and assigns it to the AccountNumber field.

func (*ManagedAccountUpdateRequest) SetApr

func (o *ManagedAccountUpdateRequest) SetApr(v float32)

SetApr gets a reference to the given float32 and assigns it to the Apr field.

func (*ManagedAccountUpdateRequest) SetApy

func (o *ManagedAccountUpdateRequest) SetApy(v float32)

SetApy gets a reference to the given float32 and assigns it to the Apy field.

func (*ManagedAccountUpdateRequest) SetAvailableBalance

func (o *ManagedAccountUpdateRequest) SetAvailableBalance(v float32)

SetAvailableBalance gets a reference to the given float32 and assigns it to the AvailableBalance field.

func (*ManagedAccountUpdateRequest) SetAvailableCredit

func (o *ManagedAccountUpdateRequest) SetAvailableCredit(v float32)

SetAvailableCredit gets a reference to the given float32 and assigns it to the AvailableCredit field.

func (*ManagedAccountUpdateRequest) SetBalance

func (o *ManagedAccountUpdateRequest) SetBalance(v float32)

SetBalance gets a reference to the given float32 and assigns it to the Balance field.

func (*ManagedAccountUpdateRequest) SetCashSurrenderValue

func (o *ManagedAccountUpdateRequest) SetCashSurrenderValue(v float32)

SetCashSurrenderValue gets a reference to the given float32 and assigns it to the CashSurrenderValue field.

func (*ManagedAccountUpdateRequest) SetCreditLimit

func (o *ManagedAccountUpdateRequest) SetCreditLimit(v float32)

SetCreditLimit gets a reference to the given float32 and assigns it to the CreditLimit field.

func (*ManagedAccountUpdateRequest) SetCurrencyCode

func (o *ManagedAccountUpdateRequest) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given string and assigns it to the CurrencyCode field.

func (*ManagedAccountUpdateRequest) SetDayPaymentIsDue

func (o *ManagedAccountUpdateRequest) SetDayPaymentIsDue(v int32)

SetDayPaymentIsDue gets a reference to the given int32 and assigns it to the DayPaymentIsDue field.

func (*ManagedAccountUpdateRequest) SetDeathBenefit

func (o *ManagedAccountUpdateRequest) SetDeathBenefit(v int32)

SetDeathBenefit gets a reference to the given int32 and assigns it to the DeathBenefit field.

func (*ManagedAccountUpdateRequest) SetId

func (o *ManagedAccountUpdateRequest) SetId(v string)

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

func (*ManagedAccountUpdateRequest) SetInterestRate

func (o *ManagedAccountUpdateRequest) SetInterestRate(v float32)

SetInterestRate gets a reference to the given float32 and assigns it to the InterestRate field.

func (*ManagedAccountUpdateRequest) SetIsClosed

func (o *ManagedAccountUpdateRequest) SetIsClosed(v bool)

SetIsClosed gets a reference to the given bool and assigns it to the IsClosed field.

func (*ManagedAccountUpdateRequest) SetIsHidden

func (o *ManagedAccountUpdateRequest) SetIsHidden(v bool)

SetIsHidden gets a reference to the given bool and assigns it to the IsHidden field.

func (*ManagedAccountUpdateRequest) SetLastPayment

func (o *ManagedAccountUpdateRequest) SetLastPayment(v float32)

SetLastPayment gets a reference to the given float32 and assigns it to the LastPayment field.

func (*ManagedAccountUpdateRequest) SetLastPaymentAt

func (o *ManagedAccountUpdateRequest) SetLastPaymentAt(v string)

SetLastPaymentAt gets a reference to the given string and assigns it to the LastPaymentAt field.

func (*ManagedAccountUpdateRequest) SetLoanAmount

func (o *ManagedAccountUpdateRequest) SetLoanAmount(v float32)

SetLoanAmount gets a reference to the given float32 and assigns it to the LoanAmount field.

func (*ManagedAccountUpdateRequest) SetMaturesOn

func (o *ManagedAccountUpdateRequest) SetMaturesOn(v string)

SetMaturesOn gets a reference to the given string and assigns it to the MaturesOn field.

func (*ManagedAccountUpdateRequest) SetMetadata

func (o *ManagedAccountUpdateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*ManagedAccountUpdateRequest) SetMinimumBalance

func (o *ManagedAccountUpdateRequest) SetMinimumBalance(v float32)

SetMinimumBalance gets a reference to the given float32 and assigns it to the MinimumBalance field.

func (*ManagedAccountUpdateRequest) SetMinimumPayment

func (o *ManagedAccountUpdateRequest) SetMinimumPayment(v float32)

SetMinimumPayment gets a reference to the given float32 and assigns it to the MinimumPayment field.

func (*ManagedAccountUpdateRequest) SetName

func (o *ManagedAccountUpdateRequest) SetName(v string)

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

func (*ManagedAccountUpdateRequest) SetNickname

func (o *ManagedAccountUpdateRequest) SetNickname(v string)

SetNickname gets a reference to the given string and assigns it to the Nickname field.

func (*ManagedAccountUpdateRequest) SetOriginalBalance

func (o *ManagedAccountUpdateRequest) SetOriginalBalance(v float32)

SetOriginalBalance gets a reference to the given float32 and assigns it to the OriginalBalance field.

func (*ManagedAccountUpdateRequest) SetPaymentDueAt

func (o *ManagedAccountUpdateRequest) SetPaymentDueAt(v string)

SetPaymentDueAt gets a reference to the given string and assigns it to the PaymentDueAt field.

func (*ManagedAccountUpdateRequest) SetPayoffBalance

func (o *ManagedAccountUpdateRequest) SetPayoffBalance(v float32)

SetPayoffBalance gets a reference to the given float32 and assigns it to the PayoffBalance field.

func (*ManagedAccountUpdateRequest) SetRoutingNumber

func (o *ManagedAccountUpdateRequest) SetRoutingNumber(v string)

SetRoutingNumber gets a reference to the given string and assigns it to the RoutingNumber field.

func (*ManagedAccountUpdateRequest) SetStartedOn

func (o *ManagedAccountUpdateRequest) SetStartedOn(v string)

SetStartedOn gets a reference to the given string and assigns it to the StartedOn field.

func (*ManagedAccountUpdateRequest) SetSubtype

func (o *ManagedAccountUpdateRequest) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*ManagedAccountUpdateRequest) SetType

func (o *ManagedAccountUpdateRequest) SetType(v string)

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

func (ManagedAccountUpdateRequest) ToMap added in v0.17.1

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

type ManagedAccountUpdateRequestBody

type ManagedAccountUpdateRequestBody struct {
	Account *ManagedAccountUpdateRequest `json:"account,omitempty"`
}

ManagedAccountUpdateRequestBody struct for ManagedAccountUpdateRequestBody

func NewManagedAccountUpdateRequestBody

func NewManagedAccountUpdateRequestBody() *ManagedAccountUpdateRequestBody

NewManagedAccountUpdateRequestBody instantiates a new ManagedAccountUpdateRequestBody 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 NewManagedAccountUpdateRequestBodyWithDefaults

func NewManagedAccountUpdateRequestBodyWithDefaults() *ManagedAccountUpdateRequestBody

NewManagedAccountUpdateRequestBodyWithDefaults instantiates a new ManagedAccountUpdateRequestBody 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 (*ManagedAccountUpdateRequestBody) GetAccount

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

func (*ManagedAccountUpdateRequestBody) GetAccountOk

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 (*ManagedAccountUpdateRequestBody) HasAccount

func (o *ManagedAccountUpdateRequestBody) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (ManagedAccountUpdateRequestBody) MarshalJSON

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

func (*ManagedAccountUpdateRequestBody) SetAccount

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

func (ManagedAccountUpdateRequestBody) ToMap added in v0.17.1

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

type ManagedMemberCreateRequest

type ManagedMemberCreateRequest struct {
	Id              *string `json:"id,omitempty"`
	InstitutionCode string  `json:"institution_code"`
	Metadata        *string `json:"metadata,omitempty"`
	Name            *string `json:"name,omitempty"`
}

ManagedMemberCreateRequest struct for ManagedMemberCreateRequest

func NewManagedMemberCreateRequest

func NewManagedMemberCreateRequest(institutionCode string) *ManagedMemberCreateRequest

NewManagedMemberCreateRequest instantiates a new ManagedMemberCreateRequest 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 NewManagedMemberCreateRequestWithDefaults

func NewManagedMemberCreateRequestWithDefaults() *ManagedMemberCreateRequest

NewManagedMemberCreateRequestWithDefaults instantiates a new ManagedMemberCreateRequest 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 (*ManagedMemberCreateRequest) GetId

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

func (*ManagedMemberCreateRequest) GetIdOk

func (o *ManagedMemberCreateRequest) 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 (*ManagedMemberCreateRequest) GetInstitutionCode

func (o *ManagedMemberCreateRequest) GetInstitutionCode() string

GetInstitutionCode returns the InstitutionCode field value

func (*ManagedMemberCreateRequest) GetInstitutionCodeOk

func (o *ManagedMemberCreateRequest) GetInstitutionCodeOk() (*string, bool)

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

func (*ManagedMemberCreateRequest) GetMetadata

func (o *ManagedMemberCreateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ManagedMemberCreateRequest) GetMetadataOk

func (o *ManagedMemberCreateRequest) GetMetadataOk() (*string, bool)

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

func (*ManagedMemberCreateRequest) GetName

func (o *ManagedMemberCreateRequest) GetName() string

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

func (*ManagedMemberCreateRequest) GetNameOk

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

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

func (*ManagedMemberCreateRequest) HasId

func (o *ManagedMemberCreateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ManagedMemberCreateRequest) HasMetadata

func (o *ManagedMemberCreateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ManagedMemberCreateRequest) HasName

func (o *ManagedMemberCreateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ManagedMemberCreateRequest) MarshalJSON

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

func (*ManagedMemberCreateRequest) SetId

func (o *ManagedMemberCreateRequest) SetId(v string)

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

func (*ManagedMemberCreateRequest) SetInstitutionCode

func (o *ManagedMemberCreateRequest) SetInstitutionCode(v string)

SetInstitutionCode sets field value

func (*ManagedMemberCreateRequest) SetMetadata

func (o *ManagedMemberCreateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*ManagedMemberCreateRequest) SetName

func (o *ManagedMemberCreateRequest) SetName(v string)

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

func (ManagedMemberCreateRequest) ToMap added in v0.17.1

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

type ManagedMemberCreateRequestBody

type ManagedMemberCreateRequestBody struct {
	Member *ManagedMemberCreateRequest `json:"member,omitempty"`
}

ManagedMemberCreateRequestBody struct for ManagedMemberCreateRequestBody

func NewManagedMemberCreateRequestBody

func NewManagedMemberCreateRequestBody() *ManagedMemberCreateRequestBody

NewManagedMemberCreateRequestBody instantiates a new ManagedMemberCreateRequestBody 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 NewManagedMemberCreateRequestBodyWithDefaults

func NewManagedMemberCreateRequestBodyWithDefaults() *ManagedMemberCreateRequestBody

NewManagedMemberCreateRequestBodyWithDefaults instantiates a new ManagedMemberCreateRequestBody 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 (*ManagedMemberCreateRequestBody) GetMember

GetMember returns the Member field value if set, zero value otherwise.

func (*ManagedMemberCreateRequestBody) GetMemberOk

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

func (*ManagedMemberCreateRequestBody) HasMember

func (o *ManagedMemberCreateRequestBody) HasMember() bool

HasMember returns a boolean if a field has been set.

func (ManagedMemberCreateRequestBody) MarshalJSON

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

func (*ManagedMemberCreateRequestBody) SetMember

SetMember gets a reference to the given ManagedMemberCreateRequest and assigns it to the Member field.

func (ManagedMemberCreateRequestBody) ToMap added in v0.17.1

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

type ManagedMemberUpdateRequest

type ManagedMemberUpdateRequest struct {
	Id       *string `json:"id,omitempty"`
	Metadata *string `json:"metadata,omitempty"`
	Name     *string `json:"name,omitempty"`
}

ManagedMemberUpdateRequest struct for ManagedMemberUpdateRequest

func NewManagedMemberUpdateRequest

func NewManagedMemberUpdateRequest() *ManagedMemberUpdateRequest

NewManagedMemberUpdateRequest instantiates a new ManagedMemberUpdateRequest 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 NewManagedMemberUpdateRequestWithDefaults

func NewManagedMemberUpdateRequestWithDefaults() *ManagedMemberUpdateRequest

NewManagedMemberUpdateRequestWithDefaults instantiates a new ManagedMemberUpdateRequest 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 (*ManagedMemberUpdateRequest) GetId

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

func (*ManagedMemberUpdateRequest) GetIdOk

func (o *ManagedMemberUpdateRequest) 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 (*ManagedMemberUpdateRequest) GetMetadata

func (o *ManagedMemberUpdateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ManagedMemberUpdateRequest) GetMetadataOk

func (o *ManagedMemberUpdateRequest) GetMetadataOk() (*string, bool)

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

func (*ManagedMemberUpdateRequest) GetName

func (o *ManagedMemberUpdateRequest) GetName() string

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

func (*ManagedMemberUpdateRequest) GetNameOk

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

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

func (*ManagedMemberUpdateRequest) HasId

func (o *ManagedMemberUpdateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ManagedMemberUpdateRequest) HasMetadata

func (o *ManagedMemberUpdateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ManagedMemberUpdateRequest) HasName

func (o *ManagedMemberUpdateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ManagedMemberUpdateRequest) MarshalJSON

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

func (*ManagedMemberUpdateRequest) SetId

func (o *ManagedMemberUpdateRequest) SetId(v string)

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

func (*ManagedMemberUpdateRequest) SetMetadata

func (o *ManagedMemberUpdateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*ManagedMemberUpdateRequest) SetName

func (o *ManagedMemberUpdateRequest) SetName(v string)

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

func (ManagedMemberUpdateRequest) ToMap added in v0.17.1

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

type ManagedMemberUpdateRequestBody

type ManagedMemberUpdateRequestBody struct {
	Member *ManagedMemberUpdateRequest `json:"member,omitempty"`
}

ManagedMemberUpdateRequestBody struct for ManagedMemberUpdateRequestBody

func NewManagedMemberUpdateRequestBody

func NewManagedMemberUpdateRequestBody() *ManagedMemberUpdateRequestBody

NewManagedMemberUpdateRequestBody instantiates a new ManagedMemberUpdateRequestBody 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 NewManagedMemberUpdateRequestBodyWithDefaults

func NewManagedMemberUpdateRequestBodyWithDefaults() *ManagedMemberUpdateRequestBody

NewManagedMemberUpdateRequestBodyWithDefaults instantiates a new ManagedMemberUpdateRequestBody 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 (*ManagedMemberUpdateRequestBody) GetMember

GetMember returns the Member field value if set, zero value otherwise.

func (*ManagedMemberUpdateRequestBody) GetMemberOk

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

func (*ManagedMemberUpdateRequestBody) HasMember

func (o *ManagedMemberUpdateRequestBody) HasMember() bool

HasMember returns a boolean if a field has been set.

func (ManagedMemberUpdateRequestBody) MarshalJSON

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

func (*ManagedMemberUpdateRequestBody) SetMember

SetMember gets a reference to the given ManagedMemberUpdateRequest and assigns it to the Member field.

func (ManagedMemberUpdateRequestBody) ToMap added in v0.17.1

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

type ManagedTransactionCreateRequest

type ManagedTransactionCreateRequest struct {
	Amount               string   `json:"amount"`
	Category             *string  `json:"category,omitempty"`
	CheckNumberString    *string  `json:"check_number_string,omitempty"`
	CurrencyCode         *string  `json:"currency_code,omitempty"`
	Description          string   `json:"description"`
	Id                   *string  `json:"id,omitempty"`
	IsInternational      *bool    `json:"is_international,omitempty"`
	Latitude             *float32 `json:"latitude,omitempty"`
	LocalizedDescription *string  `json:"localized_description,omitempty"`
	LocalizedMemo        *string  `json:"localized_memo,omitempty"`
	Longitude            *float32 `json:"longitude,omitempty"`
	Memo                 *string  `json:"memo,omitempty"`
	MerchantCategoryCode *int32   `json:"merchant_category_code,omitempty"`
	MerchantGuid         *string  `json:"merchant_guid,omitempty"`
	MerchantLocationGuid *string  `json:"merchant_location_guid,omitempty"`
	Metadata             *string  `json:"metadata,omitempty"`
	PostedAt             *string  `json:"posted_at,omitempty"`
	Status               string   `json:"status"`
	TransactedAt         string   `json:"transacted_at"`
	Type                 string   `json:"type"`
}

ManagedTransactionCreateRequest struct for ManagedTransactionCreateRequest

func NewManagedTransactionCreateRequest

func NewManagedTransactionCreateRequest(amount string, description string, status string, transactedAt string, type_ string) *ManagedTransactionCreateRequest

NewManagedTransactionCreateRequest instantiates a new ManagedTransactionCreateRequest 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 NewManagedTransactionCreateRequestWithDefaults

func NewManagedTransactionCreateRequestWithDefaults() *ManagedTransactionCreateRequest

NewManagedTransactionCreateRequestWithDefaults instantiates a new ManagedTransactionCreateRequest 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 (*ManagedTransactionCreateRequest) GetAmount

func (o *ManagedTransactionCreateRequest) GetAmount() string

GetAmount returns the Amount field value

func (*ManagedTransactionCreateRequest) GetAmountOk

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

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

func (*ManagedTransactionCreateRequest) GetCategory

func (o *ManagedTransactionCreateRequest) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetCategoryOk

func (o *ManagedTransactionCreateRequest) GetCategoryOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetCheckNumberString

func (o *ManagedTransactionCreateRequest) GetCheckNumberString() string

GetCheckNumberString returns the CheckNumberString field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetCheckNumberStringOk

func (o *ManagedTransactionCreateRequest) GetCheckNumberStringOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetCurrencyCode

func (o *ManagedTransactionCreateRequest) GetCurrencyCode() string

GetCurrencyCode returns the CurrencyCode field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetCurrencyCodeOk

func (o *ManagedTransactionCreateRequest) GetCurrencyCodeOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetDescription

func (o *ManagedTransactionCreateRequest) GetDescription() string

GetDescription returns the Description field value

func (*ManagedTransactionCreateRequest) GetDescriptionOk

func (o *ManagedTransactionCreateRequest) GetDescriptionOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetId

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

func (*ManagedTransactionCreateRequest) GetIdOk

func (o *ManagedTransactionCreateRequest) 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 (*ManagedTransactionCreateRequest) GetIsInternational

func (o *ManagedTransactionCreateRequest) GetIsInternational() bool

GetIsInternational returns the IsInternational field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetIsInternationalOk

func (o *ManagedTransactionCreateRequest) GetIsInternationalOk() (*bool, bool)

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

func (*ManagedTransactionCreateRequest) GetLatitude

func (o *ManagedTransactionCreateRequest) GetLatitude() float32

GetLatitude returns the Latitude field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetLatitudeOk

func (o *ManagedTransactionCreateRequest) GetLatitudeOk() (*float32, bool)

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

func (*ManagedTransactionCreateRequest) GetLocalizedDescription

func (o *ManagedTransactionCreateRequest) GetLocalizedDescription() string

GetLocalizedDescription returns the LocalizedDescription field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetLocalizedDescriptionOk

func (o *ManagedTransactionCreateRequest) GetLocalizedDescriptionOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetLocalizedMemo

func (o *ManagedTransactionCreateRequest) GetLocalizedMemo() string

GetLocalizedMemo returns the LocalizedMemo field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetLocalizedMemoOk

func (o *ManagedTransactionCreateRequest) GetLocalizedMemoOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetLongitude

func (o *ManagedTransactionCreateRequest) GetLongitude() float32

GetLongitude returns the Longitude field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetLongitudeOk

func (o *ManagedTransactionCreateRequest) GetLongitudeOk() (*float32, bool)

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

func (*ManagedTransactionCreateRequest) GetMemo

GetMemo returns the Memo field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetMemoOk

func (o *ManagedTransactionCreateRequest) GetMemoOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetMerchantCategoryCode

func (o *ManagedTransactionCreateRequest) GetMerchantCategoryCode() int32

GetMerchantCategoryCode returns the MerchantCategoryCode field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetMerchantCategoryCodeOk

func (o *ManagedTransactionCreateRequest) GetMerchantCategoryCodeOk() (*int32, bool)

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

func (*ManagedTransactionCreateRequest) GetMerchantGuid

func (o *ManagedTransactionCreateRequest) GetMerchantGuid() string

GetMerchantGuid returns the MerchantGuid field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetMerchantGuidOk

func (o *ManagedTransactionCreateRequest) GetMerchantGuidOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetMerchantLocationGuid

func (o *ManagedTransactionCreateRequest) GetMerchantLocationGuid() string

GetMerchantLocationGuid returns the MerchantLocationGuid field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetMerchantLocationGuidOk

func (o *ManagedTransactionCreateRequest) GetMerchantLocationGuidOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetMetadata

func (o *ManagedTransactionCreateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetMetadataOk

func (o *ManagedTransactionCreateRequest) GetMetadataOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetPostedAt

func (o *ManagedTransactionCreateRequest) GetPostedAt() string

GetPostedAt returns the PostedAt field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequest) GetPostedAtOk

func (o *ManagedTransactionCreateRequest) GetPostedAtOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetStatus

func (o *ManagedTransactionCreateRequest) GetStatus() string

GetStatus returns the Status field value

func (*ManagedTransactionCreateRequest) GetStatusOk

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

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

func (*ManagedTransactionCreateRequest) GetTransactedAt

func (o *ManagedTransactionCreateRequest) GetTransactedAt() string

GetTransactedAt returns the TransactedAt field value

func (*ManagedTransactionCreateRequest) GetTransactedAtOk

func (o *ManagedTransactionCreateRequest) GetTransactedAtOk() (*string, bool)

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

func (*ManagedTransactionCreateRequest) GetType

GetType returns the Type field value

func (*ManagedTransactionCreateRequest) GetTypeOk

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

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

func (*ManagedTransactionCreateRequest) HasCategory

func (o *ManagedTransactionCreateRequest) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasCheckNumberString

func (o *ManagedTransactionCreateRequest) HasCheckNumberString() bool

HasCheckNumberString returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasCurrencyCode

func (o *ManagedTransactionCreateRequest) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasId

HasId returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasIsInternational

func (o *ManagedTransactionCreateRequest) HasIsInternational() bool

HasIsInternational returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasLatitude

func (o *ManagedTransactionCreateRequest) HasLatitude() bool

HasLatitude returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasLocalizedDescription

func (o *ManagedTransactionCreateRequest) HasLocalizedDescription() bool

HasLocalizedDescription returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasLocalizedMemo

func (o *ManagedTransactionCreateRequest) HasLocalizedMemo() bool

HasLocalizedMemo returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasLongitude

func (o *ManagedTransactionCreateRequest) HasLongitude() bool

HasLongitude returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasMemo

HasMemo returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasMerchantCategoryCode

func (o *ManagedTransactionCreateRequest) HasMerchantCategoryCode() bool

HasMerchantCategoryCode returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasMerchantGuid

func (o *ManagedTransactionCreateRequest) HasMerchantGuid() bool

HasMerchantGuid returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasMerchantLocationGuid

func (o *ManagedTransactionCreateRequest) HasMerchantLocationGuid() bool

HasMerchantLocationGuid returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasMetadata

func (o *ManagedTransactionCreateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ManagedTransactionCreateRequest) HasPostedAt

func (o *ManagedTransactionCreateRequest) HasPostedAt() bool

HasPostedAt returns a boolean if a field has been set.

func (ManagedTransactionCreateRequest) MarshalJSON

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

func (*ManagedTransactionCreateRequest) SetAmount

func (o *ManagedTransactionCreateRequest) SetAmount(v string)

SetAmount sets field value

func (*ManagedTransactionCreateRequest) SetCategory

func (o *ManagedTransactionCreateRequest) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*ManagedTransactionCreateRequest) SetCheckNumberString

func (o *ManagedTransactionCreateRequest) SetCheckNumberString(v string)

SetCheckNumberString gets a reference to the given string and assigns it to the CheckNumberString field.

func (*ManagedTransactionCreateRequest) SetCurrencyCode

func (o *ManagedTransactionCreateRequest) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given string and assigns it to the CurrencyCode field.

func (*ManagedTransactionCreateRequest) SetDescription

func (o *ManagedTransactionCreateRequest) SetDescription(v string)

SetDescription sets field value

func (*ManagedTransactionCreateRequest) SetId

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

func (*ManagedTransactionCreateRequest) SetIsInternational

func (o *ManagedTransactionCreateRequest) SetIsInternational(v bool)

SetIsInternational gets a reference to the given bool and assigns it to the IsInternational field.

func (*ManagedTransactionCreateRequest) SetLatitude

func (o *ManagedTransactionCreateRequest) SetLatitude(v float32)

SetLatitude gets a reference to the given float32 and assigns it to the Latitude field.

func (*ManagedTransactionCreateRequest) SetLocalizedDescription

func (o *ManagedTransactionCreateRequest) SetLocalizedDescription(v string)

SetLocalizedDescription gets a reference to the given string and assigns it to the LocalizedDescription field.

func (*ManagedTransactionCreateRequest) SetLocalizedMemo

func (o *ManagedTransactionCreateRequest) SetLocalizedMemo(v string)

SetLocalizedMemo gets a reference to the given string and assigns it to the LocalizedMemo field.

func (*ManagedTransactionCreateRequest) SetLongitude

func (o *ManagedTransactionCreateRequest) SetLongitude(v float32)

SetLongitude gets a reference to the given float32 and assigns it to the Longitude field.

func (*ManagedTransactionCreateRequest) SetMemo

SetMemo gets a reference to the given string and assigns it to the Memo field.

func (*ManagedTransactionCreateRequest) SetMerchantCategoryCode

func (o *ManagedTransactionCreateRequest) SetMerchantCategoryCode(v int32)

SetMerchantCategoryCode gets a reference to the given int32 and assigns it to the MerchantCategoryCode field.

func (*ManagedTransactionCreateRequest) SetMerchantGuid

func (o *ManagedTransactionCreateRequest) SetMerchantGuid(v string)

SetMerchantGuid gets a reference to the given string and assigns it to the MerchantGuid field.

func (*ManagedTransactionCreateRequest) SetMerchantLocationGuid

func (o *ManagedTransactionCreateRequest) SetMerchantLocationGuid(v string)

SetMerchantLocationGuid gets a reference to the given string and assigns it to the MerchantLocationGuid field.

func (*ManagedTransactionCreateRequest) SetMetadata

func (o *ManagedTransactionCreateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*ManagedTransactionCreateRequest) SetPostedAt

func (o *ManagedTransactionCreateRequest) SetPostedAt(v string)

SetPostedAt gets a reference to the given string and assigns it to the PostedAt field.

func (*ManagedTransactionCreateRequest) SetStatus

func (o *ManagedTransactionCreateRequest) SetStatus(v string)

SetStatus sets field value

func (*ManagedTransactionCreateRequest) SetTransactedAt

func (o *ManagedTransactionCreateRequest) SetTransactedAt(v string)

SetTransactedAt sets field value

func (*ManagedTransactionCreateRequest) SetType

SetType sets field value

func (ManagedTransactionCreateRequest) ToMap added in v0.17.1

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

type ManagedTransactionCreateRequestBody

type ManagedTransactionCreateRequestBody struct {
	Transaction *ManagedTransactionCreateRequest `json:"transaction,omitempty"`
}

ManagedTransactionCreateRequestBody struct for ManagedTransactionCreateRequestBody

func NewManagedTransactionCreateRequestBody

func NewManagedTransactionCreateRequestBody() *ManagedTransactionCreateRequestBody

NewManagedTransactionCreateRequestBody instantiates a new ManagedTransactionCreateRequestBody 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 NewManagedTransactionCreateRequestBodyWithDefaults

func NewManagedTransactionCreateRequestBodyWithDefaults() *ManagedTransactionCreateRequestBody

NewManagedTransactionCreateRequestBodyWithDefaults instantiates a new ManagedTransactionCreateRequestBody 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 (*ManagedTransactionCreateRequestBody) GetTransaction

GetTransaction returns the Transaction field value if set, zero value otherwise.

func (*ManagedTransactionCreateRequestBody) GetTransactionOk

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

func (*ManagedTransactionCreateRequestBody) HasTransaction

func (o *ManagedTransactionCreateRequestBody) HasTransaction() bool

HasTransaction returns a boolean if a field has been set.

func (ManagedTransactionCreateRequestBody) MarshalJSON

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

func (*ManagedTransactionCreateRequestBody) SetTransaction

SetTransaction gets a reference to the given ManagedTransactionCreateRequest and assigns it to the Transaction field.

func (ManagedTransactionCreateRequestBody) ToMap added in v0.17.1

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

type ManagedTransactionUpdateRequest

type ManagedTransactionUpdateRequest struct {
	Amount               *string  `json:"amount,omitempty"`
	Category             *string  `json:"category,omitempty"`
	CheckNumberString    *string  `json:"check_number_string,omitempty"`
	CurrencyCode         *string  `json:"currency_code,omitempty"`
	Description          *string  `json:"description,omitempty"`
	Id                   *string  `json:"id,omitempty"`
	IsInternational      *bool    `json:"is_international,omitempty"`
	Latitude             *float32 `json:"latitude,omitempty"`
	LocalizedDescription *string  `json:"localized_description,omitempty"`
	LocalizedMemo        *string  `json:"localized_memo,omitempty"`
	Longitude            *float32 `json:"longitude,omitempty"`
	Memo                 *string  `json:"memo,omitempty"`
	MerchantCategoryCode *int32   `json:"merchant_category_code,omitempty"`
	MerchantGuid         *string  `json:"merchant_guid,omitempty"`
	MerchantLocationGuid *string  `json:"merchant_location_guid,omitempty"`
	Metadata             *string  `json:"metadata,omitempty"`
	PostedAt             *string  `json:"posted_at,omitempty"`
	Status               *string  `json:"status,omitempty"`
	TransactedAt         *string  `json:"transacted_at,omitempty"`
	Type                 *string  `json:"type,omitempty"`
}

ManagedTransactionUpdateRequest struct for ManagedTransactionUpdateRequest

func NewManagedTransactionUpdateRequest

func NewManagedTransactionUpdateRequest() *ManagedTransactionUpdateRequest

NewManagedTransactionUpdateRequest instantiates a new ManagedTransactionUpdateRequest 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 NewManagedTransactionUpdateRequestWithDefaults

func NewManagedTransactionUpdateRequestWithDefaults() *ManagedTransactionUpdateRequest

NewManagedTransactionUpdateRequestWithDefaults instantiates a new ManagedTransactionUpdateRequest 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 (*ManagedTransactionUpdateRequest) GetAmount

func (o *ManagedTransactionUpdateRequest) GetAmount() string

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

func (*ManagedTransactionUpdateRequest) GetAmountOk

func (o *ManagedTransactionUpdateRequest) 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 (*ManagedTransactionUpdateRequest) GetCategory

func (o *ManagedTransactionUpdateRequest) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetCategoryOk

func (o *ManagedTransactionUpdateRequest) GetCategoryOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetCheckNumberString

func (o *ManagedTransactionUpdateRequest) GetCheckNumberString() string

GetCheckNumberString returns the CheckNumberString field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetCheckNumberStringOk

func (o *ManagedTransactionUpdateRequest) GetCheckNumberStringOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetCurrencyCode

func (o *ManagedTransactionUpdateRequest) GetCurrencyCode() string

GetCurrencyCode returns the CurrencyCode field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetCurrencyCodeOk

func (o *ManagedTransactionUpdateRequest) GetCurrencyCodeOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetDescription

func (o *ManagedTransactionUpdateRequest) GetDescription() string

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

func (*ManagedTransactionUpdateRequest) GetDescriptionOk

func (o *ManagedTransactionUpdateRequest) GetDescriptionOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetId

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

func (*ManagedTransactionUpdateRequest) GetIdOk

func (o *ManagedTransactionUpdateRequest) 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 (*ManagedTransactionUpdateRequest) GetIsInternational

func (o *ManagedTransactionUpdateRequest) GetIsInternational() bool

GetIsInternational returns the IsInternational field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetIsInternationalOk

func (o *ManagedTransactionUpdateRequest) GetIsInternationalOk() (*bool, bool)

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

func (*ManagedTransactionUpdateRequest) GetLatitude

func (o *ManagedTransactionUpdateRequest) GetLatitude() float32

GetLatitude returns the Latitude field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetLatitudeOk

func (o *ManagedTransactionUpdateRequest) GetLatitudeOk() (*float32, bool)

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

func (*ManagedTransactionUpdateRequest) GetLocalizedDescription

func (o *ManagedTransactionUpdateRequest) GetLocalizedDescription() string

GetLocalizedDescription returns the LocalizedDescription field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetLocalizedDescriptionOk

func (o *ManagedTransactionUpdateRequest) GetLocalizedDescriptionOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetLocalizedMemo

func (o *ManagedTransactionUpdateRequest) GetLocalizedMemo() string

GetLocalizedMemo returns the LocalizedMemo field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetLocalizedMemoOk

func (o *ManagedTransactionUpdateRequest) GetLocalizedMemoOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetLongitude

func (o *ManagedTransactionUpdateRequest) GetLongitude() float32

GetLongitude returns the Longitude field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetLongitudeOk

func (o *ManagedTransactionUpdateRequest) GetLongitudeOk() (*float32, bool)

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

func (*ManagedTransactionUpdateRequest) GetMemo

GetMemo returns the Memo field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetMemoOk

func (o *ManagedTransactionUpdateRequest) GetMemoOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetMerchantCategoryCode

func (o *ManagedTransactionUpdateRequest) GetMerchantCategoryCode() int32

GetMerchantCategoryCode returns the MerchantCategoryCode field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetMerchantCategoryCodeOk

func (o *ManagedTransactionUpdateRequest) GetMerchantCategoryCodeOk() (*int32, bool)

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

func (*ManagedTransactionUpdateRequest) GetMerchantGuid

func (o *ManagedTransactionUpdateRequest) GetMerchantGuid() string

GetMerchantGuid returns the MerchantGuid field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetMerchantGuidOk

func (o *ManagedTransactionUpdateRequest) GetMerchantGuidOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetMerchantLocationGuid

func (o *ManagedTransactionUpdateRequest) GetMerchantLocationGuid() string

GetMerchantLocationGuid returns the MerchantLocationGuid field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetMerchantLocationGuidOk

func (o *ManagedTransactionUpdateRequest) GetMerchantLocationGuidOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetMetadata

func (o *ManagedTransactionUpdateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetMetadataOk

func (o *ManagedTransactionUpdateRequest) GetMetadataOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetPostedAt

func (o *ManagedTransactionUpdateRequest) GetPostedAt() string

GetPostedAt returns the PostedAt field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetPostedAtOk

func (o *ManagedTransactionUpdateRequest) GetPostedAtOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetStatus

func (o *ManagedTransactionUpdateRequest) GetStatus() string

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

func (*ManagedTransactionUpdateRequest) GetStatusOk

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

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

func (*ManagedTransactionUpdateRequest) GetTransactedAt

func (o *ManagedTransactionUpdateRequest) GetTransactedAt() string

GetTransactedAt returns the TransactedAt field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequest) GetTransactedAtOk

func (o *ManagedTransactionUpdateRequest) GetTransactedAtOk() (*string, bool)

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

func (*ManagedTransactionUpdateRequest) GetType

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

func (*ManagedTransactionUpdateRequest) GetTypeOk

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

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

func (*ManagedTransactionUpdateRequest) HasAmount

func (o *ManagedTransactionUpdateRequest) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasCategory

func (o *ManagedTransactionUpdateRequest) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasCheckNumberString

func (o *ManagedTransactionUpdateRequest) HasCheckNumberString() bool

HasCheckNumberString returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasCurrencyCode

func (o *ManagedTransactionUpdateRequest) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasDescription

func (o *ManagedTransactionUpdateRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasId

HasId returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasIsInternational

func (o *ManagedTransactionUpdateRequest) HasIsInternational() bool

HasIsInternational returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasLatitude

func (o *ManagedTransactionUpdateRequest) HasLatitude() bool

HasLatitude returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasLocalizedDescription

func (o *ManagedTransactionUpdateRequest) HasLocalizedDescription() bool

HasLocalizedDescription returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasLocalizedMemo

func (o *ManagedTransactionUpdateRequest) HasLocalizedMemo() bool

HasLocalizedMemo returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasLongitude

func (o *ManagedTransactionUpdateRequest) HasLongitude() bool

HasLongitude returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasMemo

HasMemo returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasMerchantCategoryCode

func (o *ManagedTransactionUpdateRequest) HasMerchantCategoryCode() bool

HasMerchantCategoryCode returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasMerchantGuid

func (o *ManagedTransactionUpdateRequest) HasMerchantGuid() bool

HasMerchantGuid returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasMerchantLocationGuid

func (o *ManagedTransactionUpdateRequest) HasMerchantLocationGuid() bool

HasMerchantLocationGuid returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasMetadata

func (o *ManagedTransactionUpdateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasPostedAt

func (o *ManagedTransactionUpdateRequest) HasPostedAt() bool

HasPostedAt returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasStatus

func (o *ManagedTransactionUpdateRequest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasTransactedAt

func (o *ManagedTransactionUpdateRequest) HasTransactedAt() bool

HasTransactedAt returns a boolean if a field has been set.

func (*ManagedTransactionUpdateRequest) HasType

HasType returns a boolean if a field has been set.

func (ManagedTransactionUpdateRequest) MarshalJSON

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

func (*ManagedTransactionUpdateRequest) SetAmount

func (o *ManagedTransactionUpdateRequest) SetAmount(v string)

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

func (*ManagedTransactionUpdateRequest) SetCategory

func (o *ManagedTransactionUpdateRequest) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*ManagedTransactionUpdateRequest) SetCheckNumberString

func (o *ManagedTransactionUpdateRequest) SetCheckNumberString(v string)

SetCheckNumberString gets a reference to the given string and assigns it to the CheckNumberString field.

func (*ManagedTransactionUpdateRequest) SetCurrencyCode

func (o *ManagedTransactionUpdateRequest) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given string and assigns it to the CurrencyCode field.

func (*ManagedTransactionUpdateRequest) SetDescription

func (o *ManagedTransactionUpdateRequest) SetDescription(v string)

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

func (*ManagedTransactionUpdateRequest) SetId

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

func (*ManagedTransactionUpdateRequest) SetIsInternational

func (o *ManagedTransactionUpdateRequest) SetIsInternational(v bool)

SetIsInternational gets a reference to the given bool and assigns it to the IsInternational field.

func (*ManagedTransactionUpdateRequest) SetLatitude

func (o *ManagedTransactionUpdateRequest) SetLatitude(v float32)

SetLatitude gets a reference to the given float32 and assigns it to the Latitude field.

func (*ManagedTransactionUpdateRequest) SetLocalizedDescription

func (o *ManagedTransactionUpdateRequest) SetLocalizedDescription(v string)

SetLocalizedDescription gets a reference to the given string and assigns it to the LocalizedDescription field.

func (*ManagedTransactionUpdateRequest) SetLocalizedMemo

func (o *ManagedTransactionUpdateRequest) SetLocalizedMemo(v string)

SetLocalizedMemo gets a reference to the given string and assigns it to the LocalizedMemo field.

func (*ManagedTransactionUpdateRequest) SetLongitude

func (o *ManagedTransactionUpdateRequest) SetLongitude(v float32)

SetLongitude gets a reference to the given float32 and assigns it to the Longitude field.

func (*ManagedTransactionUpdateRequest) SetMemo

SetMemo gets a reference to the given string and assigns it to the Memo field.

func (*ManagedTransactionUpdateRequest) SetMerchantCategoryCode

func (o *ManagedTransactionUpdateRequest) SetMerchantCategoryCode(v int32)

SetMerchantCategoryCode gets a reference to the given int32 and assigns it to the MerchantCategoryCode field.

func (*ManagedTransactionUpdateRequest) SetMerchantGuid

func (o *ManagedTransactionUpdateRequest) SetMerchantGuid(v string)

SetMerchantGuid gets a reference to the given string and assigns it to the MerchantGuid field.

func (*ManagedTransactionUpdateRequest) SetMerchantLocationGuid

func (o *ManagedTransactionUpdateRequest) SetMerchantLocationGuid(v string)

SetMerchantLocationGuid gets a reference to the given string and assigns it to the MerchantLocationGuid field.

func (*ManagedTransactionUpdateRequest) SetMetadata

func (o *ManagedTransactionUpdateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*ManagedTransactionUpdateRequest) SetPostedAt

func (o *ManagedTransactionUpdateRequest) SetPostedAt(v string)

SetPostedAt gets a reference to the given string and assigns it to the PostedAt field.

func (*ManagedTransactionUpdateRequest) SetStatus

func (o *ManagedTransactionUpdateRequest) SetStatus(v string)

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

func (*ManagedTransactionUpdateRequest) SetTransactedAt

func (o *ManagedTransactionUpdateRequest) SetTransactedAt(v string)

SetTransactedAt gets a reference to the given string and assigns it to the TransactedAt field.

func (*ManagedTransactionUpdateRequest) SetType

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

func (ManagedTransactionUpdateRequest) ToMap added in v0.17.1

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

type ManagedTransactionUpdateRequestBody

type ManagedTransactionUpdateRequestBody struct {
	Transaction *ManagedTransactionUpdateRequest `json:"transaction,omitempty"`
}

ManagedTransactionUpdateRequestBody struct for ManagedTransactionUpdateRequestBody

func NewManagedTransactionUpdateRequestBody

func NewManagedTransactionUpdateRequestBody() *ManagedTransactionUpdateRequestBody

NewManagedTransactionUpdateRequestBody instantiates a new ManagedTransactionUpdateRequestBody 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 NewManagedTransactionUpdateRequestBodyWithDefaults

func NewManagedTransactionUpdateRequestBodyWithDefaults() *ManagedTransactionUpdateRequestBody

NewManagedTransactionUpdateRequestBodyWithDefaults instantiates a new ManagedTransactionUpdateRequestBody 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 (*ManagedTransactionUpdateRequestBody) GetTransaction

GetTransaction returns the Transaction field value if set, zero value otherwise.

func (*ManagedTransactionUpdateRequestBody) GetTransactionOk

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

func (*ManagedTransactionUpdateRequestBody) HasTransaction

func (o *ManagedTransactionUpdateRequestBody) HasTransaction() bool

HasTransaction returns a boolean if a field has been set.

func (ManagedTransactionUpdateRequestBody) MarshalJSON

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

func (*ManagedTransactionUpdateRequestBody) SetTransaction

SetTransaction gets a reference to the given ManagedTransactionUpdateRequest and assigns it to the Transaction field.

func (ManagedTransactionUpdateRequestBody) ToMap added in v0.17.1

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

type MappedNullable added in v0.17.1

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

type MemberCreateRequest

type MemberCreateRequest struct {
	BackgroundAggregationIsDisabled *bool               `json:"background_aggregation_is_disabled,omitempty"`
	Credentials                     []CredentialRequest `json:"credentials"`
	Id                              *string             `json:"id,omitempty"`
	InstitutionCode                 string              `json:"institution_code"`
	IsOauth                         *bool               `json:"is_oauth,omitempty"`
	Metadata                        *string             `json:"metadata,omitempty"`
	SkipAggregation                 *bool               `json:"skip_aggregation,omitempty"`
}

MemberCreateRequest struct for MemberCreateRequest

func NewMemberCreateRequest

func NewMemberCreateRequest(credentials []CredentialRequest, institutionCode string) *MemberCreateRequest

NewMemberCreateRequest instantiates a new MemberCreateRequest 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 NewMemberCreateRequestWithDefaults

func NewMemberCreateRequestWithDefaults() *MemberCreateRequest

NewMemberCreateRequestWithDefaults instantiates a new MemberCreateRequest 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 (*MemberCreateRequest) GetBackgroundAggregationIsDisabled

func (o *MemberCreateRequest) GetBackgroundAggregationIsDisabled() bool

GetBackgroundAggregationIsDisabled returns the BackgroundAggregationIsDisabled field value if set, zero value otherwise.

func (*MemberCreateRequest) GetBackgroundAggregationIsDisabledOk

func (o *MemberCreateRequest) GetBackgroundAggregationIsDisabledOk() (*bool, bool)

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

func (*MemberCreateRequest) GetCredentials

func (o *MemberCreateRequest) GetCredentials() []CredentialRequest

GetCredentials returns the Credentials field value

func (*MemberCreateRequest) GetCredentialsOk

func (o *MemberCreateRequest) GetCredentialsOk() ([]CredentialRequest, bool)

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

func (*MemberCreateRequest) GetId

func (o *MemberCreateRequest) GetId() string

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

func (*MemberCreateRequest) GetIdOk

func (o *MemberCreateRequest) 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 (*MemberCreateRequest) GetInstitutionCode

func (o *MemberCreateRequest) GetInstitutionCode() string

GetInstitutionCode returns the InstitutionCode field value

func (*MemberCreateRequest) GetInstitutionCodeOk

func (o *MemberCreateRequest) GetInstitutionCodeOk() (*string, bool)

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

func (*MemberCreateRequest) GetIsOauth

func (o *MemberCreateRequest) GetIsOauth() bool

GetIsOauth returns the IsOauth field value if set, zero value otherwise.

func (*MemberCreateRequest) GetIsOauthOk

func (o *MemberCreateRequest) GetIsOauthOk() (*bool, bool)

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

func (*MemberCreateRequest) GetMetadata

func (o *MemberCreateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*MemberCreateRequest) GetMetadataOk

func (o *MemberCreateRequest) GetMetadataOk() (*string, bool)

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

func (*MemberCreateRequest) GetSkipAggregation

func (o *MemberCreateRequest) GetSkipAggregation() bool

GetSkipAggregation returns the SkipAggregation field value if set, zero value otherwise.

func (*MemberCreateRequest) GetSkipAggregationOk

func (o *MemberCreateRequest) GetSkipAggregationOk() (*bool, bool)

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

func (*MemberCreateRequest) HasBackgroundAggregationIsDisabled

func (o *MemberCreateRequest) HasBackgroundAggregationIsDisabled() bool

HasBackgroundAggregationIsDisabled returns a boolean if a field has been set.

func (*MemberCreateRequest) HasId

func (o *MemberCreateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*MemberCreateRequest) HasIsOauth

func (o *MemberCreateRequest) HasIsOauth() bool

HasIsOauth returns a boolean if a field has been set.

func (*MemberCreateRequest) HasMetadata

func (o *MemberCreateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*MemberCreateRequest) HasSkipAggregation

func (o *MemberCreateRequest) HasSkipAggregation() bool

HasSkipAggregation returns a boolean if a field has been set.

func (MemberCreateRequest) MarshalJSON

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

func (*MemberCreateRequest) SetBackgroundAggregationIsDisabled

func (o *MemberCreateRequest) SetBackgroundAggregationIsDisabled(v bool)

SetBackgroundAggregationIsDisabled gets a reference to the given bool and assigns it to the BackgroundAggregationIsDisabled field.

func (*MemberCreateRequest) SetCredentials

func (o *MemberCreateRequest) SetCredentials(v []CredentialRequest)

SetCredentials sets field value

func (*MemberCreateRequest) SetId

func (o *MemberCreateRequest) SetId(v string)

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

func (*MemberCreateRequest) SetInstitutionCode

func (o *MemberCreateRequest) SetInstitutionCode(v string)

SetInstitutionCode sets field value

func (*MemberCreateRequest) SetIsOauth

func (o *MemberCreateRequest) SetIsOauth(v bool)

SetIsOauth gets a reference to the given bool and assigns it to the IsOauth field.

func (*MemberCreateRequest) SetMetadata

func (o *MemberCreateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*MemberCreateRequest) SetSkipAggregation

func (o *MemberCreateRequest) SetSkipAggregation(v bool)

SetSkipAggregation gets a reference to the given bool and assigns it to the SkipAggregation field.

func (MemberCreateRequest) ToMap added in v0.17.1

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

type MemberCreateRequestBody

type MemberCreateRequestBody struct {
	ClientRedirectUrl         *string              `json:"client_redirect_url,omitempty"`
	EnableApp2app             *bool                `json:"enable_app2app,omitempty"`
	Member                    *MemberCreateRequest `json:"member,omitempty"`
	ReferralSource            *string              `json:"referral_source,omitempty"`
	UiMessageWebviewUrlScheme *string              `json:"ui_message_webview_url_scheme,omitempty"`
}

MemberCreateRequestBody struct for MemberCreateRequestBody

func NewMemberCreateRequestBody

func NewMemberCreateRequestBody() *MemberCreateRequestBody

NewMemberCreateRequestBody instantiates a new MemberCreateRequestBody 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 NewMemberCreateRequestBodyWithDefaults

func NewMemberCreateRequestBodyWithDefaults() *MemberCreateRequestBody

NewMemberCreateRequestBodyWithDefaults instantiates a new MemberCreateRequestBody 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 (*MemberCreateRequestBody) GetClientRedirectUrl added in v0.9.0

func (o *MemberCreateRequestBody) GetClientRedirectUrl() string

GetClientRedirectUrl returns the ClientRedirectUrl field value if set, zero value otherwise.

func (*MemberCreateRequestBody) GetClientRedirectUrlOk added in v0.9.0

func (o *MemberCreateRequestBody) GetClientRedirectUrlOk() (*string, bool)

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

func (*MemberCreateRequestBody) GetEnableApp2app added in v0.16.0

func (o *MemberCreateRequestBody) GetEnableApp2app() bool

GetEnableApp2app returns the EnableApp2app field value if set, zero value otherwise.

func (*MemberCreateRequestBody) GetEnableApp2appOk added in v0.16.0

func (o *MemberCreateRequestBody) GetEnableApp2appOk() (*bool, bool)

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

func (*MemberCreateRequestBody) GetMember

GetMember returns the Member field value if set, zero value otherwise.

func (*MemberCreateRequestBody) GetMemberOk

func (o *MemberCreateRequestBody) GetMemberOk() (*MemberCreateRequest, bool)

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

func (*MemberCreateRequestBody) GetReferralSource

func (o *MemberCreateRequestBody) GetReferralSource() string

GetReferralSource returns the ReferralSource field value if set, zero value otherwise.

func (*MemberCreateRequestBody) GetReferralSourceOk

func (o *MemberCreateRequestBody) GetReferralSourceOk() (*string, bool)

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

func (*MemberCreateRequestBody) GetUiMessageWebviewUrlScheme

func (o *MemberCreateRequestBody) GetUiMessageWebviewUrlScheme() string

GetUiMessageWebviewUrlScheme returns the UiMessageWebviewUrlScheme field value if set, zero value otherwise.

func (*MemberCreateRequestBody) GetUiMessageWebviewUrlSchemeOk

func (o *MemberCreateRequestBody) GetUiMessageWebviewUrlSchemeOk() (*string, bool)

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

func (*MemberCreateRequestBody) HasClientRedirectUrl added in v0.9.0

func (o *MemberCreateRequestBody) HasClientRedirectUrl() bool

HasClientRedirectUrl returns a boolean if a field has been set.

func (*MemberCreateRequestBody) HasEnableApp2app added in v0.16.0

func (o *MemberCreateRequestBody) HasEnableApp2app() bool

HasEnableApp2app returns a boolean if a field has been set.

func (*MemberCreateRequestBody) HasMember

func (o *MemberCreateRequestBody) HasMember() bool

HasMember returns a boolean if a field has been set.

func (*MemberCreateRequestBody) HasReferralSource

func (o *MemberCreateRequestBody) HasReferralSource() bool

HasReferralSource returns a boolean if a field has been set.

func (*MemberCreateRequestBody) HasUiMessageWebviewUrlScheme

func (o *MemberCreateRequestBody) HasUiMessageWebviewUrlScheme() bool

HasUiMessageWebviewUrlScheme returns a boolean if a field has been set.

func (MemberCreateRequestBody) MarshalJSON

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

func (*MemberCreateRequestBody) SetClientRedirectUrl added in v0.9.0

func (o *MemberCreateRequestBody) SetClientRedirectUrl(v string)

SetClientRedirectUrl gets a reference to the given string and assigns it to the ClientRedirectUrl field.

func (*MemberCreateRequestBody) SetEnableApp2app added in v0.16.0

func (o *MemberCreateRequestBody) SetEnableApp2app(v bool)

SetEnableApp2app gets a reference to the given bool and assigns it to the EnableApp2app field.

func (*MemberCreateRequestBody) SetMember

SetMember gets a reference to the given MemberCreateRequest and assigns it to the Member field.

func (*MemberCreateRequestBody) SetReferralSource

func (o *MemberCreateRequestBody) SetReferralSource(v string)

SetReferralSource gets a reference to the given string and assigns it to the ReferralSource field.

func (*MemberCreateRequestBody) SetUiMessageWebviewUrlScheme

func (o *MemberCreateRequestBody) SetUiMessageWebviewUrlScheme(v string)

SetUiMessageWebviewUrlScheme gets a reference to the given string and assigns it to the UiMessageWebviewUrlScheme field.

func (MemberCreateRequestBody) ToMap added in v0.17.1

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

type MemberResponse

type MemberResponse struct {
	AggregatedAt                    NullableString `json:"aggregated_at,omitempty"`
	BackgroundAggregationIsDisabled *bool          `json:"background_aggregation_is_disabled,omitempty"`
	ConnectionStatus                NullableString `json:"connection_status,omitempty"`
	Guid                            NullableString `json:"guid,omitempty"`
	Id                              NullableString `json:"id,omitempty"`
	InstitutionCode                 NullableString `json:"institution_code,omitempty"`
	IsBeingAggregated               NullableBool   `json:"is_being_aggregated,omitempty"`
	IsManagedByUser                 NullableBool   `json:"is_managed_by_user,omitempty"`
	IsOauth                         NullableBool   `json:"is_oauth,omitempty"`
	Metadata                        NullableString `json:"metadata,omitempty"`
	Name                            NullableString `json:"name,omitempty"`
	OauthWindowUri                  NullableString `json:"oauth_window_uri,omitempty"`
	SuccessfullyAggregatedAt        NullableString `json:"successfully_aggregated_at,omitempty"`
	UserGuid                        NullableString `json:"user_guid,omitempty"`
	UserId                          NullableString `json:"user_id,omitempty"`
}

MemberResponse struct for MemberResponse

func NewMemberResponse

func NewMemberResponse() *MemberResponse

NewMemberResponse instantiates a new MemberResponse 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 NewMemberResponseWithDefaults

func NewMemberResponseWithDefaults() *MemberResponse

NewMemberResponseWithDefaults instantiates a new MemberResponse 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 (*MemberResponse) GetAggregatedAt

func (o *MemberResponse) GetAggregatedAt() string

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

func (*MemberResponse) GetAggregatedAtOk

func (o *MemberResponse) GetAggregatedAtOk() (*string, bool)

GetAggregatedAtOk returns a tuple with the AggregatedAt 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 (*MemberResponse) GetBackgroundAggregationIsDisabled added in v0.9.0

func (o *MemberResponse) GetBackgroundAggregationIsDisabled() bool

GetBackgroundAggregationIsDisabled returns the BackgroundAggregationIsDisabled field value if set, zero value otherwise.

func (*MemberResponse) GetBackgroundAggregationIsDisabledOk added in v0.9.0

func (o *MemberResponse) GetBackgroundAggregationIsDisabledOk() (*bool, bool)

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

func (*MemberResponse) GetConnectionStatus

func (o *MemberResponse) GetConnectionStatus() string

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

func (*MemberResponse) GetConnectionStatusOk

func (o *MemberResponse) GetConnectionStatusOk() (*string, bool)

GetConnectionStatusOk returns a tuple with the ConnectionStatus 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 (*MemberResponse) GetGuid

func (o *MemberResponse) GetGuid() string

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

func (*MemberResponse) GetGuidOk

func (o *MemberResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*MemberResponse) GetId

func (o *MemberResponse) GetId() string

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

func (*MemberResponse) GetIdOk

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

func (*MemberResponse) GetInstitutionCode

func (o *MemberResponse) GetInstitutionCode() string

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

func (*MemberResponse) GetInstitutionCodeOk

func (o *MemberResponse) GetInstitutionCodeOk() (*string, bool)

GetInstitutionCodeOk returns a tuple with the InstitutionCode 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 (*MemberResponse) GetIsBeingAggregated

func (o *MemberResponse) GetIsBeingAggregated() bool

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

func (*MemberResponse) GetIsBeingAggregatedOk

func (o *MemberResponse) GetIsBeingAggregatedOk() (*bool, bool)

GetIsBeingAggregatedOk returns a tuple with the IsBeingAggregated 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 (*MemberResponse) GetIsManagedByUser

func (o *MemberResponse) GetIsManagedByUser() bool

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

func (*MemberResponse) GetIsManagedByUserOk

func (o *MemberResponse) GetIsManagedByUserOk() (*bool, bool)

GetIsManagedByUserOk returns a tuple with the IsManagedByUser 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 (*MemberResponse) GetIsOauth

func (o *MemberResponse) GetIsOauth() bool

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

func (*MemberResponse) GetIsOauthOk

func (o *MemberResponse) GetIsOauthOk() (*bool, bool)

GetIsOauthOk returns a tuple with the IsOauth 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 (*MemberResponse) GetMetadata

func (o *MemberResponse) GetMetadata() string

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

func (*MemberResponse) GetMetadataOk

func (o *MemberResponse) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata 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 (*MemberResponse) GetName

func (o *MemberResponse) GetName() string

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

func (*MemberResponse) GetNameOk

func (o *MemberResponse) 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 (*MemberResponse) GetOauthWindowUri

func (o *MemberResponse) GetOauthWindowUri() string

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

func (*MemberResponse) GetOauthWindowUriOk

func (o *MemberResponse) GetOauthWindowUriOk() (*string, bool)

GetOauthWindowUriOk returns a tuple with the OauthWindowUri 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 (*MemberResponse) GetSuccessfullyAggregatedAt

func (o *MemberResponse) GetSuccessfullyAggregatedAt() string

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

func (*MemberResponse) GetSuccessfullyAggregatedAtOk

func (o *MemberResponse) GetSuccessfullyAggregatedAtOk() (*string, bool)

GetSuccessfullyAggregatedAtOk returns a tuple with the SuccessfullyAggregatedAt 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 (*MemberResponse) GetUserGuid

func (o *MemberResponse) GetUserGuid() string

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

func (*MemberResponse) GetUserGuidOk

func (o *MemberResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*MemberResponse) GetUserId

func (o *MemberResponse) GetUserId() string

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

func (*MemberResponse) GetUserIdOk

func (o *MemberResponse) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId 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 (*MemberResponse) HasAggregatedAt

func (o *MemberResponse) HasAggregatedAt() bool

HasAggregatedAt returns a boolean if a field has been set.

func (*MemberResponse) HasBackgroundAggregationIsDisabled added in v0.9.0

func (o *MemberResponse) HasBackgroundAggregationIsDisabled() bool

HasBackgroundAggregationIsDisabled returns a boolean if a field has been set.

func (*MemberResponse) HasConnectionStatus

func (o *MemberResponse) HasConnectionStatus() bool

HasConnectionStatus returns a boolean if a field has been set.

func (*MemberResponse) HasGuid

func (o *MemberResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*MemberResponse) HasId

func (o *MemberResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*MemberResponse) HasInstitutionCode

func (o *MemberResponse) HasInstitutionCode() bool

HasInstitutionCode returns a boolean if a field has been set.

func (*MemberResponse) HasIsBeingAggregated

func (o *MemberResponse) HasIsBeingAggregated() bool

HasIsBeingAggregated returns a boolean if a field has been set.

func (*MemberResponse) HasIsManagedByUser

func (o *MemberResponse) HasIsManagedByUser() bool

HasIsManagedByUser returns a boolean if a field has been set.

func (*MemberResponse) HasIsOauth

func (o *MemberResponse) HasIsOauth() bool

HasIsOauth returns a boolean if a field has been set.

func (*MemberResponse) HasMetadata

func (o *MemberResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*MemberResponse) HasName

func (o *MemberResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*MemberResponse) HasOauthWindowUri

func (o *MemberResponse) HasOauthWindowUri() bool

HasOauthWindowUri returns a boolean if a field has been set.

func (*MemberResponse) HasSuccessfullyAggregatedAt

func (o *MemberResponse) HasSuccessfullyAggregatedAt() bool

HasSuccessfullyAggregatedAt returns a boolean if a field has been set.

func (*MemberResponse) HasUserGuid

func (o *MemberResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (*MemberResponse) HasUserId

func (o *MemberResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (MemberResponse) MarshalJSON

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

func (*MemberResponse) SetAggregatedAt

func (o *MemberResponse) SetAggregatedAt(v string)

SetAggregatedAt gets a reference to the given NullableString and assigns it to the AggregatedAt field.

func (*MemberResponse) SetAggregatedAtNil

func (o *MemberResponse) SetAggregatedAtNil()

SetAggregatedAtNil sets the value for AggregatedAt to be an explicit nil

func (*MemberResponse) SetBackgroundAggregationIsDisabled added in v0.9.0

func (o *MemberResponse) SetBackgroundAggregationIsDisabled(v bool)

SetBackgroundAggregationIsDisabled gets a reference to the given bool and assigns it to the BackgroundAggregationIsDisabled field.

func (*MemberResponse) SetConnectionStatus

func (o *MemberResponse) SetConnectionStatus(v string)

SetConnectionStatus gets a reference to the given NullableString and assigns it to the ConnectionStatus field.

func (*MemberResponse) SetConnectionStatusNil

func (o *MemberResponse) SetConnectionStatusNil()

SetConnectionStatusNil sets the value for ConnectionStatus to be an explicit nil

func (*MemberResponse) SetGuid

func (o *MemberResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*MemberResponse) SetGuidNil added in v0.4.1

func (o *MemberResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*MemberResponse) SetId

func (o *MemberResponse) SetId(v string)

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

func (*MemberResponse) SetIdNil

func (o *MemberResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*MemberResponse) SetInstitutionCode

func (o *MemberResponse) SetInstitutionCode(v string)

SetInstitutionCode gets a reference to the given NullableString and assigns it to the InstitutionCode field.

func (*MemberResponse) SetInstitutionCodeNil

func (o *MemberResponse) SetInstitutionCodeNil()

SetInstitutionCodeNil sets the value for InstitutionCode to be an explicit nil

func (*MemberResponse) SetIsBeingAggregated

func (o *MemberResponse) SetIsBeingAggregated(v bool)

SetIsBeingAggregated gets a reference to the given NullableBool and assigns it to the IsBeingAggregated field.

func (*MemberResponse) SetIsBeingAggregatedNil

func (o *MemberResponse) SetIsBeingAggregatedNil()

SetIsBeingAggregatedNil sets the value for IsBeingAggregated to be an explicit nil

func (*MemberResponse) SetIsManagedByUser

func (o *MemberResponse) SetIsManagedByUser(v bool)

SetIsManagedByUser gets a reference to the given NullableBool and assigns it to the IsManagedByUser field.

func (*MemberResponse) SetIsManagedByUserNil

func (o *MemberResponse) SetIsManagedByUserNil()

SetIsManagedByUserNil sets the value for IsManagedByUser to be an explicit nil

func (*MemberResponse) SetIsOauth

func (o *MemberResponse) SetIsOauth(v bool)

SetIsOauth gets a reference to the given NullableBool and assigns it to the IsOauth field.

func (*MemberResponse) SetIsOauthNil

func (o *MemberResponse) SetIsOauthNil()

SetIsOauthNil sets the value for IsOauth to be an explicit nil

func (*MemberResponse) SetMetadata

func (o *MemberResponse) SetMetadata(v string)

SetMetadata gets a reference to the given NullableString and assigns it to the Metadata field.

func (*MemberResponse) SetMetadataNil

func (o *MemberResponse) SetMetadataNil()

SetMetadataNil sets the value for Metadata to be an explicit nil

func (*MemberResponse) SetName

func (o *MemberResponse) SetName(v string)

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

func (*MemberResponse) SetNameNil

func (o *MemberResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*MemberResponse) SetOauthWindowUri

func (o *MemberResponse) SetOauthWindowUri(v string)

SetOauthWindowUri gets a reference to the given NullableString and assigns it to the OauthWindowUri field.

func (*MemberResponse) SetOauthWindowUriNil

func (o *MemberResponse) SetOauthWindowUriNil()

SetOauthWindowUriNil sets the value for OauthWindowUri to be an explicit nil

func (*MemberResponse) SetSuccessfullyAggregatedAt

func (o *MemberResponse) SetSuccessfullyAggregatedAt(v string)

SetSuccessfullyAggregatedAt gets a reference to the given NullableString and assigns it to the SuccessfullyAggregatedAt field.

func (*MemberResponse) SetSuccessfullyAggregatedAtNil

func (o *MemberResponse) SetSuccessfullyAggregatedAtNil()

SetSuccessfullyAggregatedAtNil sets the value for SuccessfullyAggregatedAt to be an explicit nil

func (*MemberResponse) SetUserGuid

func (o *MemberResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*MemberResponse) SetUserGuidNil added in v0.4.1

func (o *MemberResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (*MemberResponse) SetUserId

func (o *MemberResponse) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*MemberResponse) SetUserIdNil

func (o *MemberResponse) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (MemberResponse) ToMap added in v0.17.1

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

func (*MemberResponse) UnsetAggregatedAt

func (o *MemberResponse) UnsetAggregatedAt()

UnsetAggregatedAt ensures that no value is present for AggregatedAt, not even an explicit nil

func (*MemberResponse) UnsetConnectionStatus

func (o *MemberResponse) UnsetConnectionStatus()

UnsetConnectionStatus ensures that no value is present for ConnectionStatus, not even an explicit nil

func (*MemberResponse) UnsetGuid added in v0.4.1

func (o *MemberResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*MemberResponse) UnsetId

func (o *MemberResponse) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*MemberResponse) UnsetInstitutionCode

func (o *MemberResponse) UnsetInstitutionCode()

UnsetInstitutionCode ensures that no value is present for InstitutionCode, not even an explicit nil

func (*MemberResponse) UnsetIsBeingAggregated

func (o *MemberResponse) UnsetIsBeingAggregated()

UnsetIsBeingAggregated ensures that no value is present for IsBeingAggregated, not even an explicit nil

func (*MemberResponse) UnsetIsManagedByUser

func (o *MemberResponse) UnsetIsManagedByUser()

UnsetIsManagedByUser ensures that no value is present for IsManagedByUser, not even an explicit nil

func (*MemberResponse) UnsetIsOauth

func (o *MemberResponse) UnsetIsOauth()

UnsetIsOauth ensures that no value is present for IsOauth, not even an explicit nil

func (*MemberResponse) UnsetMetadata

func (o *MemberResponse) UnsetMetadata()

UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil

func (*MemberResponse) UnsetName

func (o *MemberResponse) UnsetName()

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

func (*MemberResponse) UnsetOauthWindowUri

func (o *MemberResponse) UnsetOauthWindowUri()

UnsetOauthWindowUri ensures that no value is present for OauthWindowUri, not even an explicit nil

func (*MemberResponse) UnsetSuccessfullyAggregatedAt

func (o *MemberResponse) UnsetSuccessfullyAggregatedAt()

UnsetSuccessfullyAggregatedAt ensures that no value is present for SuccessfullyAggregatedAt, not even an explicit nil

func (*MemberResponse) UnsetUserGuid added in v0.4.1

func (o *MemberResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

func (*MemberResponse) UnsetUserId

func (o *MemberResponse) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type MemberResponseBody

type MemberResponseBody struct {
	Member *MemberResponse `json:"member,omitempty"`
}

MemberResponseBody struct for MemberResponseBody

func NewMemberResponseBody

func NewMemberResponseBody() *MemberResponseBody

NewMemberResponseBody instantiates a new MemberResponseBody 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 NewMemberResponseBodyWithDefaults

func NewMemberResponseBodyWithDefaults() *MemberResponseBody

NewMemberResponseBodyWithDefaults instantiates a new MemberResponseBody 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 (*MemberResponseBody) GetMember

func (o *MemberResponseBody) GetMember() MemberResponse

GetMember returns the Member field value if set, zero value otherwise.

func (*MemberResponseBody) GetMemberOk

func (o *MemberResponseBody) GetMemberOk() (*MemberResponse, bool)

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

func (*MemberResponseBody) HasMember

func (o *MemberResponseBody) HasMember() bool

HasMember returns a boolean if a field has been set.

func (MemberResponseBody) MarshalJSON

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

func (*MemberResponseBody) SetMember

func (o *MemberResponseBody) SetMember(v MemberResponse)

SetMember gets a reference to the given MemberResponse and assigns it to the Member field.

func (MemberResponseBody) ToMap added in v0.17.1

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

type MemberResumeRequest

type MemberResumeRequest struct {
	Challenges []CredentialRequest `json:"challenges,omitempty"`
}

MemberResumeRequest struct for MemberResumeRequest

func NewMemberResumeRequest

func NewMemberResumeRequest() *MemberResumeRequest

NewMemberResumeRequest instantiates a new MemberResumeRequest 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 NewMemberResumeRequestWithDefaults

func NewMemberResumeRequestWithDefaults() *MemberResumeRequest

NewMemberResumeRequestWithDefaults instantiates a new MemberResumeRequest 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 (*MemberResumeRequest) GetChallenges

func (o *MemberResumeRequest) GetChallenges() []CredentialRequest

GetChallenges returns the Challenges field value if set, zero value otherwise.

func (*MemberResumeRequest) GetChallengesOk

func (o *MemberResumeRequest) GetChallengesOk() ([]CredentialRequest, bool)

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

func (*MemberResumeRequest) HasChallenges

func (o *MemberResumeRequest) HasChallenges() bool

HasChallenges returns a boolean if a field has been set.

func (MemberResumeRequest) MarshalJSON

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

func (*MemberResumeRequest) SetChallenges

func (o *MemberResumeRequest) SetChallenges(v []CredentialRequest)

SetChallenges gets a reference to the given []CredentialRequest and assigns it to the Challenges field.

func (MemberResumeRequest) ToMap added in v0.17.1

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

type MemberResumeRequestBody

type MemberResumeRequestBody struct {
	Member *MemberResumeRequest `json:"member,omitempty"`
}

MemberResumeRequestBody struct for MemberResumeRequestBody

func NewMemberResumeRequestBody

func NewMemberResumeRequestBody() *MemberResumeRequestBody

NewMemberResumeRequestBody instantiates a new MemberResumeRequestBody 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 NewMemberResumeRequestBodyWithDefaults

func NewMemberResumeRequestBodyWithDefaults() *MemberResumeRequestBody

NewMemberResumeRequestBodyWithDefaults instantiates a new MemberResumeRequestBody 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 (*MemberResumeRequestBody) GetMember

GetMember returns the Member field value if set, zero value otherwise.

func (*MemberResumeRequestBody) GetMemberOk

func (o *MemberResumeRequestBody) GetMemberOk() (*MemberResumeRequest, bool)

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

func (*MemberResumeRequestBody) HasMember

func (o *MemberResumeRequestBody) HasMember() bool

HasMember returns a boolean if a field has been set.

func (MemberResumeRequestBody) MarshalJSON

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

func (*MemberResumeRequestBody) SetMember

SetMember gets a reference to the given MemberResumeRequest and assigns it to the Member field.

func (MemberResumeRequestBody) ToMap added in v0.17.1

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

type MemberStatusResponse

type MemberStatusResponse struct {
	AggregatedAt             NullableString      `json:"aggregated_at,omitempty"`
	Challenges               []ChallengeResponse `json:"challenges,omitempty"`
	ConnectionStatus         NullableString      `json:"connection_status,omitempty"`
	Guid                     NullableString      `json:"guid,omitempty"`
	HasProcessedAccounts     NullableBool        `json:"has_processed_accounts,omitempty"`
	HasProcessedTransactions NullableBool        `json:"has_processed_transactions,omitempty"`
	IsAuthenticated          NullableBool        `json:"is_authenticated,omitempty"`
	IsBeingAggregated        NullableBool        `json:"is_being_aggregated,omitempty"`
	SuccessfullyAggregatedAt NullableString      `json:"successfully_aggregated_at,omitempty"`
}

MemberStatusResponse struct for MemberStatusResponse

func NewMemberStatusResponse

func NewMemberStatusResponse() *MemberStatusResponse

NewMemberStatusResponse instantiates a new MemberStatusResponse 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 NewMemberStatusResponseWithDefaults

func NewMemberStatusResponseWithDefaults() *MemberStatusResponse

NewMemberStatusResponseWithDefaults instantiates a new MemberStatusResponse 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 (*MemberStatusResponse) GetAggregatedAt

func (o *MemberStatusResponse) GetAggregatedAt() string

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

func (*MemberStatusResponse) GetAggregatedAtOk

func (o *MemberStatusResponse) GetAggregatedAtOk() (*string, bool)

GetAggregatedAtOk returns a tuple with the AggregatedAt 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 (*MemberStatusResponse) GetChallenges

func (o *MemberStatusResponse) GetChallenges() []ChallengeResponse

GetChallenges returns the Challenges field value if set, zero value otherwise.

func (*MemberStatusResponse) GetChallengesOk

func (o *MemberStatusResponse) GetChallengesOk() ([]ChallengeResponse, bool)

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

func (*MemberStatusResponse) GetConnectionStatus

func (o *MemberStatusResponse) GetConnectionStatus() string

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

func (*MemberStatusResponse) GetConnectionStatusOk

func (o *MemberStatusResponse) GetConnectionStatusOk() (*string, bool)

GetConnectionStatusOk returns a tuple with the ConnectionStatus 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 (*MemberStatusResponse) GetGuid

func (o *MemberStatusResponse) GetGuid() string

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

func (*MemberStatusResponse) GetGuidOk

func (o *MemberStatusResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*MemberStatusResponse) GetHasProcessedAccounts

func (o *MemberStatusResponse) GetHasProcessedAccounts() bool

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

func (*MemberStatusResponse) GetHasProcessedAccountsOk

func (o *MemberStatusResponse) GetHasProcessedAccountsOk() (*bool, bool)

GetHasProcessedAccountsOk returns a tuple with the HasProcessedAccounts 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 (*MemberStatusResponse) GetHasProcessedTransactions

func (o *MemberStatusResponse) GetHasProcessedTransactions() bool

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

func (*MemberStatusResponse) GetHasProcessedTransactionsOk

func (o *MemberStatusResponse) GetHasProcessedTransactionsOk() (*bool, bool)

GetHasProcessedTransactionsOk returns a tuple with the HasProcessedTransactions 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 (*MemberStatusResponse) GetIsAuthenticated

func (o *MemberStatusResponse) GetIsAuthenticated() bool

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

func (*MemberStatusResponse) GetIsAuthenticatedOk

func (o *MemberStatusResponse) GetIsAuthenticatedOk() (*bool, bool)

GetIsAuthenticatedOk returns a tuple with the IsAuthenticated 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 (*MemberStatusResponse) GetIsBeingAggregated

func (o *MemberStatusResponse) GetIsBeingAggregated() bool

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

func (*MemberStatusResponse) GetIsBeingAggregatedOk

func (o *MemberStatusResponse) GetIsBeingAggregatedOk() (*bool, bool)

GetIsBeingAggregatedOk returns a tuple with the IsBeingAggregated 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 (*MemberStatusResponse) GetSuccessfullyAggregatedAt

func (o *MemberStatusResponse) GetSuccessfullyAggregatedAt() string

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

func (*MemberStatusResponse) GetSuccessfullyAggregatedAtOk

func (o *MemberStatusResponse) GetSuccessfullyAggregatedAtOk() (*string, bool)

GetSuccessfullyAggregatedAtOk returns a tuple with the SuccessfullyAggregatedAt 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 (*MemberStatusResponse) HasAggregatedAt

func (o *MemberStatusResponse) HasAggregatedAt() bool

HasAggregatedAt returns a boolean if a field has been set.

func (*MemberStatusResponse) HasChallenges

func (o *MemberStatusResponse) HasChallenges() bool

HasChallenges returns a boolean if a field has been set.

func (*MemberStatusResponse) HasConnectionStatus

func (o *MemberStatusResponse) HasConnectionStatus() bool

HasConnectionStatus returns a boolean if a field has been set.

func (*MemberStatusResponse) HasGuid

func (o *MemberStatusResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*MemberStatusResponse) HasHasProcessedAccounts

func (o *MemberStatusResponse) HasHasProcessedAccounts() bool

HasHasProcessedAccounts returns a boolean if a field has been set.

func (*MemberStatusResponse) HasHasProcessedTransactions

func (o *MemberStatusResponse) HasHasProcessedTransactions() bool

HasHasProcessedTransactions returns a boolean if a field has been set.

func (*MemberStatusResponse) HasIsAuthenticated

func (o *MemberStatusResponse) HasIsAuthenticated() bool

HasIsAuthenticated returns a boolean if a field has been set.

func (*MemberStatusResponse) HasIsBeingAggregated

func (o *MemberStatusResponse) HasIsBeingAggregated() bool

HasIsBeingAggregated returns a boolean if a field has been set.

func (*MemberStatusResponse) HasSuccessfullyAggregatedAt

func (o *MemberStatusResponse) HasSuccessfullyAggregatedAt() bool

HasSuccessfullyAggregatedAt returns a boolean if a field has been set.

func (MemberStatusResponse) MarshalJSON

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

func (*MemberStatusResponse) SetAggregatedAt

func (o *MemberStatusResponse) SetAggregatedAt(v string)

SetAggregatedAt gets a reference to the given NullableString and assigns it to the AggregatedAt field.

func (*MemberStatusResponse) SetAggregatedAtNil

func (o *MemberStatusResponse) SetAggregatedAtNil()

SetAggregatedAtNil sets the value for AggregatedAt to be an explicit nil

func (*MemberStatusResponse) SetChallenges

func (o *MemberStatusResponse) SetChallenges(v []ChallengeResponse)

SetChallenges gets a reference to the given []ChallengeResponse and assigns it to the Challenges field.

func (*MemberStatusResponse) SetConnectionStatus

func (o *MemberStatusResponse) SetConnectionStatus(v string)

SetConnectionStatus gets a reference to the given NullableString and assigns it to the ConnectionStatus field.

func (*MemberStatusResponse) SetConnectionStatusNil

func (o *MemberStatusResponse) SetConnectionStatusNil()

SetConnectionStatusNil sets the value for ConnectionStatus to be an explicit nil

func (*MemberStatusResponse) SetGuid

func (o *MemberStatusResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*MemberStatusResponse) SetGuidNil added in v0.4.1

func (o *MemberStatusResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*MemberStatusResponse) SetHasProcessedAccounts

func (o *MemberStatusResponse) SetHasProcessedAccounts(v bool)

SetHasProcessedAccounts gets a reference to the given NullableBool and assigns it to the HasProcessedAccounts field.

func (*MemberStatusResponse) SetHasProcessedAccountsNil

func (o *MemberStatusResponse) SetHasProcessedAccountsNil()

SetHasProcessedAccountsNil sets the value for HasProcessedAccounts to be an explicit nil

func (*MemberStatusResponse) SetHasProcessedTransactions

func (o *MemberStatusResponse) SetHasProcessedTransactions(v bool)

SetHasProcessedTransactions gets a reference to the given NullableBool and assigns it to the HasProcessedTransactions field.

func (*MemberStatusResponse) SetHasProcessedTransactionsNil

func (o *MemberStatusResponse) SetHasProcessedTransactionsNil()

SetHasProcessedTransactionsNil sets the value for HasProcessedTransactions to be an explicit nil

func (*MemberStatusResponse) SetIsAuthenticated

func (o *MemberStatusResponse) SetIsAuthenticated(v bool)

SetIsAuthenticated gets a reference to the given NullableBool and assigns it to the IsAuthenticated field.

func (*MemberStatusResponse) SetIsAuthenticatedNil

func (o *MemberStatusResponse) SetIsAuthenticatedNil()

SetIsAuthenticatedNil sets the value for IsAuthenticated to be an explicit nil

func (*MemberStatusResponse) SetIsBeingAggregated

func (o *MemberStatusResponse) SetIsBeingAggregated(v bool)

SetIsBeingAggregated gets a reference to the given NullableBool and assigns it to the IsBeingAggregated field.

func (*MemberStatusResponse) SetIsBeingAggregatedNil

func (o *MemberStatusResponse) SetIsBeingAggregatedNil()

SetIsBeingAggregatedNil sets the value for IsBeingAggregated to be an explicit nil

func (*MemberStatusResponse) SetSuccessfullyAggregatedAt

func (o *MemberStatusResponse) SetSuccessfullyAggregatedAt(v string)

SetSuccessfullyAggregatedAt gets a reference to the given NullableString and assigns it to the SuccessfullyAggregatedAt field.

func (*MemberStatusResponse) SetSuccessfullyAggregatedAtNil

func (o *MemberStatusResponse) SetSuccessfullyAggregatedAtNil()

SetSuccessfullyAggregatedAtNil sets the value for SuccessfullyAggregatedAt to be an explicit nil

func (MemberStatusResponse) ToMap added in v0.17.1

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

func (*MemberStatusResponse) UnsetAggregatedAt

func (o *MemberStatusResponse) UnsetAggregatedAt()

UnsetAggregatedAt ensures that no value is present for AggregatedAt, not even an explicit nil

func (*MemberStatusResponse) UnsetConnectionStatus

func (o *MemberStatusResponse) UnsetConnectionStatus()

UnsetConnectionStatus ensures that no value is present for ConnectionStatus, not even an explicit nil

func (*MemberStatusResponse) UnsetGuid added in v0.4.1

func (o *MemberStatusResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*MemberStatusResponse) UnsetHasProcessedAccounts

func (o *MemberStatusResponse) UnsetHasProcessedAccounts()

UnsetHasProcessedAccounts ensures that no value is present for HasProcessedAccounts, not even an explicit nil

func (*MemberStatusResponse) UnsetHasProcessedTransactions

func (o *MemberStatusResponse) UnsetHasProcessedTransactions()

UnsetHasProcessedTransactions ensures that no value is present for HasProcessedTransactions, not even an explicit nil

func (*MemberStatusResponse) UnsetIsAuthenticated

func (o *MemberStatusResponse) UnsetIsAuthenticated()

UnsetIsAuthenticated ensures that no value is present for IsAuthenticated, not even an explicit nil

func (*MemberStatusResponse) UnsetIsBeingAggregated

func (o *MemberStatusResponse) UnsetIsBeingAggregated()

UnsetIsBeingAggregated ensures that no value is present for IsBeingAggregated, not even an explicit nil

func (*MemberStatusResponse) UnsetSuccessfullyAggregatedAt

func (o *MemberStatusResponse) UnsetSuccessfullyAggregatedAt()

UnsetSuccessfullyAggregatedAt ensures that no value is present for SuccessfullyAggregatedAt, not even an explicit nil

type MemberStatusResponseBody

type MemberStatusResponseBody struct {
	Member *MemberStatusResponse `json:"member,omitempty"`
}

MemberStatusResponseBody struct for MemberStatusResponseBody

func NewMemberStatusResponseBody

func NewMemberStatusResponseBody() *MemberStatusResponseBody

NewMemberStatusResponseBody instantiates a new MemberStatusResponseBody 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 NewMemberStatusResponseBodyWithDefaults

func NewMemberStatusResponseBodyWithDefaults() *MemberStatusResponseBody

NewMemberStatusResponseBodyWithDefaults instantiates a new MemberStatusResponseBody 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 (*MemberStatusResponseBody) GetMember

GetMember returns the Member field value if set, zero value otherwise.

func (*MemberStatusResponseBody) GetMemberOk

func (o *MemberStatusResponseBody) GetMemberOk() (*MemberStatusResponse, bool)

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

func (*MemberStatusResponseBody) HasMember

func (o *MemberStatusResponseBody) HasMember() bool

HasMember returns a boolean if a field has been set.

func (MemberStatusResponseBody) MarshalJSON

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

func (*MemberStatusResponseBody) SetMember

SetMember gets a reference to the given MemberStatusResponse and assigns it to the Member field.

func (MemberStatusResponseBody) ToMap added in v0.17.1

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

type MemberUpdateRequest

type MemberUpdateRequest struct {
	BackgroundAggregationIsDisabled *bool               `json:"background_aggregation_is_disabled,omitempty"`
	Credentials                     []CredentialRequest `json:"credentials,omitempty"`
	Id                              *string             `json:"id,omitempty"`
	Metadata                        *string             `json:"metadata,omitempty"`
	SkipAggregation                 *bool               `json:"skip_aggregation,omitempty"`
}

MemberUpdateRequest struct for MemberUpdateRequest

func NewMemberUpdateRequest

func NewMemberUpdateRequest() *MemberUpdateRequest

NewMemberUpdateRequest instantiates a new MemberUpdateRequest 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 NewMemberUpdateRequestWithDefaults

func NewMemberUpdateRequestWithDefaults() *MemberUpdateRequest

NewMemberUpdateRequestWithDefaults instantiates a new MemberUpdateRequest 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 (*MemberUpdateRequest) GetBackgroundAggregationIsDisabled

func (o *MemberUpdateRequest) GetBackgroundAggregationIsDisabled() bool

GetBackgroundAggregationIsDisabled returns the BackgroundAggregationIsDisabled field value if set, zero value otherwise.

func (*MemberUpdateRequest) GetBackgroundAggregationIsDisabledOk

func (o *MemberUpdateRequest) GetBackgroundAggregationIsDisabledOk() (*bool, bool)

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

func (*MemberUpdateRequest) GetCredentials

func (o *MemberUpdateRequest) GetCredentials() []CredentialRequest

GetCredentials returns the Credentials field value if set, zero value otherwise.

func (*MemberUpdateRequest) GetCredentialsOk

func (o *MemberUpdateRequest) GetCredentialsOk() ([]CredentialRequest, bool)

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

func (*MemberUpdateRequest) GetId

func (o *MemberUpdateRequest) GetId() string

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

func (*MemberUpdateRequest) GetIdOk

func (o *MemberUpdateRequest) 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 (*MemberUpdateRequest) GetMetadata

func (o *MemberUpdateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*MemberUpdateRequest) GetMetadataOk

func (o *MemberUpdateRequest) GetMetadataOk() (*string, bool)

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

func (*MemberUpdateRequest) GetSkipAggregation

func (o *MemberUpdateRequest) GetSkipAggregation() bool

GetSkipAggregation returns the SkipAggregation field value if set, zero value otherwise.

func (*MemberUpdateRequest) GetSkipAggregationOk

func (o *MemberUpdateRequest) GetSkipAggregationOk() (*bool, bool)

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

func (*MemberUpdateRequest) HasBackgroundAggregationIsDisabled

func (o *MemberUpdateRequest) HasBackgroundAggregationIsDisabled() bool

HasBackgroundAggregationIsDisabled returns a boolean if a field has been set.

func (*MemberUpdateRequest) HasCredentials

func (o *MemberUpdateRequest) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*MemberUpdateRequest) HasId

func (o *MemberUpdateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*MemberUpdateRequest) HasMetadata

func (o *MemberUpdateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*MemberUpdateRequest) HasSkipAggregation

func (o *MemberUpdateRequest) HasSkipAggregation() bool

HasSkipAggregation returns a boolean if a field has been set.

func (MemberUpdateRequest) MarshalJSON

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

func (*MemberUpdateRequest) SetBackgroundAggregationIsDisabled

func (o *MemberUpdateRequest) SetBackgroundAggregationIsDisabled(v bool)

SetBackgroundAggregationIsDisabled gets a reference to the given bool and assigns it to the BackgroundAggregationIsDisabled field.

func (*MemberUpdateRequest) SetCredentials

func (o *MemberUpdateRequest) SetCredentials(v []CredentialRequest)

SetCredentials gets a reference to the given []CredentialRequest and assigns it to the Credentials field.

func (*MemberUpdateRequest) SetId

func (o *MemberUpdateRequest) SetId(v string)

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

func (*MemberUpdateRequest) SetMetadata

func (o *MemberUpdateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*MemberUpdateRequest) SetSkipAggregation

func (o *MemberUpdateRequest) SetSkipAggregation(v bool)

SetSkipAggregation gets a reference to the given bool and assigns it to the SkipAggregation field.

func (MemberUpdateRequest) ToMap added in v0.17.1

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

type MemberUpdateRequestBody

type MemberUpdateRequestBody struct {
	Member *MemberUpdateRequest `json:"member,omitempty"`
}

MemberUpdateRequestBody struct for MemberUpdateRequestBody

func NewMemberUpdateRequestBody

func NewMemberUpdateRequestBody() *MemberUpdateRequestBody

NewMemberUpdateRequestBody instantiates a new MemberUpdateRequestBody 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 NewMemberUpdateRequestBodyWithDefaults

func NewMemberUpdateRequestBodyWithDefaults() *MemberUpdateRequestBody

NewMemberUpdateRequestBodyWithDefaults instantiates a new MemberUpdateRequestBody 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 (*MemberUpdateRequestBody) GetMember

GetMember returns the Member field value if set, zero value otherwise.

func (*MemberUpdateRequestBody) GetMemberOk

func (o *MemberUpdateRequestBody) GetMemberOk() (*MemberUpdateRequest, bool)

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

func (*MemberUpdateRequestBody) HasMember

func (o *MemberUpdateRequestBody) HasMember() bool

HasMember returns a boolean if a field has been set.

func (MemberUpdateRequestBody) MarshalJSON

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

func (*MemberUpdateRequestBody) SetMember

SetMember gets a reference to the given MemberUpdateRequest and assigns it to the Member field.

func (MemberUpdateRequestBody) ToMap added in v0.17.1

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

type MembersResponseBody

type MembersResponseBody struct {
	Members    []MemberResponse    `json:"members,omitempty"`
	Pagination *PaginationResponse `json:"pagination,omitempty"`
}

MembersResponseBody struct for MembersResponseBody

func NewMembersResponseBody

func NewMembersResponseBody() *MembersResponseBody

NewMembersResponseBody instantiates a new MembersResponseBody 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 NewMembersResponseBodyWithDefaults

func NewMembersResponseBodyWithDefaults() *MembersResponseBody

NewMembersResponseBodyWithDefaults instantiates a new MembersResponseBody 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 (*MembersResponseBody) GetMembers

func (o *MembersResponseBody) GetMembers() []MemberResponse

GetMembers returns the Members field value if set, zero value otherwise.

func (*MembersResponseBody) GetMembersOk

func (o *MembersResponseBody) GetMembersOk() ([]MemberResponse, bool)

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

func (*MembersResponseBody) GetPagination

func (o *MembersResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*MembersResponseBody) GetPaginationOk

func (o *MembersResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*MembersResponseBody) HasMembers

func (o *MembersResponseBody) HasMembers() bool

HasMembers returns a boolean if a field has been set.

func (*MembersResponseBody) HasPagination

func (o *MembersResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (MembersResponseBody) MarshalJSON

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

func (*MembersResponseBody) SetMembers

func (o *MembersResponseBody) SetMembers(v []MemberResponse)

SetMembers gets a reference to the given []MemberResponse and assigns it to the Members field.

func (*MembersResponseBody) SetPagination

func (o *MembersResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (MembersResponseBody) ToMap added in v0.17.1

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

type MerchantLocationResponse

type MerchantLocationResponse struct {
	City          NullableString  `json:"city,omitempty"`
	Country       NullableString  `json:"country,omitempty"`
	CreatedAt     NullableString  `json:"created_at,omitempty"`
	Guid          NullableString  `json:"guid,omitempty"`
	Latitude      NullableFloat32 `json:"latitude,omitempty"`
	Longitude     NullableFloat32 `json:"longitude,omitempty"`
	MerchantGuid  NullableString  `json:"merchant_guid,omitempty"`
	PhoneNumber   NullableString  `json:"phone_number,omitempty"`
	PostalCode    NullableString  `json:"postal_code,omitempty"`
	State         NullableString  `json:"state,omitempty"`
	StreetAddress NullableString  `json:"street_address,omitempty"`
	UpdatedAt     NullableString  `json:"updated_at,omitempty"`
}

MerchantLocationResponse struct for MerchantLocationResponse

func NewMerchantLocationResponse

func NewMerchantLocationResponse() *MerchantLocationResponse

NewMerchantLocationResponse instantiates a new MerchantLocationResponse 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 NewMerchantLocationResponseWithDefaults

func NewMerchantLocationResponseWithDefaults() *MerchantLocationResponse

NewMerchantLocationResponseWithDefaults instantiates a new MerchantLocationResponse 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 (*MerchantLocationResponse) GetCity

func (o *MerchantLocationResponse) GetCity() string

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

func (*MerchantLocationResponse) GetCityOk

func (o *MerchantLocationResponse) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City 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 (*MerchantLocationResponse) GetCountry

func (o *MerchantLocationResponse) GetCountry() string

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

func (*MerchantLocationResponse) GetCountryOk

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

func (*MerchantLocationResponse) GetCreatedAt

func (o *MerchantLocationResponse) GetCreatedAt() string

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

func (*MerchantLocationResponse) GetCreatedAtOk

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

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

func (*MerchantLocationResponse) GetGuid

func (o *MerchantLocationResponse) GetGuid() string

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

func (*MerchantLocationResponse) GetGuidOk

func (o *MerchantLocationResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*MerchantLocationResponse) GetLatitude

func (o *MerchantLocationResponse) GetLatitude() float32

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

func (*MerchantLocationResponse) GetLatitudeOk

func (o *MerchantLocationResponse) GetLatitudeOk() (*float32, bool)

GetLatitudeOk returns a tuple with the Latitude 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 (*MerchantLocationResponse) GetLongitude

func (o *MerchantLocationResponse) GetLongitude() float32

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

func (*MerchantLocationResponse) GetLongitudeOk

func (o *MerchantLocationResponse) GetLongitudeOk() (*float32, bool)

GetLongitudeOk returns a tuple with the Longitude 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 (*MerchantLocationResponse) GetMerchantGuid

func (o *MerchantLocationResponse) GetMerchantGuid() string

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

func (*MerchantLocationResponse) GetMerchantGuidOk

func (o *MerchantLocationResponse) GetMerchantGuidOk() (*string, bool)

GetMerchantGuidOk returns a tuple with the MerchantGuid 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 (*MerchantLocationResponse) GetPhoneNumber

func (o *MerchantLocationResponse) GetPhoneNumber() string

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

func (*MerchantLocationResponse) GetPhoneNumberOk

func (o *MerchantLocationResponse) GetPhoneNumberOk() (*string, bool)

GetPhoneNumberOk returns a tuple with the PhoneNumber 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 (*MerchantLocationResponse) GetPostalCode

func (o *MerchantLocationResponse) GetPostalCode() string

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

func (*MerchantLocationResponse) GetPostalCodeOk

func (o *MerchantLocationResponse) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode 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 (*MerchantLocationResponse) GetState

func (o *MerchantLocationResponse) GetState() string

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

func (*MerchantLocationResponse) GetStateOk

func (o *MerchantLocationResponse) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State 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 (*MerchantLocationResponse) GetStreetAddress

func (o *MerchantLocationResponse) GetStreetAddress() string

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

func (*MerchantLocationResponse) GetStreetAddressOk

func (o *MerchantLocationResponse) GetStreetAddressOk() (*string, bool)

GetStreetAddressOk returns a tuple with the StreetAddress 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 (*MerchantLocationResponse) GetUpdatedAt

func (o *MerchantLocationResponse) GetUpdatedAt() string

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

func (*MerchantLocationResponse) GetUpdatedAtOk

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

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

func (*MerchantLocationResponse) HasCity

func (o *MerchantLocationResponse) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasCountry

func (o *MerchantLocationResponse) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasCreatedAt

func (o *MerchantLocationResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasGuid

func (o *MerchantLocationResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasLatitude

func (o *MerchantLocationResponse) HasLatitude() bool

HasLatitude returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasLongitude

func (o *MerchantLocationResponse) HasLongitude() bool

HasLongitude returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasMerchantGuid

func (o *MerchantLocationResponse) HasMerchantGuid() bool

HasMerchantGuid returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasPhoneNumber

func (o *MerchantLocationResponse) HasPhoneNumber() bool

HasPhoneNumber returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasPostalCode

func (o *MerchantLocationResponse) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasState

func (o *MerchantLocationResponse) HasState() bool

HasState returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasStreetAddress

func (o *MerchantLocationResponse) HasStreetAddress() bool

HasStreetAddress returns a boolean if a field has been set.

func (*MerchantLocationResponse) HasUpdatedAt

func (o *MerchantLocationResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (MerchantLocationResponse) MarshalJSON

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

func (*MerchantLocationResponse) SetCity

func (o *MerchantLocationResponse) SetCity(v string)

SetCity gets a reference to the given NullableString and assigns it to the City field.

func (*MerchantLocationResponse) SetCityNil

func (o *MerchantLocationResponse) SetCityNil()

SetCityNil sets the value for City to be an explicit nil

func (*MerchantLocationResponse) SetCountry

func (o *MerchantLocationResponse) SetCountry(v string)

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

func (*MerchantLocationResponse) SetCountryNil

func (o *MerchantLocationResponse) SetCountryNil()

SetCountryNil sets the value for Country to be an explicit nil

func (*MerchantLocationResponse) SetCreatedAt

func (o *MerchantLocationResponse) SetCreatedAt(v string)

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

func (*MerchantLocationResponse) SetCreatedAtNil

func (o *MerchantLocationResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*MerchantLocationResponse) SetGuid

func (o *MerchantLocationResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*MerchantLocationResponse) SetGuidNil added in v0.4.1

func (o *MerchantLocationResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*MerchantLocationResponse) SetLatitude

func (o *MerchantLocationResponse) SetLatitude(v float32)

SetLatitude gets a reference to the given NullableFloat32 and assigns it to the Latitude field.

func (*MerchantLocationResponse) SetLatitudeNil

func (o *MerchantLocationResponse) SetLatitudeNil()

SetLatitudeNil sets the value for Latitude to be an explicit nil

func (*MerchantLocationResponse) SetLongitude

func (o *MerchantLocationResponse) SetLongitude(v float32)

SetLongitude gets a reference to the given NullableFloat32 and assigns it to the Longitude field.

func (*MerchantLocationResponse) SetLongitudeNil

func (o *MerchantLocationResponse) SetLongitudeNil()

SetLongitudeNil sets the value for Longitude to be an explicit nil

func (*MerchantLocationResponse) SetMerchantGuid

func (o *MerchantLocationResponse) SetMerchantGuid(v string)

SetMerchantGuid gets a reference to the given NullableString and assigns it to the MerchantGuid field.

func (*MerchantLocationResponse) SetMerchantGuidNil added in v0.4.1

func (o *MerchantLocationResponse) SetMerchantGuidNil()

SetMerchantGuidNil sets the value for MerchantGuid to be an explicit nil

func (*MerchantLocationResponse) SetPhoneNumber

func (o *MerchantLocationResponse) SetPhoneNumber(v string)

SetPhoneNumber gets a reference to the given NullableString and assigns it to the PhoneNumber field.

func (*MerchantLocationResponse) SetPhoneNumberNil

func (o *MerchantLocationResponse) SetPhoneNumberNil()

SetPhoneNumberNil sets the value for PhoneNumber to be an explicit nil

func (*MerchantLocationResponse) SetPostalCode

func (o *MerchantLocationResponse) SetPostalCode(v string)

SetPostalCode gets a reference to the given NullableString and assigns it to the PostalCode field.

func (*MerchantLocationResponse) SetPostalCodeNil

func (o *MerchantLocationResponse) SetPostalCodeNil()

SetPostalCodeNil sets the value for PostalCode to be an explicit nil

func (*MerchantLocationResponse) SetState

func (o *MerchantLocationResponse) SetState(v string)

SetState gets a reference to the given NullableString and assigns it to the State field.

func (*MerchantLocationResponse) SetStateNil

func (o *MerchantLocationResponse) SetStateNil()

SetStateNil sets the value for State to be an explicit nil

func (*MerchantLocationResponse) SetStreetAddress

func (o *MerchantLocationResponse) SetStreetAddress(v string)

SetStreetAddress gets a reference to the given NullableString and assigns it to the StreetAddress field.

func (*MerchantLocationResponse) SetStreetAddressNil

func (o *MerchantLocationResponse) SetStreetAddressNil()

SetStreetAddressNil sets the value for StreetAddress to be an explicit nil

func (*MerchantLocationResponse) SetUpdatedAt

func (o *MerchantLocationResponse) SetUpdatedAt(v string)

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

func (*MerchantLocationResponse) SetUpdatedAtNil

func (o *MerchantLocationResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (MerchantLocationResponse) ToMap added in v0.17.1

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

func (*MerchantLocationResponse) UnsetCity

func (o *MerchantLocationResponse) UnsetCity()

UnsetCity ensures that no value is present for City, not even an explicit nil

func (*MerchantLocationResponse) UnsetCountry

func (o *MerchantLocationResponse) UnsetCountry()

UnsetCountry ensures that no value is present for Country, not even an explicit nil

func (*MerchantLocationResponse) UnsetCreatedAt

func (o *MerchantLocationResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*MerchantLocationResponse) UnsetGuid added in v0.4.1

func (o *MerchantLocationResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*MerchantLocationResponse) UnsetLatitude

func (o *MerchantLocationResponse) UnsetLatitude()

UnsetLatitude ensures that no value is present for Latitude, not even an explicit nil

func (*MerchantLocationResponse) UnsetLongitude

func (o *MerchantLocationResponse) UnsetLongitude()

UnsetLongitude ensures that no value is present for Longitude, not even an explicit nil

func (*MerchantLocationResponse) UnsetMerchantGuid added in v0.4.1

func (o *MerchantLocationResponse) UnsetMerchantGuid()

UnsetMerchantGuid ensures that no value is present for MerchantGuid, not even an explicit nil

func (*MerchantLocationResponse) UnsetPhoneNumber

func (o *MerchantLocationResponse) UnsetPhoneNumber()

UnsetPhoneNumber ensures that no value is present for PhoneNumber, not even an explicit nil

func (*MerchantLocationResponse) UnsetPostalCode

func (o *MerchantLocationResponse) UnsetPostalCode()

UnsetPostalCode ensures that no value is present for PostalCode, not even an explicit nil

func (*MerchantLocationResponse) UnsetState

func (o *MerchantLocationResponse) UnsetState()

UnsetState ensures that no value is present for State, not even an explicit nil

func (*MerchantLocationResponse) UnsetStreetAddress

func (o *MerchantLocationResponse) UnsetStreetAddress()

UnsetStreetAddress ensures that no value is present for StreetAddress, not even an explicit nil

func (*MerchantLocationResponse) UnsetUpdatedAt

func (o *MerchantLocationResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

type MerchantLocationResponseBody

type MerchantLocationResponseBody struct {
	MerchantLocation *MerchantLocationResponse `json:"merchant_location,omitempty"`
}

MerchantLocationResponseBody struct for MerchantLocationResponseBody

func NewMerchantLocationResponseBody

func NewMerchantLocationResponseBody() *MerchantLocationResponseBody

NewMerchantLocationResponseBody instantiates a new MerchantLocationResponseBody 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 NewMerchantLocationResponseBodyWithDefaults

func NewMerchantLocationResponseBodyWithDefaults() *MerchantLocationResponseBody

NewMerchantLocationResponseBodyWithDefaults instantiates a new MerchantLocationResponseBody 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 (*MerchantLocationResponseBody) GetMerchantLocation

func (o *MerchantLocationResponseBody) GetMerchantLocation() MerchantLocationResponse

GetMerchantLocation returns the MerchantLocation field value if set, zero value otherwise.

func (*MerchantLocationResponseBody) GetMerchantLocationOk

func (o *MerchantLocationResponseBody) GetMerchantLocationOk() (*MerchantLocationResponse, bool)

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

func (*MerchantLocationResponseBody) HasMerchantLocation

func (o *MerchantLocationResponseBody) HasMerchantLocation() bool

HasMerchantLocation returns a boolean if a field has been set.

func (MerchantLocationResponseBody) MarshalJSON

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

func (*MerchantLocationResponseBody) SetMerchantLocation

func (o *MerchantLocationResponseBody) SetMerchantLocation(v MerchantLocationResponse)

SetMerchantLocation gets a reference to the given MerchantLocationResponse and assigns it to the MerchantLocation field.

func (MerchantLocationResponseBody) ToMap added in v0.17.1

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

type MerchantResponse

type MerchantResponse struct {
	CreatedAt  NullableString `json:"created_at,omitempty"`
	Guid       NullableString `json:"guid,omitempty"`
	LogoUrl    NullableString `json:"logo_url,omitempty"`
	Name       NullableString `json:"name,omitempty"`
	UpdatedAt  NullableString `json:"updated_at,omitempty"`
	WebsiteUrl NullableString `json:"website_url,omitempty"`
}

MerchantResponse struct for MerchantResponse

func NewMerchantResponse

func NewMerchantResponse() *MerchantResponse

NewMerchantResponse instantiates a new MerchantResponse 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 NewMerchantResponseWithDefaults

func NewMerchantResponseWithDefaults() *MerchantResponse

NewMerchantResponseWithDefaults instantiates a new MerchantResponse 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 (*MerchantResponse) GetCreatedAt

func (o *MerchantResponse) GetCreatedAt() string

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

func (*MerchantResponse) GetCreatedAtOk

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

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

func (*MerchantResponse) GetGuid

func (o *MerchantResponse) GetGuid() string

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

func (*MerchantResponse) GetGuidOk

func (o *MerchantResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*MerchantResponse) GetLogoUrl

func (o *MerchantResponse) GetLogoUrl() string

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

func (*MerchantResponse) GetLogoUrlOk

func (o *MerchantResponse) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl 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 (*MerchantResponse) GetName

func (o *MerchantResponse) GetName() string

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

func (*MerchantResponse) GetNameOk

func (o *MerchantResponse) 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 (*MerchantResponse) GetUpdatedAt

func (o *MerchantResponse) GetUpdatedAt() string

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

func (*MerchantResponse) GetUpdatedAtOk

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

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

func (*MerchantResponse) GetWebsiteUrl

func (o *MerchantResponse) GetWebsiteUrl() string

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

func (*MerchantResponse) GetWebsiteUrlOk

func (o *MerchantResponse) GetWebsiteUrlOk() (*string, bool)

GetWebsiteUrlOk returns a tuple with the WebsiteUrl 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 (*MerchantResponse) HasCreatedAt

func (o *MerchantResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*MerchantResponse) HasGuid

func (o *MerchantResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*MerchantResponse) HasLogoUrl

func (o *MerchantResponse) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*MerchantResponse) HasName

func (o *MerchantResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*MerchantResponse) HasUpdatedAt

func (o *MerchantResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*MerchantResponse) HasWebsiteUrl

func (o *MerchantResponse) HasWebsiteUrl() bool

HasWebsiteUrl returns a boolean if a field has been set.

func (MerchantResponse) MarshalJSON

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

func (*MerchantResponse) SetCreatedAt

func (o *MerchantResponse) SetCreatedAt(v string)

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

func (*MerchantResponse) SetCreatedAtNil

func (o *MerchantResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*MerchantResponse) SetGuid

func (o *MerchantResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*MerchantResponse) SetGuidNil added in v0.4.1

func (o *MerchantResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*MerchantResponse) SetLogoUrl

func (o *MerchantResponse) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given NullableString and assigns it to the LogoUrl field.

func (*MerchantResponse) SetLogoUrlNil

func (o *MerchantResponse) SetLogoUrlNil()

SetLogoUrlNil sets the value for LogoUrl to be an explicit nil

func (*MerchantResponse) SetName

func (o *MerchantResponse) SetName(v string)

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

func (*MerchantResponse) SetNameNil

func (o *MerchantResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*MerchantResponse) SetUpdatedAt

func (o *MerchantResponse) SetUpdatedAt(v string)

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

func (*MerchantResponse) SetUpdatedAtNil

func (o *MerchantResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*MerchantResponse) SetWebsiteUrl

func (o *MerchantResponse) SetWebsiteUrl(v string)

SetWebsiteUrl gets a reference to the given NullableString and assigns it to the WebsiteUrl field.

func (*MerchantResponse) SetWebsiteUrlNil

func (o *MerchantResponse) SetWebsiteUrlNil()

SetWebsiteUrlNil sets the value for WebsiteUrl to be an explicit nil

func (MerchantResponse) ToMap added in v0.17.1

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

func (*MerchantResponse) UnsetCreatedAt

func (o *MerchantResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*MerchantResponse) UnsetGuid added in v0.4.1

func (o *MerchantResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*MerchantResponse) UnsetLogoUrl

func (o *MerchantResponse) UnsetLogoUrl()

UnsetLogoUrl ensures that no value is present for LogoUrl, not even an explicit nil

func (*MerchantResponse) UnsetName

func (o *MerchantResponse) UnsetName()

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

func (*MerchantResponse) UnsetUpdatedAt

func (o *MerchantResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*MerchantResponse) UnsetWebsiteUrl

func (o *MerchantResponse) UnsetWebsiteUrl()

UnsetWebsiteUrl ensures that no value is present for WebsiteUrl, not even an explicit nil

type MerchantResponseBody

type MerchantResponseBody struct {
	Merchant *MerchantResponse `json:"merchant,omitempty"`
}

MerchantResponseBody struct for MerchantResponseBody

func NewMerchantResponseBody

func NewMerchantResponseBody() *MerchantResponseBody

NewMerchantResponseBody instantiates a new MerchantResponseBody 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 NewMerchantResponseBodyWithDefaults

func NewMerchantResponseBodyWithDefaults() *MerchantResponseBody

NewMerchantResponseBodyWithDefaults instantiates a new MerchantResponseBody 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 (*MerchantResponseBody) GetMerchant

func (o *MerchantResponseBody) GetMerchant() MerchantResponse

GetMerchant returns the Merchant field value if set, zero value otherwise.

func (*MerchantResponseBody) GetMerchantOk

func (o *MerchantResponseBody) GetMerchantOk() (*MerchantResponse, bool)

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

func (*MerchantResponseBody) HasMerchant

func (o *MerchantResponseBody) HasMerchant() bool

HasMerchant returns a boolean if a field has been set.

func (MerchantResponseBody) MarshalJSON

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

func (*MerchantResponseBody) SetMerchant

func (o *MerchantResponseBody) SetMerchant(v MerchantResponse)

SetMerchant gets a reference to the given MerchantResponse and assigns it to the Merchant field.

func (MerchantResponseBody) ToMap added in v0.17.1

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

type MerchantsResponseBody

type MerchantsResponseBody struct {
	Merchants  []MerchantResponse  `json:"merchants,omitempty"`
	Pagination *PaginationResponse `json:"pagination,omitempty"`
}

MerchantsResponseBody struct for MerchantsResponseBody

func NewMerchantsResponseBody

func NewMerchantsResponseBody() *MerchantsResponseBody

NewMerchantsResponseBody instantiates a new MerchantsResponseBody 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 NewMerchantsResponseBodyWithDefaults

func NewMerchantsResponseBodyWithDefaults() *MerchantsResponseBody

NewMerchantsResponseBodyWithDefaults instantiates a new MerchantsResponseBody 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 (*MerchantsResponseBody) GetMerchants

func (o *MerchantsResponseBody) GetMerchants() []MerchantResponse

GetMerchants returns the Merchants field value if set, zero value otherwise.

func (*MerchantsResponseBody) GetMerchantsOk

func (o *MerchantsResponseBody) GetMerchantsOk() ([]MerchantResponse, bool)

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

func (*MerchantsResponseBody) GetPagination

func (o *MerchantsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*MerchantsResponseBody) GetPaginationOk

func (o *MerchantsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

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

func (*MerchantsResponseBody) HasMerchants

func (o *MerchantsResponseBody) HasMerchants() bool

HasMerchants returns a boolean if a field has been set.

func (*MerchantsResponseBody) HasPagination

func (o *MerchantsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (MerchantsResponseBody) MarshalJSON

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

func (*MerchantsResponseBody) SetMerchants

func (o *MerchantsResponseBody) SetMerchants(v []MerchantResponse)

SetMerchants gets a reference to the given []MerchantResponse and assigns it to the Merchants field.

func (*MerchantsResponseBody) SetPagination

func (o *MerchantsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (MerchantsResponseBody) ToMap added in v0.17.1

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

type MxPlatformAPIService added in v0.17.1

type MxPlatformAPIService service

MxPlatformAPIService MxPlatformAPI service

func (*MxPlatformAPIService) AggregateMember added in v0.17.1

func (a *MxPlatformAPIService) AggregateMember(ctx context.Context, memberGuid string, userGuid string) ApiAggregateMemberRequest

AggregateMember Aggregate member

Calling this endpoint initiates an aggregation event for the member. This brings in the latest account and transaction data from the connected institution. If this data has recently been updated, MX may not initiate an aggregation event.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiAggregateMemberRequest

func (*MxPlatformAPIService) AggregateMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) CheckBalances added in v0.17.1

func (a *MxPlatformAPIService) CheckBalances(ctx context.Context, memberGuid string, userGuid string) ApiCheckBalancesRequest

CheckBalances Check balances

This endpoint operates much like the aggregate member endpoint except that it gathers only account balance information; it does not gather any transaction data.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiCheckBalancesRequest

func (*MxPlatformAPIService) CheckBalancesExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) CreateCategory added in v0.17.1

func (a *MxPlatformAPIService) CreateCategory(ctx context.Context, userGuid string) ApiCreateCategoryRequest

CreateCategory Create category

Use this endpoint to create a new custom category for a specific `user`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiCreateCategoryRequest

func (*MxPlatformAPIService) CreateCategoryExecute added in v0.17.1

Execute executes the request

@return CategoryResponseBody

func (*MxPlatformAPIService) CreateManagedAccount added in v0.17.1

func (a *MxPlatformAPIService) CreateManagedAccount(ctx context.Context, memberGuid string, userGuid string) ApiCreateManagedAccountRequest

CreateManagedAccount Create managed account

Use this endpoint to create a partner-managed account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiCreateManagedAccountRequest

func (*MxPlatformAPIService) CreateManagedAccountExecute added in v0.17.1

Execute executes the request

@return AccountResponseBody

func (*MxPlatformAPIService) CreateManagedMember added in v0.17.1

func (a *MxPlatformAPIService) CreateManagedMember(ctx context.Context, userGuid string) ApiCreateManagedMemberRequest

CreateManagedMember Create managed member

Use this endpoint to create a new partner-managed `member`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiCreateManagedMemberRequest

func (*MxPlatformAPIService) CreateManagedMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) CreateManagedTransaction added in v0.17.1

func (a *MxPlatformAPIService) CreateManagedTransaction(ctx context.Context, accountGuid string, memberGuid string, userGuid string) ApiCreateManagedTransactionRequest

CreateManagedTransaction Create managed transaction

Use this endpoint to create a new partner-managed `transaction`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiCreateManagedTransactionRequest

func (*MxPlatformAPIService) CreateManagedTransactionExecute added in v0.17.1

Execute executes the request

@return TransactionResponseBody

func (*MxPlatformAPIService) CreateManualAccount added in v0.17.1

func (a *MxPlatformAPIService) CreateManualAccount(ctx context.Context, userGuid string) ApiCreateManualAccountRequest

CreateManualAccount Create manual account

This endpoint can only be used to create manual accounts. Creating a manual account will automatically create it under the Manual Institution member. Since a manual account has no credentials tied to the member, the account will never aggregate or include data from a data feed..

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiCreateManualAccountRequest

func (*MxPlatformAPIService) CreateManualAccountExecute added in v0.17.1

Execute executes the request

@return AccountResponseBody

func (*MxPlatformAPIService) CreateMember added in v0.17.1

func (a *MxPlatformAPIService) CreateMember(ctx context.Context, userGuid string) ApiCreateMemberRequest

CreateMember Create member

This endpoint allows you to create a new member. Members are created with the required parameters credentials and institution_code, and the optional parameters id and metadata. When creating a member, youll need to include the correct type of credential required by the financial institution and provided by the user. You can find out which credential type is required with the `/institutions/{institution_code}/credentials` endpoint. If successful, the MX Platform API will respond with the newly-created member object. Once you successfully create a member, MX will immediately validate the provided credentials and attempt to aggregate data for accounts and transactions.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiCreateMemberRequest

func (*MxPlatformAPIService) CreateMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) CreateTag added in v0.17.1

func (a *MxPlatformAPIService) CreateTag(ctx context.Context, userGuid string) ApiCreateTagRequest

CreateTag Create tag

Use this endpoint to create a new custom tag.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiCreateTagRequest

func (*MxPlatformAPIService) CreateTagExecute added in v0.17.1

Execute executes the request

@return TagResponseBody

func (*MxPlatformAPIService) CreateTagging added in v0.17.1

func (a *MxPlatformAPIService) CreateTagging(ctx context.Context, userGuid string) ApiCreateTaggingRequest

CreateTagging Create tagging

Use this endpoint to create a new association between a tag and a particular transaction, according to their unique GUIDs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiCreateTaggingRequest

func (*MxPlatformAPIService) CreateTaggingExecute added in v0.17.1

Execute executes the request

@return TaggingResponseBody

func (*MxPlatformAPIService) CreateTransactionRule added in v0.17.1

func (a *MxPlatformAPIService) CreateTransactionRule(ctx context.Context, userGuid string) ApiCreateTransactionRuleRequest

CreateTransactionRule Create transaction rule

Use this endpoint to create a new transaction rule. The newly-created `transaction_rule` object will be returned if successful.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiCreateTransactionRuleRequest

func (*MxPlatformAPIService) CreateTransactionRuleExecute added in v0.17.1

Execute executes the request

@return TransactionRuleResponseBody

func (*MxPlatformAPIService) CreateUser added in v0.17.1

CreateUser Create user

Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.

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

func (*MxPlatformAPIService) CreateUserExecute added in v0.17.1

Execute executes the request

@return UserResponseBody

func (*MxPlatformAPIService) DeleteCategory added in v0.17.1

func (a *MxPlatformAPIService) DeleteCategory(ctx context.Context, categoryGuid string, userGuid string) ApiDeleteCategoryRequest

DeleteCategory Delete category

Use this endpoint to delete a specific custom category according to its unique GUID. The API will respond with an empty object and a status of `204 No Content`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryGuid The unique id for a `category`.
@param userGuid The unique id for a `user`.
@return ApiDeleteCategoryRequest

func (*MxPlatformAPIService) DeleteCategoryExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteCategoryExecute(r ApiDeleteCategoryRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteManagedAccount added in v0.17.1

func (a *MxPlatformAPIService) DeleteManagedAccount(ctx context.Context, accountGuid string, memberGuid string, userGuid string) ApiDeleteManagedAccountRequest

DeleteManagedAccount Delete managed account

Use this endpoint to delete a partner-managed account according to its unique GUID. If successful, the API will respond with a status of `204 No Content`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiDeleteManagedAccountRequest

func (*MxPlatformAPIService) DeleteManagedAccountExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteManagedAccountExecute(r ApiDeleteManagedAccountRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteManagedMember added in v0.17.1

func (a *MxPlatformAPIService) DeleteManagedMember(ctx context.Context, memberGuid string, userGuid string) ApiDeleteManagedMemberRequest

DeleteManagedMember Delete managed member

Use this endpoint to delete the specified partner-managed `member`. The endpoint will respond with a status of `204 No Content` without a resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiDeleteManagedMemberRequest

func (*MxPlatformAPIService) DeleteManagedMemberExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteManagedMemberExecute(r ApiDeleteManagedMemberRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteManagedTransaction added in v0.17.1

func (a *MxPlatformAPIService) DeleteManagedTransaction(ctx context.Context, accountGuid string, memberGuid string, transactionGuid string, userGuid string) ApiDeleteManagedTransactionRequest

DeleteManagedTransaction Delete managed transaction

Use this endpoint to delete the specified partner-managed `transaction`. The endpoint will respond with a status of `204 No Content` without a resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param transactionGuid The unique id for a `transaction`.
@param userGuid The unique id for a `user`.
@return ApiDeleteManagedTransactionRequest

func (*MxPlatformAPIService) DeleteManagedTransactionExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteManagedTransactionExecute(r ApiDeleteManagedTransactionRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteManualAccount added in v0.17.1

func (a *MxPlatformAPIService) DeleteManualAccount(ctx context.Context, accountGuid string, userGuid string) ApiDeleteManualAccountRequest

DeleteManualAccount Delete manual account

This endpoint deletes accounts that were manually created. The API will respond with an empty object and a status of `204 No Content`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param userGuid The unique id for a `user`.
@return ApiDeleteManualAccountRequest

func (*MxPlatformAPIService) DeleteManualAccountExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteManualAccountExecute(r ApiDeleteManualAccountRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteMember added in v0.17.1

func (a *MxPlatformAPIService) DeleteMember(ctx context.Context, memberGuid string, userGuid string) ApiDeleteMemberRequest

DeleteMember Delete member

Accessing this endpoint will permanently delete a member.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiDeleteMemberRequest

func (*MxPlatformAPIService) DeleteMemberExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteMemberExecute(r ApiDeleteMemberRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteTag added in v0.17.1

func (a *MxPlatformAPIService) DeleteTag(ctx context.Context, tagGuid string, userGuid string) ApiDeleteTagRequest

DeleteTag Delete tag

Use this endpoint to permanently delete a specific tag based on its unique GUID. If successful, the API will respond with status of `204 No Content`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tagGuid The unique id for a `tag`.
@param userGuid The unique id for a `user`.
@return ApiDeleteTagRequest

func (*MxPlatformAPIService) DeleteTagExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteTagExecute(r ApiDeleteTagRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteTagging added in v0.17.1

func (a *MxPlatformAPIService) DeleteTagging(ctx context.Context, taggingGuid string, userGuid string) ApiDeleteTaggingRequest

DeleteTagging Delete tagging

Use this endpoint to delete a tagging according to its unique GUID. If successful, the API will respond with an empty body and a status of 204 NO Content.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taggingGuid The unique id for a `tagging`.
@param userGuid The unique id for a `user`.
@return ApiDeleteTaggingRequest

func (*MxPlatformAPIService) DeleteTaggingExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteTaggingExecute(r ApiDeleteTaggingRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteTransactionRule added in v0.17.1

func (a *MxPlatformAPIService) DeleteTransactionRule(ctx context.Context, transactionRuleGuid string, userGuid string) ApiDeleteTransactionRuleRequest

DeleteTransactionRule Delete transaction rule

Use this endpoint to permanently delete a transaction rule based on its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param transactionRuleGuid The unique id for a `transaction_rule`.
@param userGuid The unique id for a `user`.
@return ApiDeleteTransactionRuleRequest

func (*MxPlatformAPIService) DeleteTransactionRuleExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteTransactionRuleExecute(r ApiDeleteTransactionRuleRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeleteUser added in v0.17.1

func (a *MxPlatformAPIService) DeleteUser(ctx context.Context, userGuid string) ApiDeleteUserRequest

DeleteUser Delete user

Use this endpoint to delete the specified `user`. The response will have a status of `204 No Content` without an object.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiDeleteUserRequest

func (*MxPlatformAPIService) DeleteUserExecute added in v0.17.1

func (a *MxPlatformAPIService) DeleteUserExecute(r ApiDeleteUserRequest) (*http.Response, error)

Execute executes the request

func (*MxPlatformAPIService) DeprecatedRequestPaymentProcessorAuthorizationCode added in v0.17.1

func (a *MxPlatformAPIService) DeprecatedRequestPaymentProcessorAuthorizationCode(ctx context.Context) ApiDeprecatedRequestPaymentProcessorAuthorizationCodeRequest

DeprecatedRequestPaymentProcessorAuthorizationCode (Deprecated) Request an authorization code.

(This endpoint is deprecated. Clients should use `/authorization_code`.) Clients use this endpoint to request an authorization_code according to a user, member, and account specified in the request body. Clients then pass this code to processors. Processor access is scoped only to the user/member/account specified in this request. Before requesting an authorization_code, clients must have verified the specified member.

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

func (*MxPlatformAPIService) DeprecatedRequestPaymentProcessorAuthorizationCodeExecute added in v0.17.1

Execute executes the request

@return PaymentProcessorAuthorizationCodeResponseBody

func (*MxPlatformAPIService) DownloadStatementPDF added in v0.17.1

func (a *MxPlatformAPIService) DownloadStatementPDF(ctx context.Context, memberGuid string, statementGuid string, userGuid string) ApiDownloadStatementPDFRequest

DownloadStatementPDF Download statement pdf

Use this endpoint to download a specified statement PDF.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param statementGuid The unique id for a `statement`.
@param userGuid The unique id for a `user`.
@return ApiDownloadStatementPDFRequest

func (*MxPlatformAPIService) DownloadStatementPDFExecute added in v0.17.1

func (a *MxPlatformAPIService) DownloadStatementPDFExecute(r ApiDownloadStatementPDFRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*MxPlatformAPIService) DownloadTaxDocument added in v0.17.1

func (a *MxPlatformAPIService) DownloadTaxDocument(ctx context.Context, taxDocumentGuid string, memberGuid string, userGuid string) ApiDownloadTaxDocumentRequest

DownloadTaxDocument Download a Tax Document PDF

Use this endpoint to download a PDF version of the specified tax document. The endpoint URL is the base URL appended with the uri of the tax_document.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taxDocumentGuid The unique id for a `tax_document`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiDownloadTaxDocumentRequest

func (*MxPlatformAPIService) DownloadTaxDocumentExecute added in v0.17.1

func (a *MxPlatformAPIService) DownloadTaxDocumentExecute(r ApiDownloadTaxDocumentRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*MxPlatformAPIService) EnhanceTransactions added in v0.17.1

EnhanceTransactions Enhance transactions

Use this endpoint to categorize, cleanse, and classify transactions. These transactions are not persisted or stored on the MX platform.

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

func (*MxPlatformAPIService) EnhanceTransactionsExecute added in v0.17.1

Execute executes the request

@return EnhanceTransactionsResponseBody

func (*MxPlatformAPIService) ExtendHistory added in v0.17.1

func (a *MxPlatformAPIService) ExtendHistory(ctx context.Context, memberGuid string, userGuid string) ApiExtendHistoryRequest

ExtendHistory Extend history

Some institutions allow developers to access an extended transaction history with up to 24 months of data associated with a particular member. The process for fetching and then reading this extended transaction history is much like standard aggregation, and it may trigger multi-factor authentication.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique identifier for a `member`.
@param userGuid The unique identifier for a `user`.
@return ApiExtendHistoryRequest

func (*MxPlatformAPIService) ExtendHistoryExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) FetchStatements added in v0.17.1

func (a *MxPlatformAPIService) FetchStatements(ctx context.Context, memberGuid string, userGuid string) ApiFetchStatementsRequest

FetchStatements Fetch statements

Use this endpoint to fetch the statements associated with a particular member.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiFetchStatementsRequest

func (*MxPlatformAPIService) FetchStatementsExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) FetchTaxDocuments added in v0.17.1

func (a *MxPlatformAPIService) FetchTaxDocuments(ctx context.Context, memberGuid string, userGuid string) ApiFetchTaxDocumentsRequest

FetchTaxDocuments Fetch Tax Documents

Use this endpoint to fetch (aggregate) the tax documents associated with the specified member. This request **does not** return the latest tax documents. It just starts the document aggregation process and returns the initial state of the process. You must interact with the newly aggregated data using the other document endpoints in this reference. This request may also trigger multi-factor authentication which requires end-user input and a specific process for answering authentication challenges.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiFetchTaxDocumentsRequest

func (*MxPlatformAPIService) FetchTaxDocumentsExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) IdentifyMember added in v0.17.1

func (a *MxPlatformAPIService) IdentifyMember(ctx context.Context, memberGuid string, userGuid string) ApiIdentifyMemberRequest

IdentifyMember Identify member

The identify endpoint begins an identification process for an already-existing member.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiIdentifyMemberRequest

func (*MxPlatformAPIService) IdentifyMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) ListAccountNumbersByAccount added in v0.17.1

func (a *MxPlatformAPIService) ListAccountNumbersByAccount(ctx context.Context, accountGuid string, userGuid string) ApiListAccountNumbersByAccountRequest

ListAccountNumbersByAccount List account numbers by account

This endpoint returns a list of account numbers associated with the specified `account`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param userGuid The unique id for a `user`.
@return ApiListAccountNumbersByAccountRequest

func (*MxPlatformAPIService) ListAccountNumbersByAccountExecute added in v0.17.1

Execute executes the request

@return AccountNumbersResponseBody

func (*MxPlatformAPIService) ListAccountNumbersByMember added in v0.17.1

func (a *MxPlatformAPIService) ListAccountNumbersByMember(ctx context.Context, memberGuid string, userGuid string) ApiListAccountNumbersByMemberRequest

ListAccountNumbersByMember List account numbers by member

This endpoint returns a list of account numbers associated with the specified `member`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListAccountNumbersByMemberRequest

func (*MxPlatformAPIService) ListAccountNumbersByMemberExecute added in v0.17.1

Execute executes the request

@return AccountNumbersResponseBody

func (*MxPlatformAPIService) ListAccountOwnersByMember added in v0.17.1

func (a *MxPlatformAPIService) ListAccountOwnersByMember(ctx context.Context, memberGuid string, userGuid string) ApiListAccountOwnersByMemberRequest

ListAccountOwnersByMember List account owners by member

This endpoint returns an array with information about every account associated with a particular member.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListAccountOwnersByMemberRequest

func (*MxPlatformAPIService) ListAccountOwnersByMemberExecute added in v0.17.1

Execute executes the request

@return AccountOwnersResponseBody

func (*MxPlatformAPIService) ListCategories added in v0.17.1

func (a *MxPlatformAPIService) ListCategories(ctx context.Context, userGuid string) ApiListCategoriesRequest

ListCategories List categories

Use this endpoint to list all categories associated with a `user`, including both default and custom categories.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListCategoriesRequest

func (*MxPlatformAPIService) ListCategoriesExecute added in v0.17.1

Execute executes the request

@return CategoriesResponseBody

func (*MxPlatformAPIService) ListDefaultCategories added in v0.17.1

ListDefaultCategories List default categories

Use this endpoint to retrieve a list of all the default categories and subcategories offered within the MX Platform API. In other words, each item in the returned list will have its `is_default` field set to `true`. There are currently 119 default categories and subcategories. Both the _list default categories_ and _list default categories by user_ endpoints return the same results. The different routes are provided for convenience.

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

func (*MxPlatformAPIService) ListDefaultCategoriesByUser added in v0.17.1

func (a *MxPlatformAPIService) ListDefaultCategoriesByUser(ctx context.Context, userGuid string) ApiListDefaultCategoriesByUserRequest

ListDefaultCategoriesByUser List default categories by user

Use this endpoint to retrieve a list of all the default categories and subcategories, scoped by user, offered within the MX Platform API. In other words, each item in the returned list will have its `is_default` field set to `true`. There are currently 119 default categories and subcategories. Both the _list default categories_ and _list default categories by user_ endpoints return the same results. The different routes are provided for convenience.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListDefaultCategoriesByUserRequest

func (*MxPlatformAPIService) ListDefaultCategoriesByUserExecute added in v0.17.1

Execute executes the request

@return CategoriesResponseBody

func (*MxPlatformAPIService) ListDefaultCategoriesExecute added in v0.17.1

Execute executes the request

@return CategoriesResponseBody

func (*MxPlatformAPIService) ListFavoriteInstitutions added in v0.17.1

ListFavoriteInstitutions List favorite institutions

This endpoint returns a paginated list containing institutions that have been set as the partner’s favorites, sorted by popularity. Please contact MX to set a list of favorites.

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

func (*MxPlatformAPIService) ListFavoriteInstitutionsExecute added in v0.17.1

Execute executes the request

@return InstitutionsResponseBody

func (*MxPlatformAPIService) ListHoldings added in v0.17.1

func (a *MxPlatformAPIService) ListHoldings(ctx context.Context, userGuid string) ApiListHoldingsRequest

ListHoldings List holdings

This endpoint returns all holdings associated with the specified `user` across all accounts and members.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListHoldingsRequest

func (*MxPlatformAPIService) ListHoldingsByAccount added in v0.17.1

func (a *MxPlatformAPIService) ListHoldingsByAccount(ctx context.Context, accountGuid string, userGuid string) ApiListHoldingsByAccountRequest

ListHoldingsByAccount List holdings by account

This endpoint returns all holdings associated with the specified `account`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for the `account`.
@param userGuid The unique id for the `user`.
@return ApiListHoldingsByAccountRequest

func (*MxPlatformAPIService) ListHoldingsByAccountExecute added in v0.17.1

Execute executes the request

@return HoldingsResponseBody

func (*MxPlatformAPIService) ListHoldingsByMember added in v0.17.1

func (a *MxPlatformAPIService) ListHoldingsByMember(ctx context.Context, memberGuid string, userGuid string) ApiListHoldingsByMemberRequest

ListHoldingsByMember List holdings by member

This endpoint returns all holdings associated with the specified `member` across all accounts.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListHoldingsByMemberRequest

func (*MxPlatformAPIService) ListHoldingsByMemberExecute added in v0.17.1

Execute executes the request

@return HoldingsResponseBody

func (*MxPlatformAPIService) ListHoldingsExecute added in v0.17.1

Execute executes the request

@return HoldingsResponseBody

func (*MxPlatformAPIService) ListInstitutionCredentials added in v0.17.1

func (a *MxPlatformAPIService) ListInstitutionCredentials(ctx context.Context, institutionCode string) ApiListInstitutionCredentialsRequest

ListInstitutionCredentials List institution credentials

Use this endpoint to see which credentials will be needed to create a member for a specific institution.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param institutionCode The institution_code of the institution.
@return ApiListInstitutionCredentialsRequest

func (*MxPlatformAPIService) ListInstitutionCredentialsExecute added in v0.17.1

Execute executes the request

@return CredentialsResponseBody

func (*MxPlatformAPIService) ListInstitutions added in v0.17.1

ListInstitutions List institutions

This endpoint returns a list of institutions based on the specified search term or parameter.

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

func (*MxPlatformAPIService) ListInstitutionsExecute added in v0.17.1

Execute executes the request

@return InstitutionsResponseBody

func (*MxPlatformAPIService) ListManagedAccounts added in v0.17.1

func (a *MxPlatformAPIService) ListManagedAccounts(ctx context.Context, memberGuid string, userGuid string) ApiListManagedAccountsRequest

ListManagedAccounts List managed accounts

Use this endpoint to retrieve a list of all the partner-managed accounts associated with the given partner-manage member.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListManagedAccountsRequest

func (*MxPlatformAPIService) ListManagedAccountsExecute added in v0.17.1

Execute executes the request

@return AccountsResponseBody

func (*MxPlatformAPIService) ListManagedInstitutions added in v0.17.1

ListManagedInstitutions List managed institutions

This endpoint returns a list of institutions which can be used to create partner-managed members.

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

func (*MxPlatformAPIService) ListManagedInstitutionsExecute added in v0.17.1

Execute executes the request

@return InstitutionsResponseBody

func (*MxPlatformAPIService) ListManagedMembers added in v0.17.1

func (a *MxPlatformAPIService) ListManagedMembers(ctx context.Context, userGuid string) ApiListManagedMembersRequest

ListManagedMembers List managed members

This endpoint returns a list of all the partner-managed members associated with the specified `user`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListManagedMembersRequest

func (*MxPlatformAPIService) ListManagedMembersExecute added in v0.17.1

Execute executes the request

@return MembersResponseBody

func (*MxPlatformAPIService) ListManagedTransactions added in v0.17.1

func (a *MxPlatformAPIService) ListManagedTransactions(ctx context.Context, accountGuid string, memberGuid string, userGuid string) ApiListManagedTransactionsRequest

ListManagedTransactions List managed transactions

This endpoint returns a list of all the partner-managed transactions associated with the specified `account`, scoped through a `user` and a `member`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListManagedTransactionsRequest

func (*MxPlatformAPIService) ListManagedTransactionsExecute added in v0.17.1

Execute executes the request

@return TransactionsResponseBody

func (*MxPlatformAPIService) ListMemberAccounts added in v0.17.1

func (a *MxPlatformAPIService) ListMemberAccounts(ctx context.Context, userGuid string, memberGuid string) ApiListMemberAccountsRequest

ListMemberAccounts List accounts by member

This endpoint returns a list of all the accounts associated with the specified `member`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param memberGuid The unique id for a `member`.
@return ApiListMemberAccountsRequest

func (*MxPlatformAPIService) ListMemberAccountsExecute added in v0.17.1

Execute executes the request

@return AccountsResponseBody

func (*MxPlatformAPIService) ListMemberChallenges added in v0.17.1

func (a *MxPlatformAPIService) ListMemberChallenges(ctx context.Context, memberGuid string, userGuid string) ApiListMemberChallengesRequest

ListMemberChallenges List member challenges

Use this endpoint for information on what multi-factor authentication challenges need to be answered in order to aggregate a member. If the aggregation is not challenged, i.e., the member does not have a connection status of `CHALLENGED`, then code `204 No Content` will be returned. If the aggregation has been challenged, i.e., the member does have a connection status of `CHALLENGED`, then code `200 OK` will be returned - along with the corresponding credentials.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListMemberChallengesRequest

func (*MxPlatformAPIService) ListMemberChallengesExecute added in v0.17.1

Execute executes the request

@return ChallengesResponseBody

func (*MxPlatformAPIService) ListMemberCredentials added in v0.17.1

func (a *MxPlatformAPIService) ListMemberCredentials(ctx context.Context, memberGuid string, userGuid string) ApiListMemberCredentialsRequest

ListMemberCredentials List member credentials

This endpoint returns an array which contains information on every non-MFA credential associated with a specific member.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListMemberCredentialsRequest

func (*MxPlatformAPIService) ListMemberCredentialsExecute added in v0.17.1

Execute executes the request

@return CredentialsResponseBody

func (*MxPlatformAPIService) ListMembers added in v0.17.1

func (a *MxPlatformAPIService) ListMembers(ctx context.Context, userGuid string) ApiListMembersRequest

ListMembers List members

This endpoint returns an array which contains information on every member associated with a specific user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListMembersRequest

func (*MxPlatformAPIService) ListMembersExecute added in v0.17.1

Execute executes the request

@return MembersResponseBody

func (*MxPlatformAPIService) ListMerchants added in v0.17.1

ListMerchants List merchants

This endpoint returns a paginated list of all the merchants in the MX system.

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

func (*MxPlatformAPIService) ListMerchantsExecute added in v0.17.1

Execute executes the request

@return MerchantsResponseBody

func (*MxPlatformAPIService) ListStatementsByMember added in v0.17.1

func (a *MxPlatformAPIService) ListStatementsByMember(ctx context.Context, memberGuid string, userGuid string) ApiListStatementsByMemberRequest

ListStatementsByMember List statements by member

Use this endpoint to get an array of available statements.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListStatementsByMemberRequest

func (*MxPlatformAPIService) ListStatementsByMemberExecute added in v0.17.1

Execute executes the request

@return StatementsResponseBody

func (*MxPlatformAPIService) ListTaggings added in v0.17.1

func (a *MxPlatformAPIService) ListTaggings(ctx context.Context, userGuid string) ApiListTaggingsRequest

ListTaggings List taggings

Use this endpoint to retrieve a list of all the taggings associated with a specific user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListTaggingsRequest

func (*MxPlatformAPIService) ListTaggingsExecute added in v0.17.1

Execute executes the request

@return TaggingsResponseBody

func (*MxPlatformAPIService) ListTags added in v0.17.1

func (a *MxPlatformAPIService) ListTags(ctx context.Context, userGuid string) ApiListTagsRequest

ListTags List tags

Use this endpoint to list all tags associated with the specified `user`. Each user includes the `Business` tag by default.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListTagsRequest

func (*MxPlatformAPIService) ListTagsExecute added in v0.17.1

Execute executes the request

@return TagsResponseBody

func (*MxPlatformAPIService) ListTaxDocuments added in v0.17.1

func (a *MxPlatformAPIService) ListTaxDocuments(ctx context.Context, memberGuid string, userGuid string) ApiListTaxDocumentsRequest

ListTaxDocuments List Tax Documents

Use this endpoint to get a paginated list of tax documents.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListTaxDocumentsRequest

func (*MxPlatformAPIService) ListTaxDocumentsExecute added in v0.17.1

Execute executes the request

@return TaxDocumentsResponseBody

func (*MxPlatformAPIService) ListTransactionRules added in v0.17.1

func (a *MxPlatformAPIService) ListTransactionRules(ctx context.Context, userGuid string) ApiListTransactionRulesRequest

ListTransactionRules List transaction rules

Use this endpoint to read the attributes of all existing transaction rules belonging to the user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListTransactionRulesRequest

func (*MxPlatformAPIService) ListTransactionRulesExecute added in v0.17.1

Execute executes the request

@return TransactionRulesResponseBody

func (*MxPlatformAPIService) ListTransactions added in v0.17.1

func (a *MxPlatformAPIService) ListTransactions(ctx context.Context, userGuid string) ApiListTransactionsRequest

ListTransactions List transactions

Requests to this endpoint return a list of transactions associated with the specified `user`, accross all members and accounts associated with that `user`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListTransactionsRequest

func (*MxPlatformAPIService) ListTransactionsByAccount added in v0.17.1

func (a *MxPlatformAPIService) ListTransactionsByAccount(ctx context.Context, accountGuid string, userGuid string) ApiListTransactionsByAccountRequest

ListTransactionsByAccount List transactions by account

This endpoint returns a list of the last 90 days of transactions associated with the specified account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param userGuid The unique id for a `user`.
@return ApiListTransactionsByAccountRequest

func (*MxPlatformAPIService) ListTransactionsByAccountExecute added in v0.17.1

Execute executes the request

@return TransactionsResponseBody

func (*MxPlatformAPIService) ListTransactionsByMember added in v0.17.1

func (a *MxPlatformAPIService) ListTransactionsByMember(ctx context.Context, memberGuid string, userGuid string) ApiListTransactionsByMemberRequest

ListTransactionsByMember List transactions by member

Requests to this endpoint return a list of transactions associated with the specified `member`, accross all accounts associated with that `member`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiListTransactionsByMemberRequest

func (*MxPlatformAPIService) ListTransactionsByMemberExecute added in v0.17.1

Execute executes the request

@return TransactionsResponseBody

func (*MxPlatformAPIService) ListTransactionsByTag added in v0.17.1

func (a *MxPlatformAPIService) ListTransactionsByTag(ctx context.Context, tagGuid string, userGuid string) ApiListTransactionsByTagRequest

ListTransactionsByTag List transactions by tag

Use this endpoint to get a list of all transactions associated with a particular tag according to the tag’s unique GUID. In other words, a list of all transactions that have been assigned to a particular tag using the create a tagging endpoint.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tagGuid The unique id for a `tag`.
@param userGuid The unique id for a `user`.
@return ApiListTransactionsByTagRequest

func (*MxPlatformAPIService) ListTransactionsByTagExecute added in v0.17.1

Execute executes the request

@return TransactionsResponseBody

func (*MxPlatformAPIService) ListTransactionsExecute added in v0.17.1

Execute executes the request

@return TransactionsResponseBody

func (*MxPlatformAPIService) ListUserAccounts added in v0.17.1

func (a *MxPlatformAPIService) ListUserAccounts(ctx context.Context, userGuid string) ApiListUserAccountsRequest

ListUserAccounts List accounts

This endpoint returns a list of all the accounts associated with the specified `user`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListUserAccountsRequest

func (*MxPlatformAPIService) ListUserAccountsExecute added in v0.17.1

Execute executes the request

@return AccountsResponseBody

func (*MxPlatformAPIService) ListUsers added in v0.17.1

ListUsers List users

Use this endpoint to list every user you've created in the MX Platform API.

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

func (*MxPlatformAPIService) ListUsersExecute added in v0.17.1

Execute executes the request

@return UsersResponseBody

func (*MxPlatformAPIService) ReadAccount added in v0.17.1

func (a *MxPlatformAPIService) ReadAccount(ctx context.Context, accountGuid string, userGuid string) ApiReadAccountRequest

ReadAccount Read account

This endpoint returns the specified `account` resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param userGuid The unique id for a `user`.
@return ApiReadAccountRequest

func (*MxPlatformAPIService) ReadAccountByMember added in v0.17.1

func (a *MxPlatformAPIService) ReadAccountByMember(ctx context.Context, accountGuid string, memberGuid string, userGuid string) ApiReadAccountByMemberRequest

ReadAccountByMember Read account by member

This endpoint allows you to read the attributes of an `account` resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiReadAccountByMemberRequest

func (*MxPlatformAPIService) ReadAccountByMemberExecute added in v0.17.1

Execute executes the request

@return AccountResponseBody

func (*MxPlatformAPIService) ReadAccountExecute added in v0.17.1

Execute executes the request

@return AccountResponseBody

func (*MxPlatformAPIService) ReadCategory added in v0.17.1

func (a *MxPlatformAPIService) ReadCategory(ctx context.Context, categoryGuid string, userGuid string) ApiReadCategoryRequest

ReadCategory Read a custom category

Use this endpoint to read the attributes of either a default category or a custom category.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryGuid The unique id for a `category`.
@param userGuid The unique id for a `user`.
@return ApiReadCategoryRequest

func (*MxPlatformAPIService) ReadCategoryExecute added in v0.17.1

Execute executes the request

@return CategoryResponseBody

func (*MxPlatformAPIService) ReadDefaultCategory added in v0.17.1

func (a *MxPlatformAPIService) ReadDefaultCategory(ctx context.Context, categoryGuid string) ApiReadDefaultCategoryRequest

ReadDefaultCategory Read a default category

Use this endpoint to read the attributes of a default category.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryGuid The unique id for a `category`.
@return ApiReadDefaultCategoryRequest

func (*MxPlatformAPIService) ReadDefaultCategoryExecute added in v0.17.1

Execute executes the request

@return CategoryResponseBody

func (*MxPlatformAPIService) ReadHolding added in v0.17.1

func (a *MxPlatformAPIService) ReadHolding(ctx context.Context, holdingGuid string, userGuid string) ApiReadHoldingRequest

ReadHolding Read holding

Use this endpoint to read the attributes of a specific `holding`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param holdingGuid The unique id for a `holding`.
@param userGuid The unique id for a `user`.
@return ApiReadHoldingRequest

func (*MxPlatformAPIService) ReadHoldingExecute added in v0.17.1

Execute executes the request

@return HoldingResponseBody

func (*MxPlatformAPIService) ReadInstitution added in v0.17.1

func (a *MxPlatformAPIService) ReadInstitution(ctx context.Context, institutionCode string) ApiReadInstitutionRequest

ReadInstitution Read institution

This endpoint returns information about the institution specified by `institution_code`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param institutionCode The institution_code of the institution.
@return ApiReadInstitutionRequest

func (*MxPlatformAPIService) ReadInstitutionExecute added in v0.17.1

Execute executes the request

@return InstitutionResponseBody

func (*MxPlatformAPIService) ReadManagedAccount added in v0.17.1

func (a *MxPlatformAPIService) ReadManagedAccount(ctx context.Context, accountGuid string, memberGuid string, userGuid string) ApiReadManagedAccountRequest

ReadManagedAccount Read managed account

Use this endpoint to read the attributes of a partner-managed account according to its unique guid.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiReadManagedAccountRequest

func (*MxPlatformAPIService) ReadManagedAccountExecute added in v0.17.1

Execute executes the request

@return AccountResponseBody

func (*MxPlatformAPIService) ReadManagedMember added in v0.17.1

func (a *MxPlatformAPIService) ReadManagedMember(ctx context.Context, memberGuid string, userGuid string) ApiReadManagedMemberRequest

ReadManagedMember Read managed member

This endpoint returns the attributes of the specified partner-managed `member`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiReadManagedMemberRequest

func (*MxPlatformAPIService) ReadManagedMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) ReadManagedTransaction added in v0.17.1

func (a *MxPlatformAPIService) ReadManagedTransaction(ctx context.Context, accountGuid string, memberGuid string, transactionGuid string, userGuid string) ApiReadManagedTransactionRequest

ReadManagedTransaction Read managed transaction

Requests to this endpoint will return the attributes of the specified partner-managed `transaction`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param transactionGuid The unique id for a `transaction`.
@param userGuid The unique id for a `user`.
@return ApiReadManagedTransactionRequest

func (*MxPlatformAPIService) ReadManagedTransactionExecute added in v0.17.1

Execute executes the request

@return TransactionResponseBody

func (*MxPlatformAPIService) ReadMember added in v0.17.1

func (a *MxPlatformAPIService) ReadMember(ctx context.Context, memberGuid string, userGuid string) ApiReadMemberRequest

ReadMember Read member

Use this endpoint to read the attributes of a specific member.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiReadMemberRequest

func (*MxPlatformAPIService) ReadMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) ReadMemberStatus added in v0.17.1

func (a *MxPlatformAPIService) ReadMemberStatus(ctx context.Context, memberGuid string, userGuid string) ApiReadMemberStatusRequest

ReadMemberStatus Read member status

This endpoint provides the status of the members most recent aggregation event. This is an important step in the aggregation process, and the results returned by this endpoint should determine what you do next in order to successfully aggregate a member. MX has introduced new, more detailed information on the current status of a members connection to a financial institution and the state of its aggregation - the connection_status field. These are intended to replace and expand upon the information provided in the status field, which will soon be deprecated; support for the status field remains for the time being.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiReadMemberStatusRequest

func (*MxPlatformAPIService) ReadMemberStatusExecute added in v0.17.1

Execute executes the request

@return MemberStatusResponseBody

func (*MxPlatformAPIService) ReadMerchant added in v0.17.1

func (a *MxPlatformAPIService) ReadMerchant(ctx context.Context, merchantGuid string) ApiReadMerchantRequest

ReadMerchant Read merchant

Returns information about a particular merchant, such as a logo, name, and website.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param merchantGuid The unique id for a `merchant`.
@return ApiReadMerchantRequest

func (*MxPlatformAPIService) ReadMerchantExecute added in v0.17.1

Execute executes the request

@return MerchantResponseBody

func (*MxPlatformAPIService) ReadMerchantLocation added in v0.17.1

func (a *MxPlatformAPIService) ReadMerchantLocation(ctx context.Context, merchantLocationGuid string) ApiReadMerchantLocationRequest

ReadMerchantLocation Read merchant location

This endpoint returns the specified merchant_location resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param merchantLocationGuid The unique id for a `merchant_location`.
@return ApiReadMerchantLocationRequest

func (*MxPlatformAPIService) ReadMerchantLocationExecute added in v0.17.1

Execute executes the request

@return MerchantLocationResponseBody

func (*MxPlatformAPIService) ReadStatementByMember added in v0.17.1

func (a *MxPlatformAPIService) ReadStatementByMember(ctx context.Context, memberGuid string, statementGuid string, userGuid string) ApiReadStatementByMemberRequest

ReadStatementByMember Read statement by member

Use this endpoint to read a JSON representation of the statement.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param statementGuid The unique id for a `statement`.
@param userGuid The unique id for a `user`.
@return ApiReadStatementByMemberRequest

func (*MxPlatformAPIService) ReadStatementByMemberExecute added in v0.17.1

Execute executes the request

@return StatementResponseBody

func (*MxPlatformAPIService) ReadTag added in v0.17.1

func (a *MxPlatformAPIService) ReadTag(ctx context.Context, tagGuid string, userGuid string) ApiReadTagRequest

ReadTag Read tag

Use this endpoint to read the attributes of a particular tag according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tagGuid The unique id for a `tag`.
@param userGuid The unique id for a `user`.
@return ApiReadTagRequest

func (*MxPlatformAPIService) ReadTagExecute added in v0.17.1

Execute executes the request

@return TagResponseBody

func (*MxPlatformAPIService) ReadTagging added in v0.17.1

func (a *MxPlatformAPIService) ReadTagging(ctx context.Context, taggingGuid string, userGuid string) ApiReadTaggingRequest

ReadTagging Read tagging

Use this endpoint to read the attributes of a `tagging` according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taggingGuid The unique id for a `tagging`.
@param userGuid The unique id for a `user`.
@return ApiReadTaggingRequest

func (*MxPlatformAPIService) ReadTaggingExecute added in v0.17.1

Execute executes the request

@return TaggingResponseBody

func (*MxPlatformAPIService) ReadTaxDocument added in v0.17.1

func (a *MxPlatformAPIService) ReadTaxDocument(ctx context.Context, taxDocumentGuid string, memberGuid string, userGuid string) ApiReadTaxDocumentRequest

ReadTaxDocument Read a Tax Document

Use this endpoint to read the attributes of the specified tax document.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taxDocumentGuid The unique id for a `tax_document`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiReadTaxDocumentRequest

func (*MxPlatformAPIService) ReadTaxDocumentExecute added in v0.17.1

Execute executes the request

@return TaxDocumentResponseBody

func (*MxPlatformAPIService) ReadTransaction added in v0.17.1

func (a *MxPlatformAPIService) ReadTransaction(ctx context.Context, transactionGuid string, userGuid string) ApiReadTransactionRequest

ReadTransaction Read transaction

Requests to this endpoint will return the attributes of the specified `transaction`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param transactionGuid The unique id for a `transaction`.
@param userGuid The unique id for a `user`.
@return ApiReadTransactionRequest

func (*MxPlatformAPIService) ReadTransactionExecute added in v0.17.1

Execute executes the request

@return TransactionResponseBody

func (*MxPlatformAPIService) ReadTransactionRule added in v0.17.1

func (a *MxPlatformAPIService) ReadTransactionRule(ctx context.Context, transactionRuleGuid string, userGuid string) ApiReadTransactionRuleRequest

ReadTransactionRule Read transaction rule

Use this endpoint to read the attributes of an existing transaction rule based on the rule’s unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param transactionRuleGuid The unique id for a `transaction_rule`.
@param userGuid The unique id for a `user`.
@return ApiReadTransactionRuleRequest

func (*MxPlatformAPIService) ReadTransactionRuleExecute added in v0.17.1

Execute executes the request

@return TransactionRuleResponseBody

func (*MxPlatformAPIService) ReadUser added in v0.17.1

func (a *MxPlatformAPIService) ReadUser(ctx context.Context, userGuid string) ApiReadUserRequest

ReadUser Read user

Use this endpoint to read the attributes of a specific user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiReadUserRequest

func (*MxPlatformAPIService) ReadUserExecute added in v0.17.1

Execute executes the request

@return UserResponseBody

func (*MxPlatformAPIService) RequestAuthorizationCode added in v0.17.1

RequestAuthorizationCode Request an authorization code.

Clients use this endpoint to request an authorization code according to the parameters specified in the scope. Clients then pass this code to processors. Processor access is scoped only to the GUIDs and features specified in this request. Before requesting an authorization code which includes a member in the scope, clients must have verified that member.

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

func (*MxPlatformAPIService) RequestAuthorizationCodeExecute added in v0.17.1

Execute executes the request

@return AuthorizationCodeResponseBody

func (*MxPlatformAPIService) RequestConnectWidgetURL added in v0.17.1

func (a *MxPlatformAPIService) RequestConnectWidgetURL(ctx context.Context, userGuid string) ApiRequestConnectWidgetURLRequest

RequestConnectWidgetURL Request connect widget url

This endpoint will return a URL for an embeddable version of MX Connect.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiRequestConnectWidgetURLRequest

func (*MxPlatformAPIService) RequestConnectWidgetURLExecute added in v0.17.1

Execute executes the request

@return ConnectWidgetResponseBody

func (*MxPlatformAPIService) RequestOAuthWindowURI added in v0.17.1

func (a *MxPlatformAPIService) RequestOAuthWindowURI(ctx context.Context, memberGuid string, userGuid string) ApiRequestOAuthWindowURIRequest

RequestOAuthWindowURI Request oauth window uri

This endpoint will generate an `oauth_window_uri` for the specified `member`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiRequestOAuthWindowURIRequest

func (*MxPlatformAPIService) RequestOAuthWindowURIExecute added in v0.17.1

Execute executes the request

@return OAuthWindowResponseBody

func (*MxPlatformAPIService) RequestWidgetURL added in v0.17.1

func (a *MxPlatformAPIService) RequestWidgetURL(ctx context.Context, userGuid string) ApiRequestWidgetURLRequest

RequestWidgetURL Request widget url

This endpoint allows partners to get a URL by passing the `widget_type` in the request body, as well as configuring it in several different ways. In the case of Connect, that means setting the `widget_type` to `connect_widget`. Partners may also pass an optional `Accept-Language` header as well as a number of configuration options. Note that this is a `POST` request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiRequestWidgetURLRequest

func (*MxPlatformAPIService) RequestWidgetURLExecute added in v0.17.1

Execute executes the request

@return WidgetResponseBody

func (*MxPlatformAPIService) ResumeAggregation added in v0.17.1

func (a *MxPlatformAPIService) ResumeAggregation(ctx context.Context, memberGuid string, userGuid string) ApiResumeAggregationRequest

ResumeAggregation Resume aggregation

This endpoint answers the challenges needed when a member has been challenged by multi-factor authentication.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiResumeAggregationRequest

func (*MxPlatformAPIService) ResumeAggregationExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) UpdateAccountByMember added in v0.17.1

func (a *MxPlatformAPIService) UpdateAccountByMember(ctx context.Context, accountGuid string, memberGuid string, userGuid string) ApiUpdateAccountByMemberRequest

UpdateAccountByMember Update account by member

This endpoint allows you to update certain attributes of an `account` resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiUpdateAccountByMemberRequest

func (*MxPlatformAPIService) UpdateAccountByMemberExecute added in v0.17.1

Execute executes the request

@return AccountResponseBody

func (*MxPlatformAPIService) UpdateCategory added in v0.17.1

func (a *MxPlatformAPIService) UpdateCategory(ctx context.Context, categoryGuid string, userGuid string) ApiUpdateCategoryRequest

UpdateCategory Update category

Use this endpoint to update the attributes of a custom category according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param categoryGuid The unique id for a `category`.
@param userGuid The unique id for a `user`.
@return ApiUpdateCategoryRequest

func (*MxPlatformAPIService) UpdateCategoryExecute added in v0.17.1

Execute executes the request

@return CategoryResponseBody

func (*MxPlatformAPIService) UpdateManagedAccount added in v0.17.1

func (a *MxPlatformAPIService) UpdateManagedAccount(ctx context.Context, accountGuid string, memberGuid string, userGuid string) ApiUpdateManagedAccountRequest

UpdateManagedAccount Update managed account

Use this endpoint to update the attributes of a partner-managed account according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiUpdateManagedAccountRequest

func (*MxPlatformAPIService) UpdateManagedAccountExecute added in v0.17.1

Execute executes the request

@return AccountResponseBody

func (*MxPlatformAPIService) UpdateManagedMember added in v0.17.1

func (a *MxPlatformAPIService) UpdateManagedMember(ctx context.Context, memberGuid string, userGuid string) ApiUpdateManagedMemberRequest

UpdateManagedMember Update managed member

Use this endpoint to update the attributes of the specified partner_managed `member`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiUpdateManagedMemberRequest

func (*MxPlatformAPIService) UpdateManagedMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) UpdateManagedTransaction added in v0.17.1

func (a *MxPlatformAPIService) UpdateManagedTransaction(ctx context.Context, accountGuid string, memberGuid string, transactionGuid string, userGuid string) ApiUpdateManagedTransactionRequest

UpdateManagedTransaction Update managed transaction

Use this endpoint to update the attributes of the specified partner_managed `transaction`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param accountGuid The unique id for an `account`.
@param memberGuid The unique id for a `member`.
@param transactionGuid The unique id for a `transaction`.
@param userGuid The unique id for a `user`.
@return ApiUpdateManagedTransactionRequest

func (*MxPlatformAPIService) UpdateManagedTransactionExecute added in v0.17.1

Execute executes the request

@return TransactionResponseBody

func (*MxPlatformAPIService) UpdateMember added in v0.17.1

func (a *MxPlatformAPIService) UpdateMember(ctx context.Context, memberGuid string, userGuid string) ApiUpdateMemberRequest

UpdateMember Update member

Use this endpoint to update a members attributes. Only the credentials, id, and metadata parameters can be updated. To get a list of the required credentials for the member, use the list member credentials endpoint.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiUpdateMemberRequest

func (*MxPlatformAPIService) UpdateMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

func (*MxPlatformAPIService) UpdateTag added in v0.17.1

func (a *MxPlatformAPIService) UpdateTag(ctx context.Context, tagGuid string, userGuid string) ApiUpdateTagRequest

UpdateTag Update tag

Use this endpoint to update the name of a specific tag according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tagGuid The unique id for a `tag`.
@param userGuid The unique id for a `user`.
@return ApiUpdateTagRequest

func (*MxPlatformAPIService) UpdateTagExecute added in v0.17.1

Execute executes the request

@return TagResponseBody

func (*MxPlatformAPIService) UpdateTagging added in v0.17.1

func (a *MxPlatformAPIService) UpdateTagging(ctx context.Context, taggingGuid string, userGuid string) ApiUpdateTaggingRequest

UpdateTagging Update tagging

Use this endpoint to update a tagging.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taggingGuid The unique id for a `tagging`.
@param userGuid The unique id for a `user`.
@return ApiUpdateTaggingRequest

func (*MxPlatformAPIService) UpdateTaggingExecute added in v0.17.1

Execute executes the request

@return TaggingResponseBody

func (*MxPlatformAPIService) UpdateTransaction added in v0.17.1

func (a *MxPlatformAPIService) UpdateTransaction(ctx context.Context, transactionGuid string, userGuid string) ApiUpdateTransactionRequest

UpdateTransaction Update transaction

Use this endpoint to update the `description` of a specific transaction according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param transactionGuid The unique id for a `transaction`.
@param userGuid The unique id for a `user`.
@return ApiUpdateTransactionRequest

func (*MxPlatformAPIService) UpdateTransactionExecute added in v0.17.1

Execute executes the request

@return TransactionResponseBody

func (*MxPlatformAPIService) UpdateTransactionRule added in v0.17.1

func (a *MxPlatformAPIService) UpdateTransactionRule(ctx context.Context, transactionRuleGuid string, userGuid string) ApiUpdateTransactionRuleRequest

UpdateTransactionRule Update transaction_rule

Use this endpoint to update the attributes of a specific transaction rule based on its unique GUID. The API will respond with the updated transaction_rule object. Any attributes not provided will be left unchanged.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param transactionRuleGuid The unique id for a `transaction_rule`.
@param userGuid The unique id for a `user`.
@return ApiUpdateTransactionRuleRequest

func (*MxPlatformAPIService) UpdateTransactionRuleExecute added in v0.17.1

Execute executes the request

@return TransactionRuleResponseBody

func (*MxPlatformAPIService) UpdateUser added in v0.17.1

func (a *MxPlatformAPIService) UpdateUser(ctx context.Context, userGuid string) ApiUpdateUserRequest

UpdateUser Update user

Use this endpoint to update the attributes of the specified user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiUpdateUserRequest

func (*MxPlatformAPIService) UpdateUserExecute added in v0.17.1

Execute executes the request

@return UserResponseBody

func (*MxPlatformAPIService) VerifyMember added in v0.17.1

func (a *MxPlatformAPIService) VerifyMember(ctx context.Context, memberGuid string, userGuid string) ApiVerifyMemberRequest

VerifyMember Verify member

The verify endpoint begins a verification process for a member.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param memberGuid The unique id for a `member`.
@param userGuid The unique id for a `user`.
@return ApiVerifyMemberRequest

func (*MxPlatformAPIService) VerifyMemberExecute added in v0.17.1

Execute executes the request

@return MemberResponseBody

type NullableAccountCreateRequest added in v0.13.0

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

func NewNullableAccountCreateRequest added in v0.13.0

func NewNullableAccountCreateRequest(val *AccountCreateRequest) *NullableAccountCreateRequest

func (NullableAccountCreateRequest) Get added in v0.13.0

func (NullableAccountCreateRequest) IsSet added in v0.13.0

func (NullableAccountCreateRequest) MarshalJSON added in v0.13.0

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

func (*NullableAccountCreateRequest) Set added in v0.13.0

func (*NullableAccountCreateRequest) UnmarshalJSON added in v0.13.0

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

func (*NullableAccountCreateRequest) Unset added in v0.13.0

func (v *NullableAccountCreateRequest) Unset()

type NullableAccountCreateRequestBody added in v0.13.0

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

func NewNullableAccountCreateRequestBody added in v0.13.0

func NewNullableAccountCreateRequestBody(val *AccountCreateRequestBody) *NullableAccountCreateRequestBody

func (NullableAccountCreateRequestBody) Get added in v0.13.0

func (NullableAccountCreateRequestBody) IsSet added in v0.13.0

func (NullableAccountCreateRequestBody) MarshalJSON added in v0.13.0

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

func (*NullableAccountCreateRequestBody) Set added in v0.13.0

func (*NullableAccountCreateRequestBody) UnmarshalJSON added in v0.13.0

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

func (*NullableAccountCreateRequestBody) Unset added in v0.13.0

type NullableAccountNumberResponse

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

func (NullableAccountNumberResponse) Get

func (NullableAccountNumberResponse) IsSet

func (NullableAccountNumberResponse) MarshalJSON

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

func (*NullableAccountNumberResponse) Set

func (*NullableAccountNumberResponse) UnmarshalJSON

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

func (*NullableAccountNumberResponse) Unset

func (v *NullableAccountNumberResponse) Unset()

type NullableAccountNumbersResponseBody

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

func (NullableAccountNumbersResponseBody) Get

func (NullableAccountNumbersResponseBody) IsSet

func (NullableAccountNumbersResponseBody) MarshalJSON

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

func (*NullableAccountNumbersResponseBody) Set

func (*NullableAccountNumbersResponseBody) UnmarshalJSON

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

func (*NullableAccountNumbersResponseBody) Unset

type NullableAccountOwnerResponse

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

func NewNullableAccountOwnerResponse

func NewNullableAccountOwnerResponse(val *AccountOwnerResponse) *NullableAccountOwnerResponse

func (NullableAccountOwnerResponse) Get

func (NullableAccountOwnerResponse) IsSet

func (NullableAccountOwnerResponse) MarshalJSON

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

func (*NullableAccountOwnerResponse) Set

func (*NullableAccountOwnerResponse) UnmarshalJSON

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

func (*NullableAccountOwnerResponse) Unset

func (v *NullableAccountOwnerResponse) Unset()

type NullableAccountOwnersResponseBody

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

func (NullableAccountOwnersResponseBody) Get

func (NullableAccountOwnersResponseBody) IsSet

func (NullableAccountOwnersResponseBody) MarshalJSON

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

func (*NullableAccountOwnersResponseBody) Set

func (*NullableAccountOwnersResponseBody) UnmarshalJSON

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

func (*NullableAccountOwnersResponseBody) Unset

type NullableAccountResponse

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

func NewNullableAccountResponse

func NewNullableAccountResponse(val *AccountResponse) *NullableAccountResponse

func (NullableAccountResponse) Get

func (NullableAccountResponse) IsSet

func (v NullableAccountResponse) IsSet() bool

func (NullableAccountResponse) MarshalJSON

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

func (*NullableAccountResponse) Set

func (*NullableAccountResponse) UnmarshalJSON

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

func (*NullableAccountResponse) Unset

func (v *NullableAccountResponse) Unset()

type NullableAccountResponseBody

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

func NewNullableAccountResponseBody

func NewNullableAccountResponseBody(val *AccountResponseBody) *NullableAccountResponseBody

func (NullableAccountResponseBody) Get

func (NullableAccountResponseBody) IsSet

func (NullableAccountResponseBody) MarshalJSON

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

func (*NullableAccountResponseBody) Set

func (*NullableAccountResponseBody) UnmarshalJSON

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

func (*NullableAccountResponseBody) Unset

func (v *NullableAccountResponseBody) Unset()

type NullableAccountUpdateRequest

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

func NewNullableAccountUpdateRequest

func NewNullableAccountUpdateRequest(val *AccountUpdateRequest) *NullableAccountUpdateRequest

func (NullableAccountUpdateRequest) Get

func (NullableAccountUpdateRequest) IsSet

func (NullableAccountUpdateRequest) MarshalJSON

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

func (*NullableAccountUpdateRequest) Set

func (*NullableAccountUpdateRequest) UnmarshalJSON

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

func (*NullableAccountUpdateRequest) Unset

func (v *NullableAccountUpdateRequest) Unset()

type NullableAccountUpdateRequestBody

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

func (NullableAccountUpdateRequestBody) Get

func (NullableAccountUpdateRequestBody) IsSet

func (NullableAccountUpdateRequestBody) MarshalJSON

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

func (*NullableAccountUpdateRequestBody) Set

func (*NullableAccountUpdateRequestBody) UnmarshalJSON

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

func (*NullableAccountUpdateRequestBody) Unset

type NullableAccountsResponseBody

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

func NewNullableAccountsResponseBody

func NewNullableAccountsResponseBody(val *AccountsResponseBody) *NullableAccountsResponseBody

func (NullableAccountsResponseBody) Get

func (NullableAccountsResponseBody) IsSet

func (NullableAccountsResponseBody) MarshalJSON

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

func (*NullableAccountsResponseBody) Set

func (*NullableAccountsResponseBody) UnmarshalJSON

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

func (*NullableAccountsResponseBody) Unset

func (v *NullableAccountsResponseBody) Unset()

type NullableAuthorizationCodeRequest added in v0.10.0

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

func NewNullableAuthorizationCodeRequest added in v0.10.0

func NewNullableAuthorizationCodeRequest(val *AuthorizationCodeRequest) *NullableAuthorizationCodeRequest

func (NullableAuthorizationCodeRequest) Get added in v0.10.0

func (NullableAuthorizationCodeRequest) IsSet added in v0.10.0

func (NullableAuthorizationCodeRequest) MarshalJSON added in v0.10.0

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

func (*NullableAuthorizationCodeRequest) Set added in v0.10.0

func (*NullableAuthorizationCodeRequest) UnmarshalJSON added in v0.10.0

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

func (*NullableAuthorizationCodeRequest) Unset added in v0.10.0

type NullableAuthorizationCodeRequestBody added in v0.10.0

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

func NewNullableAuthorizationCodeRequestBody added in v0.10.0

func NewNullableAuthorizationCodeRequestBody(val *AuthorizationCodeRequestBody) *NullableAuthorizationCodeRequestBody

func (NullableAuthorizationCodeRequestBody) Get added in v0.10.0

func (NullableAuthorizationCodeRequestBody) IsSet added in v0.10.0

func (NullableAuthorizationCodeRequestBody) MarshalJSON added in v0.10.0

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

func (*NullableAuthorizationCodeRequestBody) Set added in v0.10.0

func (*NullableAuthorizationCodeRequestBody) UnmarshalJSON added in v0.10.0

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

func (*NullableAuthorizationCodeRequestBody) Unset added in v0.10.0

type NullableAuthorizationCodeResponse added in v0.10.0

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

func NewNullableAuthorizationCodeResponse added in v0.10.0

func NewNullableAuthorizationCodeResponse(val *AuthorizationCodeResponse) *NullableAuthorizationCodeResponse

func (NullableAuthorizationCodeResponse) Get added in v0.10.0

func (NullableAuthorizationCodeResponse) IsSet added in v0.10.0

func (NullableAuthorizationCodeResponse) MarshalJSON added in v0.10.0

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

func (*NullableAuthorizationCodeResponse) Set added in v0.10.0

func (*NullableAuthorizationCodeResponse) UnmarshalJSON added in v0.10.0

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

func (*NullableAuthorizationCodeResponse) Unset added in v0.10.0

type NullableAuthorizationCodeResponseBody added in v0.10.0

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

func NewNullableAuthorizationCodeResponseBody added in v0.10.0

func NewNullableAuthorizationCodeResponseBody(val *AuthorizationCodeResponseBody) *NullableAuthorizationCodeResponseBody

func (NullableAuthorizationCodeResponseBody) Get added in v0.10.0

func (NullableAuthorizationCodeResponseBody) IsSet added in v0.10.0

func (NullableAuthorizationCodeResponseBody) MarshalJSON added in v0.10.0

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

func (*NullableAuthorizationCodeResponseBody) Set added in v0.10.0

func (*NullableAuthorizationCodeResponseBody) UnmarshalJSON added in v0.10.0

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

func (*NullableAuthorizationCodeResponseBody) Unset added in v0.10.0

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 NullableCategoriesResponseBody

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

func (NullableCategoriesResponseBody) Get

func (NullableCategoriesResponseBody) IsSet

func (NullableCategoriesResponseBody) MarshalJSON

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

func (*NullableCategoriesResponseBody) Set

func (*NullableCategoriesResponseBody) UnmarshalJSON

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

func (*NullableCategoriesResponseBody) Unset

func (v *NullableCategoriesResponseBody) Unset()

type NullableCategoryCreateRequest

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

func (NullableCategoryCreateRequest) Get

func (NullableCategoryCreateRequest) IsSet

func (NullableCategoryCreateRequest) MarshalJSON

func (v NullableCategoryCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableCategoryCreateRequest) Set

func (*NullableCategoryCreateRequest) UnmarshalJSON

func (v *NullableCategoryCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableCategoryCreateRequest) Unset

func (v *NullableCategoryCreateRequest) Unset()

type NullableCategoryCreateRequestBody

type NullableCategoryCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableCategoryCreateRequestBody) Get

func (NullableCategoryCreateRequestBody) IsSet

func (NullableCategoryCreateRequestBody) MarshalJSON

func (v NullableCategoryCreateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableCategoryCreateRequestBody) Set

func (*NullableCategoryCreateRequestBody) UnmarshalJSON

func (v *NullableCategoryCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableCategoryCreateRequestBody) Unset

type NullableCategoryResponse

type NullableCategoryResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCategoryResponse

func NewNullableCategoryResponse(val *CategoryResponse) *NullableCategoryResponse

func (NullableCategoryResponse) Get

func (NullableCategoryResponse) IsSet

func (v NullableCategoryResponse) IsSet() bool

func (NullableCategoryResponse) MarshalJSON

func (v NullableCategoryResponse) MarshalJSON() ([]byte, error)

func (*NullableCategoryResponse) Set

func (*NullableCategoryResponse) UnmarshalJSON

func (v *NullableCategoryResponse) UnmarshalJSON(src []byte) error

func (*NullableCategoryResponse) Unset

func (v *NullableCategoryResponse) Unset()

type NullableCategoryResponseBody

type NullableCategoryResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableCategoryResponseBody

func NewNullableCategoryResponseBody(val *CategoryResponseBody) *NullableCategoryResponseBody

func (NullableCategoryResponseBody) Get

func (NullableCategoryResponseBody) IsSet

func (NullableCategoryResponseBody) MarshalJSON

func (v NullableCategoryResponseBody) MarshalJSON() ([]byte, error)

func (*NullableCategoryResponseBody) Set

func (*NullableCategoryResponseBody) UnmarshalJSON

func (v *NullableCategoryResponseBody) UnmarshalJSON(src []byte) error

func (*NullableCategoryResponseBody) Unset

func (v *NullableCategoryResponseBody) Unset()

type NullableCategoryUpdateRequest

type NullableCategoryUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableCategoryUpdateRequest) Get

func (NullableCategoryUpdateRequest) IsSet

func (NullableCategoryUpdateRequest) MarshalJSON

func (v NullableCategoryUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableCategoryUpdateRequest) Set

func (*NullableCategoryUpdateRequest) UnmarshalJSON

func (v *NullableCategoryUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableCategoryUpdateRequest) Unset

func (v *NullableCategoryUpdateRequest) Unset()

type NullableCategoryUpdateRequestBody

type NullableCategoryUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableCategoryUpdateRequestBody) Get

func (NullableCategoryUpdateRequestBody) IsSet

func (NullableCategoryUpdateRequestBody) MarshalJSON

func (v NullableCategoryUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableCategoryUpdateRequestBody) Set

func (*NullableCategoryUpdateRequestBody) UnmarshalJSON

func (v *NullableCategoryUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableCategoryUpdateRequestBody) Unset

type NullableChallengeResponse

type NullableChallengeResponse struct {
	// contains filtered or unexported fields
}

func NewNullableChallengeResponse

func NewNullableChallengeResponse(val *ChallengeResponse) *NullableChallengeResponse

func (NullableChallengeResponse) Get

func (NullableChallengeResponse) IsSet

func (v NullableChallengeResponse) IsSet() bool

func (NullableChallengeResponse) MarshalJSON

func (v NullableChallengeResponse) MarshalJSON() ([]byte, error)

func (*NullableChallengeResponse) Set

func (*NullableChallengeResponse) UnmarshalJSON

func (v *NullableChallengeResponse) UnmarshalJSON(src []byte) error

func (*NullableChallengeResponse) Unset

func (v *NullableChallengeResponse) Unset()

type NullableChallengesResponseBody

type NullableChallengesResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableChallengesResponseBody) Get

func (NullableChallengesResponseBody) IsSet

func (NullableChallengesResponseBody) MarshalJSON

func (v NullableChallengesResponseBody) MarshalJSON() ([]byte, error)

func (*NullableChallengesResponseBody) Set

func (*NullableChallengesResponseBody) UnmarshalJSON

func (v *NullableChallengesResponseBody) UnmarshalJSON(src []byte) error

func (*NullableChallengesResponseBody) Unset

func (v *NullableChallengesResponseBody) Unset()

type NullableConnectWidgetRequest

type NullableConnectWidgetRequest struct {
	// contains filtered or unexported fields
}

func NewNullableConnectWidgetRequest

func NewNullableConnectWidgetRequest(val *ConnectWidgetRequest) *NullableConnectWidgetRequest

func (NullableConnectWidgetRequest) Get

func (NullableConnectWidgetRequest) IsSet

func (NullableConnectWidgetRequest) MarshalJSON

func (v NullableConnectWidgetRequest) MarshalJSON() ([]byte, error)

func (*NullableConnectWidgetRequest) Set

func (*NullableConnectWidgetRequest) UnmarshalJSON

func (v *NullableConnectWidgetRequest) UnmarshalJSON(src []byte) error

func (*NullableConnectWidgetRequest) Unset

func (v *NullableConnectWidgetRequest) Unset()

type NullableConnectWidgetRequestBody

type NullableConnectWidgetRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableConnectWidgetRequestBody) Get

func (NullableConnectWidgetRequestBody) IsSet

func (NullableConnectWidgetRequestBody) MarshalJSON

func (v NullableConnectWidgetRequestBody) MarshalJSON() ([]byte, error)

func (*NullableConnectWidgetRequestBody) Set

func (*NullableConnectWidgetRequestBody) UnmarshalJSON

func (v *NullableConnectWidgetRequestBody) UnmarshalJSON(src []byte) error

func (*NullableConnectWidgetRequestBody) Unset

type NullableConnectWidgetResponse

type NullableConnectWidgetResponse struct {
	// contains filtered or unexported fields
}

func (NullableConnectWidgetResponse) Get

func (NullableConnectWidgetResponse) IsSet

func (NullableConnectWidgetResponse) MarshalJSON

func (v NullableConnectWidgetResponse) MarshalJSON() ([]byte, error)

func (*NullableConnectWidgetResponse) Set

func (*NullableConnectWidgetResponse) UnmarshalJSON

func (v *NullableConnectWidgetResponse) UnmarshalJSON(src []byte) error

func (*NullableConnectWidgetResponse) Unset

func (v *NullableConnectWidgetResponse) Unset()

type NullableConnectWidgetResponseBody

type NullableConnectWidgetResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableConnectWidgetResponseBody) Get

func (NullableConnectWidgetResponseBody) IsSet

func (NullableConnectWidgetResponseBody) MarshalJSON

func (v NullableConnectWidgetResponseBody) MarshalJSON() ([]byte, error)

func (*NullableConnectWidgetResponseBody) Set

func (*NullableConnectWidgetResponseBody) UnmarshalJSON

func (v *NullableConnectWidgetResponseBody) UnmarshalJSON(src []byte) error

func (*NullableConnectWidgetResponseBody) Unset

type NullableCredentialRequest

type NullableCredentialRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCredentialRequest

func NewNullableCredentialRequest(val *CredentialRequest) *NullableCredentialRequest

func (NullableCredentialRequest) Get

func (NullableCredentialRequest) IsSet

func (v NullableCredentialRequest) IsSet() bool

func (NullableCredentialRequest) MarshalJSON

func (v NullableCredentialRequest) MarshalJSON() ([]byte, error)

func (*NullableCredentialRequest) Set

func (*NullableCredentialRequest) UnmarshalJSON

func (v *NullableCredentialRequest) UnmarshalJSON(src []byte) error

func (*NullableCredentialRequest) Unset

func (v *NullableCredentialRequest) Unset()

type NullableCredentialResponse

type NullableCredentialResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCredentialResponse

func NewNullableCredentialResponse(val *CredentialResponse) *NullableCredentialResponse

func (NullableCredentialResponse) Get

func (NullableCredentialResponse) IsSet

func (v NullableCredentialResponse) IsSet() bool

func (NullableCredentialResponse) MarshalJSON

func (v NullableCredentialResponse) MarshalJSON() ([]byte, error)

func (*NullableCredentialResponse) Set

func (*NullableCredentialResponse) UnmarshalJSON

func (v *NullableCredentialResponse) UnmarshalJSON(src []byte) error

func (*NullableCredentialResponse) Unset

func (v *NullableCredentialResponse) Unset()

type NullableCredentialsResponseBody

type NullableCredentialsResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableCredentialsResponseBody) Get

func (NullableCredentialsResponseBody) IsSet

func (NullableCredentialsResponseBody) MarshalJSON

func (v NullableCredentialsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableCredentialsResponseBody) Set

func (*NullableCredentialsResponseBody) UnmarshalJSON

func (v *NullableCredentialsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableCredentialsResponseBody) Unset

type NullableEnhanceTransactionResponse

type NullableEnhanceTransactionResponse struct {
	// contains filtered or unexported fields
}

func (NullableEnhanceTransactionResponse) Get

func (NullableEnhanceTransactionResponse) IsSet

func (NullableEnhanceTransactionResponse) MarshalJSON

func (v NullableEnhanceTransactionResponse) MarshalJSON() ([]byte, error)

func (*NullableEnhanceTransactionResponse) Set

func (*NullableEnhanceTransactionResponse) UnmarshalJSON

func (v *NullableEnhanceTransactionResponse) UnmarshalJSON(src []byte) error

func (*NullableEnhanceTransactionResponse) Unset

type NullableEnhanceTransactionsRequest

type NullableEnhanceTransactionsRequest struct {
	// contains filtered or unexported fields
}

func (NullableEnhanceTransactionsRequest) Get

func (NullableEnhanceTransactionsRequest) IsSet

func (NullableEnhanceTransactionsRequest) MarshalJSON

func (v NullableEnhanceTransactionsRequest) MarshalJSON() ([]byte, error)

func (*NullableEnhanceTransactionsRequest) Set

func (*NullableEnhanceTransactionsRequest) UnmarshalJSON

func (v *NullableEnhanceTransactionsRequest) UnmarshalJSON(src []byte) error

func (*NullableEnhanceTransactionsRequest) Unset

type NullableEnhanceTransactionsRequestBody

type NullableEnhanceTransactionsRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableEnhanceTransactionsRequestBody) Get

func (NullableEnhanceTransactionsRequestBody) IsSet

func (NullableEnhanceTransactionsRequestBody) MarshalJSON

func (v NullableEnhanceTransactionsRequestBody) MarshalJSON() ([]byte, error)

func (*NullableEnhanceTransactionsRequestBody) Set

func (*NullableEnhanceTransactionsRequestBody) UnmarshalJSON

func (v *NullableEnhanceTransactionsRequestBody) UnmarshalJSON(src []byte) error

func (*NullableEnhanceTransactionsRequestBody) Unset

type NullableEnhanceTransactionsResponseBody

type NullableEnhanceTransactionsResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableEnhanceTransactionsResponseBody) Get

func (NullableEnhanceTransactionsResponseBody) IsSet

func (NullableEnhanceTransactionsResponseBody) MarshalJSON

func (v NullableEnhanceTransactionsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableEnhanceTransactionsResponseBody) Set

func (*NullableEnhanceTransactionsResponseBody) UnmarshalJSON

func (v *NullableEnhanceTransactionsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableEnhanceTransactionsResponseBody) 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 NullableHoldingResponse

type NullableHoldingResponse struct {
	// contains filtered or unexported fields
}

func NewNullableHoldingResponse

func NewNullableHoldingResponse(val *HoldingResponse) *NullableHoldingResponse

func (NullableHoldingResponse) Get

func (NullableHoldingResponse) IsSet

func (v NullableHoldingResponse) IsSet() bool

func (NullableHoldingResponse) MarshalJSON

func (v NullableHoldingResponse) MarshalJSON() ([]byte, error)

func (*NullableHoldingResponse) Set

func (*NullableHoldingResponse) UnmarshalJSON

func (v *NullableHoldingResponse) UnmarshalJSON(src []byte) error

func (*NullableHoldingResponse) Unset

func (v *NullableHoldingResponse) Unset()

type NullableHoldingResponseBody

type NullableHoldingResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableHoldingResponseBody

func NewNullableHoldingResponseBody(val *HoldingResponseBody) *NullableHoldingResponseBody

func (NullableHoldingResponseBody) Get

func (NullableHoldingResponseBody) IsSet

func (NullableHoldingResponseBody) MarshalJSON

func (v NullableHoldingResponseBody) MarshalJSON() ([]byte, error)

func (*NullableHoldingResponseBody) Set

func (*NullableHoldingResponseBody) UnmarshalJSON

func (v *NullableHoldingResponseBody) UnmarshalJSON(src []byte) error

func (*NullableHoldingResponseBody) Unset

func (v *NullableHoldingResponseBody) Unset()

type NullableHoldingsResponseBody

type NullableHoldingsResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableHoldingsResponseBody

func NewNullableHoldingsResponseBody(val *HoldingsResponseBody) *NullableHoldingsResponseBody

func (NullableHoldingsResponseBody) Get

func (NullableHoldingsResponseBody) IsSet

func (NullableHoldingsResponseBody) MarshalJSON

func (v NullableHoldingsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableHoldingsResponseBody) Set

func (*NullableHoldingsResponseBody) UnmarshalJSON

func (v *NullableHoldingsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableHoldingsResponseBody) Unset

func (v *NullableHoldingsResponseBody) Unset()

type NullableImageOptionResponse

type NullableImageOptionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableImageOptionResponse

func NewNullableImageOptionResponse(val *ImageOptionResponse) *NullableImageOptionResponse

func (NullableImageOptionResponse) Get

func (NullableImageOptionResponse) IsSet

func (NullableImageOptionResponse) MarshalJSON

func (v NullableImageOptionResponse) MarshalJSON() ([]byte, error)

func (*NullableImageOptionResponse) Set

func (*NullableImageOptionResponse) UnmarshalJSON

func (v *NullableImageOptionResponse) UnmarshalJSON(src []byte) error

func (*NullableImageOptionResponse) Unset

func (v *NullableImageOptionResponse) Unset()

type NullableInstitutionResponse

type NullableInstitutionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableInstitutionResponse

func NewNullableInstitutionResponse(val *InstitutionResponse) *NullableInstitutionResponse

func (NullableInstitutionResponse) Get

func (NullableInstitutionResponse) IsSet

func (NullableInstitutionResponse) MarshalJSON

func (v NullableInstitutionResponse) MarshalJSON() ([]byte, error)

func (*NullableInstitutionResponse) Set

func (*NullableInstitutionResponse) UnmarshalJSON

func (v *NullableInstitutionResponse) UnmarshalJSON(src []byte) error

func (*NullableInstitutionResponse) Unset

func (v *NullableInstitutionResponse) Unset()

type NullableInstitutionResponseBody

type NullableInstitutionResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableInstitutionResponseBody) Get

func (NullableInstitutionResponseBody) IsSet

func (NullableInstitutionResponseBody) MarshalJSON

func (v NullableInstitutionResponseBody) MarshalJSON() ([]byte, error)

func (*NullableInstitutionResponseBody) Set

func (*NullableInstitutionResponseBody) UnmarshalJSON

func (v *NullableInstitutionResponseBody) UnmarshalJSON(src []byte) error

func (*NullableInstitutionResponseBody) Unset

type NullableInstitutionsResponseBody

type NullableInstitutionsResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableInstitutionsResponseBody) Get

func (NullableInstitutionsResponseBody) IsSet

func (NullableInstitutionsResponseBody) MarshalJSON

func (v NullableInstitutionsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableInstitutionsResponseBody) Set

func (*NullableInstitutionsResponseBody) UnmarshalJSON

func (v *NullableInstitutionsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableInstitutionsResponseBody) 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 NullableManagedAccountCreateRequest

type NullableManagedAccountCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableManagedAccountCreateRequest) Get

func (NullableManagedAccountCreateRequest) IsSet

func (NullableManagedAccountCreateRequest) MarshalJSON

func (v NullableManagedAccountCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableManagedAccountCreateRequest) Set

func (*NullableManagedAccountCreateRequest) UnmarshalJSON

func (v *NullableManagedAccountCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableManagedAccountCreateRequest) Unset

type NullableManagedAccountCreateRequestBody

type NullableManagedAccountCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableManagedAccountCreateRequestBody) Get

func (NullableManagedAccountCreateRequestBody) IsSet

func (NullableManagedAccountCreateRequestBody) MarshalJSON

func (v NullableManagedAccountCreateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableManagedAccountCreateRequestBody) Set

func (*NullableManagedAccountCreateRequestBody) UnmarshalJSON

func (v *NullableManagedAccountCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableManagedAccountCreateRequestBody) Unset

type NullableManagedAccountUpdateRequest

type NullableManagedAccountUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableManagedAccountUpdateRequest) Get

func (NullableManagedAccountUpdateRequest) IsSet

func (NullableManagedAccountUpdateRequest) MarshalJSON

func (v NullableManagedAccountUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableManagedAccountUpdateRequest) Set

func (*NullableManagedAccountUpdateRequest) UnmarshalJSON

func (v *NullableManagedAccountUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableManagedAccountUpdateRequest) Unset

type NullableManagedAccountUpdateRequestBody

type NullableManagedAccountUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableManagedAccountUpdateRequestBody) Get

func (NullableManagedAccountUpdateRequestBody) IsSet

func (NullableManagedAccountUpdateRequestBody) MarshalJSON

func (v NullableManagedAccountUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableManagedAccountUpdateRequestBody) Set

func (*NullableManagedAccountUpdateRequestBody) UnmarshalJSON

func (v *NullableManagedAccountUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableManagedAccountUpdateRequestBody) Unset

type NullableManagedMemberCreateRequest

type NullableManagedMemberCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableManagedMemberCreateRequest) Get

func (NullableManagedMemberCreateRequest) IsSet

func (NullableManagedMemberCreateRequest) MarshalJSON

func (v NullableManagedMemberCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableManagedMemberCreateRequest) Set

func (*NullableManagedMemberCreateRequest) UnmarshalJSON

func (v *NullableManagedMemberCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableManagedMemberCreateRequest) Unset

type NullableManagedMemberCreateRequestBody

type NullableManagedMemberCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableManagedMemberCreateRequestBody) Get

func (NullableManagedMemberCreateRequestBody) IsSet

func (NullableManagedMemberCreateRequestBody) MarshalJSON

func (v NullableManagedMemberCreateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableManagedMemberCreateRequestBody) Set

func (*NullableManagedMemberCreateRequestBody) UnmarshalJSON

func (v *NullableManagedMemberCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableManagedMemberCreateRequestBody) Unset

type NullableManagedMemberUpdateRequest

type NullableManagedMemberUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableManagedMemberUpdateRequest) Get

func (NullableManagedMemberUpdateRequest) IsSet

func (NullableManagedMemberUpdateRequest) MarshalJSON

func (v NullableManagedMemberUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableManagedMemberUpdateRequest) Set

func (*NullableManagedMemberUpdateRequest) UnmarshalJSON

func (v *NullableManagedMemberUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableManagedMemberUpdateRequest) Unset

type NullableManagedMemberUpdateRequestBody

type NullableManagedMemberUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableManagedMemberUpdateRequestBody) Get

func (NullableManagedMemberUpdateRequestBody) IsSet

func (NullableManagedMemberUpdateRequestBody) MarshalJSON

func (v NullableManagedMemberUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableManagedMemberUpdateRequestBody) Set

func (*NullableManagedMemberUpdateRequestBody) UnmarshalJSON

func (v *NullableManagedMemberUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableManagedMemberUpdateRequestBody) Unset

type NullableManagedTransactionCreateRequest

type NullableManagedTransactionCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableManagedTransactionCreateRequest) Get

func (NullableManagedTransactionCreateRequest) IsSet

func (NullableManagedTransactionCreateRequest) MarshalJSON

func (v NullableManagedTransactionCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableManagedTransactionCreateRequest) Set

func (*NullableManagedTransactionCreateRequest) UnmarshalJSON

func (v *NullableManagedTransactionCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableManagedTransactionCreateRequest) Unset

type NullableManagedTransactionCreateRequestBody

type NullableManagedTransactionCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableManagedTransactionCreateRequestBody) Get

func (NullableManagedTransactionCreateRequestBody) IsSet

func (NullableManagedTransactionCreateRequestBody) MarshalJSON

func (*NullableManagedTransactionCreateRequestBody) Set

func (*NullableManagedTransactionCreateRequestBody) UnmarshalJSON

func (v *NullableManagedTransactionCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableManagedTransactionCreateRequestBody) Unset

type NullableManagedTransactionUpdateRequest

type NullableManagedTransactionUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableManagedTransactionUpdateRequest) Get

func (NullableManagedTransactionUpdateRequest) IsSet

func (NullableManagedTransactionUpdateRequest) MarshalJSON

func (v NullableManagedTransactionUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableManagedTransactionUpdateRequest) Set

func (*NullableManagedTransactionUpdateRequest) UnmarshalJSON

func (v *NullableManagedTransactionUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableManagedTransactionUpdateRequest) Unset

type NullableManagedTransactionUpdateRequestBody

type NullableManagedTransactionUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableManagedTransactionUpdateRequestBody) Get

func (NullableManagedTransactionUpdateRequestBody) IsSet

func (NullableManagedTransactionUpdateRequestBody) MarshalJSON

func (*NullableManagedTransactionUpdateRequestBody) Set

func (*NullableManagedTransactionUpdateRequestBody) UnmarshalJSON

func (v *NullableManagedTransactionUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableManagedTransactionUpdateRequestBody) Unset

type NullableMemberCreateRequest

type NullableMemberCreateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableMemberCreateRequest

func NewNullableMemberCreateRequest(val *MemberCreateRequest) *NullableMemberCreateRequest

func (NullableMemberCreateRequest) Get

func (NullableMemberCreateRequest) IsSet

func (NullableMemberCreateRequest) MarshalJSON

func (v NullableMemberCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableMemberCreateRequest) Set

func (*NullableMemberCreateRequest) UnmarshalJSON

func (v *NullableMemberCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableMemberCreateRequest) Unset

func (v *NullableMemberCreateRequest) Unset()

type NullableMemberCreateRequestBody

type NullableMemberCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableMemberCreateRequestBody) Get

func (NullableMemberCreateRequestBody) IsSet

func (NullableMemberCreateRequestBody) MarshalJSON

func (v NullableMemberCreateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableMemberCreateRequestBody) Set

func (*NullableMemberCreateRequestBody) UnmarshalJSON

func (v *NullableMemberCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableMemberCreateRequestBody) Unset

type NullableMemberResponse

type NullableMemberResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMemberResponse

func NewNullableMemberResponse(val *MemberResponse) *NullableMemberResponse

func (NullableMemberResponse) Get

func (NullableMemberResponse) IsSet

func (v NullableMemberResponse) IsSet() bool

func (NullableMemberResponse) MarshalJSON

func (v NullableMemberResponse) MarshalJSON() ([]byte, error)

func (*NullableMemberResponse) Set

func (*NullableMemberResponse) UnmarshalJSON

func (v *NullableMemberResponse) UnmarshalJSON(src []byte) error

func (*NullableMemberResponse) Unset

func (v *NullableMemberResponse) Unset()

type NullableMemberResponseBody

type NullableMemberResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableMemberResponseBody

func NewNullableMemberResponseBody(val *MemberResponseBody) *NullableMemberResponseBody

func (NullableMemberResponseBody) Get

func (NullableMemberResponseBody) IsSet

func (v NullableMemberResponseBody) IsSet() bool

func (NullableMemberResponseBody) MarshalJSON

func (v NullableMemberResponseBody) MarshalJSON() ([]byte, error)

func (*NullableMemberResponseBody) Set

func (*NullableMemberResponseBody) UnmarshalJSON

func (v *NullableMemberResponseBody) UnmarshalJSON(src []byte) error

func (*NullableMemberResponseBody) Unset

func (v *NullableMemberResponseBody) Unset()

type NullableMemberResumeRequest

type NullableMemberResumeRequest struct {
	// contains filtered or unexported fields
}

func NewNullableMemberResumeRequest

func NewNullableMemberResumeRequest(val *MemberResumeRequest) *NullableMemberResumeRequest

func (NullableMemberResumeRequest) Get

func (NullableMemberResumeRequest) IsSet

func (NullableMemberResumeRequest) MarshalJSON

func (v NullableMemberResumeRequest) MarshalJSON() ([]byte, error)

func (*NullableMemberResumeRequest) Set

func (*NullableMemberResumeRequest) UnmarshalJSON

func (v *NullableMemberResumeRequest) UnmarshalJSON(src []byte) error

func (*NullableMemberResumeRequest) Unset

func (v *NullableMemberResumeRequest) Unset()

type NullableMemberResumeRequestBody

type NullableMemberResumeRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableMemberResumeRequestBody) Get

func (NullableMemberResumeRequestBody) IsSet

func (NullableMemberResumeRequestBody) MarshalJSON

func (v NullableMemberResumeRequestBody) MarshalJSON() ([]byte, error)

func (*NullableMemberResumeRequestBody) Set

func (*NullableMemberResumeRequestBody) UnmarshalJSON

func (v *NullableMemberResumeRequestBody) UnmarshalJSON(src []byte) error

func (*NullableMemberResumeRequestBody) Unset

type NullableMemberStatusResponse

type NullableMemberStatusResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMemberStatusResponse

func NewNullableMemberStatusResponse(val *MemberStatusResponse) *NullableMemberStatusResponse

func (NullableMemberStatusResponse) Get

func (NullableMemberStatusResponse) IsSet

func (NullableMemberStatusResponse) MarshalJSON

func (v NullableMemberStatusResponse) MarshalJSON() ([]byte, error)

func (*NullableMemberStatusResponse) Set

func (*NullableMemberStatusResponse) UnmarshalJSON

func (v *NullableMemberStatusResponse) UnmarshalJSON(src []byte) error

func (*NullableMemberStatusResponse) Unset

func (v *NullableMemberStatusResponse) Unset()

type NullableMemberStatusResponseBody

type NullableMemberStatusResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableMemberStatusResponseBody) Get

func (NullableMemberStatusResponseBody) IsSet

func (NullableMemberStatusResponseBody) MarshalJSON

func (v NullableMemberStatusResponseBody) MarshalJSON() ([]byte, error)

func (*NullableMemberStatusResponseBody) Set

func (*NullableMemberStatusResponseBody) UnmarshalJSON

func (v *NullableMemberStatusResponseBody) UnmarshalJSON(src []byte) error

func (*NullableMemberStatusResponseBody) Unset

type NullableMemberUpdateRequest

type NullableMemberUpdateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableMemberUpdateRequest

func NewNullableMemberUpdateRequest(val *MemberUpdateRequest) *NullableMemberUpdateRequest

func (NullableMemberUpdateRequest) Get

func (NullableMemberUpdateRequest) IsSet

func (NullableMemberUpdateRequest) MarshalJSON

func (v NullableMemberUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableMemberUpdateRequest) Set

func (*NullableMemberUpdateRequest) UnmarshalJSON

func (v *NullableMemberUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableMemberUpdateRequest) Unset

func (v *NullableMemberUpdateRequest) Unset()

type NullableMemberUpdateRequestBody

type NullableMemberUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableMemberUpdateRequestBody) Get

func (NullableMemberUpdateRequestBody) IsSet

func (NullableMemberUpdateRequestBody) MarshalJSON

func (v NullableMemberUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableMemberUpdateRequestBody) Set

func (*NullableMemberUpdateRequestBody) UnmarshalJSON

func (v *NullableMemberUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableMemberUpdateRequestBody) Unset

type NullableMembersResponseBody

type NullableMembersResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableMembersResponseBody

func NewNullableMembersResponseBody(val *MembersResponseBody) *NullableMembersResponseBody

func (NullableMembersResponseBody) Get

func (NullableMembersResponseBody) IsSet

func (NullableMembersResponseBody) MarshalJSON

func (v NullableMembersResponseBody) MarshalJSON() ([]byte, error)

func (*NullableMembersResponseBody) Set

func (*NullableMembersResponseBody) UnmarshalJSON

func (v *NullableMembersResponseBody) UnmarshalJSON(src []byte) error

func (*NullableMembersResponseBody) Unset

func (v *NullableMembersResponseBody) Unset()

type NullableMerchantLocationResponse

type NullableMerchantLocationResponse struct {
	// contains filtered or unexported fields
}

func (NullableMerchantLocationResponse) Get

func (NullableMerchantLocationResponse) IsSet

func (NullableMerchantLocationResponse) MarshalJSON

func (v NullableMerchantLocationResponse) MarshalJSON() ([]byte, error)

func (*NullableMerchantLocationResponse) Set

func (*NullableMerchantLocationResponse) UnmarshalJSON

func (v *NullableMerchantLocationResponse) UnmarshalJSON(src []byte) error

func (*NullableMerchantLocationResponse) Unset

type NullableMerchantLocationResponseBody

type NullableMerchantLocationResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableMerchantLocationResponseBody) Get

func (NullableMerchantLocationResponseBody) IsSet

func (NullableMerchantLocationResponseBody) MarshalJSON

func (v NullableMerchantLocationResponseBody) MarshalJSON() ([]byte, error)

func (*NullableMerchantLocationResponseBody) Set

func (*NullableMerchantLocationResponseBody) UnmarshalJSON

func (v *NullableMerchantLocationResponseBody) UnmarshalJSON(src []byte) error

func (*NullableMerchantLocationResponseBody) Unset

type NullableMerchantResponse

type NullableMerchantResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMerchantResponse

func NewNullableMerchantResponse(val *MerchantResponse) *NullableMerchantResponse

func (NullableMerchantResponse) Get

func (NullableMerchantResponse) IsSet

func (v NullableMerchantResponse) IsSet() bool

func (NullableMerchantResponse) MarshalJSON

func (v NullableMerchantResponse) MarshalJSON() ([]byte, error)

func (*NullableMerchantResponse) Set

func (*NullableMerchantResponse) UnmarshalJSON

func (v *NullableMerchantResponse) UnmarshalJSON(src []byte) error

func (*NullableMerchantResponse) Unset

func (v *NullableMerchantResponse) Unset()

type NullableMerchantResponseBody

type NullableMerchantResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableMerchantResponseBody

func NewNullableMerchantResponseBody(val *MerchantResponseBody) *NullableMerchantResponseBody

func (NullableMerchantResponseBody) Get

func (NullableMerchantResponseBody) IsSet

func (NullableMerchantResponseBody) MarshalJSON

func (v NullableMerchantResponseBody) MarshalJSON() ([]byte, error)

func (*NullableMerchantResponseBody) Set

func (*NullableMerchantResponseBody) UnmarshalJSON

func (v *NullableMerchantResponseBody) UnmarshalJSON(src []byte) error

func (*NullableMerchantResponseBody) Unset

func (v *NullableMerchantResponseBody) Unset()

type NullableMerchantsResponseBody

type NullableMerchantsResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableMerchantsResponseBody) Get

func (NullableMerchantsResponseBody) IsSet

func (NullableMerchantsResponseBody) MarshalJSON

func (v NullableMerchantsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableMerchantsResponseBody) Set

func (*NullableMerchantsResponseBody) UnmarshalJSON

func (v *NullableMerchantsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableMerchantsResponseBody) Unset

func (v *NullableMerchantsResponseBody) Unset()

type NullableOAuthWindowResponse

type NullableOAuthWindowResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOAuthWindowResponse

func NewNullableOAuthWindowResponse(val *OAuthWindowResponse) *NullableOAuthWindowResponse

func (NullableOAuthWindowResponse) Get

func (NullableOAuthWindowResponse) IsSet

func (NullableOAuthWindowResponse) MarshalJSON

func (v NullableOAuthWindowResponse) MarshalJSON() ([]byte, error)

func (*NullableOAuthWindowResponse) Set

func (*NullableOAuthWindowResponse) UnmarshalJSON

func (v *NullableOAuthWindowResponse) UnmarshalJSON(src []byte) error

func (*NullableOAuthWindowResponse) Unset

func (v *NullableOAuthWindowResponse) Unset()

type NullableOAuthWindowResponseBody

type NullableOAuthWindowResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableOAuthWindowResponseBody) Get

func (NullableOAuthWindowResponseBody) IsSet

func (NullableOAuthWindowResponseBody) MarshalJSON

func (v NullableOAuthWindowResponseBody) MarshalJSON() ([]byte, error)

func (*NullableOAuthWindowResponseBody) Set

func (*NullableOAuthWindowResponseBody) UnmarshalJSON

func (v *NullableOAuthWindowResponseBody) UnmarshalJSON(src []byte) error

func (*NullableOAuthWindowResponseBody) Unset

type NullableOptionResponse

type NullableOptionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOptionResponse

func NewNullableOptionResponse(val *OptionResponse) *NullableOptionResponse

func (NullableOptionResponse) Get

func (NullableOptionResponse) IsSet

func (v NullableOptionResponse) IsSet() bool

func (NullableOptionResponse) MarshalJSON

func (v NullableOptionResponse) MarshalJSON() ([]byte, error)

func (*NullableOptionResponse) Set

func (*NullableOptionResponse) UnmarshalJSON

func (v *NullableOptionResponse) UnmarshalJSON(src []byte) error

func (*NullableOptionResponse) Unset

func (v *NullableOptionResponse) Unset()

type NullablePaginationResponse

type NullablePaginationResponse struct {
	// contains filtered or unexported fields
}

func NewNullablePaginationResponse

func NewNullablePaginationResponse(val *PaginationResponse) *NullablePaginationResponse

func (NullablePaginationResponse) Get

func (NullablePaginationResponse) IsSet

func (v NullablePaginationResponse) IsSet() bool

func (NullablePaginationResponse) MarshalJSON

func (v NullablePaginationResponse) MarshalJSON() ([]byte, error)

func (*NullablePaginationResponse) Set

func (*NullablePaginationResponse) UnmarshalJSON

func (v *NullablePaginationResponse) UnmarshalJSON(src []byte) error

func (*NullablePaginationResponse) Unset

func (v *NullablePaginationResponse) Unset()

type NullablePaymentProcessorAuthorizationCodeRequest added in v0.6.0

type NullablePaymentProcessorAuthorizationCodeRequest struct {
	// contains filtered or unexported fields
}

func (NullablePaymentProcessorAuthorizationCodeRequest) Get added in v0.6.0

func (NullablePaymentProcessorAuthorizationCodeRequest) IsSet added in v0.6.0

func (NullablePaymentProcessorAuthorizationCodeRequest) MarshalJSON added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeRequest) Set added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeRequest) UnmarshalJSON added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeRequest) Unset added in v0.6.0

type NullablePaymentProcessorAuthorizationCodeRequestBody added in v0.6.0

type NullablePaymentProcessorAuthorizationCodeRequestBody struct {
	// contains filtered or unexported fields
}

func (NullablePaymentProcessorAuthorizationCodeRequestBody) Get added in v0.6.0

func (NullablePaymentProcessorAuthorizationCodeRequestBody) IsSet added in v0.6.0

func (NullablePaymentProcessorAuthorizationCodeRequestBody) MarshalJSON added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeRequestBody) Set added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeRequestBody) UnmarshalJSON added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeRequestBody) Unset added in v0.6.0

type NullablePaymentProcessorAuthorizationCodeResponse added in v0.6.0

type NullablePaymentProcessorAuthorizationCodeResponse struct {
	// contains filtered or unexported fields
}

func (NullablePaymentProcessorAuthorizationCodeResponse) Get added in v0.6.0

func (NullablePaymentProcessorAuthorizationCodeResponse) IsSet added in v0.6.0

func (NullablePaymentProcessorAuthorizationCodeResponse) MarshalJSON added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeResponse) Set added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeResponse) UnmarshalJSON added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeResponse) Unset added in v0.6.0

type NullablePaymentProcessorAuthorizationCodeResponseBody added in v0.6.0

type NullablePaymentProcessorAuthorizationCodeResponseBody struct {
	// contains filtered or unexported fields
}

func (NullablePaymentProcessorAuthorizationCodeResponseBody) Get added in v0.6.0

func (NullablePaymentProcessorAuthorizationCodeResponseBody) IsSet added in v0.6.0

func (NullablePaymentProcessorAuthorizationCodeResponseBody) MarshalJSON added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeResponseBody) Set added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeResponseBody) UnmarshalJSON added in v0.6.0

func (*NullablePaymentProcessorAuthorizationCodeResponseBody) Unset added in v0.6.0

type NullableSpendingPlanAccountResponse added in v0.17.0

type NullableSpendingPlanAccountResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSpendingPlanAccountResponse added in v0.17.0

func NewNullableSpendingPlanAccountResponse(val *SpendingPlanAccountResponse) *NullableSpendingPlanAccountResponse

func (NullableSpendingPlanAccountResponse) Get added in v0.17.0

func (NullableSpendingPlanAccountResponse) IsSet added in v0.17.0

func (NullableSpendingPlanAccountResponse) MarshalJSON added in v0.17.0

func (v NullableSpendingPlanAccountResponse) MarshalJSON() ([]byte, error)

func (*NullableSpendingPlanAccountResponse) Set added in v0.17.0

func (*NullableSpendingPlanAccountResponse) UnmarshalJSON added in v0.17.0

func (v *NullableSpendingPlanAccountResponse) UnmarshalJSON(src []byte) error

func (*NullableSpendingPlanAccountResponse) Unset added in v0.17.0

type NullableSpendingPlanAccountsResponse added in v0.17.0

type NullableSpendingPlanAccountsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSpendingPlanAccountsResponse added in v0.17.0

func NewNullableSpendingPlanAccountsResponse(val *SpendingPlanAccountsResponse) *NullableSpendingPlanAccountsResponse

func (NullableSpendingPlanAccountsResponse) Get added in v0.17.0

func (NullableSpendingPlanAccountsResponse) IsSet added in v0.17.0

func (NullableSpendingPlanAccountsResponse) MarshalJSON added in v0.17.0

func (v NullableSpendingPlanAccountsResponse) MarshalJSON() ([]byte, error)

func (*NullableSpendingPlanAccountsResponse) Set added in v0.17.0

func (*NullableSpendingPlanAccountsResponse) UnmarshalJSON added in v0.17.0

func (v *NullableSpendingPlanAccountsResponse) UnmarshalJSON(src []byte) error

func (*NullableSpendingPlanAccountsResponse) Unset added in v0.17.0

type NullableSpendingPlanIterationItemCreateRequestBody added in v0.17.0

type NullableSpendingPlanIterationItemCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableSpendingPlanIterationItemCreateRequestBody) Get added in v0.17.0

func (NullableSpendingPlanIterationItemCreateRequestBody) IsSet added in v0.17.0

func (NullableSpendingPlanIterationItemCreateRequestBody) MarshalJSON added in v0.17.0

func (*NullableSpendingPlanIterationItemCreateRequestBody) Set added in v0.17.0

func (*NullableSpendingPlanIterationItemCreateRequestBody) UnmarshalJSON added in v0.17.0

func (*NullableSpendingPlanIterationItemCreateRequestBody) Unset added in v0.17.0

type NullableSpendingPlanIterationItemResponse added in v0.17.0

type NullableSpendingPlanIterationItemResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSpendingPlanIterationItemResponse added in v0.17.0

func NewNullableSpendingPlanIterationItemResponse(val *SpendingPlanIterationItemResponse) *NullableSpendingPlanIterationItemResponse

func (NullableSpendingPlanIterationItemResponse) Get added in v0.17.0

func (NullableSpendingPlanIterationItemResponse) IsSet added in v0.17.0

func (NullableSpendingPlanIterationItemResponse) MarshalJSON added in v0.17.0

func (*NullableSpendingPlanIterationItemResponse) Set added in v0.17.0

func (*NullableSpendingPlanIterationItemResponse) UnmarshalJSON added in v0.17.0

func (v *NullableSpendingPlanIterationItemResponse) UnmarshalJSON(src []byte) error

func (*NullableSpendingPlanIterationItemResponse) Unset added in v0.17.0

type NullableSpendingPlanIterationItemsResponseBody added in v0.17.0

type NullableSpendingPlanIterationItemsResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableSpendingPlanIterationItemsResponseBody) Get added in v0.17.0

func (NullableSpendingPlanIterationItemsResponseBody) IsSet added in v0.17.0

func (NullableSpendingPlanIterationItemsResponseBody) MarshalJSON added in v0.17.0

func (*NullableSpendingPlanIterationItemsResponseBody) Set added in v0.17.0

func (*NullableSpendingPlanIterationItemsResponseBody) UnmarshalJSON added in v0.17.0

func (*NullableSpendingPlanIterationItemsResponseBody) Unset added in v0.17.0

type NullableSpendingPlanIterationResponse added in v0.17.0

type NullableSpendingPlanIterationResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSpendingPlanIterationResponse added in v0.17.0

func NewNullableSpendingPlanIterationResponse(val *SpendingPlanIterationResponse) *NullableSpendingPlanIterationResponse

func (NullableSpendingPlanIterationResponse) Get added in v0.17.0

func (NullableSpendingPlanIterationResponse) IsSet added in v0.17.0

func (NullableSpendingPlanIterationResponse) MarshalJSON added in v0.17.0

func (v NullableSpendingPlanIterationResponse) MarshalJSON() ([]byte, error)

func (*NullableSpendingPlanIterationResponse) Set added in v0.17.0

func (*NullableSpendingPlanIterationResponse) UnmarshalJSON added in v0.17.0

func (v *NullableSpendingPlanIterationResponse) UnmarshalJSON(src []byte) error

func (*NullableSpendingPlanIterationResponse) Unset added in v0.17.0

type NullableSpendingPlanIterationsResponse added in v0.17.0

type NullableSpendingPlanIterationsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSpendingPlanIterationsResponse added in v0.17.0

func NewNullableSpendingPlanIterationsResponse(val *SpendingPlanIterationsResponse) *NullableSpendingPlanIterationsResponse

func (NullableSpendingPlanIterationsResponse) Get added in v0.17.0

func (NullableSpendingPlanIterationsResponse) IsSet added in v0.17.0

func (NullableSpendingPlanIterationsResponse) MarshalJSON added in v0.17.0

func (v NullableSpendingPlanIterationsResponse) MarshalJSON() ([]byte, error)

func (*NullableSpendingPlanIterationsResponse) Set added in v0.17.0

func (*NullableSpendingPlanIterationsResponse) UnmarshalJSON added in v0.17.0

func (v *NullableSpendingPlanIterationsResponse) UnmarshalJSON(src []byte) error

func (*NullableSpendingPlanIterationsResponse) Unset added in v0.17.0

type NullableSpendingPlanResponse added in v0.17.0

type NullableSpendingPlanResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSpendingPlanResponse added in v0.17.0

func NewNullableSpendingPlanResponse(val *SpendingPlanResponse) *NullableSpendingPlanResponse

func (NullableSpendingPlanResponse) Get added in v0.17.0

func (NullableSpendingPlanResponse) IsSet added in v0.17.0

func (NullableSpendingPlanResponse) MarshalJSON added in v0.17.0

func (v NullableSpendingPlanResponse) MarshalJSON() ([]byte, error)

func (*NullableSpendingPlanResponse) Set added in v0.17.0

func (*NullableSpendingPlanResponse) UnmarshalJSON added in v0.17.0

func (v *NullableSpendingPlanResponse) UnmarshalJSON(src []byte) error

func (*NullableSpendingPlanResponse) Unset added in v0.17.0

func (v *NullableSpendingPlanResponse) Unset()

type NullableSpendingPlansResponseBody added in v0.17.0

type NullableSpendingPlansResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableSpendingPlansResponseBody added in v0.17.0

func NewNullableSpendingPlansResponseBody(val *SpendingPlansResponseBody) *NullableSpendingPlansResponseBody

func (NullableSpendingPlansResponseBody) Get added in v0.17.0

func (NullableSpendingPlansResponseBody) IsSet added in v0.17.0

func (NullableSpendingPlansResponseBody) MarshalJSON added in v0.17.0

func (v NullableSpendingPlansResponseBody) MarshalJSON() ([]byte, error)

func (*NullableSpendingPlansResponseBody) Set added in v0.17.0

func (*NullableSpendingPlansResponseBody) UnmarshalJSON added in v0.17.0

func (v *NullableSpendingPlansResponseBody) UnmarshalJSON(src []byte) error

func (*NullableSpendingPlansResponseBody) Unset added in v0.17.0

type NullableStatementResponse

type NullableStatementResponse struct {
	// contains filtered or unexported fields
}

func NewNullableStatementResponse

func NewNullableStatementResponse(val *StatementResponse) *NullableStatementResponse

func (NullableStatementResponse) Get

func (NullableStatementResponse) IsSet

func (v NullableStatementResponse) IsSet() bool

func (NullableStatementResponse) MarshalJSON

func (v NullableStatementResponse) MarshalJSON() ([]byte, error)

func (*NullableStatementResponse) Set

func (*NullableStatementResponse) UnmarshalJSON

func (v *NullableStatementResponse) UnmarshalJSON(src []byte) error

func (*NullableStatementResponse) Unset

func (v *NullableStatementResponse) Unset()

type NullableStatementResponseBody

type NullableStatementResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableStatementResponseBody) Get

func (NullableStatementResponseBody) IsSet

func (NullableStatementResponseBody) MarshalJSON

func (v NullableStatementResponseBody) MarshalJSON() ([]byte, error)

func (*NullableStatementResponseBody) Set

func (*NullableStatementResponseBody) UnmarshalJSON

func (v *NullableStatementResponseBody) UnmarshalJSON(src []byte) error

func (*NullableStatementResponseBody) Unset

func (v *NullableStatementResponseBody) Unset()

type NullableStatementsResponseBody

type NullableStatementsResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableStatementsResponseBody) Get

func (NullableStatementsResponseBody) IsSet

func (NullableStatementsResponseBody) MarshalJSON

func (v NullableStatementsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableStatementsResponseBody) Set

func (*NullableStatementsResponseBody) UnmarshalJSON

func (v *NullableStatementsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableStatementsResponseBody) Unset

func (v *NullableStatementsResponseBody) 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 NullableTagCreateRequest

type NullableTagCreateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTagCreateRequest

func NewNullableTagCreateRequest(val *TagCreateRequest) *NullableTagCreateRequest

func (NullableTagCreateRequest) Get

func (NullableTagCreateRequest) IsSet

func (v NullableTagCreateRequest) IsSet() bool

func (NullableTagCreateRequest) MarshalJSON

func (v NullableTagCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableTagCreateRequest) Set

func (*NullableTagCreateRequest) UnmarshalJSON

func (v *NullableTagCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableTagCreateRequest) Unset

func (v *NullableTagCreateRequest) Unset()

type NullableTagCreateRequestBody

type NullableTagCreateRequestBody struct {
	// contains filtered or unexported fields
}

func NewNullableTagCreateRequestBody

func NewNullableTagCreateRequestBody(val *TagCreateRequestBody) *NullableTagCreateRequestBody

func (NullableTagCreateRequestBody) Get

func (NullableTagCreateRequestBody) IsSet

func (NullableTagCreateRequestBody) MarshalJSON

func (v NullableTagCreateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableTagCreateRequestBody) Set

func (*NullableTagCreateRequestBody) UnmarshalJSON

func (v *NullableTagCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableTagCreateRequestBody) Unset

func (v *NullableTagCreateRequestBody) Unset()

type NullableTagResponse

type NullableTagResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTagResponse

func NewNullableTagResponse(val *TagResponse) *NullableTagResponse

func (NullableTagResponse) Get

func (NullableTagResponse) IsSet

func (v NullableTagResponse) IsSet() bool

func (NullableTagResponse) MarshalJSON

func (v NullableTagResponse) MarshalJSON() ([]byte, error)

func (*NullableTagResponse) Set

func (v *NullableTagResponse) Set(val *TagResponse)

func (*NullableTagResponse) UnmarshalJSON

func (v *NullableTagResponse) UnmarshalJSON(src []byte) error

func (*NullableTagResponse) Unset

func (v *NullableTagResponse) Unset()

type NullableTagResponseBody

type NullableTagResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableTagResponseBody

func NewNullableTagResponseBody(val *TagResponseBody) *NullableTagResponseBody

func (NullableTagResponseBody) Get

func (NullableTagResponseBody) IsSet

func (v NullableTagResponseBody) IsSet() bool

func (NullableTagResponseBody) MarshalJSON

func (v NullableTagResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTagResponseBody) Set

func (*NullableTagResponseBody) UnmarshalJSON

func (v *NullableTagResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTagResponseBody) Unset

func (v *NullableTagResponseBody) Unset()

type NullableTagUpdateRequest

type NullableTagUpdateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTagUpdateRequest

func NewNullableTagUpdateRequest(val *TagUpdateRequest) *NullableTagUpdateRequest

func (NullableTagUpdateRequest) Get

func (NullableTagUpdateRequest) IsSet

func (v NullableTagUpdateRequest) IsSet() bool

func (NullableTagUpdateRequest) MarshalJSON

func (v NullableTagUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableTagUpdateRequest) Set

func (*NullableTagUpdateRequest) UnmarshalJSON

func (v *NullableTagUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableTagUpdateRequest) Unset

func (v *NullableTagUpdateRequest) Unset()

type NullableTagUpdateRequestBody

type NullableTagUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func NewNullableTagUpdateRequestBody

func NewNullableTagUpdateRequestBody(val *TagUpdateRequestBody) *NullableTagUpdateRequestBody

func (NullableTagUpdateRequestBody) Get

func (NullableTagUpdateRequestBody) IsSet

func (NullableTagUpdateRequestBody) MarshalJSON

func (v NullableTagUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableTagUpdateRequestBody) Set

func (*NullableTagUpdateRequestBody) UnmarshalJSON

func (v *NullableTagUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableTagUpdateRequestBody) Unset

func (v *NullableTagUpdateRequestBody) Unset()

type NullableTaggingCreateRequest

type NullableTaggingCreateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTaggingCreateRequest

func NewNullableTaggingCreateRequest(val *TaggingCreateRequest) *NullableTaggingCreateRequest

func (NullableTaggingCreateRequest) Get

func (NullableTaggingCreateRequest) IsSet

func (NullableTaggingCreateRequest) MarshalJSON

func (v NullableTaggingCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableTaggingCreateRequest) Set

func (*NullableTaggingCreateRequest) UnmarshalJSON

func (v *NullableTaggingCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableTaggingCreateRequest) Unset

func (v *NullableTaggingCreateRequest) Unset()

type NullableTaggingCreateRequestBody

type NullableTaggingCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableTaggingCreateRequestBody) Get

func (NullableTaggingCreateRequestBody) IsSet

func (NullableTaggingCreateRequestBody) MarshalJSON

func (v NullableTaggingCreateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableTaggingCreateRequestBody) Set

func (*NullableTaggingCreateRequestBody) UnmarshalJSON

func (v *NullableTaggingCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableTaggingCreateRequestBody) Unset

type NullableTaggingResponse

type NullableTaggingResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTaggingResponse

func NewNullableTaggingResponse(val *TaggingResponse) *NullableTaggingResponse

func (NullableTaggingResponse) Get

func (NullableTaggingResponse) IsSet

func (v NullableTaggingResponse) IsSet() bool

func (NullableTaggingResponse) MarshalJSON

func (v NullableTaggingResponse) MarshalJSON() ([]byte, error)

func (*NullableTaggingResponse) Set

func (*NullableTaggingResponse) UnmarshalJSON

func (v *NullableTaggingResponse) UnmarshalJSON(src []byte) error

func (*NullableTaggingResponse) Unset

func (v *NullableTaggingResponse) Unset()

type NullableTaggingResponseBody

type NullableTaggingResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableTaggingResponseBody

func NewNullableTaggingResponseBody(val *TaggingResponseBody) *NullableTaggingResponseBody

func (NullableTaggingResponseBody) Get

func (NullableTaggingResponseBody) IsSet

func (NullableTaggingResponseBody) MarshalJSON

func (v NullableTaggingResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTaggingResponseBody) Set

func (*NullableTaggingResponseBody) UnmarshalJSON

func (v *NullableTaggingResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTaggingResponseBody) Unset

func (v *NullableTaggingResponseBody) Unset()

type NullableTaggingUpdateRequest

type NullableTaggingUpdateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableTaggingUpdateRequest

func NewNullableTaggingUpdateRequest(val *TaggingUpdateRequest) *NullableTaggingUpdateRequest

func (NullableTaggingUpdateRequest) Get

func (NullableTaggingUpdateRequest) IsSet

func (NullableTaggingUpdateRequest) MarshalJSON

func (v NullableTaggingUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableTaggingUpdateRequest) Set

func (*NullableTaggingUpdateRequest) UnmarshalJSON

func (v *NullableTaggingUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableTaggingUpdateRequest) Unset

func (v *NullableTaggingUpdateRequest) Unset()

type NullableTaggingUpdateRequestBody

type NullableTaggingUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableTaggingUpdateRequestBody) Get

func (NullableTaggingUpdateRequestBody) IsSet

func (NullableTaggingUpdateRequestBody) MarshalJSON

func (v NullableTaggingUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableTaggingUpdateRequestBody) Set

func (*NullableTaggingUpdateRequestBody) UnmarshalJSON

func (v *NullableTaggingUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableTaggingUpdateRequestBody) Unset

type NullableTaggingsResponseBody

type NullableTaggingsResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableTaggingsResponseBody

func NewNullableTaggingsResponseBody(val *TaggingsResponseBody) *NullableTaggingsResponseBody

func (NullableTaggingsResponseBody) Get

func (NullableTaggingsResponseBody) IsSet

func (NullableTaggingsResponseBody) MarshalJSON

func (v NullableTaggingsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTaggingsResponseBody) Set

func (*NullableTaggingsResponseBody) UnmarshalJSON

func (v *NullableTaggingsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTaggingsResponseBody) Unset

func (v *NullableTaggingsResponseBody) Unset()

type NullableTagsResponseBody

type NullableTagsResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableTagsResponseBody

func NewNullableTagsResponseBody(val *TagsResponseBody) *NullableTagsResponseBody

func (NullableTagsResponseBody) Get

func (NullableTagsResponseBody) IsSet

func (v NullableTagsResponseBody) IsSet() bool

func (NullableTagsResponseBody) MarshalJSON

func (v NullableTagsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTagsResponseBody) Set

func (*NullableTagsResponseBody) UnmarshalJSON

func (v *NullableTagsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTagsResponseBody) Unset

func (v *NullableTagsResponseBody) Unset()

type NullableTaxDocumentResponse added in v0.11.0

type NullableTaxDocumentResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTaxDocumentResponse added in v0.11.0

func NewNullableTaxDocumentResponse(val *TaxDocumentResponse) *NullableTaxDocumentResponse

func (NullableTaxDocumentResponse) Get added in v0.11.0

func (NullableTaxDocumentResponse) IsSet added in v0.11.0

func (NullableTaxDocumentResponse) MarshalJSON added in v0.11.0

func (v NullableTaxDocumentResponse) MarshalJSON() ([]byte, error)

func (*NullableTaxDocumentResponse) Set added in v0.11.0

func (*NullableTaxDocumentResponse) UnmarshalJSON added in v0.11.0

func (v *NullableTaxDocumentResponse) UnmarshalJSON(src []byte) error

func (*NullableTaxDocumentResponse) Unset added in v0.11.0

func (v *NullableTaxDocumentResponse) Unset()

type NullableTaxDocumentResponseBody added in v0.11.0

type NullableTaxDocumentResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableTaxDocumentResponseBody added in v0.11.0

func NewNullableTaxDocumentResponseBody(val *TaxDocumentResponseBody) *NullableTaxDocumentResponseBody

func (NullableTaxDocumentResponseBody) Get added in v0.11.0

func (NullableTaxDocumentResponseBody) IsSet added in v0.11.0

func (NullableTaxDocumentResponseBody) MarshalJSON added in v0.11.0

func (v NullableTaxDocumentResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTaxDocumentResponseBody) Set added in v0.11.0

func (*NullableTaxDocumentResponseBody) UnmarshalJSON added in v0.11.0

func (v *NullableTaxDocumentResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTaxDocumentResponseBody) Unset added in v0.11.0

type NullableTaxDocumentsResponseBody added in v0.11.0

type NullableTaxDocumentsResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableTaxDocumentsResponseBody added in v0.11.0

func NewNullableTaxDocumentsResponseBody(val *TaxDocumentsResponseBody) *NullableTaxDocumentsResponseBody

func (NullableTaxDocumentsResponseBody) Get added in v0.11.0

func (NullableTaxDocumentsResponseBody) IsSet added in v0.11.0

func (NullableTaxDocumentsResponseBody) MarshalJSON added in v0.11.0

func (v NullableTaxDocumentsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTaxDocumentsResponseBody) Set added in v0.11.0

func (*NullableTaxDocumentsResponseBody) UnmarshalJSON added in v0.11.0

func (v *NullableTaxDocumentsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTaxDocumentsResponseBody) Unset added in v0.11.0

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 NullableTransactionResponse

type NullableTransactionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTransactionResponse

func NewNullableTransactionResponse(val *TransactionResponse) *NullableTransactionResponse

func (NullableTransactionResponse) Get

func (NullableTransactionResponse) IsSet

func (NullableTransactionResponse) MarshalJSON

func (v NullableTransactionResponse) MarshalJSON() ([]byte, error)

func (*NullableTransactionResponse) Set

func (*NullableTransactionResponse) UnmarshalJSON

func (v *NullableTransactionResponse) UnmarshalJSON(src []byte) error

func (*NullableTransactionResponse) Unset

func (v *NullableTransactionResponse) Unset()

type NullableTransactionResponseBody

type NullableTransactionResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableTransactionResponseBody) Get

func (NullableTransactionResponseBody) IsSet

func (NullableTransactionResponseBody) MarshalJSON

func (v NullableTransactionResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTransactionResponseBody) Set

func (*NullableTransactionResponseBody) UnmarshalJSON

func (v *NullableTransactionResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTransactionResponseBody) Unset

type NullableTransactionRuleCreateRequest

type NullableTransactionRuleCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableTransactionRuleCreateRequest) Get

func (NullableTransactionRuleCreateRequest) IsSet

func (NullableTransactionRuleCreateRequest) MarshalJSON

func (v NullableTransactionRuleCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableTransactionRuleCreateRequest) Set

func (*NullableTransactionRuleCreateRequest) UnmarshalJSON

func (v *NullableTransactionRuleCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableTransactionRuleCreateRequest) Unset

type NullableTransactionRuleCreateRequestBody

type NullableTransactionRuleCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableTransactionRuleCreateRequestBody) Get

func (NullableTransactionRuleCreateRequestBody) IsSet

func (NullableTransactionRuleCreateRequestBody) MarshalJSON

func (*NullableTransactionRuleCreateRequestBody) Set

func (*NullableTransactionRuleCreateRequestBody) UnmarshalJSON

func (v *NullableTransactionRuleCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableTransactionRuleCreateRequestBody) Unset

type NullableTransactionRuleResponse

type NullableTransactionRuleResponse struct {
	// contains filtered or unexported fields
}

func (NullableTransactionRuleResponse) Get

func (NullableTransactionRuleResponse) IsSet

func (NullableTransactionRuleResponse) MarshalJSON

func (v NullableTransactionRuleResponse) MarshalJSON() ([]byte, error)

func (*NullableTransactionRuleResponse) Set

func (*NullableTransactionRuleResponse) UnmarshalJSON

func (v *NullableTransactionRuleResponse) UnmarshalJSON(src []byte) error

func (*NullableTransactionRuleResponse) Unset

type NullableTransactionRuleResponseBody

type NullableTransactionRuleResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableTransactionRuleResponseBody) Get

func (NullableTransactionRuleResponseBody) IsSet

func (NullableTransactionRuleResponseBody) MarshalJSON

func (v NullableTransactionRuleResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTransactionRuleResponseBody) Set

func (*NullableTransactionRuleResponseBody) UnmarshalJSON

func (v *NullableTransactionRuleResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTransactionRuleResponseBody) Unset

type NullableTransactionRuleUpdateRequest

type NullableTransactionRuleUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableTransactionRuleUpdateRequest) Get

func (NullableTransactionRuleUpdateRequest) IsSet

func (NullableTransactionRuleUpdateRequest) MarshalJSON

func (v NullableTransactionRuleUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableTransactionRuleUpdateRequest) Set

func (*NullableTransactionRuleUpdateRequest) UnmarshalJSON

func (v *NullableTransactionRuleUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableTransactionRuleUpdateRequest) Unset

type NullableTransactionRuleUpdateRequestBody

type NullableTransactionRuleUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableTransactionRuleUpdateRequestBody) Get

func (NullableTransactionRuleUpdateRequestBody) IsSet

func (NullableTransactionRuleUpdateRequestBody) MarshalJSON

func (*NullableTransactionRuleUpdateRequestBody) Set

func (*NullableTransactionRuleUpdateRequestBody) UnmarshalJSON

func (v *NullableTransactionRuleUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableTransactionRuleUpdateRequestBody) Unset

type NullableTransactionRulesResponseBody

type NullableTransactionRulesResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableTransactionRulesResponseBody) Get

func (NullableTransactionRulesResponseBody) IsSet

func (NullableTransactionRulesResponseBody) MarshalJSON

func (v NullableTransactionRulesResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTransactionRulesResponseBody) Set

func (*NullableTransactionRulesResponseBody) UnmarshalJSON

func (v *NullableTransactionRulesResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTransactionRulesResponseBody) Unset

type NullableTransactionUpdateRequest

type NullableTransactionUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableTransactionUpdateRequest) Get

func (NullableTransactionUpdateRequest) IsSet

func (NullableTransactionUpdateRequest) MarshalJSON

func (v NullableTransactionUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableTransactionUpdateRequest) Set

func (*NullableTransactionUpdateRequest) UnmarshalJSON

func (v *NullableTransactionUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableTransactionUpdateRequest) Unset

type NullableTransactionUpdateRequestBody

type NullableTransactionUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableTransactionUpdateRequestBody) Get

func (NullableTransactionUpdateRequestBody) IsSet

func (NullableTransactionUpdateRequestBody) MarshalJSON

func (v NullableTransactionUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableTransactionUpdateRequestBody) Set

func (*NullableTransactionUpdateRequestBody) UnmarshalJSON

func (v *NullableTransactionUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableTransactionUpdateRequestBody) Unset

type NullableTransactionsResponseBody

type NullableTransactionsResponseBody struct {
	// contains filtered or unexported fields
}

func (NullableTransactionsResponseBody) Get

func (NullableTransactionsResponseBody) IsSet

func (NullableTransactionsResponseBody) MarshalJSON

func (v NullableTransactionsResponseBody) MarshalJSON() ([]byte, error)

func (*NullableTransactionsResponseBody) Set

func (*NullableTransactionsResponseBody) UnmarshalJSON

func (v *NullableTransactionsResponseBody) UnmarshalJSON(src []byte) error

func (*NullableTransactionsResponseBody) Unset

type NullableUserCreateRequest

type NullableUserCreateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUserCreateRequest

func NewNullableUserCreateRequest(val *UserCreateRequest) *NullableUserCreateRequest

func (NullableUserCreateRequest) Get

func (NullableUserCreateRequest) IsSet

func (v NullableUserCreateRequest) IsSet() bool

func (NullableUserCreateRequest) MarshalJSON

func (v NullableUserCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableUserCreateRequest) Set

func (*NullableUserCreateRequest) UnmarshalJSON

func (v *NullableUserCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableUserCreateRequest) Unset

func (v *NullableUserCreateRequest) Unset()

type NullableUserCreateRequestBody

type NullableUserCreateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableUserCreateRequestBody) Get

func (NullableUserCreateRequestBody) IsSet

func (NullableUserCreateRequestBody) MarshalJSON

func (v NullableUserCreateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableUserCreateRequestBody) Set

func (*NullableUserCreateRequestBody) UnmarshalJSON

func (v *NullableUserCreateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableUserCreateRequestBody) Unset

func (v *NullableUserCreateRequestBody) Unset()

type NullableUserResponse

type NullableUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUserResponse

func NewNullableUserResponse(val *UserResponse) *NullableUserResponse

func (NullableUserResponse) Get

func (NullableUserResponse) IsSet

func (v NullableUserResponse) IsSet() bool

func (NullableUserResponse) MarshalJSON

func (v NullableUserResponse) MarshalJSON() ([]byte, error)

func (*NullableUserResponse) Set

func (v *NullableUserResponse) Set(val *UserResponse)

func (*NullableUserResponse) UnmarshalJSON

func (v *NullableUserResponse) UnmarshalJSON(src []byte) error

func (*NullableUserResponse) Unset

func (v *NullableUserResponse) Unset()

type NullableUserResponseBody

type NullableUserResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableUserResponseBody

func NewNullableUserResponseBody(val *UserResponseBody) *NullableUserResponseBody

func (NullableUserResponseBody) Get

func (NullableUserResponseBody) IsSet

func (v NullableUserResponseBody) IsSet() bool

func (NullableUserResponseBody) MarshalJSON

func (v NullableUserResponseBody) MarshalJSON() ([]byte, error)

func (*NullableUserResponseBody) Set

func (*NullableUserResponseBody) UnmarshalJSON

func (v *NullableUserResponseBody) UnmarshalJSON(src []byte) error

func (*NullableUserResponseBody) Unset

func (v *NullableUserResponseBody) Unset()

type NullableUserUpdateRequest

type NullableUserUpdateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUserUpdateRequest

func NewNullableUserUpdateRequest(val *UserUpdateRequest) *NullableUserUpdateRequest

func (NullableUserUpdateRequest) Get

func (NullableUserUpdateRequest) IsSet

func (v NullableUserUpdateRequest) IsSet() bool

func (NullableUserUpdateRequest) MarshalJSON

func (v NullableUserUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableUserUpdateRequest) Set

func (*NullableUserUpdateRequest) UnmarshalJSON

func (v *NullableUserUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableUserUpdateRequest) Unset

func (v *NullableUserUpdateRequest) Unset()

type NullableUserUpdateRequestBody

type NullableUserUpdateRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableUserUpdateRequestBody) Get

func (NullableUserUpdateRequestBody) IsSet

func (NullableUserUpdateRequestBody) MarshalJSON

func (v NullableUserUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*NullableUserUpdateRequestBody) Set

func (*NullableUserUpdateRequestBody) UnmarshalJSON

func (v *NullableUserUpdateRequestBody) UnmarshalJSON(src []byte) error

func (*NullableUserUpdateRequestBody) Unset

func (v *NullableUserUpdateRequestBody) Unset()

type NullableUsersResponseBody

type NullableUsersResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableUsersResponseBody

func NewNullableUsersResponseBody(val *UsersResponseBody) *NullableUsersResponseBody

func (NullableUsersResponseBody) Get

func (NullableUsersResponseBody) IsSet

func (v NullableUsersResponseBody) IsSet() bool

func (NullableUsersResponseBody) MarshalJSON

func (v NullableUsersResponseBody) MarshalJSON() ([]byte, error)

func (*NullableUsersResponseBody) Set

func (*NullableUsersResponseBody) UnmarshalJSON

func (v *NullableUsersResponseBody) UnmarshalJSON(src []byte) error

func (*NullableUsersResponseBody) Unset

func (v *NullableUsersResponseBody) Unset()

type NullableWidgetRequest

type NullableWidgetRequest struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetRequest

func NewNullableWidgetRequest(val *WidgetRequest) *NullableWidgetRequest

func (NullableWidgetRequest) Get

func (NullableWidgetRequest) IsSet

func (v NullableWidgetRequest) IsSet() bool

func (NullableWidgetRequest) MarshalJSON

func (v NullableWidgetRequest) MarshalJSON() ([]byte, error)

func (*NullableWidgetRequest) Set

func (v *NullableWidgetRequest) Set(val *WidgetRequest)

func (*NullableWidgetRequest) UnmarshalJSON

func (v *NullableWidgetRequest) UnmarshalJSON(src []byte) error

func (*NullableWidgetRequest) Unset

func (v *NullableWidgetRequest) Unset()

type NullableWidgetRequestBody

type NullableWidgetRequestBody struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetRequestBody

func NewNullableWidgetRequestBody(val *WidgetRequestBody) *NullableWidgetRequestBody

func (NullableWidgetRequestBody) Get

func (NullableWidgetRequestBody) IsSet

func (v NullableWidgetRequestBody) IsSet() bool

func (NullableWidgetRequestBody) MarshalJSON

func (v NullableWidgetRequestBody) MarshalJSON() ([]byte, error)

func (*NullableWidgetRequestBody) Set

func (*NullableWidgetRequestBody) UnmarshalJSON

func (v *NullableWidgetRequestBody) UnmarshalJSON(src []byte) error

func (*NullableWidgetRequestBody) Unset

func (v *NullableWidgetRequestBody) Unset()

type NullableWidgetResponse

type NullableWidgetResponse struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetResponse

func NewNullableWidgetResponse(val *WidgetResponse) *NullableWidgetResponse

func (NullableWidgetResponse) Get

func (NullableWidgetResponse) IsSet

func (v NullableWidgetResponse) IsSet() bool

func (NullableWidgetResponse) MarshalJSON

func (v NullableWidgetResponse) MarshalJSON() ([]byte, error)

func (*NullableWidgetResponse) Set

func (*NullableWidgetResponse) UnmarshalJSON

func (v *NullableWidgetResponse) UnmarshalJSON(src []byte) error

func (*NullableWidgetResponse) Unset

func (v *NullableWidgetResponse) Unset()

type NullableWidgetResponseBody

type NullableWidgetResponseBody struct {
	// contains filtered or unexported fields
}

func NewNullableWidgetResponseBody

func NewNullableWidgetResponseBody(val *WidgetResponseBody) *NullableWidgetResponseBody

func (NullableWidgetResponseBody) Get

func (NullableWidgetResponseBody) IsSet

func (v NullableWidgetResponseBody) IsSet() bool

func (NullableWidgetResponseBody) MarshalJSON

func (v NullableWidgetResponseBody) MarshalJSON() ([]byte, error)

func (*NullableWidgetResponseBody) Set

func (*NullableWidgetResponseBody) UnmarshalJSON

func (v *NullableWidgetResponseBody) UnmarshalJSON(src []byte) error

func (*NullableWidgetResponseBody) Unset

func (v *NullableWidgetResponseBody) Unset()

type OAuthWindowResponse

type OAuthWindowResponse struct {
	Guid           NullableString `json:"guid,omitempty"`
	OauthWindowUri NullableString `json:"oauth_window_uri,omitempty"`
}

OAuthWindowResponse struct for OAuthWindowResponse

func NewOAuthWindowResponse

func NewOAuthWindowResponse() *OAuthWindowResponse

NewOAuthWindowResponse instantiates a new OAuthWindowResponse 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 NewOAuthWindowResponseWithDefaults

func NewOAuthWindowResponseWithDefaults() *OAuthWindowResponse

NewOAuthWindowResponseWithDefaults instantiates a new OAuthWindowResponse 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 (*OAuthWindowResponse) GetGuid

func (o *OAuthWindowResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuthWindowResponse) GetGuidOk

func (o *OAuthWindowResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*OAuthWindowResponse) GetOauthWindowUri

func (o *OAuthWindowResponse) GetOauthWindowUri() string

GetOauthWindowUri returns the OauthWindowUri field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuthWindowResponse) GetOauthWindowUriOk

func (o *OAuthWindowResponse) GetOauthWindowUriOk() (*string, bool)

GetOauthWindowUriOk returns a tuple with the OauthWindowUri 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 (*OAuthWindowResponse) HasGuid

func (o *OAuthWindowResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*OAuthWindowResponse) HasOauthWindowUri

func (o *OAuthWindowResponse) HasOauthWindowUri() bool

HasOauthWindowUri returns a boolean if a field has been set.

func (OAuthWindowResponse) MarshalJSON

func (o OAuthWindowResponse) MarshalJSON() ([]byte, error)

func (*OAuthWindowResponse) SetGuid

func (o *OAuthWindowResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*OAuthWindowResponse) SetGuidNil added in v0.4.1

func (o *OAuthWindowResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*OAuthWindowResponse) SetOauthWindowUri

func (o *OAuthWindowResponse) SetOauthWindowUri(v string)

SetOauthWindowUri gets a reference to the given NullableString and assigns it to the OauthWindowUri field.

func (*OAuthWindowResponse) SetOauthWindowUriNil

func (o *OAuthWindowResponse) SetOauthWindowUriNil()

SetOauthWindowUriNil sets the value for OauthWindowUri to be an explicit nil

func (OAuthWindowResponse) ToMap added in v0.17.1

func (o OAuthWindowResponse) ToMap() (map[string]interface{}, error)

func (*OAuthWindowResponse) UnsetGuid added in v0.4.1

func (o *OAuthWindowResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*OAuthWindowResponse) UnsetOauthWindowUri

func (o *OAuthWindowResponse) UnsetOauthWindowUri()

UnsetOauthWindowUri ensures that no value is present for OauthWindowUri, not even an explicit nil

type OAuthWindowResponseBody

type OAuthWindowResponseBody struct {
	Member *OAuthWindowResponse `json:"member,omitempty"`
}

OAuthWindowResponseBody struct for OAuthWindowResponseBody

func NewOAuthWindowResponseBody

func NewOAuthWindowResponseBody() *OAuthWindowResponseBody

NewOAuthWindowResponseBody instantiates a new OAuthWindowResponseBody 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 NewOAuthWindowResponseBodyWithDefaults

func NewOAuthWindowResponseBodyWithDefaults() *OAuthWindowResponseBody

NewOAuthWindowResponseBodyWithDefaults instantiates a new OAuthWindowResponseBody 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 (*OAuthWindowResponseBody) GetMember

GetMember returns the Member field value if set, zero value otherwise.

func (*OAuthWindowResponseBody) GetMemberOk

func (o *OAuthWindowResponseBody) GetMemberOk() (*OAuthWindowResponse, bool)

GetMemberOk returns a tuple with the Member field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuthWindowResponseBody) HasMember

func (o *OAuthWindowResponseBody) HasMember() bool

HasMember returns a boolean if a field has been set.

func (OAuthWindowResponseBody) MarshalJSON

func (o OAuthWindowResponseBody) MarshalJSON() ([]byte, error)

func (*OAuthWindowResponseBody) SetMember

SetMember gets a reference to the given OAuthWindowResponse and assigns it to the Member field.

func (OAuthWindowResponseBody) ToMap added in v0.17.1

func (o OAuthWindowResponseBody) ToMap() (map[string]interface{}, error)

type OptionResponse

type OptionResponse struct {
	Label NullableString `json:"label,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

OptionResponse struct for OptionResponse

func NewOptionResponse

func NewOptionResponse() *OptionResponse

NewOptionResponse instantiates a new OptionResponse 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 NewOptionResponseWithDefaults

func NewOptionResponseWithDefaults() *OptionResponse

NewOptionResponseWithDefaults instantiates a new OptionResponse 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 (*OptionResponse) GetLabel

func (o *OptionResponse) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OptionResponse) GetLabelOk

func (o *OptionResponse) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label 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 (*OptionResponse) GetValue

func (o *OptionResponse) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OptionResponse) GetValueOk

func (o *OptionResponse) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value 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 (*OptionResponse) HasLabel

func (o *OptionResponse) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*OptionResponse) HasValue

func (o *OptionResponse) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OptionResponse) MarshalJSON

func (o OptionResponse) MarshalJSON() ([]byte, error)

func (*OptionResponse) SetLabel

func (o *OptionResponse) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*OptionResponse) SetLabelNil

func (o *OptionResponse) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*OptionResponse) SetValue

func (o *OptionResponse) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*OptionResponse) SetValueNil

func (o *OptionResponse) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (OptionResponse) ToMap added in v0.17.1

func (o OptionResponse) ToMap() (map[string]interface{}, error)

func (*OptionResponse) UnsetLabel

func (o *OptionResponse) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

func (*OptionResponse) UnsetValue

func (o *OptionResponse) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type PaginationResponse

type PaginationResponse struct {
	CurrentPage  *int32 `json:"current_page,omitempty"`
	PerPage      *int32 `json:"per_page,omitempty"`
	TotalEntries *int32 `json:"total_entries,omitempty"`
	TotalPages   *int32 `json:"total_pages,omitempty"`
}

PaginationResponse struct for PaginationResponse

func NewPaginationResponse

func NewPaginationResponse() *PaginationResponse

NewPaginationResponse instantiates a new PaginationResponse 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 NewPaginationResponseWithDefaults

func NewPaginationResponseWithDefaults() *PaginationResponse

NewPaginationResponseWithDefaults instantiates a new PaginationResponse 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 (*PaginationResponse) GetCurrentPage

func (o *PaginationResponse) GetCurrentPage() int32

GetCurrentPage returns the CurrentPage field value if set, zero value otherwise.

func (*PaginationResponse) GetCurrentPageOk

func (o *PaginationResponse) GetCurrentPageOk() (*int32, bool)

GetCurrentPageOk returns a tuple with the CurrentPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationResponse) GetPerPage

func (o *PaginationResponse) GetPerPage() int32

GetPerPage returns the PerPage field value if set, zero value otherwise.

func (*PaginationResponse) GetPerPageOk

func (o *PaginationResponse) GetPerPageOk() (*int32, bool)

GetPerPageOk returns a tuple with the PerPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationResponse) GetTotalEntries

func (o *PaginationResponse) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*PaginationResponse) GetTotalEntriesOk

func (o *PaginationResponse) GetTotalEntriesOk() (*int32, bool)

GetTotalEntriesOk returns a tuple with the TotalEntries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationResponse) GetTotalPages

func (o *PaginationResponse) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*PaginationResponse) GetTotalPagesOk

func (o *PaginationResponse) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationResponse) HasCurrentPage

func (o *PaginationResponse) HasCurrentPage() bool

HasCurrentPage returns a boolean if a field has been set.

func (*PaginationResponse) HasPerPage

func (o *PaginationResponse) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

func (*PaginationResponse) HasTotalEntries

func (o *PaginationResponse) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (*PaginationResponse) HasTotalPages

func (o *PaginationResponse) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (PaginationResponse) MarshalJSON

func (o PaginationResponse) MarshalJSON() ([]byte, error)

func (*PaginationResponse) SetCurrentPage

func (o *PaginationResponse) SetCurrentPage(v int32)

SetCurrentPage gets a reference to the given int32 and assigns it to the CurrentPage field.

func (*PaginationResponse) SetPerPage

func (o *PaginationResponse) SetPerPage(v int32)

SetPerPage gets a reference to the given int32 and assigns it to the PerPage field.

func (*PaginationResponse) SetTotalEntries

func (o *PaginationResponse) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

func (*PaginationResponse) SetTotalPages

func (o *PaginationResponse) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (PaginationResponse) ToMap added in v0.17.1

func (o PaginationResponse) ToMap() (map[string]interface{}, error)

type PaymentProcessorAuthorizationCodeRequest added in v0.6.0

type PaymentProcessorAuthorizationCodeRequest struct {
	AccountGuid NullableString `json:"account_guid,omitempty"`
	MemberGuid  NullableString `json:"member_guid,omitempty"`
	UserGuid    NullableString `json:"user_guid,omitempty"`
}

PaymentProcessorAuthorizationCodeRequest struct for PaymentProcessorAuthorizationCodeRequest

func NewPaymentProcessorAuthorizationCodeRequest added in v0.6.0

func NewPaymentProcessorAuthorizationCodeRequest() *PaymentProcessorAuthorizationCodeRequest

NewPaymentProcessorAuthorizationCodeRequest instantiates a new PaymentProcessorAuthorizationCodeRequest 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 NewPaymentProcessorAuthorizationCodeRequestWithDefaults added in v0.6.0

func NewPaymentProcessorAuthorizationCodeRequestWithDefaults() *PaymentProcessorAuthorizationCodeRequest

NewPaymentProcessorAuthorizationCodeRequestWithDefaults instantiates a new PaymentProcessorAuthorizationCodeRequest 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 (*PaymentProcessorAuthorizationCodeRequest) GetAccountGuid added in v0.6.0

GetAccountGuid returns the AccountGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaymentProcessorAuthorizationCodeRequest) GetAccountGuidOk added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeRequest) GetAccountGuidOk() (*string, bool)

GetAccountGuidOk returns a tuple with the AccountGuid 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 (*PaymentProcessorAuthorizationCodeRequest) GetMemberGuid added in v0.6.0

GetMemberGuid returns the MemberGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaymentProcessorAuthorizationCodeRequest) GetMemberGuidOk added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeRequest) GetMemberGuidOk() (*string, bool)

GetMemberGuidOk returns a tuple with the MemberGuid 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 (*PaymentProcessorAuthorizationCodeRequest) GetUserGuid added in v0.6.0

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaymentProcessorAuthorizationCodeRequest) GetUserGuidOk added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeRequest) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*PaymentProcessorAuthorizationCodeRequest) HasAccountGuid added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeRequest) HasAccountGuid() bool

HasAccountGuid returns a boolean if a field has been set.

func (*PaymentProcessorAuthorizationCodeRequest) HasMemberGuid added in v0.6.0

HasMemberGuid returns a boolean if a field has been set.

func (*PaymentProcessorAuthorizationCodeRequest) HasUserGuid added in v0.6.0

HasUserGuid returns a boolean if a field has been set.

func (PaymentProcessorAuthorizationCodeRequest) MarshalJSON added in v0.6.0

func (*PaymentProcessorAuthorizationCodeRequest) SetAccountGuid added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeRequest) SetAccountGuid(v string)

SetAccountGuid gets a reference to the given NullableString and assigns it to the AccountGuid field.

func (*PaymentProcessorAuthorizationCodeRequest) SetAccountGuidNil added in v0.10.0

func (o *PaymentProcessorAuthorizationCodeRequest) SetAccountGuidNil()

SetAccountGuidNil sets the value for AccountGuid to be an explicit nil

func (*PaymentProcessorAuthorizationCodeRequest) SetMemberGuid added in v0.6.0

SetMemberGuid gets a reference to the given NullableString and assigns it to the MemberGuid field.

func (*PaymentProcessorAuthorizationCodeRequest) SetMemberGuidNil added in v0.10.0

func (o *PaymentProcessorAuthorizationCodeRequest) SetMemberGuidNil()

SetMemberGuidNil sets the value for MemberGuid to be an explicit nil

func (*PaymentProcessorAuthorizationCodeRequest) SetUserGuid added in v0.6.0

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*PaymentProcessorAuthorizationCodeRequest) SetUserGuidNil added in v0.10.0

func (o *PaymentProcessorAuthorizationCodeRequest) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (PaymentProcessorAuthorizationCodeRequest) ToMap added in v0.17.1

func (o PaymentProcessorAuthorizationCodeRequest) ToMap() (map[string]interface{}, error)

func (*PaymentProcessorAuthorizationCodeRequest) UnsetAccountGuid added in v0.10.0

func (o *PaymentProcessorAuthorizationCodeRequest) UnsetAccountGuid()

UnsetAccountGuid ensures that no value is present for AccountGuid, not even an explicit nil

func (*PaymentProcessorAuthorizationCodeRequest) UnsetMemberGuid added in v0.10.0

func (o *PaymentProcessorAuthorizationCodeRequest) UnsetMemberGuid()

UnsetMemberGuid ensures that no value is present for MemberGuid, not even an explicit nil

func (*PaymentProcessorAuthorizationCodeRequest) UnsetUserGuid added in v0.10.0

func (o *PaymentProcessorAuthorizationCodeRequest) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type PaymentProcessorAuthorizationCodeRequestBody added in v0.6.0

type PaymentProcessorAuthorizationCodeRequestBody struct {
	PaymentProcessorAuthorizationCode *PaymentProcessorAuthorizationCodeRequest `json:"payment_processor_authorization_code,omitempty"`
}

PaymentProcessorAuthorizationCodeRequestBody struct for PaymentProcessorAuthorizationCodeRequestBody

func NewPaymentProcessorAuthorizationCodeRequestBody added in v0.6.0

func NewPaymentProcessorAuthorizationCodeRequestBody() *PaymentProcessorAuthorizationCodeRequestBody

NewPaymentProcessorAuthorizationCodeRequestBody instantiates a new PaymentProcessorAuthorizationCodeRequestBody 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 NewPaymentProcessorAuthorizationCodeRequestBodyWithDefaults added in v0.6.0

func NewPaymentProcessorAuthorizationCodeRequestBodyWithDefaults() *PaymentProcessorAuthorizationCodeRequestBody

NewPaymentProcessorAuthorizationCodeRequestBodyWithDefaults instantiates a new PaymentProcessorAuthorizationCodeRequestBody 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 (*PaymentProcessorAuthorizationCodeRequestBody) GetPaymentProcessorAuthorizationCode added in v0.6.0

GetPaymentProcessorAuthorizationCode returns the PaymentProcessorAuthorizationCode field value if set, zero value otherwise.

func (*PaymentProcessorAuthorizationCodeRequestBody) GetPaymentProcessorAuthorizationCodeOk added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeRequestBody) GetPaymentProcessorAuthorizationCodeOk() (*PaymentProcessorAuthorizationCodeRequest, bool)

GetPaymentProcessorAuthorizationCodeOk returns a tuple with the PaymentProcessorAuthorizationCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentProcessorAuthorizationCodeRequestBody) HasPaymentProcessorAuthorizationCode added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeRequestBody) HasPaymentProcessorAuthorizationCode() bool

HasPaymentProcessorAuthorizationCode returns a boolean if a field has been set.

func (PaymentProcessorAuthorizationCodeRequestBody) MarshalJSON added in v0.6.0

func (*PaymentProcessorAuthorizationCodeRequestBody) SetPaymentProcessorAuthorizationCode added in v0.6.0

SetPaymentProcessorAuthorizationCode gets a reference to the given PaymentProcessorAuthorizationCodeRequest and assigns it to the PaymentProcessorAuthorizationCode field.

func (PaymentProcessorAuthorizationCodeRequestBody) ToMap added in v0.17.1

func (o PaymentProcessorAuthorizationCodeRequestBody) ToMap() (map[string]interface{}, error)

type PaymentProcessorAuthorizationCodeResponse added in v0.6.0

type PaymentProcessorAuthorizationCodeResponse struct {
	AuthorizationCode NullableString `json:"authorization_code,omitempty"`
}

PaymentProcessorAuthorizationCodeResponse struct for PaymentProcessorAuthorizationCodeResponse

func NewPaymentProcessorAuthorizationCodeResponse added in v0.6.0

func NewPaymentProcessorAuthorizationCodeResponse() *PaymentProcessorAuthorizationCodeResponse

NewPaymentProcessorAuthorizationCodeResponse instantiates a new PaymentProcessorAuthorizationCodeResponse 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 NewPaymentProcessorAuthorizationCodeResponseWithDefaults added in v0.6.0

func NewPaymentProcessorAuthorizationCodeResponseWithDefaults() *PaymentProcessorAuthorizationCodeResponse

NewPaymentProcessorAuthorizationCodeResponseWithDefaults instantiates a new PaymentProcessorAuthorizationCodeResponse 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 (*PaymentProcessorAuthorizationCodeResponse) GetAuthorizationCode added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeResponse) GetAuthorizationCode() string

GetAuthorizationCode returns the AuthorizationCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PaymentProcessorAuthorizationCodeResponse) GetAuthorizationCodeOk added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeResponse) GetAuthorizationCodeOk() (*string, bool)

GetAuthorizationCodeOk returns a tuple with the AuthorizationCode 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 (*PaymentProcessorAuthorizationCodeResponse) HasAuthorizationCode added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeResponse) HasAuthorizationCode() bool

HasAuthorizationCode returns a boolean if a field has been set.

func (PaymentProcessorAuthorizationCodeResponse) MarshalJSON added in v0.6.0

func (*PaymentProcessorAuthorizationCodeResponse) SetAuthorizationCode added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeResponse) SetAuthorizationCode(v string)

SetAuthorizationCode gets a reference to the given NullableString and assigns it to the AuthorizationCode field.

func (*PaymentProcessorAuthorizationCodeResponse) SetAuthorizationCodeNil added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeResponse) SetAuthorizationCodeNil()

SetAuthorizationCodeNil sets the value for AuthorizationCode to be an explicit nil

func (PaymentProcessorAuthorizationCodeResponse) ToMap added in v0.17.1

func (o PaymentProcessorAuthorizationCodeResponse) ToMap() (map[string]interface{}, error)

func (*PaymentProcessorAuthorizationCodeResponse) UnsetAuthorizationCode added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeResponse) UnsetAuthorizationCode()

UnsetAuthorizationCode ensures that no value is present for AuthorizationCode, not even an explicit nil

type PaymentProcessorAuthorizationCodeResponseBody added in v0.6.0

type PaymentProcessorAuthorizationCodeResponseBody struct {
	PaymentProcessorAuthorizationCode *PaymentProcessorAuthorizationCodeResponse `json:"payment_processor_authorization_code,omitempty"`
}

PaymentProcessorAuthorizationCodeResponseBody struct for PaymentProcessorAuthorizationCodeResponseBody

func NewPaymentProcessorAuthorizationCodeResponseBody added in v0.6.0

func NewPaymentProcessorAuthorizationCodeResponseBody() *PaymentProcessorAuthorizationCodeResponseBody

NewPaymentProcessorAuthorizationCodeResponseBody instantiates a new PaymentProcessorAuthorizationCodeResponseBody 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 NewPaymentProcessorAuthorizationCodeResponseBodyWithDefaults added in v0.6.0

func NewPaymentProcessorAuthorizationCodeResponseBodyWithDefaults() *PaymentProcessorAuthorizationCodeResponseBody

NewPaymentProcessorAuthorizationCodeResponseBodyWithDefaults instantiates a new PaymentProcessorAuthorizationCodeResponseBody 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 (*PaymentProcessorAuthorizationCodeResponseBody) GetPaymentProcessorAuthorizationCode added in v0.6.0

GetPaymentProcessorAuthorizationCode returns the PaymentProcessorAuthorizationCode field value if set, zero value otherwise.

func (*PaymentProcessorAuthorizationCodeResponseBody) GetPaymentProcessorAuthorizationCodeOk added in v0.6.0

GetPaymentProcessorAuthorizationCodeOk returns a tuple with the PaymentProcessorAuthorizationCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentProcessorAuthorizationCodeResponseBody) HasPaymentProcessorAuthorizationCode added in v0.6.0

func (o *PaymentProcessorAuthorizationCodeResponseBody) HasPaymentProcessorAuthorizationCode() bool

HasPaymentProcessorAuthorizationCode returns a boolean if a field has been set.

func (PaymentProcessorAuthorizationCodeResponseBody) MarshalJSON added in v0.6.0

func (*PaymentProcessorAuthorizationCodeResponseBody) SetPaymentProcessorAuthorizationCode added in v0.6.0

SetPaymentProcessorAuthorizationCode gets a reference to the given PaymentProcessorAuthorizationCodeResponse and assigns it to the PaymentProcessorAuthorizationCode field.

func (PaymentProcessorAuthorizationCodeResponseBody) ToMap added in v0.17.1

func (o PaymentProcessorAuthorizationCodeResponseBody) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SpendingPlanAPIService added in v0.19.0

type SpendingPlanAPIService service

SpendingPlanAPIService SpendingPlanAPI service

func (*SpendingPlanAPIService) CreateSpendingPlan added in v0.19.0

func (a *SpendingPlanAPIService) CreateSpendingPlan(ctx context.Context, userGuid string) ApiCreateSpendingPlanRequest

CreateSpendingPlan Create spending plan

This endpoint creates a new `spending_plan` for the user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiCreateSpendingPlanRequest

func (*SpendingPlanAPIService) CreateSpendingPlanExecute added in v0.19.0

Execute executes the request

@return SpendingPlanResponse

func (*SpendingPlanAPIService) CreateSpendingPlanIterationItem added in v0.19.0

func (a *SpendingPlanAPIService) CreateSpendingPlanIterationItem(ctx context.Context, spendingPlanGuid string, userGuid string) ApiCreateSpendingPlanIterationItemRequest

CreateSpendingPlanIterationItem Create spending plan iteration item

This endpoint creates a new `spending_plan_iteration_item`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param spendingPlanGuid The unique ID for the `spending_plan`.
@param userGuid The unique id for a `user`.
@return ApiCreateSpendingPlanIterationItemRequest

func (*SpendingPlanAPIService) CreateSpendingPlanIterationItemExecute added in v0.19.0

Execute executes the request

@return SpendingPlanIterationItemResponse

func (*SpendingPlanAPIService) DeleteSpendingPlan added in v0.19.0

func (a *SpendingPlanAPIService) DeleteSpendingPlan(ctx context.Context, userGuid string, spendingPlanGuid string) ApiDeleteSpendingPlanRequest

DeleteSpendingPlan Delete spending plan

Use this endpoint to delete a user's `spending_plan`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique ID for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@return ApiDeleteSpendingPlanRequest

func (*SpendingPlanAPIService) DeleteSpendingPlanAccount added in v0.19.0

func (a *SpendingPlanAPIService) DeleteSpendingPlanAccount(ctx context.Context, userGuid string, spendingPlanGuid string, spendingPlanAccountGuid string) ApiDeleteSpendingPlanAccountRequest

DeleteSpendingPlanAccount Delete spending plan account

Use this endpoint to delete a `spending_plan_account`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique ID for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@param spendingPlanAccountGuid The unique ID for the specified account.
@return ApiDeleteSpendingPlanAccountRequest

func (*SpendingPlanAPIService) DeleteSpendingPlanAccountExecute added in v0.19.0

func (a *SpendingPlanAPIService) DeleteSpendingPlanAccountExecute(r ApiDeleteSpendingPlanAccountRequest) (*http.Response, error)

Execute executes the request

func (*SpendingPlanAPIService) DeleteSpendingPlanExecute added in v0.19.0

func (a *SpendingPlanAPIService) DeleteSpendingPlanExecute(r ApiDeleteSpendingPlanRequest) (*http.Response, error)

Execute executes the request

func (*SpendingPlanAPIService) DeleteSpendingPlanIterationItem added in v0.19.0

func (a *SpendingPlanAPIService) DeleteSpendingPlanIterationItem(ctx context.Context, userGuid string, spendingPlanGuid string, iterationItemGuid string) ApiDeleteSpendingPlanIterationItemRequest

DeleteSpendingPlanIterationItem Delete spending plan iteration item

Use this endpoint to delete a spending plan `iteration_item`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique ID for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@param iterationItemGuid The unique ID for the `iteration_item`.
@return ApiDeleteSpendingPlanIterationItemRequest

func (*SpendingPlanAPIService) DeleteSpendingPlanIterationItemExecute added in v0.19.0

func (a *SpendingPlanAPIService) DeleteSpendingPlanIterationItemExecute(r ApiDeleteSpendingPlanIterationItemRequest) (*http.Response, error)

Execute executes the request

func (*SpendingPlanAPIService) ListSpendingPlanAccounts added in v0.19.0

func (a *SpendingPlanAPIService) ListSpendingPlanAccounts(ctx context.Context, userGuid string, spendingPlanGuid string) ApiListSpendingPlanAccountsRequest

ListSpendingPlanAccounts List spending plan accounts

Use this endpoint to list all the spending plan accounts associated with the spending plan.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@return ApiListSpendingPlanAccountsRequest

func (*SpendingPlanAPIService) ListSpendingPlanAccountsExecute added in v0.19.0

Execute executes the request

@return SpendingPlanAccountsResponse

func (*SpendingPlanAPIService) ListSpendingPlanIterationItems added in v0.19.0

func (a *SpendingPlanAPIService) ListSpendingPlanIterationItems(ctx context.Context, userGuid string, spendingPlanGuid string) ApiListSpendingPlanIterationItemsRequest

ListSpendingPlanIterationItems List spending plan iteration items

Use this endpoint to list all the spending plan `iteration_items` associated with the `iteration`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@return ApiListSpendingPlanIterationItemsRequest

func (*SpendingPlanAPIService) ListSpendingPlanIterationItemsExecute added in v0.19.0

Execute executes the request

@return SpendingPlanIterationItemsResponseBody

func (*SpendingPlanAPIService) ListSpendingPlanIterations added in v0.19.0

func (a *SpendingPlanAPIService) ListSpendingPlanIterations(ctx context.Context, userGuid string, spendingPlanGuid string) ApiListSpendingPlanIterationsRequest

ListSpendingPlanIterations List spending plan iterations

Use this endpoint to list all the spending plan `iterations` associated with the `spending_plan`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@return ApiListSpendingPlanIterationsRequest

func (*SpendingPlanAPIService) ListSpendingPlanIterationsExecute added in v0.19.0

Execute executes the request

@return SpendingPlanIterationsResponse

func (*SpendingPlanAPIService) ListSpendingPlans added in v0.19.0

func (a *SpendingPlanAPIService) ListSpendingPlans(ctx context.Context, userGuid string) ApiListSpendingPlansRequest

ListSpendingPlans List spending plans

Use this endpoint to list all the spending plans associated with the user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@return ApiListSpendingPlansRequest

func (*SpendingPlanAPIService) ListSpendingPlansExecute added in v0.19.0

Execute executes the request

@return SpendingPlansResponseBody

func (*SpendingPlanAPIService) ReadSpendingPlanAccount added in v0.19.0

func (a *SpendingPlanAPIService) ReadSpendingPlanAccount(ctx context.Context, userGuid string, spendingPlanGuid string, spendingPlanAccountGuid string) ApiReadSpendingPlanAccountRequest

ReadSpendingPlanAccount Read spending plan account

Use this endpoint to read the attributes of a specific spending plan account according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@param spendingPlanAccountGuid The unique ID for the specified account.
@return ApiReadSpendingPlanAccountRequest

func (*SpendingPlanAPIService) ReadSpendingPlanAccountExecute added in v0.19.0

Execute executes the request

@return SpendingPlanAccountResponse

func (*SpendingPlanAPIService) ReadSpendingPlanIteration added in v0.19.0

func (a *SpendingPlanAPIService) ReadSpendingPlanIteration(ctx context.Context, userGuid string, spendingPlanGuid string, iterationNumber int32) ApiReadSpendingPlanIterationRequest

ReadSpendingPlanIteration Read a spending plan iteration

Use this endpoint to read the attributes of a specific spending plan `iteration` according to its `iteration_number`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@param iterationNumber The current iteration number for the spending plan `iteration``.
@return ApiReadSpendingPlanIterationRequest

func (*SpendingPlanAPIService) ReadSpendingPlanIterationExecute added in v0.19.0

Execute executes the request

@return SpendingPlanIterationResponse

func (*SpendingPlanAPIService) ReadSpendingPlanIterationItem added in v0.19.0

func (a *SpendingPlanAPIService) ReadSpendingPlanIterationItem(ctx context.Context, userGuid string, spendingPlanGuid string, iterationItemGuid string) ApiReadSpendingPlanIterationItemRequest

ReadSpendingPlanIterationItem Read a spending plan iteration item

Use this endpoint to read the attributes of a specific spending plan `iteration_item` according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@param iterationItemGuid The unique ID for the `iteration_item`.
@return ApiReadSpendingPlanIterationItemRequest

func (*SpendingPlanAPIService) ReadSpendingPlanIterationItemExecute added in v0.19.0

Execute executes the request

@return SpendingPlanIterationItemResponse

func (*SpendingPlanAPIService) ReadSpendingPlanUser added in v0.19.0

func (a *SpendingPlanAPIService) ReadSpendingPlanUser(ctx context.Context, userGuid string, spendingPlanGuid string) ApiReadSpendingPlanUserRequest

ReadSpendingPlanUser Read a spending plan for a user

Use this endpoint to read the attributes of a specific spending plan according to its unique GUID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@return ApiReadSpendingPlanUserRequest

func (*SpendingPlanAPIService) ReadSpendingPlanUserExecute added in v0.19.0

Execute executes the request

@return SpendingPlanResponse

func (*SpendingPlanAPIService) UpdateSpendingPlanIterationItem added in v0.19.0

func (a *SpendingPlanAPIService) UpdateSpendingPlanIterationItem(ctx context.Context, userGuid string, spendingPlanGuid string, iterationItemGuid string) ApiUpdateSpendingPlanIterationItemRequest

UpdateSpendingPlanIterationItem Update a spending plan iteration item

Use this endpoint to update an existing `spending_plan_iteration_item`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userGuid The unique id for a `user`.
@param spendingPlanGuid The unique ID for the `spending_plan`.
@param iterationItemGuid The unique ID for the `iteration_item`.
@return ApiUpdateSpendingPlanIterationItemRequest

func (*SpendingPlanAPIService) UpdateSpendingPlanIterationItemExecute added in v0.19.0

Execute executes the request

@return SpendingPlanIterationItemResponse

type SpendingPlanAccountResponse added in v0.17.0

type SpendingPlanAccountResponse struct {
	AccountGuid      *string `json:"account_guid,omitempty"`
	ClientGuid       *string `json:"client_guid,omitempty"`
	CreatedAt        *string `json:"created_at,omitempty"`
	Guid             *string `json:"guid,omitempty"`
	SpendingPlanGuid *string `json:"spending_plan_guid,omitempty"`
	UpdatedAt        *string `json:"updated_at,omitempty"`
	UserGuid         *string `json:"user_guid,omitempty"`
}

SpendingPlanAccountResponse struct for SpendingPlanAccountResponse

func NewSpendingPlanAccountResponse added in v0.17.0

func NewSpendingPlanAccountResponse() *SpendingPlanAccountResponse

NewSpendingPlanAccountResponse instantiates a new SpendingPlanAccountResponse 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 NewSpendingPlanAccountResponseWithDefaults added in v0.17.0

func NewSpendingPlanAccountResponseWithDefaults() *SpendingPlanAccountResponse

NewSpendingPlanAccountResponseWithDefaults instantiates a new SpendingPlanAccountResponse 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 (*SpendingPlanAccountResponse) GetAccountGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) GetAccountGuid() string

GetAccountGuid returns the AccountGuid field value if set, zero value otherwise.

func (*SpendingPlanAccountResponse) GetAccountGuidOk added in v0.17.0

func (o *SpendingPlanAccountResponse) GetAccountGuidOk() (*string, bool)

GetAccountGuidOk returns a tuple with the AccountGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountResponse) GetClientGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) GetClientGuid() string

GetClientGuid returns the ClientGuid field value if set, zero value otherwise.

func (*SpendingPlanAccountResponse) GetClientGuidOk added in v0.17.0

func (o *SpendingPlanAccountResponse) GetClientGuidOk() (*string, bool)

GetClientGuidOk returns a tuple with the ClientGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountResponse) GetCreatedAt added in v0.17.0

func (o *SpendingPlanAccountResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SpendingPlanAccountResponse) GetCreatedAtOk added in v0.17.0

func (o *SpendingPlanAccountResponse) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountResponse) GetGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise.

func (*SpendingPlanAccountResponse) GetGuidOk added in v0.17.0

func (o *SpendingPlanAccountResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountResponse) GetSpendingPlanGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) GetSpendingPlanGuid() string

GetSpendingPlanGuid returns the SpendingPlanGuid field value if set, zero value otherwise.

func (*SpendingPlanAccountResponse) GetSpendingPlanGuidOk added in v0.17.0

func (o *SpendingPlanAccountResponse) GetSpendingPlanGuidOk() (*string, bool)

GetSpendingPlanGuidOk returns a tuple with the SpendingPlanGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountResponse) GetUpdatedAt added in v0.17.0

func (o *SpendingPlanAccountResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*SpendingPlanAccountResponse) GetUpdatedAtOk added in v0.17.0

func (o *SpendingPlanAccountResponse) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountResponse) GetUserGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise.

func (*SpendingPlanAccountResponse) GetUserGuidOk added in v0.17.0

func (o *SpendingPlanAccountResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountResponse) HasAccountGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) HasAccountGuid() bool

HasAccountGuid returns a boolean if a field has been set.

func (*SpendingPlanAccountResponse) HasClientGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) HasClientGuid() bool

HasClientGuid returns a boolean if a field has been set.

func (*SpendingPlanAccountResponse) HasCreatedAt added in v0.17.0

func (o *SpendingPlanAccountResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SpendingPlanAccountResponse) HasGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*SpendingPlanAccountResponse) HasSpendingPlanGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) HasSpendingPlanGuid() bool

HasSpendingPlanGuid returns a boolean if a field has been set.

func (*SpendingPlanAccountResponse) HasUpdatedAt added in v0.17.0

func (o *SpendingPlanAccountResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*SpendingPlanAccountResponse) HasUserGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (SpendingPlanAccountResponse) MarshalJSON added in v0.17.0

func (o SpendingPlanAccountResponse) MarshalJSON() ([]byte, error)

func (*SpendingPlanAccountResponse) SetAccountGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) SetAccountGuid(v string)

SetAccountGuid gets a reference to the given string and assigns it to the AccountGuid field.

func (*SpendingPlanAccountResponse) SetClientGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) SetClientGuid(v string)

SetClientGuid gets a reference to the given string and assigns it to the ClientGuid field.

func (*SpendingPlanAccountResponse) SetCreatedAt added in v0.17.0

func (o *SpendingPlanAccountResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*SpendingPlanAccountResponse) SetGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) SetGuid(v string)

SetGuid gets a reference to the given string and assigns it to the Guid field.

func (*SpendingPlanAccountResponse) SetSpendingPlanGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) SetSpendingPlanGuid(v string)

SetSpendingPlanGuid gets a reference to the given string and assigns it to the SpendingPlanGuid field.

func (*SpendingPlanAccountResponse) SetUpdatedAt added in v0.17.0

func (o *SpendingPlanAccountResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*SpendingPlanAccountResponse) SetUserGuid added in v0.17.0

func (o *SpendingPlanAccountResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given string and assigns it to the UserGuid field.

func (SpendingPlanAccountResponse) ToMap added in v0.17.1

func (o SpendingPlanAccountResponse) ToMap() (map[string]interface{}, error)

type SpendingPlanAccountsResponse added in v0.17.0

type SpendingPlanAccountsResponse struct {
	SpendingPlanAccounts []SpendingPlanAccountResponse `json:"spending_plan_accounts,omitempty"`
	Pagination           *PaginationResponse           `json:"pagination,omitempty"`
}

SpendingPlanAccountsResponse struct for SpendingPlanAccountsResponse

func NewSpendingPlanAccountsResponse added in v0.17.0

func NewSpendingPlanAccountsResponse() *SpendingPlanAccountsResponse

NewSpendingPlanAccountsResponse instantiates a new SpendingPlanAccountsResponse 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 NewSpendingPlanAccountsResponseWithDefaults added in v0.17.0

func NewSpendingPlanAccountsResponseWithDefaults() *SpendingPlanAccountsResponse

NewSpendingPlanAccountsResponseWithDefaults instantiates a new SpendingPlanAccountsResponse 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 (*SpendingPlanAccountsResponse) GetPagination added in v0.17.0

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*SpendingPlanAccountsResponse) GetPaginationOk added in v0.17.0

func (o *SpendingPlanAccountsResponse) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountsResponse) GetSpendingPlanAccounts added in v0.17.0

func (o *SpendingPlanAccountsResponse) GetSpendingPlanAccounts() []SpendingPlanAccountResponse

GetSpendingPlanAccounts returns the SpendingPlanAccounts field value if set, zero value otherwise.

func (*SpendingPlanAccountsResponse) GetSpendingPlanAccountsOk added in v0.17.0

func (o *SpendingPlanAccountsResponse) GetSpendingPlanAccountsOk() ([]SpendingPlanAccountResponse, bool)

GetSpendingPlanAccountsOk returns a tuple with the SpendingPlanAccounts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanAccountsResponse) HasPagination added in v0.17.0

func (o *SpendingPlanAccountsResponse) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*SpendingPlanAccountsResponse) HasSpendingPlanAccounts added in v0.17.0

func (o *SpendingPlanAccountsResponse) HasSpendingPlanAccounts() bool

HasSpendingPlanAccounts returns a boolean if a field has been set.

func (SpendingPlanAccountsResponse) MarshalJSON added in v0.17.0

func (o SpendingPlanAccountsResponse) MarshalJSON() ([]byte, error)

func (*SpendingPlanAccountsResponse) SetPagination added in v0.17.0

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*SpendingPlanAccountsResponse) SetSpendingPlanAccounts added in v0.17.0

func (o *SpendingPlanAccountsResponse) SetSpendingPlanAccounts(v []SpendingPlanAccountResponse)

SetSpendingPlanAccounts gets a reference to the given []SpendingPlanAccountResponse and assigns it to the SpendingPlanAccounts field.

func (SpendingPlanAccountsResponse) ToMap added in v0.17.1

func (o SpendingPlanAccountsResponse) ToMap() (map[string]interface{}, error)

type SpendingPlanIterationItemCreateRequestBody added in v0.17.0

type SpendingPlanIterationItemCreateRequestBody struct {
	CategoryGuid         *string  `json:"category_guid,omitempty"`
	ItemType             *float32 `json:"item_type,omitempty"`
	PlannedAmount        float32  `json:"planned_amount"`
	ScheduledPaymentGuid *string  `json:"scheduled_payment_guid,omitempty"`
	TopLevelCategoryGuid *string  `json:"top_level_category_guid,omitempty"`
}

SpendingPlanIterationItemCreateRequestBody struct for SpendingPlanIterationItemCreateRequestBody

func NewSpendingPlanIterationItemCreateRequestBody added in v0.17.0

func NewSpendingPlanIterationItemCreateRequestBody(plannedAmount float32) *SpendingPlanIterationItemCreateRequestBody

NewSpendingPlanIterationItemCreateRequestBody instantiates a new SpendingPlanIterationItemCreateRequestBody 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 NewSpendingPlanIterationItemCreateRequestBodyWithDefaults added in v0.17.0

func NewSpendingPlanIterationItemCreateRequestBodyWithDefaults() *SpendingPlanIterationItemCreateRequestBody

NewSpendingPlanIterationItemCreateRequestBodyWithDefaults instantiates a new SpendingPlanIterationItemCreateRequestBody 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 (*SpendingPlanIterationItemCreateRequestBody) GetCategoryGuid added in v0.17.0

GetCategoryGuid returns the CategoryGuid field value if set, zero value otherwise.

func (*SpendingPlanIterationItemCreateRequestBody) GetCategoryGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) GetCategoryGuidOk() (*string, bool)

GetCategoryGuidOk returns a tuple with the CategoryGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationItemCreateRequestBody) GetItemType added in v0.17.0

GetItemType returns the ItemType field value if set, zero value otherwise.

func (*SpendingPlanIterationItemCreateRequestBody) GetItemTypeOk added in v0.17.0

GetItemTypeOk returns a tuple with the ItemType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationItemCreateRequestBody) GetPlannedAmount added in v0.17.0

GetPlannedAmount returns the PlannedAmount field value

func (*SpendingPlanIterationItemCreateRequestBody) GetPlannedAmountOk added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) GetPlannedAmountOk() (*float32, bool)

GetPlannedAmountOk returns a tuple with the PlannedAmount field value and a boolean to check if the value has been set.

func (*SpendingPlanIterationItemCreateRequestBody) GetScheduledPaymentGuid added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) GetScheduledPaymentGuid() string

GetScheduledPaymentGuid returns the ScheduledPaymentGuid field value if set, zero value otherwise.

func (*SpendingPlanIterationItemCreateRequestBody) GetScheduledPaymentGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) GetScheduledPaymentGuidOk() (*string, bool)

GetScheduledPaymentGuidOk returns a tuple with the ScheduledPaymentGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationItemCreateRequestBody) GetTopLevelCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) GetTopLevelCategoryGuid() string

GetTopLevelCategoryGuid returns the TopLevelCategoryGuid field value if set, zero value otherwise.

func (*SpendingPlanIterationItemCreateRequestBody) GetTopLevelCategoryGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) GetTopLevelCategoryGuidOk() (*string, bool)

GetTopLevelCategoryGuidOk returns a tuple with the TopLevelCategoryGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationItemCreateRequestBody) HasCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) HasCategoryGuid() bool

HasCategoryGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationItemCreateRequestBody) HasItemType added in v0.17.0

HasItemType returns a boolean if a field has been set.

func (*SpendingPlanIterationItemCreateRequestBody) HasScheduledPaymentGuid added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) HasScheduledPaymentGuid() bool

HasScheduledPaymentGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationItemCreateRequestBody) HasTopLevelCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) HasTopLevelCategoryGuid() bool

HasTopLevelCategoryGuid returns a boolean if a field has been set.

func (SpendingPlanIterationItemCreateRequestBody) MarshalJSON added in v0.17.0

func (*SpendingPlanIterationItemCreateRequestBody) SetCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) SetCategoryGuid(v string)

SetCategoryGuid gets a reference to the given string and assigns it to the CategoryGuid field.

func (*SpendingPlanIterationItemCreateRequestBody) SetItemType added in v0.17.0

SetItemType gets a reference to the given float32 and assigns it to the ItemType field.

func (*SpendingPlanIterationItemCreateRequestBody) SetPlannedAmount added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) SetPlannedAmount(v float32)

SetPlannedAmount sets field value

func (*SpendingPlanIterationItemCreateRequestBody) SetScheduledPaymentGuid added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) SetScheduledPaymentGuid(v string)

SetScheduledPaymentGuid gets a reference to the given string and assigns it to the ScheduledPaymentGuid field.

func (*SpendingPlanIterationItemCreateRequestBody) SetTopLevelCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemCreateRequestBody) SetTopLevelCategoryGuid(v string)

SetTopLevelCategoryGuid gets a reference to the given string and assigns it to the TopLevelCategoryGuid field.

func (SpendingPlanIterationItemCreateRequestBody) ToMap added in v0.17.1

func (o SpendingPlanIterationItemCreateRequestBody) ToMap() (map[string]interface{}, error)

type SpendingPlanIterationItemResponse added in v0.17.0

type SpendingPlanIterationItemResponse struct {
	ActualAmount              NullableFloat32 `json:"actual_amount,omitempty"`
	CategoryGuid              NullableString  `json:"category_guid,omitempty"`
	CreatedAt                 NullableString  `json:"created_at,omitempty"`
	Guid                      NullableString  `json:"guid,omitempty"`
	ItemType                  NullableString  `json:"item_type,omitempty"`
	PlannedAmount             NullableFloat32 `json:"planned_amount,omitempty"`
	ScheduledPaymentGuid      NullableString  `json:"scheduled_payment_guid,omitempty"`
	SpendingPlanIterationGuid NullableString  `json:"spending_plan_iteration_guid,omitempty"`
	TopLevelCategoryGuid      NullableString  `json:"top_level_category_guid,omitempty"`
	TransactionGuids          []*string       `json:"transaction_guids,omitempty"`
	UpdatedAt                 NullableString  `json:"updated_at,omitempty"`
	UserGuid                  NullableString  `json:"user_guid,omitempty"`
}

SpendingPlanIterationItemResponse struct for SpendingPlanIterationItemResponse

func NewSpendingPlanIterationItemResponse added in v0.17.0

func NewSpendingPlanIterationItemResponse() *SpendingPlanIterationItemResponse

NewSpendingPlanIterationItemResponse instantiates a new SpendingPlanIterationItemResponse 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 NewSpendingPlanIterationItemResponseWithDefaults added in v0.17.0

func NewSpendingPlanIterationItemResponseWithDefaults() *SpendingPlanIterationItemResponse

NewSpendingPlanIterationItemResponseWithDefaults instantiates a new SpendingPlanIterationItemResponse 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 (*SpendingPlanIterationItemResponse) GetActualAmount added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetActualAmount() float32

GetActualAmount returns the ActualAmount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetActualAmountOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetActualAmountOk() (*float32, bool)

GetActualAmountOk returns a tuple with the ActualAmount 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 (*SpendingPlanIterationItemResponse) GetCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetCategoryGuid() string

GetCategoryGuid returns the CategoryGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetCategoryGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetCategoryGuidOk() (*string, bool)

GetCategoryGuidOk returns a tuple with the CategoryGuid 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 (*SpendingPlanIterationItemResponse) GetCreatedAt added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetCreatedAtOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SpendingPlanIterationItemResponse) GetGuid added in v0.17.0

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*SpendingPlanIterationItemResponse) GetItemType added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetItemType() string

GetItemType returns the ItemType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetItemTypeOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetItemTypeOk() (*string, bool)

GetItemTypeOk returns a tuple with the ItemType 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 (*SpendingPlanIterationItemResponse) GetPlannedAmount added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetPlannedAmount() float32

GetPlannedAmount returns the PlannedAmount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetPlannedAmountOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetPlannedAmountOk() (*float32, bool)

GetPlannedAmountOk returns a tuple with the PlannedAmount 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 (*SpendingPlanIterationItemResponse) GetScheduledPaymentGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetScheduledPaymentGuid() string

GetScheduledPaymentGuid returns the ScheduledPaymentGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetScheduledPaymentGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetScheduledPaymentGuidOk() (*string, bool)

GetScheduledPaymentGuidOk returns a tuple with the ScheduledPaymentGuid 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 (*SpendingPlanIterationItemResponse) GetSpendingPlanIterationGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetSpendingPlanIterationGuid() string

GetSpendingPlanIterationGuid returns the SpendingPlanIterationGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetSpendingPlanIterationGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetSpendingPlanIterationGuidOk() (*string, bool)

GetSpendingPlanIterationGuidOk returns a tuple with the SpendingPlanIterationGuid 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 (*SpendingPlanIterationItemResponse) GetTopLevelCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetTopLevelCategoryGuid() string

GetTopLevelCategoryGuid returns the TopLevelCategoryGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetTopLevelCategoryGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetTopLevelCategoryGuidOk() (*string, bool)

GetTopLevelCategoryGuidOk returns a tuple with the TopLevelCategoryGuid 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 (*SpendingPlanIterationItemResponse) GetTransactionGuids added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetTransactionGuids() []*string

GetTransactionGuids returns the TransactionGuids field value if set, zero value otherwise.

func (*SpendingPlanIterationItemResponse) GetTransactionGuidsOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetTransactionGuidsOk() ([]*string, bool)

GetTransactionGuidsOk returns a tuple with the TransactionGuids field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationItemResponse) GetUpdatedAt added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetUpdatedAtOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SpendingPlanIterationItemResponse) GetUserGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationItemResponse) GetUserGuidOk added in v0.17.0

func (o *SpendingPlanIterationItemResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*SpendingPlanIterationItemResponse) HasActualAmount added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasActualAmount() bool

HasActualAmount returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasCategoryGuid() bool

HasCategoryGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasCreatedAt added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasGuid added in v0.17.0

HasGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasItemType added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasItemType() bool

HasItemType returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasPlannedAmount added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasPlannedAmount() bool

HasPlannedAmount returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasScheduledPaymentGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasScheduledPaymentGuid() bool

HasScheduledPaymentGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasSpendingPlanIterationGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasSpendingPlanIterationGuid() bool

HasSpendingPlanIterationGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasTopLevelCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasTopLevelCategoryGuid() bool

HasTopLevelCategoryGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasTransactionGuids added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasTransactionGuids() bool

HasTransactionGuids returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasUpdatedAt added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*SpendingPlanIterationItemResponse) HasUserGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (SpendingPlanIterationItemResponse) MarshalJSON added in v0.17.0

func (o SpendingPlanIterationItemResponse) MarshalJSON() ([]byte, error)

func (*SpendingPlanIterationItemResponse) SetActualAmount added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetActualAmount(v float32)

SetActualAmount gets a reference to the given NullableFloat32 and assigns it to the ActualAmount field.

func (*SpendingPlanIterationItemResponse) SetActualAmountNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetActualAmountNil()

SetActualAmountNil sets the value for ActualAmount to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetCategoryGuid(v string)

SetCategoryGuid gets a reference to the given NullableString and assigns it to the CategoryGuid field.

func (*SpendingPlanIterationItemResponse) SetCategoryGuidNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetCategoryGuidNil()

SetCategoryGuidNil sets the value for CategoryGuid to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetCreatedAt added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*SpendingPlanIterationItemResponse) SetCreatedAtNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetGuid added in v0.17.0

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*SpendingPlanIterationItemResponse) SetGuidNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetItemType added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetItemType(v string)

SetItemType gets a reference to the given NullableString and assigns it to the ItemType field.

func (*SpendingPlanIterationItemResponse) SetItemTypeNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetItemTypeNil()

SetItemTypeNil sets the value for ItemType to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetPlannedAmount added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetPlannedAmount(v float32)

SetPlannedAmount gets a reference to the given NullableFloat32 and assigns it to the PlannedAmount field.

func (*SpendingPlanIterationItemResponse) SetPlannedAmountNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetPlannedAmountNil()

SetPlannedAmountNil sets the value for PlannedAmount to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetScheduledPaymentGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetScheduledPaymentGuid(v string)

SetScheduledPaymentGuid gets a reference to the given NullableString and assigns it to the ScheduledPaymentGuid field.

func (*SpendingPlanIterationItemResponse) SetScheduledPaymentGuidNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetScheduledPaymentGuidNil()

SetScheduledPaymentGuidNil sets the value for ScheduledPaymentGuid to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetSpendingPlanIterationGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetSpendingPlanIterationGuid(v string)

SetSpendingPlanIterationGuid gets a reference to the given NullableString and assigns it to the SpendingPlanIterationGuid field.

func (*SpendingPlanIterationItemResponse) SetSpendingPlanIterationGuidNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetSpendingPlanIterationGuidNil()

SetSpendingPlanIterationGuidNil sets the value for SpendingPlanIterationGuid to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetTopLevelCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetTopLevelCategoryGuid(v string)

SetTopLevelCategoryGuid gets a reference to the given NullableString and assigns it to the TopLevelCategoryGuid field.

func (*SpendingPlanIterationItemResponse) SetTopLevelCategoryGuidNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetTopLevelCategoryGuidNil()

SetTopLevelCategoryGuidNil sets the value for TopLevelCategoryGuid to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetTransactionGuids added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetTransactionGuids(v []*string)

SetTransactionGuids gets a reference to the given []*string and assigns it to the TransactionGuids field.

func (*SpendingPlanIterationItemResponse) SetUpdatedAt added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.

func (*SpendingPlanIterationItemResponse) SetUpdatedAtNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*SpendingPlanIterationItemResponse) SetUserGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*SpendingPlanIterationItemResponse) SetUserGuidNil added in v0.17.0

func (o *SpendingPlanIterationItemResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (SpendingPlanIterationItemResponse) ToMap added in v0.17.1

func (o SpendingPlanIterationItemResponse) ToMap() (map[string]interface{}, error)

func (*SpendingPlanIterationItemResponse) UnsetActualAmount added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetActualAmount()

UnsetActualAmount ensures that no value is present for ActualAmount, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetCategoryGuid()

UnsetCategoryGuid ensures that no value is present for CategoryGuid, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetCreatedAt added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetItemType added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetItemType()

UnsetItemType ensures that no value is present for ItemType, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetPlannedAmount added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetPlannedAmount()

UnsetPlannedAmount ensures that no value is present for PlannedAmount, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetScheduledPaymentGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetScheduledPaymentGuid()

UnsetScheduledPaymentGuid ensures that no value is present for ScheduledPaymentGuid, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetSpendingPlanIterationGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetSpendingPlanIterationGuid()

UnsetSpendingPlanIterationGuid ensures that no value is present for SpendingPlanIterationGuid, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetTopLevelCategoryGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetTopLevelCategoryGuid()

UnsetTopLevelCategoryGuid ensures that no value is present for TopLevelCategoryGuid, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetUpdatedAt added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*SpendingPlanIterationItemResponse) UnsetUserGuid added in v0.17.0

func (o *SpendingPlanIterationItemResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type SpendingPlanIterationItemsResponseBody added in v0.17.0

type SpendingPlanIterationItemsResponseBody struct {
	IterationItems []SpendingPlanIterationItemResponse `json:"iteration_items,omitempty"`
	Pagination     *PaginationResponse                 `json:"pagination,omitempty"`
}

SpendingPlanIterationItemsResponseBody struct for SpendingPlanIterationItemsResponseBody

func NewSpendingPlanIterationItemsResponseBody added in v0.17.0

func NewSpendingPlanIterationItemsResponseBody() *SpendingPlanIterationItemsResponseBody

NewSpendingPlanIterationItemsResponseBody instantiates a new SpendingPlanIterationItemsResponseBody 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 NewSpendingPlanIterationItemsResponseBodyWithDefaults added in v0.17.0

func NewSpendingPlanIterationItemsResponseBodyWithDefaults() *SpendingPlanIterationItemsResponseBody

NewSpendingPlanIterationItemsResponseBodyWithDefaults instantiates a new SpendingPlanIterationItemsResponseBody 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 (*SpendingPlanIterationItemsResponseBody) GetIterationItems added in v0.17.0

GetIterationItems returns the IterationItems field value if set, zero value otherwise.

func (*SpendingPlanIterationItemsResponseBody) GetIterationItemsOk added in v0.17.0

GetIterationItemsOk returns a tuple with the IterationItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationItemsResponseBody) GetPagination added in v0.17.0

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*SpendingPlanIterationItemsResponseBody) GetPaginationOk added in v0.17.0

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationItemsResponseBody) HasIterationItems added in v0.17.0

func (o *SpendingPlanIterationItemsResponseBody) HasIterationItems() bool

HasIterationItems returns a boolean if a field has been set.

func (*SpendingPlanIterationItemsResponseBody) HasPagination added in v0.17.0

func (o *SpendingPlanIterationItemsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (SpendingPlanIterationItemsResponseBody) MarshalJSON added in v0.17.0

func (o SpendingPlanIterationItemsResponseBody) MarshalJSON() ([]byte, error)

func (*SpendingPlanIterationItemsResponseBody) SetIterationItems added in v0.17.0

SetIterationItems gets a reference to the given []SpendingPlanIterationItemResponse and assigns it to the IterationItems field.

func (*SpendingPlanIterationItemsResponseBody) SetPagination added in v0.17.0

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (SpendingPlanIterationItemsResponseBody) ToMap added in v0.17.1

func (o SpendingPlanIterationItemsResponseBody) ToMap() (map[string]interface{}, error)

type SpendingPlanIterationResponse added in v0.17.0

type SpendingPlanIterationResponse struct {
	CreatedAt        NullableString `json:"created_at,omitempty"`
	EndOn            NullableString `json:"end_on,omitempty"`
	Guid             NullableString `json:"guid,omitempty"`
	IterationNumber  NullableInt32  `json:"iteration_number,omitempty"`
	SpendingPlanGuid NullableString `json:"spending_plan_guid,omitempty"`
	StartOn          NullableString `json:"start_on,omitempty"`
	UpdatedAt        NullableString `json:"updated_at,omitempty"`
	UserGuid         NullableString `json:"user_guid,omitempty"`
}

SpendingPlanIterationResponse struct for SpendingPlanIterationResponse

func NewSpendingPlanIterationResponse added in v0.17.0

func NewSpendingPlanIterationResponse() *SpendingPlanIterationResponse

NewSpendingPlanIterationResponse instantiates a new SpendingPlanIterationResponse 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 NewSpendingPlanIterationResponseWithDefaults added in v0.17.0

func NewSpendingPlanIterationResponseWithDefaults() *SpendingPlanIterationResponse

NewSpendingPlanIterationResponseWithDefaults instantiates a new SpendingPlanIterationResponse 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 (*SpendingPlanIterationResponse) GetCreatedAt added in v0.17.0

func (o *SpendingPlanIterationResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationResponse) GetCreatedAtOk added in v0.17.0

func (o *SpendingPlanIterationResponse) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SpendingPlanIterationResponse) GetEndOn added in v0.17.0

func (o *SpendingPlanIterationResponse) GetEndOn() string

GetEndOn returns the EndOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationResponse) GetEndOnOk added in v0.17.0

func (o *SpendingPlanIterationResponse) GetEndOnOk() (*string, bool)

GetEndOnOk returns a tuple with the EndOn 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 (*SpendingPlanIterationResponse) GetGuid added in v0.17.0

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationResponse) GetGuidOk added in v0.17.0

func (o *SpendingPlanIterationResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*SpendingPlanIterationResponse) GetIterationNumber added in v0.17.0

func (o *SpendingPlanIterationResponse) GetIterationNumber() int32

GetIterationNumber returns the IterationNumber field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationResponse) GetIterationNumberOk added in v0.17.0

func (o *SpendingPlanIterationResponse) GetIterationNumberOk() (*int32, bool)

GetIterationNumberOk returns a tuple with the IterationNumber 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 (*SpendingPlanIterationResponse) GetSpendingPlanGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) GetSpendingPlanGuid() string

GetSpendingPlanGuid returns the SpendingPlanGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationResponse) GetSpendingPlanGuidOk added in v0.17.0

func (o *SpendingPlanIterationResponse) GetSpendingPlanGuidOk() (*string, bool)

GetSpendingPlanGuidOk returns a tuple with the SpendingPlanGuid 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 (*SpendingPlanIterationResponse) GetStartOn added in v0.17.0

func (o *SpendingPlanIterationResponse) GetStartOn() string

GetStartOn returns the StartOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationResponse) GetStartOnOk added in v0.17.0

func (o *SpendingPlanIterationResponse) GetStartOnOk() (*string, bool)

GetStartOnOk returns a tuple with the StartOn 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 (*SpendingPlanIterationResponse) GetUpdatedAt added in v0.17.0

func (o *SpendingPlanIterationResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationResponse) GetUpdatedAtOk added in v0.17.0

func (o *SpendingPlanIterationResponse) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SpendingPlanIterationResponse) GetUserGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanIterationResponse) GetUserGuidOk added in v0.17.0

func (o *SpendingPlanIterationResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*SpendingPlanIterationResponse) HasCreatedAt added in v0.17.0

func (o *SpendingPlanIterationResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SpendingPlanIterationResponse) HasEndOn added in v0.17.0

func (o *SpendingPlanIterationResponse) HasEndOn() bool

HasEndOn returns a boolean if a field has been set.

func (*SpendingPlanIterationResponse) HasGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationResponse) HasIterationNumber added in v0.17.0

func (o *SpendingPlanIterationResponse) HasIterationNumber() bool

HasIterationNumber returns a boolean if a field has been set.

func (*SpendingPlanIterationResponse) HasSpendingPlanGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) HasSpendingPlanGuid() bool

HasSpendingPlanGuid returns a boolean if a field has been set.

func (*SpendingPlanIterationResponse) HasStartOn added in v0.17.0

func (o *SpendingPlanIterationResponse) HasStartOn() bool

HasStartOn returns a boolean if a field has been set.

func (*SpendingPlanIterationResponse) HasUpdatedAt added in v0.17.0

func (o *SpendingPlanIterationResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*SpendingPlanIterationResponse) HasUserGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (SpendingPlanIterationResponse) MarshalJSON added in v0.17.0

func (o SpendingPlanIterationResponse) MarshalJSON() ([]byte, error)

func (*SpendingPlanIterationResponse) SetCreatedAt added in v0.17.0

func (o *SpendingPlanIterationResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*SpendingPlanIterationResponse) SetCreatedAtNil added in v0.17.0

func (o *SpendingPlanIterationResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*SpendingPlanIterationResponse) SetEndOn added in v0.17.0

func (o *SpendingPlanIterationResponse) SetEndOn(v string)

SetEndOn gets a reference to the given NullableString and assigns it to the EndOn field.

func (*SpendingPlanIterationResponse) SetEndOnNil added in v0.17.0

func (o *SpendingPlanIterationResponse) SetEndOnNil()

SetEndOnNil sets the value for EndOn to be an explicit nil

func (*SpendingPlanIterationResponse) SetGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*SpendingPlanIterationResponse) SetGuidNil added in v0.17.0

func (o *SpendingPlanIterationResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*SpendingPlanIterationResponse) SetIterationNumber added in v0.17.0

func (o *SpendingPlanIterationResponse) SetIterationNumber(v int32)

SetIterationNumber gets a reference to the given NullableInt32 and assigns it to the IterationNumber field.

func (*SpendingPlanIterationResponse) SetIterationNumberNil added in v0.17.0

func (o *SpendingPlanIterationResponse) SetIterationNumberNil()

SetIterationNumberNil sets the value for IterationNumber to be an explicit nil

func (*SpendingPlanIterationResponse) SetSpendingPlanGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) SetSpendingPlanGuid(v string)

SetSpendingPlanGuid gets a reference to the given NullableString and assigns it to the SpendingPlanGuid field.

func (*SpendingPlanIterationResponse) SetSpendingPlanGuidNil added in v0.17.0

func (o *SpendingPlanIterationResponse) SetSpendingPlanGuidNil()

SetSpendingPlanGuidNil sets the value for SpendingPlanGuid to be an explicit nil

func (*SpendingPlanIterationResponse) SetStartOn added in v0.17.0

func (o *SpendingPlanIterationResponse) SetStartOn(v string)

SetStartOn gets a reference to the given NullableString and assigns it to the StartOn field.

func (*SpendingPlanIterationResponse) SetStartOnNil added in v0.17.0

func (o *SpendingPlanIterationResponse) SetStartOnNil()

SetStartOnNil sets the value for StartOn to be an explicit nil

func (*SpendingPlanIterationResponse) SetUpdatedAt added in v0.17.0

func (o *SpendingPlanIterationResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.

func (*SpendingPlanIterationResponse) SetUpdatedAtNil added in v0.17.0

func (o *SpendingPlanIterationResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*SpendingPlanIterationResponse) SetUserGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*SpendingPlanIterationResponse) SetUserGuidNil added in v0.17.0

func (o *SpendingPlanIterationResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (SpendingPlanIterationResponse) ToMap added in v0.17.1

func (o SpendingPlanIterationResponse) ToMap() (map[string]interface{}, error)

func (*SpendingPlanIterationResponse) UnsetCreatedAt added in v0.17.0

func (o *SpendingPlanIterationResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*SpendingPlanIterationResponse) UnsetEndOn added in v0.17.0

func (o *SpendingPlanIterationResponse) UnsetEndOn()

UnsetEndOn ensures that no value is present for EndOn, not even an explicit nil

func (*SpendingPlanIterationResponse) UnsetGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*SpendingPlanIterationResponse) UnsetIterationNumber added in v0.17.0

func (o *SpendingPlanIterationResponse) UnsetIterationNumber()

UnsetIterationNumber ensures that no value is present for IterationNumber, not even an explicit nil

func (*SpendingPlanIterationResponse) UnsetSpendingPlanGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) UnsetSpendingPlanGuid()

UnsetSpendingPlanGuid ensures that no value is present for SpendingPlanGuid, not even an explicit nil

func (*SpendingPlanIterationResponse) UnsetStartOn added in v0.17.0

func (o *SpendingPlanIterationResponse) UnsetStartOn()

UnsetStartOn ensures that no value is present for StartOn, not even an explicit nil

func (*SpendingPlanIterationResponse) UnsetUpdatedAt added in v0.17.0

func (o *SpendingPlanIterationResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*SpendingPlanIterationResponse) UnsetUserGuid added in v0.17.0

func (o *SpendingPlanIterationResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type SpendingPlanIterationsResponse added in v0.17.0

type SpendingPlanIterationsResponse struct {
	Iterations []SpendingPlanIterationResponse `json:"iterations,omitempty"`
	Pagination *PaginationResponse             `json:"pagination,omitempty"`
}

SpendingPlanIterationsResponse struct for SpendingPlanIterationsResponse

func NewSpendingPlanIterationsResponse added in v0.17.0

func NewSpendingPlanIterationsResponse() *SpendingPlanIterationsResponse

NewSpendingPlanIterationsResponse instantiates a new SpendingPlanIterationsResponse 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 NewSpendingPlanIterationsResponseWithDefaults added in v0.17.0

func NewSpendingPlanIterationsResponseWithDefaults() *SpendingPlanIterationsResponse

NewSpendingPlanIterationsResponseWithDefaults instantiates a new SpendingPlanIterationsResponse 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 (*SpendingPlanIterationsResponse) GetIterations added in v0.17.0

GetIterations returns the Iterations field value if set, zero value otherwise.

func (*SpendingPlanIterationsResponse) GetIterationsOk added in v0.17.0

GetIterationsOk returns a tuple with the Iterations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationsResponse) GetPagination added in v0.17.0

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*SpendingPlanIterationsResponse) GetPaginationOk added in v0.17.0

func (o *SpendingPlanIterationsResponse) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlanIterationsResponse) HasIterations added in v0.17.0

func (o *SpendingPlanIterationsResponse) HasIterations() bool

HasIterations returns a boolean if a field has been set.

func (*SpendingPlanIterationsResponse) HasPagination added in v0.17.0

func (o *SpendingPlanIterationsResponse) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (SpendingPlanIterationsResponse) MarshalJSON added in v0.17.0

func (o SpendingPlanIterationsResponse) MarshalJSON() ([]byte, error)

func (*SpendingPlanIterationsResponse) SetIterations added in v0.17.0

SetIterations gets a reference to the given []SpendingPlanIterationResponse and assigns it to the Iterations field.

func (*SpendingPlanIterationsResponse) SetPagination added in v0.17.0

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (SpendingPlanIterationsResponse) ToMap added in v0.17.1

func (o SpendingPlanIterationsResponse) ToMap() (map[string]interface{}, error)

type SpendingPlanResponse added in v0.17.0

type SpendingPlanResponse struct {
	CreatedAt              NullableString `json:"created_at,omitempty"`
	CurrentIterationNumber NullableInt32  `json:"current_iteration_number,omitempty"`
	Guid                   NullableString `json:"guid,omitempty"`
	UpdatedAt              NullableString `json:"updated_at,omitempty"`
	UserGuid               NullableString `json:"user_guid,omitempty"`
}

SpendingPlanResponse struct for SpendingPlanResponse

func NewSpendingPlanResponse added in v0.17.0

func NewSpendingPlanResponse() *SpendingPlanResponse

NewSpendingPlanResponse instantiates a new SpendingPlanResponse 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 NewSpendingPlanResponseWithDefaults added in v0.17.0

func NewSpendingPlanResponseWithDefaults() *SpendingPlanResponse

NewSpendingPlanResponseWithDefaults instantiates a new SpendingPlanResponse 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 (*SpendingPlanResponse) GetCreatedAt added in v0.17.0

func (o *SpendingPlanResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanResponse) GetCreatedAtOk added in v0.17.0

func (o *SpendingPlanResponse) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SpendingPlanResponse) GetCurrentIterationNumber added in v0.17.0

func (o *SpendingPlanResponse) GetCurrentIterationNumber() int32

GetCurrentIterationNumber returns the CurrentIterationNumber field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanResponse) GetCurrentIterationNumberOk added in v0.17.0

func (o *SpendingPlanResponse) GetCurrentIterationNumberOk() (*int32, bool)

GetCurrentIterationNumberOk returns a tuple with the CurrentIterationNumber 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 (*SpendingPlanResponse) GetGuid added in v0.17.0

func (o *SpendingPlanResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanResponse) GetGuidOk added in v0.17.0

func (o *SpendingPlanResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*SpendingPlanResponse) GetUpdatedAt added in v0.17.0

func (o *SpendingPlanResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanResponse) GetUpdatedAtOk added in v0.17.0

func (o *SpendingPlanResponse) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SpendingPlanResponse) GetUserGuid added in v0.17.0

func (o *SpendingPlanResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SpendingPlanResponse) GetUserGuidOk added in v0.17.0

func (o *SpendingPlanResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*SpendingPlanResponse) HasCreatedAt added in v0.17.0

func (o *SpendingPlanResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SpendingPlanResponse) HasCurrentIterationNumber added in v0.17.0

func (o *SpendingPlanResponse) HasCurrentIterationNumber() bool

HasCurrentIterationNumber returns a boolean if a field has been set.

func (*SpendingPlanResponse) HasGuid added in v0.17.0

func (o *SpendingPlanResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*SpendingPlanResponse) HasUpdatedAt added in v0.17.0

func (o *SpendingPlanResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*SpendingPlanResponse) HasUserGuid added in v0.17.0

func (o *SpendingPlanResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (SpendingPlanResponse) MarshalJSON added in v0.17.0

func (o SpendingPlanResponse) MarshalJSON() ([]byte, error)

func (*SpendingPlanResponse) SetCreatedAt added in v0.17.0

func (o *SpendingPlanResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*SpendingPlanResponse) SetCreatedAtNil added in v0.17.0

func (o *SpendingPlanResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*SpendingPlanResponse) SetCurrentIterationNumber added in v0.17.0

func (o *SpendingPlanResponse) SetCurrentIterationNumber(v int32)

SetCurrentIterationNumber gets a reference to the given NullableInt32 and assigns it to the CurrentIterationNumber field.

func (*SpendingPlanResponse) SetCurrentIterationNumberNil added in v0.17.0

func (o *SpendingPlanResponse) SetCurrentIterationNumberNil()

SetCurrentIterationNumberNil sets the value for CurrentIterationNumber to be an explicit nil

func (*SpendingPlanResponse) SetGuid added in v0.17.0

func (o *SpendingPlanResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*SpendingPlanResponse) SetGuidNil added in v0.17.0

func (o *SpendingPlanResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*SpendingPlanResponse) SetUpdatedAt added in v0.17.0

func (o *SpendingPlanResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.

func (*SpendingPlanResponse) SetUpdatedAtNil added in v0.17.0

func (o *SpendingPlanResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*SpendingPlanResponse) SetUserGuid added in v0.17.0

func (o *SpendingPlanResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*SpendingPlanResponse) SetUserGuidNil added in v0.17.0

func (o *SpendingPlanResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (SpendingPlanResponse) ToMap added in v0.17.1

func (o SpendingPlanResponse) ToMap() (map[string]interface{}, error)

func (*SpendingPlanResponse) UnsetCreatedAt added in v0.17.0

func (o *SpendingPlanResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*SpendingPlanResponse) UnsetCurrentIterationNumber added in v0.17.0

func (o *SpendingPlanResponse) UnsetCurrentIterationNumber()

UnsetCurrentIterationNumber ensures that no value is present for CurrentIterationNumber, not even an explicit nil

func (*SpendingPlanResponse) UnsetGuid added in v0.17.0

func (o *SpendingPlanResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*SpendingPlanResponse) UnsetUpdatedAt added in v0.17.0

func (o *SpendingPlanResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*SpendingPlanResponse) UnsetUserGuid added in v0.17.0

func (o *SpendingPlanResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type SpendingPlansResponseBody added in v0.17.0

type SpendingPlansResponseBody struct {
	SpendingPlans []SpendingPlanResponse `json:"spending_plans,omitempty"`
	Pagination    *PaginationResponse    `json:"pagination,omitempty"`
}

SpendingPlansResponseBody struct for SpendingPlansResponseBody

func NewSpendingPlansResponseBody added in v0.17.0

func NewSpendingPlansResponseBody() *SpendingPlansResponseBody

NewSpendingPlansResponseBody instantiates a new SpendingPlansResponseBody 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 NewSpendingPlansResponseBodyWithDefaults added in v0.17.0

func NewSpendingPlansResponseBodyWithDefaults() *SpendingPlansResponseBody

NewSpendingPlansResponseBodyWithDefaults instantiates a new SpendingPlansResponseBody 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 (*SpendingPlansResponseBody) GetPagination added in v0.17.0

func (o *SpendingPlansResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*SpendingPlansResponseBody) GetPaginationOk added in v0.17.0

func (o *SpendingPlansResponseBody) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlansResponseBody) GetSpendingPlans added in v0.18.0

func (o *SpendingPlansResponseBody) GetSpendingPlans() []SpendingPlanResponse

GetSpendingPlans returns the SpendingPlans field value if set, zero value otherwise.

func (*SpendingPlansResponseBody) GetSpendingPlansOk added in v0.18.0

func (o *SpendingPlansResponseBody) GetSpendingPlansOk() ([]SpendingPlanResponse, bool)

GetSpendingPlansOk returns a tuple with the SpendingPlans field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SpendingPlansResponseBody) HasPagination added in v0.17.0

func (o *SpendingPlansResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*SpendingPlansResponseBody) HasSpendingPlans added in v0.18.0

func (o *SpendingPlansResponseBody) HasSpendingPlans() bool

HasSpendingPlans returns a boolean if a field has been set.

func (SpendingPlansResponseBody) MarshalJSON added in v0.17.0

func (o SpendingPlansResponseBody) MarshalJSON() ([]byte, error)

func (*SpendingPlansResponseBody) SetPagination added in v0.17.0

func (o *SpendingPlansResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*SpendingPlansResponseBody) SetSpendingPlans added in v0.18.0

func (o *SpendingPlansResponseBody) SetSpendingPlans(v []SpendingPlanResponse)

SetSpendingPlans gets a reference to the given []SpendingPlanResponse and assigns it to the SpendingPlans field.

func (SpendingPlansResponseBody) ToMap added in v0.17.1

func (o SpendingPlansResponseBody) ToMap() (map[string]interface{}, error)

type StatementResponse

type StatementResponse struct {
	AccountGuid NullableString `json:"account_guid,omitempty"`
	ContentHash NullableString `json:"content_hash,omitempty"`
	CreatedAt   NullableString `json:"created_at,omitempty"`
	Guid        NullableString `json:"guid,omitempty"`
	MemberGuid  NullableString `json:"member_guid,omitempty"`
	UpdatedAt   NullableString `json:"updated_at,omitempty"`
	Uri         NullableString `json:"uri,omitempty"`
	UserGuid    NullableString `json:"user_guid,omitempty"`
}

StatementResponse struct for StatementResponse

func NewStatementResponse

func NewStatementResponse() *StatementResponse

NewStatementResponse instantiates a new StatementResponse 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 NewStatementResponseWithDefaults

func NewStatementResponseWithDefaults() *StatementResponse

NewStatementResponseWithDefaults instantiates a new StatementResponse 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 (*StatementResponse) GetAccountGuid

func (o *StatementResponse) GetAccountGuid() string

GetAccountGuid returns the AccountGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StatementResponse) GetAccountGuidOk

func (o *StatementResponse) GetAccountGuidOk() (*string, bool)

GetAccountGuidOk returns a tuple with the AccountGuid 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 (*StatementResponse) GetContentHash

func (o *StatementResponse) GetContentHash() string

GetContentHash returns the ContentHash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StatementResponse) GetContentHashOk

func (o *StatementResponse) GetContentHashOk() (*string, bool)

GetContentHashOk returns a tuple with the ContentHash 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 (*StatementResponse) GetCreatedAt

func (o *StatementResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StatementResponse) GetCreatedAtOk

func (o *StatementResponse) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StatementResponse) GetGuid

func (o *StatementResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StatementResponse) GetGuidOk

func (o *StatementResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*StatementResponse) GetMemberGuid

func (o *StatementResponse) GetMemberGuid() string

GetMemberGuid returns the MemberGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StatementResponse) GetMemberGuidOk

func (o *StatementResponse) GetMemberGuidOk() (*string, bool)

GetMemberGuidOk returns a tuple with the MemberGuid 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 (*StatementResponse) GetUpdatedAt

func (o *StatementResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StatementResponse) GetUpdatedAtOk

func (o *StatementResponse) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StatementResponse) GetUri

func (o *StatementResponse) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StatementResponse) GetUriOk

func (o *StatementResponse) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri 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 (*StatementResponse) GetUserGuid

func (o *StatementResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StatementResponse) GetUserGuidOk

func (o *StatementResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*StatementResponse) HasAccountGuid

func (o *StatementResponse) HasAccountGuid() bool

HasAccountGuid returns a boolean if a field has been set.

func (*StatementResponse) HasContentHash

func (o *StatementResponse) HasContentHash() bool

HasContentHash returns a boolean if a field has been set.

func (*StatementResponse) HasCreatedAt

func (o *StatementResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*StatementResponse) HasGuid

func (o *StatementResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*StatementResponse) HasMemberGuid

func (o *StatementResponse) HasMemberGuid() bool

HasMemberGuid returns a boolean if a field has been set.

func (*StatementResponse) HasUpdatedAt

func (o *StatementResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*StatementResponse) HasUri

func (o *StatementResponse) HasUri() bool

HasUri returns a boolean if a field has been set.

func (*StatementResponse) HasUserGuid

func (o *StatementResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (StatementResponse) MarshalJSON

func (o StatementResponse) MarshalJSON() ([]byte, error)

func (*StatementResponse) SetAccountGuid

func (o *StatementResponse) SetAccountGuid(v string)

SetAccountGuid gets a reference to the given NullableString and assigns it to the AccountGuid field.

func (*StatementResponse) SetAccountGuidNil added in v0.4.1

func (o *StatementResponse) SetAccountGuidNil()

SetAccountGuidNil sets the value for AccountGuid to be an explicit nil

func (*StatementResponse) SetContentHash

func (o *StatementResponse) SetContentHash(v string)

SetContentHash gets a reference to the given NullableString and assigns it to the ContentHash field.

func (*StatementResponse) SetContentHashNil

func (o *StatementResponse) SetContentHashNil()

SetContentHashNil sets the value for ContentHash to be an explicit nil

func (*StatementResponse) SetCreatedAt

func (o *StatementResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*StatementResponse) SetCreatedAtNil

func (o *StatementResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*StatementResponse) SetGuid

func (o *StatementResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*StatementResponse) SetGuidNil added in v0.4.1

func (o *StatementResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*StatementResponse) SetMemberGuid

func (o *StatementResponse) SetMemberGuid(v string)

SetMemberGuid gets a reference to the given NullableString and assigns it to the MemberGuid field.

func (*StatementResponse) SetMemberGuidNil added in v0.4.1

func (o *StatementResponse) SetMemberGuidNil()

SetMemberGuidNil sets the value for MemberGuid to be an explicit nil

func (*StatementResponse) SetUpdatedAt

func (o *StatementResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.

func (*StatementResponse) SetUpdatedAtNil

func (o *StatementResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*StatementResponse) SetUri

func (o *StatementResponse) SetUri(v string)

SetUri gets a reference to the given NullableString and assigns it to the Uri field.

func (*StatementResponse) SetUriNil

func (o *StatementResponse) SetUriNil()

SetUriNil sets the value for Uri to be an explicit nil

func (*StatementResponse) SetUserGuid

func (o *StatementResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*StatementResponse) SetUserGuidNil added in v0.4.1

func (o *StatementResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (StatementResponse) ToMap added in v0.17.1

func (o StatementResponse) ToMap() (map[string]interface{}, error)

func (*StatementResponse) UnsetAccountGuid added in v0.4.1

func (o *StatementResponse) UnsetAccountGuid()

UnsetAccountGuid ensures that no value is present for AccountGuid, not even an explicit nil

func (*StatementResponse) UnsetContentHash

func (o *StatementResponse) UnsetContentHash()

UnsetContentHash ensures that no value is present for ContentHash, not even an explicit nil

func (*StatementResponse) UnsetCreatedAt

func (o *StatementResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*StatementResponse) UnsetGuid added in v0.4.1

func (o *StatementResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*StatementResponse) UnsetMemberGuid added in v0.4.1

func (o *StatementResponse) UnsetMemberGuid()

UnsetMemberGuid ensures that no value is present for MemberGuid, not even an explicit nil

func (*StatementResponse) UnsetUpdatedAt

func (o *StatementResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*StatementResponse) UnsetUri

func (o *StatementResponse) UnsetUri()

UnsetUri ensures that no value is present for Uri, not even an explicit nil

func (*StatementResponse) UnsetUserGuid added in v0.4.1

func (o *StatementResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type StatementResponseBody

type StatementResponseBody struct {
	Statement *StatementResponse `json:"statement,omitempty"`
}

StatementResponseBody struct for StatementResponseBody

func NewStatementResponseBody

func NewStatementResponseBody() *StatementResponseBody

NewStatementResponseBody instantiates a new StatementResponseBody 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 NewStatementResponseBodyWithDefaults

func NewStatementResponseBodyWithDefaults() *StatementResponseBody

NewStatementResponseBodyWithDefaults instantiates a new StatementResponseBody 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 (*StatementResponseBody) GetStatement

func (o *StatementResponseBody) GetStatement() StatementResponse

GetStatement returns the Statement field value if set, zero value otherwise.

func (*StatementResponseBody) GetStatementOk

func (o *StatementResponseBody) GetStatementOk() (*StatementResponse, bool)

GetStatementOk returns a tuple with the Statement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatementResponseBody) HasStatement

func (o *StatementResponseBody) HasStatement() bool

HasStatement returns a boolean if a field has been set.

func (StatementResponseBody) MarshalJSON

func (o StatementResponseBody) MarshalJSON() ([]byte, error)

func (*StatementResponseBody) SetStatement

func (o *StatementResponseBody) SetStatement(v StatementResponse)

SetStatement gets a reference to the given StatementResponse and assigns it to the Statement field.

func (StatementResponseBody) ToMap added in v0.17.1

func (o StatementResponseBody) ToMap() (map[string]interface{}, error)

type StatementsResponseBody

type StatementsResponseBody struct {
	Pagination *PaginationResponse `json:"pagination,omitempty"`
	Statements []StatementResponse `json:"statements,omitempty"`
}

StatementsResponseBody struct for StatementsResponseBody

func NewStatementsResponseBody

func NewStatementsResponseBody() *StatementsResponseBody

NewStatementsResponseBody instantiates a new StatementsResponseBody 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 NewStatementsResponseBodyWithDefaults

func NewStatementsResponseBodyWithDefaults() *StatementsResponseBody

NewStatementsResponseBodyWithDefaults instantiates a new StatementsResponseBody 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 (*StatementsResponseBody) GetPagination

func (o *StatementsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*StatementsResponseBody) GetPaginationOk

func (o *StatementsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatementsResponseBody) GetStatements

func (o *StatementsResponseBody) GetStatements() []StatementResponse

GetStatements returns the Statements field value if set, zero value otherwise.

func (*StatementsResponseBody) GetStatementsOk

func (o *StatementsResponseBody) GetStatementsOk() ([]StatementResponse, bool)

GetStatementsOk returns a tuple with the Statements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StatementsResponseBody) HasPagination

func (o *StatementsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*StatementsResponseBody) HasStatements

func (o *StatementsResponseBody) HasStatements() bool

HasStatements returns a boolean if a field has been set.

func (StatementsResponseBody) MarshalJSON

func (o StatementsResponseBody) MarshalJSON() ([]byte, error)

func (*StatementsResponseBody) SetPagination

func (o *StatementsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*StatementsResponseBody) SetStatements

func (o *StatementsResponseBody) SetStatements(v []StatementResponse)

SetStatements gets a reference to the given []StatementResponse and assigns it to the Statements field.

func (StatementsResponseBody) ToMap added in v0.17.1

func (o StatementsResponseBody) ToMap() (map[string]interface{}, error)

type TagCreateRequest

type TagCreateRequest struct {
	Name string `json:"name"`
}

TagCreateRequest struct for TagCreateRequest

func NewTagCreateRequest

func NewTagCreateRequest(name string) *TagCreateRequest

NewTagCreateRequest instantiates a new TagCreateRequest 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 NewTagCreateRequestWithDefaults

func NewTagCreateRequestWithDefaults() *TagCreateRequest

NewTagCreateRequestWithDefaults instantiates a new TagCreateRequest 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 (*TagCreateRequest) GetName

func (o *TagCreateRequest) GetName() string

GetName returns the Name field value

func (*TagCreateRequest) GetNameOk

func (o *TagCreateRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (TagCreateRequest) MarshalJSON

func (o TagCreateRequest) MarshalJSON() ([]byte, error)

func (*TagCreateRequest) SetName

func (o *TagCreateRequest) SetName(v string)

SetName sets field value

func (TagCreateRequest) ToMap added in v0.17.1

func (o TagCreateRequest) ToMap() (map[string]interface{}, error)

type TagCreateRequestBody

type TagCreateRequestBody struct {
	Tag *TagCreateRequest `json:"tag,omitempty"`
}

TagCreateRequestBody struct for TagCreateRequestBody

func NewTagCreateRequestBody

func NewTagCreateRequestBody() *TagCreateRequestBody

NewTagCreateRequestBody instantiates a new TagCreateRequestBody 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 NewTagCreateRequestBodyWithDefaults

func NewTagCreateRequestBodyWithDefaults() *TagCreateRequestBody

NewTagCreateRequestBodyWithDefaults instantiates a new TagCreateRequestBody 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 (*TagCreateRequestBody) GetTag

GetTag returns the Tag field value if set, zero value otherwise.

func (*TagCreateRequestBody) GetTagOk

func (o *TagCreateRequestBody) GetTagOk() (*TagCreateRequest, bool)

GetTagOk returns a tuple with the Tag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TagCreateRequestBody) HasTag

func (o *TagCreateRequestBody) HasTag() bool

HasTag returns a boolean if a field has been set.

func (TagCreateRequestBody) MarshalJSON

func (o TagCreateRequestBody) MarshalJSON() ([]byte, error)

func (*TagCreateRequestBody) SetTag

SetTag gets a reference to the given TagCreateRequest and assigns it to the Tag field.

func (TagCreateRequestBody) ToMap added in v0.17.1

func (o TagCreateRequestBody) ToMap() (map[string]interface{}, error)

type TagResponse

type TagResponse struct {
	Guid     NullableString `json:"guid,omitempty"`
	Name     NullableString `json:"name,omitempty"`
	UserGuid NullableString `json:"user_guid,omitempty"`
}

TagResponse struct for TagResponse

func NewTagResponse

func NewTagResponse() *TagResponse

NewTagResponse instantiates a new TagResponse 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 NewTagResponseWithDefaults

func NewTagResponseWithDefaults() *TagResponse

NewTagResponseWithDefaults instantiates a new TagResponse 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 (*TagResponse) GetGuid

func (o *TagResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TagResponse) GetGuidOk

func (o *TagResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*TagResponse) GetName

func (o *TagResponse) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TagResponse) GetNameOk

func (o *TagResponse) 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 (*TagResponse) GetUserGuid

func (o *TagResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TagResponse) GetUserGuidOk

func (o *TagResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*TagResponse) HasGuid

func (o *TagResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*TagResponse) HasName

func (o *TagResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*TagResponse) HasUserGuid

func (o *TagResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (TagResponse) MarshalJSON

func (o TagResponse) MarshalJSON() ([]byte, error)

func (*TagResponse) SetGuid

func (o *TagResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*TagResponse) SetGuidNil added in v0.4.1

func (o *TagResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*TagResponse) SetName

func (o *TagResponse) SetName(v string)

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*TagResponse) SetNameNil

func (o *TagResponse) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*TagResponse) SetUserGuid

func (o *TagResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*TagResponse) SetUserGuidNil added in v0.4.1

func (o *TagResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (TagResponse) ToMap added in v0.17.1

func (o TagResponse) ToMap() (map[string]interface{}, error)

func (*TagResponse) UnsetGuid added in v0.4.1

func (o *TagResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*TagResponse) UnsetName

func (o *TagResponse) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*TagResponse) UnsetUserGuid added in v0.4.1

func (o *TagResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type TagResponseBody

type TagResponseBody struct {
	Tag *TagResponse `json:"tag,omitempty"`
}

TagResponseBody struct for TagResponseBody

func NewTagResponseBody

func NewTagResponseBody() *TagResponseBody

NewTagResponseBody instantiates a new TagResponseBody 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 NewTagResponseBodyWithDefaults

func NewTagResponseBodyWithDefaults() *TagResponseBody

NewTagResponseBodyWithDefaults instantiates a new TagResponseBody 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 (*TagResponseBody) GetTag

func (o *TagResponseBody) GetTag() TagResponse

GetTag returns the Tag field value if set, zero value otherwise.

func (*TagResponseBody) GetTagOk

func (o *TagResponseBody) GetTagOk() (*TagResponse, bool)

GetTagOk returns a tuple with the Tag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TagResponseBody) HasTag

func (o *TagResponseBody) HasTag() bool

HasTag returns a boolean if a field has been set.

func (TagResponseBody) MarshalJSON

func (o TagResponseBody) MarshalJSON() ([]byte, error)

func (*TagResponseBody) SetTag

func (o *TagResponseBody) SetTag(v TagResponse)

SetTag gets a reference to the given TagResponse and assigns it to the Tag field.

func (TagResponseBody) ToMap added in v0.17.1

func (o TagResponseBody) ToMap() (map[string]interface{}, error)

type TagUpdateRequest

type TagUpdateRequest struct {
	Name string `json:"name"`
}

TagUpdateRequest struct for TagUpdateRequest

func NewTagUpdateRequest

func NewTagUpdateRequest(name string) *TagUpdateRequest

NewTagUpdateRequest instantiates a new TagUpdateRequest 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 NewTagUpdateRequestWithDefaults

func NewTagUpdateRequestWithDefaults() *TagUpdateRequest

NewTagUpdateRequestWithDefaults instantiates a new TagUpdateRequest 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 (*TagUpdateRequest) GetName

func (o *TagUpdateRequest) GetName() string

GetName returns the Name field value

func (*TagUpdateRequest) GetNameOk

func (o *TagUpdateRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (TagUpdateRequest) MarshalJSON

func (o TagUpdateRequest) MarshalJSON() ([]byte, error)

func (*TagUpdateRequest) SetName

func (o *TagUpdateRequest) SetName(v string)

SetName sets field value

func (TagUpdateRequest) ToMap added in v0.17.1

func (o TagUpdateRequest) ToMap() (map[string]interface{}, error)

type TagUpdateRequestBody

type TagUpdateRequestBody struct {
	Tag *TagUpdateRequest `json:"tag,omitempty"`
}

TagUpdateRequestBody struct for TagUpdateRequestBody

func NewTagUpdateRequestBody

func NewTagUpdateRequestBody() *TagUpdateRequestBody

NewTagUpdateRequestBody instantiates a new TagUpdateRequestBody 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 NewTagUpdateRequestBodyWithDefaults

func NewTagUpdateRequestBodyWithDefaults() *TagUpdateRequestBody

NewTagUpdateRequestBodyWithDefaults instantiates a new TagUpdateRequestBody 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 (*TagUpdateRequestBody) GetTag

GetTag returns the Tag field value if set, zero value otherwise.

func (*TagUpdateRequestBody) GetTagOk

func (o *TagUpdateRequestBody) GetTagOk() (*TagUpdateRequest, bool)

GetTagOk returns a tuple with the Tag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TagUpdateRequestBody) HasTag

func (o *TagUpdateRequestBody) HasTag() bool

HasTag returns a boolean if a field has been set.

func (TagUpdateRequestBody) MarshalJSON

func (o TagUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*TagUpdateRequestBody) SetTag

SetTag gets a reference to the given TagUpdateRequest and assigns it to the Tag field.

func (TagUpdateRequestBody) ToMap added in v0.17.1

func (o TagUpdateRequestBody) ToMap() (map[string]interface{}, error)

type TaggingCreateRequest

type TaggingCreateRequest struct {
	TagGuid         string `json:"tag_guid"`
	TransactionGuid string `json:"transaction_guid"`
}

TaggingCreateRequest struct for TaggingCreateRequest

func NewTaggingCreateRequest

func NewTaggingCreateRequest(tagGuid string, transactionGuid string) *TaggingCreateRequest

NewTaggingCreateRequest instantiates a new TaggingCreateRequest 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 NewTaggingCreateRequestWithDefaults

func NewTaggingCreateRequestWithDefaults() *TaggingCreateRequest

NewTaggingCreateRequestWithDefaults instantiates a new TaggingCreateRequest 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 (*TaggingCreateRequest) GetTagGuid

func (o *TaggingCreateRequest) GetTagGuid() string

GetTagGuid returns the TagGuid field value

func (*TaggingCreateRequest) GetTagGuidOk

func (o *TaggingCreateRequest) GetTagGuidOk() (*string, bool)

GetTagGuidOk returns a tuple with the TagGuid field value and a boolean to check if the value has been set.

func (*TaggingCreateRequest) GetTransactionGuid

func (o *TaggingCreateRequest) GetTransactionGuid() string

GetTransactionGuid returns the TransactionGuid field value

func (*TaggingCreateRequest) GetTransactionGuidOk

func (o *TaggingCreateRequest) GetTransactionGuidOk() (*string, bool)

GetTransactionGuidOk returns a tuple with the TransactionGuid field value and a boolean to check if the value has been set.

func (TaggingCreateRequest) MarshalJSON

func (o TaggingCreateRequest) MarshalJSON() ([]byte, error)

func (*TaggingCreateRequest) SetTagGuid

func (o *TaggingCreateRequest) SetTagGuid(v string)

SetTagGuid sets field value

func (*TaggingCreateRequest) SetTransactionGuid

func (o *TaggingCreateRequest) SetTransactionGuid(v string)

SetTransactionGuid sets field value

func (TaggingCreateRequest) ToMap added in v0.17.1

func (o TaggingCreateRequest) ToMap() (map[string]interface{}, error)

type TaggingCreateRequestBody

type TaggingCreateRequestBody struct {
	Tagging *TaggingCreateRequest `json:"tagging,omitempty"`
}

TaggingCreateRequestBody struct for TaggingCreateRequestBody

func NewTaggingCreateRequestBody

func NewTaggingCreateRequestBody() *TaggingCreateRequestBody

NewTaggingCreateRequestBody instantiates a new TaggingCreateRequestBody 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 NewTaggingCreateRequestBodyWithDefaults

func NewTaggingCreateRequestBodyWithDefaults() *TaggingCreateRequestBody

NewTaggingCreateRequestBodyWithDefaults instantiates a new TaggingCreateRequestBody 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 (*TaggingCreateRequestBody) GetTagging

GetTagging returns the Tagging field value if set, zero value otherwise.

func (*TaggingCreateRequestBody) GetTaggingOk

func (o *TaggingCreateRequestBody) GetTaggingOk() (*TaggingCreateRequest, bool)

GetTaggingOk returns a tuple with the Tagging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaggingCreateRequestBody) HasTagging

func (o *TaggingCreateRequestBody) HasTagging() bool

HasTagging returns a boolean if a field has been set.

func (TaggingCreateRequestBody) MarshalJSON

func (o TaggingCreateRequestBody) MarshalJSON() ([]byte, error)

func (*TaggingCreateRequestBody) SetTagging

SetTagging gets a reference to the given TaggingCreateRequest and assigns it to the Tagging field.

func (TaggingCreateRequestBody) ToMap added in v0.17.1

func (o TaggingCreateRequestBody) ToMap() (map[string]interface{}, error)

type TaggingResponse

type TaggingResponse struct {
	Guid                  NullableString `json:"guid,omitempty"`
	MemberIsManagedByUser NullableBool   `json:"member_is_managed_by_user,omitempty"`
	TagGuid               NullableString `json:"tag_guid,omitempty"`
	TransactionGuid       NullableString `json:"transaction_guid,omitempty"`
	UserGuid              NullableString `json:"user_guid,omitempty"`
}

TaggingResponse struct for TaggingResponse

func NewTaggingResponse

func NewTaggingResponse() *TaggingResponse

NewTaggingResponse instantiates a new TaggingResponse 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 NewTaggingResponseWithDefaults

func NewTaggingResponseWithDefaults() *TaggingResponse

NewTaggingResponseWithDefaults instantiates a new TaggingResponse 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 (*TaggingResponse) GetGuid

func (o *TaggingResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaggingResponse) GetGuidOk

func (o *TaggingResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*TaggingResponse) GetMemberIsManagedByUser

func (o *TaggingResponse) GetMemberIsManagedByUser() bool

GetMemberIsManagedByUser returns the MemberIsManagedByUser field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaggingResponse) GetMemberIsManagedByUserOk

func (o *TaggingResponse) GetMemberIsManagedByUserOk() (*bool, bool)

GetMemberIsManagedByUserOk returns a tuple with the MemberIsManagedByUser 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 (*TaggingResponse) GetTagGuid

func (o *TaggingResponse) GetTagGuid() string

GetTagGuid returns the TagGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaggingResponse) GetTagGuidOk

func (o *TaggingResponse) GetTagGuidOk() (*string, bool)

GetTagGuidOk returns a tuple with the TagGuid 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 (*TaggingResponse) GetTransactionGuid

func (o *TaggingResponse) GetTransactionGuid() string

GetTransactionGuid returns the TransactionGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaggingResponse) GetTransactionGuidOk

func (o *TaggingResponse) GetTransactionGuidOk() (*string, bool)

GetTransactionGuidOk returns a tuple with the TransactionGuid 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 (*TaggingResponse) GetUserGuid

func (o *TaggingResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaggingResponse) GetUserGuidOk

func (o *TaggingResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*TaggingResponse) HasGuid

func (o *TaggingResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*TaggingResponse) HasMemberIsManagedByUser

func (o *TaggingResponse) HasMemberIsManagedByUser() bool

HasMemberIsManagedByUser returns a boolean if a field has been set.

func (*TaggingResponse) HasTagGuid

func (o *TaggingResponse) HasTagGuid() bool

HasTagGuid returns a boolean if a field has been set.

func (*TaggingResponse) HasTransactionGuid

func (o *TaggingResponse) HasTransactionGuid() bool

HasTransactionGuid returns a boolean if a field has been set.

func (*TaggingResponse) HasUserGuid

func (o *TaggingResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (TaggingResponse) MarshalJSON

func (o TaggingResponse) MarshalJSON() ([]byte, error)

func (*TaggingResponse) SetGuid

func (o *TaggingResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*TaggingResponse) SetGuidNil added in v0.4.1

func (o *TaggingResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*TaggingResponse) SetMemberIsManagedByUser

func (o *TaggingResponse) SetMemberIsManagedByUser(v bool)

SetMemberIsManagedByUser gets a reference to the given NullableBool and assigns it to the MemberIsManagedByUser field.

func (*TaggingResponse) SetMemberIsManagedByUserNil

func (o *TaggingResponse) SetMemberIsManagedByUserNil()

SetMemberIsManagedByUserNil sets the value for MemberIsManagedByUser to be an explicit nil

func (*TaggingResponse) SetTagGuid

func (o *TaggingResponse) SetTagGuid(v string)

SetTagGuid gets a reference to the given NullableString and assigns it to the TagGuid field.

func (*TaggingResponse) SetTagGuidNil added in v0.4.1

func (o *TaggingResponse) SetTagGuidNil()

SetTagGuidNil sets the value for TagGuid to be an explicit nil

func (*TaggingResponse) SetTransactionGuid

func (o *TaggingResponse) SetTransactionGuid(v string)

SetTransactionGuid gets a reference to the given NullableString and assigns it to the TransactionGuid field.

func (*TaggingResponse) SetTransactionGuidNil added in v0.4.1

func (o *TaggingResponse) SetTransactionGuidNil()

SetTransactionGuidNil sets the value for TransactionGuid to be an explicit nil

func (*TaggingResponse) SetUserGuid

func (o *TaggingResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*TaggingResponse) SetUserGuidNil added in v0.4.1

func (o *TaggingResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (TaggingResponse) ToMap added in v0.17.1

func (o TaggingResponse) ToMap() (map[string]interface{}, error)

func (*TaggingResponse) UnsetGuid added in v0.4.1

func (o *TaggingResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*TaggingResponse) UnsetMemberIsManagedByUser

func (o *TaggingResponse) UnsetMemberIsManagedByUser()

UnsetMemberIsManagedByUser ensures that no value is present for MemberIsManagedByUser, not even an explicit nil

func (*TaggingResponse) UnsetTagGuid added in v0.4.1

func (o *TaggingResponse) UnsetTagGuid()

UnsetTagGuid ensures that no value is present for TagGuid, not even an explicit nil

func (*TaggingResponse) UnsetTransactionGuid added in v0.4.1

func (o *TaggingResponse) UnsetTransactionGuid()

UnsetTransactionGuid ensures that no value is present for TransactionGuid, not even an explicit nil

func (*TaggingResponse) UnsetUserGuid added in v0.4.1

func (o *TaggingResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type TaggingResponseBody

type TaggingResponseBody struct {
	Tagging *TaggingResponse `json:"tagging,omitempty"`
}

TaggingResponseBody struct for TaggingResponseBody

func NewTaggingResponseBody

func NewTaggingResponseBody() *TaggingResponseBody

NewTaggingResponseBody instantiates a new TaggingResponseBody 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 NewTaggingResponseBodyWithDefaults

func NewTaggingResponseBodyWithDefaults() *TaggingResponseBody

NewTaggingResponseBodyWithDefaults instantiates a new TaggingResponseBody 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 (*TaggingResponseBody) GetTagging

func (o *TaggingResponseBody) GetTagging() TaggingResponse

GetTagging returns the Tagging field value if set, zero value otherwise.

func (*TaggingResponseBody) GetTaggingOk

func (o *TaggingResponseBody) GetTaggingOk() (*TaggingResponse, bool)

GetTaggingOk returns a tuple with the Tagging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaggingResponseBody) HasTagging

func (o *TaggingResponseBody) HasTagging() bool

HasTagging returns a boolean if a field has been set.

func (TaggingResponseBody) MarshalJSON

func (o TaggingResponseBody) MarshalJSON() ([]byte, error)

func (*TaggingResponseBody) SetTagging

func (o *TaggingResponseBody) SetTagging(v TaggingResponse)

SetTagging gets a reference to the given TaggingResponse and assigns it to the Tagging field.

func (TaggingResponseBody) ToMap added in v0.17.1

func (o TaggingResponseBody) ToMap() (map[string]interface{}, error)

type TaggingUpdateRequest

type TaggingUpdateRequest struct {
	TagGuid string `json:"tag_guid"`
}

TaggingUpdateRequest struct for TaggingUpdateRequest

func NewTaggingUpdateRequest

func NewTaggingUpdateRequest(tagGuid string) *TaggingUpdateRequest

NewTaggingUpdateRequest instantiates a new TaggingUpdateRequest 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 NewTaggingUpdateRequestWithDefaults

func NewTaggingUpdateRequestWithDefaults() *TaggingUpdateRequest

NewTaggingUpdateRequestWithDefaults instantiates a new TaggingUpdateRequest 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 (*TaggingUpdateRequest) GetTagGuid

func (o *TaggingUpdateRequest) GetTagGuid() string

GetTagGuid returns the TagGuid field value

func (*TaggingUpdateRequest) GetTagGuidOk

func (o *TaggingUpdateRequest) GetTagGuidOk() (*string, bool)

GetTagGuidOk returns a tuple with the TagGuid field value and a boolean to check if the value has been set.

func (TaggingUpdateRequest) MarshalJSON

func (o TaggingUpdateRequest) MarshalJSON() ([]byte, error)

func (*TaggingUpdateRequest) SetTagGuid

func (o *TaggingUpdateRequest) SetTagGuid(v string)

SetTagGuid sets field value

func (TaggingUpdateRequest) ToMap added in v0.17.1

func (o TaggingUpdateRequest) ToMap() (map[string]interface{}, error)

type TaggingUpdateRequestBody

type TaggingUpdateRequestBody struct {
	Tagging *TaggingUpdateRequest `json:"tagging,omitempty"`
}

TaggingUpdateRequestBody struct for TaggingUpdateRequestBody

func NewTaggingUpdateRequestBody

func NewTaggingUpdateRequestBody() *TaggingUpdateRequestBody

NewTaggingUpdateRequestBody instantiates a new TaggingUpdateRequestBody 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 NewTaggingUpdateRequestBodyWithDefaults

func NewTaggingUpdateRequestBodyWithDefaults() *TaggingUpdateRequestBody

NewTaggingUpdateRequestBodyWithDefaults instantiates a new TaggingUpdateRequestBody 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 (*TaggingUpdateRequestBody) GetTagging

GetTagging returns the Tagging field value if set, zero value otherwise.

func (*TaggingUpdateRequestBody) GetTaggingOk

func (o *TaggingUpdateRequestBody) GetTaggingOk() (*TaggingUpdateRequest, bool)

GetTaggingOk returns a tuple with the Tagging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaggingUpdateRequestBody) HasTagging

func (o *TaggingUpdateRequestBody) HasTagging() bool

HasTagging returns a boolean if a field has been set.

func (TaggingUpdateRequestBody) MarshalJSON

func (o TaggingUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*TaggingUpdateRequestBody) SetTagging

SetTagging gets a reference to the given TaggingUpdateRequest and assigns it to the Tagging field.

func (TaggingUpdateRequestBody) ToMap added in v0.17.1

func (o TaggingUpdateRequestBody) ToMap() (map[string]interface{}, error)

type TaggingsResponseBody

type TaggingsResponseBody struct {
	Pagination *PaginationResponse `json:"pagination,omitempty"`
	Taggings   []TaggingResponse   `json:"taggings,omitempty"`
}

TaggingsResponseBody struct for TaggingsResponseBody

func NewTaggingsResponseBody

func NewTaggingsResponseBody() *TaggingsResponseBody

NewTaggingsResponseBody instantiates a new TaggingsResponseBody 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 NewTaggingsResponseBodyWithDefaults

func NewTaggingsResponseBodyWithDefaults() *TaggingsResponseBody

NewTaggingsResponseBodyWithDefaults instantiates a new TaggingsResponseBody 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 (*TaggingsResponseBody) GetPagination

func (o *TaggingsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*TaggingsResponseBody) GetPaginationOk

func (o *TaggingsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaggingsResponseBody) GetTaggings

func (o *TaggingsResponseBody) GetTaggings() []TaggingResponse

GetTaggings returns the Taggings field value if set, zero value otherwise.

func (*TaggingsResponseBody) GetTaggingsOk

func (o *TaggingsResponseBody) GetTaggingsOk() ([]TaggingResponse, bool)

GetTaggingsOk returns a tuple with the Taggings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaggingsResponseBody) HasPagination

func (o *TaggingsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*TaggingsResponseBody) HasTaggings

func (o *TaggingsResponseBody) HasTaggings() bool

HasTaggings returns a boolean if a field has been set.

func (TaggingsResponseBody) MarshalJSON

func (o TaggingsResponseBody) MarshalJSON() ([]byte, error)

func (*TaggingsResponseBody) SetPagination

func (o *TaggingsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*TaggingsResponseBody) SetTaggings

func (o *TaggingsResponseBody) SetTaggings(v []TaggingResponse)

SetTaggings gets a reference to the given []TaggingResponse and assigns it to the Taggings field.

func (TaggingsResponseBody) ToMap added in v0.17.1

func (o TaggingsResponseBody) ToMap() (map[string]interface{}, error)

type TagsResponseBody

type TagsResponseBody struct {
	Pagination *PaginationResponse `json:"pagination,omitempty"`
	Tags       []TagResponse       `json:"tags,omitempty"`
}

TagsResponseBody struct for TagsResponseBody

func NewTagsResponseBody

func NewTagsResponseBody() *TagsResponseBody

NewTagsResponseBody instantiates a new TagsResponseBody 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 NewTagsResponseBodyWithDefaults

func NewTagsResponseBodyWithDefaults() *TagsResponseBody

NewTagsResponseBodyWithDefaults instantiates a new TagsResponseBody 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 (*TagsResponseBody) GetPagination

func (o *TagsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*TagsResponseBody) GetPaginationOk

func (o *TagsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TagsResponseBody) GetTags

func (o *TagsResponseBody) GetTags() []TagResponse

GetTags returns the Tags field value if set, zero value otherwise.

func (*TagsResponseBody) GetTagsOk

func (o *TagsResponseBody) GetTagsOk() ([]TagResponse, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TagsResponseBody) HasPagination

func (o *TagsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*TagsResponseBody) HasTags

func (o *TagsResponseBody) HasTags() bool

HasTags returns a boolean if a field has been set.

func (TagsResponseBody) MarshalJSON

func (o TagsResponseBody) MarshalJSON() ([]byte, error)

func (*TagsResponseBody) SetPagination

func (o *TagsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*TagsResponseBody) SetTags

func (o *TagsResponseBody) SetTags(v []TagResponse)

SetTags gets a reference to the given []TagResponse and assigns it to the Tags field.

func (TagsResponseBody) ToMap added in v0.17.1

func (o TagsResponseBody) ToMap() (map[string]interface{}, error)

type TaxDocumentResponse added in v0.11.0

type TaxDocumentResponse struct {
	ContentHash  NullableString `json:"content_hash,omitempty"`
	CreatedAt    NullableString `json:"created_at,omitempty"`
	DocumentType NullableString `json:"document_type,omitempty"`
	Guid         NullableString `json:"guid,omitempty"`
	IssuedOn     NullableString `json:"issued_on,omitempty"`
	MemberGuid   NullableString `json:"member_guid,omitempty"`
	TaxYear      NullableString `json:"tax_year,omitempty"`
	UpdatedAt    NullableString `json:"updated_at,omitempty"`
	Uri          NullableString `json:"uri,omitempty"`
	UserGuid     NullableString `json:"user_guid,omitempty"`
}

TaxDocumentResponse struct for TaxDocumentResponse

func NewTaxDocumentResponse added in v0.11.0

func NewTaxDocumentResponse() *TaxDocumentResponse

NewTaxDocumentResponse instantiates a new TaxDocumentResponse 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 NewTaxDocumentResponseWithDefaults added in v0.11.0

func NewTaxDocumentResponseWithDefaults() *TaxDocumentResponse

NewTaxDocumentResponseWithDefaults instantiates a new TaxDocumentResponse 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 (*TaxDocumentResponse) GetContentHash added in v0.11.0

func (o *TaxDocumentResponse) GetContentHash() string

GetContentHash returns the ContentHash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetContentHashOk added in v0.11.0

func (o *TaxDocumentResponse) GetContentHashOk() (*string, bool)

GetContentHashOk returns a tuple with the ContentHash 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 (*TaxDocumentResponse) GetCreatedAt added in v0.11.0

func (o *TaxDocumentResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetCreatedAtOk added in v0.11.0

func (o *TaxDocumentResponse) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaxDocumentResponse) GetDocumentType added in v0.11.0

func (o *TaxDocumentResponse) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetDocumentTypeOk added in v0.11.0

func (o *TaxDocumentResponse) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType 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 (*TaxDocumentResponse) GetGuid added in v0.11.0

func (o *TaxDocumentResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetGuidOk added in v0.11.0

func (o *TaxDocumentResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*TaxDocumentResponse) GetIssuedOn added in v0.11.0

func (o *TaxDocumentResponse) GetIssuedOn() string

GetIssuedOn returns the IssuedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetIssuedOnOk added in v0.11.0

func (o *TaxDocumentResponse) GetIssuedOnOk() (*string, bool)

GetIssuedOnOk returns a tuple with the IssuedOn 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 (*TaxDocumentResponse) GetMemberGuid added in v0.11.0

func (o *TaxDocumentResponse) GetMemberGuid() string

GetMemberGuid returns the MemberGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetMemberGuidOk added in v0.11.0

func (o *TaxDocumentResponse) GetMemberGuidOk() (*string, bool)

GetMemberGuidOk returns a tuple with the MemberGuid 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 (*TaxDocumentResponse) GetTaxYear added in v0.11.0

func (o *TaxDocumentResponse) GetTaxYear() string

GetTaxYear returns the TaxYear field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetTaxYearOk added in v0.11.0

func (o *TaxDocumentResponse) GetTaxYearOk() (*string, bool)

GetTaxYearOk returns a tuple with the TaxYear 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 (*TaxDocumentResponse) GetUpdatedAt added in v0.11.0

func (o *TaxDocumentResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetUpdatedAtOk added in v0.11.0

func (o *TaxDocumentResponse) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaxDocumentResponse) GetUri added in v0.11.0

func (o *TaxDocumentResponse) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetUriOk added in v0.11.0

func (o *TaxDocumentResponse) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri 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 (*TaxDocumentResponse) GetUserGuid added in v0.11.0

func (o *TaxDocumentResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaxDocumentResponse) GetUserGuidOk added in v0.11.0

func (o *TaxDocumentResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*TaxDocumentResponse) HasContentHash added in v0.11.0

func (o *TaxDocumentResponse) HasContentHash() bool

HasContentHash returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasCreatedAt added in v0.11.0

func (o *TaxDocumentResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasDocumentType added in v0.11.0

func (o *TaxDocumentResponse) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasGuid added in v0.11.0

func (o *TaxDocumentResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasIssuedOn added in v0.11.0

func (o *TaxDocumentResponse) HasIssuedOn() bool

HasIssuedOn returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasMemberGuid added in v0.11.0

func (o *TaxDocumentResponse) HasMemberGuid() bool

HasMemberGuid returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasTaxYear added in v0.11.0

func (o *TaxDocumentResponse) HasTaxYear() bool

HasTaxYear returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasUpdatedAt added in v0.11.0

func (o *TaxDocumentResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasUri added in v0.11.0

func (o *TaxDocumentResponse) HasUri() bool

HasUri returns a boolean if a field has been set.

func (*TaxDocumentResponse) HasUserGuid added in v0.11.0

func (o *TaxDocumentResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (TaxDocumentResponse) MarshalJSON added in v0.11.0

func (o TaxDocumentResponse) MarshalJSON() ([]byte, error)

func (*TaxDocumentResponse) SetContentHash added in v0.11.0

func (o *TaxDocumentResponse) SetContentHash(v string)

SetContentHash gets a reference to the given NullableString and assigns it to the ContentHash field.

func (*TaxDocumentResponse) SetContentHashNil added in v0.11.0

func (o *TaxDocumentResponse) SetContentHashNil()

SetContentHashNil sets the value for ContentHash to be an explicit nil

func (*TaxDocumentResponse) SetCreatedAt added in v0.11.0

func (o *TaxDocumentResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*TaxDocumentResponse) SetCreatedAtNil added in v0.11.0

func (o *TaxDocumentResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*TaxDocumentResponse) SetDocumentType added in v0.11.0

func (o *TaxDocumentResponse) SetDocumentType(v string)

SetDocumentType gets a reference to the given NullableString and assigns it to the DocumentType field.

func (*TaxDocumentResponse) SetDocumentTypeNil added in v0.11.0

func (o *TaxDocumentResponse) SetDocumentTypeNil()

SetDocumentTypeNil sets the value for DocumentType to be an explicit nil

func (*TaxDocumentResponse) SetGuid added in v0.11.0

func (o *TaxDocumentResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*TaxDocumentResponse) SetGuidNil added in v0.11.0

func (o *TaxDocumentResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*TaxDocumentResponse) SetIssuedOn added in v0.11.0

func (o *TaxDocumentResponse) SetIssuedOn(v string)

SetIssuedOn gets a reference to the given NullableString and assigns it to the IssuedOn field.

func (*TaxDocumentResponse) SetIssuedOnNil added in v0.11.0

func (o *TaxDocumentResponse) SetIssuedOnNil()

SetIssuedOnNil sets the value for IssuedOn to be an explicit nil

func (*TaxDocumentResponse) SetMemberGuid added in v0.11.0

func (o *TaxDocumentResponse) SetMemberGuid(v string)

SetMemberGuid gets a reference to the given NullableString and assigns it to the MemberGuid field.

func (*TaxDocumentResponse) SetMemberGuidNil added in v0.11.0

func (o *TaxDocumentResponse) SetMemberGuidNil()

SetMemberGuidNil sets the value for MemberGuid to be an explicit nil

func (*TaxDocumentResponse) SetTaxYear added in v0.11.0

func (o *TaxDocumentResponse) SetTaxYear(v string)

SetTaxYear gets a reference to the given NullableString and assigns it to the TaxYear field.

func (*TaxDocumentResponse) SetTaxYearNil added in v0.11.0

func (o *TaxDocumentResponse) SetTaxYearNil()

SetTaxYearNil sets the value for TaxYear to be an explicit nil

func (*TaxDocumentResponse) SetUpdatedAt added in v0.11.0

func (o *TaxDocumentResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.

func (*TaxDocumentResponse) SetUpdatedAtNil added in v0.11.0

func (o *TaxDocumentResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*TaxDocumentResponse) SetUri added in v0.11.0

func (o *TaxDocumentResponse) SetUri(v string)

SetUri gets a reference to the given NullableString and assigns it to the Uri field.

func (*TaxDocumentResponse) SetUriNil added in v0.11.0

func (o *TaxDocumentResponse) SetUriNil()

SetUriNil sets the value for Uri to be an explicit nil

func (*TaxDocumentResponse) SetUserGuid added in v0.11.0

func (o *TaxDocumentResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*TaxDocumentResponse) SetUserGuidNil added in v0.11.0

func (o *TaxDocumentResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (TaxDocumentResponse) ToMap added in v0.17.1

func (o TaxDocumentResponse) ToMap() (map[string]interface{}, error)

func (*TaxDocumentResponse) UnsetContentHash added in v0.11.0

func (o *TaxDocumentResponse) UnsetContentHash()

UnsetContentHash ensures that no value is present for ContentHash, not even an explicit nil

func (*TaxDocumentResponse) UnsetCreatedAt added in v0.11.0

func (o *TaxDocumentResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*TaxDocumentResponse) UnsetDocumentType added in v0.11.0

func (o *TaxDocumentResponse) UnsetDocumentType()

UnsetDocumentType ensures that no value is present for DocumentType, not even an explicit nil

func (*TaxDocumentResponse) UnsetGuid added in v0.11.0

func (o *TaxDocumentResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*TaxDocumentResponse) UnsetIssuedOn added in v0.11.0

func (o *TaxDocumentResponse) UnsetIssuedOn()

UnsetIssuedOn ensures that no value is present for IssuedOn, not even an explicit nil

func (*TaxDocumentResponse) UnsetMemberGuid added in v0.11.0

func (o *TaxDocumentResponse) UnsetMemberGuid()

UnsetMemberGuid ensures that no value is present for MemberGuid, not even an explicit nil

func (*TaxDocumentResponse) UnsetTaxYear added in v0.11.0

func (o *TaxDocumentResponse) UnsetTaxYear()

UnsetTaxYear ensures that no value is present for TaxYear, not even an explicit nil

func (*TaxDocumentResponse) UnsetUpdatedAt added in v0.11.0

func (o *TaxDocumentResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*TaxDocumentResponse) UnsetUri added in v0.11.0

func (o *TaxDocumentResponse) UnsetUri()

UnsetUri ensures that no value is present for Uri, not even an explicit nil

func (*TaxDocumentResponse) UnsetUserGuid added in v0.11.0

func (o *TaxDocumentResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type TaxDocumentResponseBody added in v0.11.0

type TaxDocumentResponseBody struct {
	TaxDocument *TaxDocumentResponse `json:"tax_document,omitempty"`
}

TaxDocumentResponseBody struct for TaxDocumentResponseBody

func NewTaxDocumentResponseBody added in v0.11.0

func NewTaxDocumentResponseBody() *TaxDocumentResponseBody

NewTaxDocumentResponseBody instantiates a new TaxDocumentResponseBody 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 NewTaxDocumentResponseBodyWithDefaults added in v0.11.0

func NewTaxDocumentResponseBodyWithDefaults() *TaxDocumentResponseBody

NewTaxDocumentResponseBodyWithDefaults instantiates a new TaxDocumentResponseBody 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 (*TaxDocumentResponseBody) GetTaxDocument added in v0.11.0

func (o *TaxDocumentResponseBody) GetTaxDocument() TaxDocumentResponse

GetTaxDocument returns the TaxDocument field value if set, zero value otherwise.

func (*TaxDocumentResponseBody) GetTaxDocumentOk added in v0.11.0

func (o *TaxDocumentResponseBody) GetTaxDocumentOk() (*TaxDocumentResponse, bool)

GetTaxDocumentOk returns a tuple with the TaxDocument field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxDocumentResponseBody) HasTaxDocument added in v0.11.0

func (o *TaxDocumentResponseBody) HasTaxDocument() bool

HasTaxDocument returns a boolean if a field has been set.

func (TaxDocumentResponseBody) MarshalJSON added in v0.11.0

func (o TaxDocumentResponseBody) MarshalJSON() ([]byte, error)

func (*TaxDocumentResponseBody) SetTaxDocument added in v0.11.0

func (o *TaxDocumentResponseBody) SetTaxDocument(v TaxDocumentResponse)

SetTaxDocument gets a reference to the given TaxDocumentResponse and assigns it to the TaxDocument field.

func (TaxDocumentResponseBody) ToMap added in v0.17.1

func (o TaxDocumentResponseBody) ToMap() (map[string]interface{}, error)

type TaxDocumentsResponseBody added in v0.11.0

type TaxDocumentsResponseBody struct {
	Pagination   *PaginationResponse   `json:"pagination,omitempty"`
	TaxDocuments []TaxDocumentResponse `json:"tax_documents,omitempty"`
}

TaxDocumentsResponseBody struct for TaxDocumentsResponseBody

func NewTaxDocumentsResponseBody added in v0.11.0

func NewTaxDocumentsResponseBody() *TaxDocumentsResponseBody

NewTaxDocumentsResponseBody instantiates a new TaxDocumentsResponseBody 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 NewTaxDocumentsResponseBodyWithDefaults added in v0.11.0

func NewTaxDocumentsResponseBodyWithDefaults() *TaxDocumentsResponseBody

NewTaxDocumentsResponseBodyWithDefaults instantiates a new TaxDocumentsResponseBody 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 (*TaxDocumentsResponseBody) GetPagination added in v0.11.0

func (o *TaxDocumentsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*TaxDocumentsResponseBody) GetPaginationOk added in v0.11.0

func (o *TaxDocumentsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxDocumentsResponseBody) GetTaxDocuments added in v0.11.0

func (o *TaxDocumentsResponseBody) GetTaxDocuments() []TaxDocumentResponse

GetTaxDocuments returns the TaxDocuments field value if set, zero value otherwise.

func (*TaxDocumentsResponseBody) GetTaxDocumentsOk added in v0.11.0

func (o *TaxDocumentsResponseBody) GetTaxDocumentsOk() ([]TaxDocumentResponse, bool)

GetTaxDocumentsOk returns a tuple with the TaxDocuments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxDocumentsResponseBody) HasPagination added in v0.11.0

func (o *TaxDocumentsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*TaxDocumentsResponseBody) HasTaxDocuments added in v0.11.0

func (o *TaxDocumentsResponseBody) HasTaxDocuments() bool

HasTaxDocuments returns a boolean if a field has been set.

func (TaxDocumentsResponseBody) MarshalJSON added in v0.11.0

func (o TaxDocumentsResponseBody) MarshalJSON() ([]byte, error)

func (*TaxDocumentsResponseBody) SetPagination added in v0.11.0

func (o *TaxDocumentsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*TaxDocumentsResponseBody) SetTaxDocuments added in v0.11.0

func (o *TaxDocumentsResponseBody) SetTaxDocuments(v []TaxDocumentResponse)

SetTaxDocuments gets a reference to the given []TaxDocumentResponse and assigns it to the TaxDocuments field.

func (TaxDocumentsResponseBody) ToMap added in v0.17.1

func (o TaxDocumentsResponseBody) ToMap() (map[string]interface{}, error)

type TransactionResponse

type TransactionResponse struct {
	AccountGuid             NullableString  `json:"account_guid,omitempty"`
	AccountId               NullableString  `json:"account_id,omitempty"`
	Amount                  NullableFloat32 `json:"amount,omitempty"`
	Category                NullableString  `json:"category,omitempty"`
	CategoryGuid            NullableString  `json:"category_guid,omitempty"`
	CheckNumberString       NullableString  `json:"check_number_string,omitempty"`
	CreatedAt               NullableString  `json:"created_at,omitempty"`
	CurrencyCode            NullableString  `json:"currency_code,omitempty"`
	Date                    NullableString  `json:"date,omitempty"`
	Description             NullableString  `json:"description,omitempty"`
	ExtendedTransactionType NullableString  `json:"extended_transaction_type,omitempty"`
	Guid                    NullableString  `json:"guid,omitempty"`
	Id                      NullableString  `json:"id,omitempty"`
	IsBillPay               NullableBool    `json:"is_bill_pay,omitempty"`
	IsDirectDeposit         NullableBool    `json:"is_direct_deposit,omitempty"`
	IsExpense               NullableBool    `json:"is_expense,omitempty"`
	IsFee                   NullableBool    `json:"is_fee,omitempty"`
	IsIncome                NullableBool    `json:"is_income,omitempty"`
	IsInternational         NullableBool    `json:"is_international,omitempty"`
	IsOverdraftFee          NullableBool    `json:"is_overdraft_fee,omitempty"`
	IsPayrollAdvance        NullableBool    `json:"is_payroll_advance,omitempty"`
	IsRecurring             NullableBool    `json:"is_recurring,omitempty"`
	IsSubscription          NullableBool    `json:"is_subscription,omitempty"`
	Latitude                NullableFloat32 `json:"latitude,omitempty"`
	LocalizedDescription    NullableString  `json:"localized_description,omitempty"`
	LocalizedMemo           NullableString  `json:"localized_memo,omitempty"`
	Longitude               NullableFloat32 `json:"longitude,omitempty"`
	MemberGuid              NullableString  `json:"member_guid,omitempty"`
	MemberIsManagedByUser   NullableBool    `json:"member_is_managed_by_user,omitempty"`
	Memo                    NullableString  `json:"memo,omitempty"`
	MerchantCategoryCode    NullableInt32   `json:"merchant_category_code,omitempty"`
	MerchantGuid            NullableString  `json:"merchant_guid,omitempty"`
	MerchantLocationGuid    NullableString  `json:"merchant_location_guid,omitempty"`
	Metadata                NullableString  `json:"metadata,omitempty"`
	OriginalDescription     NullableString  `json:"original_description,omitempty"`
	PostedAt                NullableString  `json:"posted_at,omitempty"`
	Status                  NullableString  `json:"status,omitempty"`
	TopLevelCategory        NullableString  `json:"top_level_category,omitempty"`
	TransactedAt            NullableString  `json:"transacted_at,omitempty"`
	Type                    NullableString  `json:"type,omitempty"`
	UpdatedAt               NullableString  `json:"updated_at,omitempty"`
	UserGuid                NullableString  `json:"user_guid,omitempty"`
	UserId                  NullableString  `json:"user_id,omitempty"`
}

TransactionResponse struct for TransactionResponse

func NewTransactionResponse

func NewTransactionResponse() *TransactionResponse

NewTransactionResponse instantiates a new TransactionResponse 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 NewTransactionResponseWithDefaults

func NewTransactionResponseWithDefaults() *TransactionResponse

NewTransactionResponseWithDefaults instantiates a new TransactionResponse 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 (*TransactionResponse) GetAccountGuid

func (o *TransactionResponse) GetAccountGuid() string

GetAccountGuid returns the AccountGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetAccountGuidOk

func (o *TransactionResponse) GetAccountGuidOk() (*string, bool)

GetAccountGuidOk returns a tuple with the AccountGuid 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 (*TransactionResponse) GetAccountId

func (o *TransactionResponse) GetAccountId() string

GetAccountId returns the AccountId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetAccountIdOk

func (o *TransactionResponse) GetAccountIdOk() (*string, bool)

GetAccountIdOk returns a tuple with the AccountId 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 (*TransactionResponse) GetAmount

func (o *TransactionResponse) GetAmount() float32

GetAmount returns the Amount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetAmountOk

func (o *TransactionResponse) GetAmountOk() (*float32, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransactionResponse) GetCategory

func (o *TransactionResponse) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetCategoryGuid

func (o *TransactionResponse) GetCategoryGuid() string

GetCategoryGuid returns the CategoryGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetCategoryGuidOk

func (o *TransactionResponse) GetCategoryGuidOk() (*string, bool)

GetCategoryGuidOk returns a tuple with the CategoryGuid 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 (*TransactionResponse) GetCategoryOk

func (o *TransactionResponse) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category 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 (*TransactionResponse) GetCheckNumberString

func (o *TransactionResponse) GetCheckNumberString() string

GetCheckNumberString returns the CheckNumberString field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetCheckNumberStringOk

func (o *TransactionResponse) GetCheckNumberStringOk() (*string, bool)

GetCheckNumberStringOk returns a tuple with the CheckNumberString 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 (*TransactionResponse) GetCreatedAt

func (o *TransactionResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetCreatedAtOk

func (o *TransactionResponse) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransactionResponse) GetCurrencyCode

func (o *TransactionResponse) GetCurrencyCode() string

GetCurrencyCode returns the CurrencyCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetCurrencyCodeOk

func (o *TransactionResponse) GetCurrencyCodeOk() (*string, bool)

GetCurrencyCodeOk returns a tuple with the CurrencyCode 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 (*TransactionResponse) GetDate

func (o *TransactionResponse) GetDate() string

GetDate returns the Date field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetDateOk

func (o *TransactionResponse) GetDateOk() (*string, bool)

GetDateOk returns a tuple with the Date 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 (*TransactionResponse) GetDescription

func (o *TransactionResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetDescriptionOk

func (o *TransactionResponse) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransactionResponse) GetExtendedTransactionType

func (o *TransactionResponse) GetExtendedTransactionType() string

GetExtendedTransactionType returns the ExtendedTransactionType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetExtendedTransactionTypeOk

func (o *TransactionResponse) GetExtendedTransactionTypeOk() (*string, bool)

GetExtendedTransactionTypeOk returns a tuple with the ExtendedTransactionType 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 (*TransactionResponse) GetGuid

func (o *TransactionResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetGuidOk

func (o *TransactionResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*TransactionResponse) GetId

func (o *TransactionResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIdOk

func (o *TransactionResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransactionResponse) GetIsBillPay

func (o *TransactionResponse) GetIsBillPay() bool

GetIsBillPay returns the IsBillPay field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsBillPayOk

func (o *TransactionResponse) GetIsBillPayOk() (*bool, bool)

GetIsBillPayOk returns a tuple with the IsBillPay 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 (*TransactionResponse) GetIsDirectDeposit

func (o *TransactionResponse) GetIsDirectDeposit() bool

GetIsDirectDeposit returns the IsDirectDeposit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsDirectDepositOk

func (o *TransactionResponse) GetIsDirectDepositOk() (*bool, bool)

GetIsDirectDepositOk returns a tuple with the IsDirectDeposit 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 (*TransactionResponse) GetIsExpense

func (o *TransactionResponse) GetIsExpense() bool

GetIsExpense returns the IsExpense field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsExpenseOk

func (o *TransactionResponse) GetIsExpenseOk() (*bool, bool)

GetIsExpenseOk returns a tuple with the IsExpense 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 (*TransactionResponse) GetIsFee

func (o *TransactionResponse) GetIsFee() bool

GetIsFee returns the IsFee field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsFeeOk

func (o *TransactionResponse) GetIsFeeOk() (*bool, bool)

GetIsFeeOk returns a tuple with the IsFee 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 (*TransactionResponse) GetIsIncome

func (o *TransactionResponse) GetIsIncome() bool

GetIsIncome returns the IsIncome field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsIncomeOk

func (o *TransactionResponse) GetIsIncomeOk() (*bool, bool)

GetIsIncomeOk returns a tuple with the IsIncome 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 (*TransactionResponse) GetIsInternational

func (o *TransactionResponse) GetIsInternational() bool

GetIsInternational returns the IsInternational field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsInternationalOk

func (o *TransactionResponse) GetIsInternationalOk() (*bool, bool)

GetIsInternationalOk returns a tuple with the IsInternational 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 (*TransactionResponse) GetIsOverdraftFee

func (o *TransactionResponse) GetIsOverdraftFee() bool

GetIsOverdraftFee returns the IsOverdraftFee field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsOverdraftFeeOk

func (o *TransactionResponse) GetIsOverdraftFeeOk() (*bool, bool)

GetIsOverdraftFeeOk returns a tuple with the IsOverdraftFee 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 (*TransactionResponse) GetIsPayrollAdvance

func (o *TransactionResponse) GetIsPayrollAdvance() bool

GetIsPayrollAdvance returns the IsPayrollAdvance field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsPayrollAdvanceOk

func (o *TransactionResponse) GetIsPayrollAdvanceOk() (*bool, bool)

GetIsPayrollAdvanceOk returns a tuple with the IsPayrollAdvance 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 (*TransactionResponse) GetIsRecurring

func (o *TransactionResponse) GetIsRecurring() bool

GetIsRecurring returns the IsRecurring field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsRecurringOk

func (o *TransactionResponse) GetIsRecurringOk() (*bool, bool)

GetIsRecurringOk returns a tuple with the IsRecurring 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 (*TransactionResponse) GetIsSubscription

func (o *TransactionResponse) GetIsSubscription() bool

GetIsSubscription returns the IsSubscription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetIsSubscriptionOk

func (o *TransactionResponse) GetIsSubscriptionOk() (*bool, bool)

GetIsSubscriptionOk returns a tuple with the IsSubscription 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 (*TransactionResponse) GetLatitude

func (o *TransactionResponse) GetLatitude() float32

GetLatitude returns the Latitude field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetLatitudeOk

func (o *TransactionResponse) GetLatitudeOk() (*float32, bool)

GetLatitudeOk returns a tuple with the Latitude 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 (*TransactionResponse) GetLocalizedDescription

func (o *TransactionResponse) GetLocalizedDescription() string

GetLocalizedDescription returns the LocalizedDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetLocalizedDescriptionOk

func (o *TransactionResponse) GetLocalizedDescriptionOk() (*string, bool)

GetLocalizedDescriptionOk returns a tuple with the LocalizedDescription 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 (*TransactionResponse) GetLocalizedMemo

func (o *TransactionResponse) GetLocalizedMemo() string

GetLocalizedMemo returns the LocalizedMemo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetLocalizedMemoOk

func (o *TransactionResponse) GetLocalizedMemoOk() (*string, bool)

GetLocalizedMemoOk returns a tuple with the LocalizedMemo 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 (*TransactionResponse) GetLongitude

func (o *TransactionResponse) GetLongitude() float32

GetLongitude returns the Longitude field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetLongitudeOk

func (o *TransactionResponse) GetLongitudeOk() (*float32, bool)

GetLongitudeOk returns a tuple with the Longitude 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 (*TransactionResponse) GetMemberGuid

func (o *TransactionResponse) GetMemberGuid() string

GetMemberGuid returns the MemberGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetMemberGuidOk

func (o *TransactionResponse) GetMemberGuidOk() (*string, bool)

GetMemberGuidOk returns a tuple with the MemberGuid 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 (*TransactionResponse) GetMemberIsManagedByUser

func (o *TransactionResponse) GetMemberIsManagedByUser() bool

GetMemberIsManagedByUser returns the MemberIsManagedByUser field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetMemberIsManagedByUserOk

func (o *TransactionResponse) GetMemberIsManagedByUserOk() (*bool, bool)

GetMemberIsManagedByUserOk returns a tuple with the MemberIsManagedByUser 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 (*TransactionResponse) GetMemo

func (o *TransactionResponse) GetMemo() string

GetMemo returns the Memo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetMemoOk

func (o *TransactionResponse) GetMemoOk() (*string, bool)

GetMemoOk returns a tuple with the Memo 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 (*TransactionResponse) GetMerchantCategoryCode

func (o *TransactionResponse) GetMerchantCategoryCode() int32

GetMerchantCategoryCode returns the MerchantCategoryCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetMerchantCategoryCodeOk

func (o *TransactionResponse) GetMerchantCategoryCodeOk() (*int32, bool)

GetMerchantCategoryCodeOk returns a tuple with the MerchantCategoryCode 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 (*TransactionResponse) GetMerchantGuid

func (o *TransactionResponse) GetMerchantGuid() string

GetMerchantGuid returns the MerchantGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetMerchantGuidOk

func (o *TransactionResponse) GetMerchantGuidOk() (*string, bool)

GetMerchantGuidOk returns a tuple with the MerchantGuid 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 (*TransactionResponse) GetMerchantLocationGuid

func (o *TransactionResponse) GetMerchantLocationGuid() string

GetMerchantLocationGuid returns the MerchantLocationGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetMerchantLocationGuidOk

func (o *TransactionResponse) GetMerchantLocationGuidOk() (*string, bool)

GetMerchantLocationGuidOk returns a tuple with the MerchantLocationGuid 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 (*TransactionResponse) GetMetadata

func (o *TransactionResponse) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetMetadataOk

func (o *TransactionResponse) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata 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 (*TransactionResponse) GetOriginalDescription

func (o *TransactionResponse) GetOriginalDescription() string

GetOriginalDescription returns the OriginalDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetOriginalDescriptionOk

func (o *TransactionResponse) GetOriginalDescriptionOk() (*string, bool)

GetOriginalDescriptionOk returns a tuple with the OriginalDescription 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 (*TransactionResponse) GetPostedAt

func (o *TransactionResponse) GetPostedAt() string

GetPostedAt returns the PostedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetPostedAtOk

func (o *TransactionResponse) GetPostedAtOk() (*string, bool)

GetPostedAtOk returns a tuple with the PostedAt 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 (*TransactionResponse) GetStatus

func (o *TransactionResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetStatusOk

func (o *TransactionResponse) 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 (*TransactionResponse) GetTopLevelCategory

func (o *TransactionResponse) GetTopLevelCategory() string

GetTopLevelCategory returns the TopLevelCategory field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetTopLevelCategoryOk

func (o *TransactionResponse) GetTopLevelCategoryOk() (*string, bool)

GetTopLevelCategoryOk returns a tuple with the TopLevelCategory 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 (*TransactionResponse) GetTransactedAt

func (o *TransactionResponse) GetTransactedAt() string

GetTransactedAt returns the TransactedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetTransactedAtOk

func (o *TransactionResponse) GetTransactedAtOk() (*string, bool)

GetTransactedAtOk returns a tuple with the TransactedAt 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 (*TransactionResponse) GetType

func (o *TransactionResponse) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetTypeOk

func (o *TransactionResponse) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type 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 (*TransactionResponse) GetUpdatedAt

func (o *TransactionResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetUpdatedAtOk

func (o *TransactionResponse) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransactionResponse) GetUserGuid

func (o *TransactionResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetUserGuidOk

func (o *TransactionResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*TransactionResponse) GetUserId

func (o *TransactionResponse) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionResponse) GetUserIdOk

func (o *TransactionResponse) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId 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 (*TransactionResponse) HasAccountGuid

func (o *TransactionResponse) HasAccountGuid() bool

HasAccountGuid returns a boolean if a field has been set.

func (*TransactionResponse) HasAccountId

func (o *TransactionResponse) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*TransactionResponse) HasAmount

func (o *TransactionResponse) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*TransactionResponse) HasCategory

func (o *TransactionResponse) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*TransactionResponse) HasCategoryGuid

func (o *TransactionResponse) HasCategoryGuid() bool

HasCategoryGuid returns a boolean if a field has been set.

func (*TransactionResponse) HasCheckNumberString

func (o *TransactionResponse) HasCheckNumberString() bool

HasCheckNumberString returns a boolean if a field has been set.

func (*TransactionResponse) HasCreatedAt

func (o *TransactionResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TransactionResponse) HasCurrencyCode

func (o *TransactionResponse) HasCurrencyCode() bool

HasCurrencyCode returns a boolean if a field has been set.

func (*TransactionResponse) HasDate

func (o *TransactionResponse) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*TransactionResponse) HasDescription

func (o *TransactionResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TransactionResponse) HasExtendedTransactionType

func (o *TransactionResponse) HasExtendedTransactionType() bool

HasExtendedTransactionType returns a boolean if a field has been set.

func (*TransactionResponse) HasGuid

func (o *TransactionResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*TransactionResponse) HasId

func (o *TransactionResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*TransactionResponse) HasIsBillPay

func (o *TransactionResponse) HasIsBillPay() bool

HasIsBillPay returns a boolean if a field has been set.

func (*TransactionResponse) HasIsDirectDeposit

func (o *TransactionResponse) HasIsDirectDeposit() bool

HasIsDirectDeposit returns a boolean if a field has been set.

func (*TransactionResponse) HasIsExpense

func (o *TransactionResponse) HasIsExpense() bool

HasIsExpense returns a boolean if a field has been set.

func (*TransactionResponse) HasIsFee

func (o *TransactionResponse) HasIsFee() bool

HasIsFee returns a boolean if a field has been set.

func (*TransactionResponse) HasIsIncome

func (o *TransactionResponse) HasIsIncome() bool

HasIsIncome returns a boolean if a field has been set.

func (*TransactionResponse) HasIsInternational

func (o *TransactionResponse) HasIsInternational() bool

HasIsInternational returns a boolean if a field has been set.

func (*TransactionResponse) HasIsOverdraftFee

func (o *TransactionResponse) HasIsOverdraftFee() bool

HasIsOverdraftFee returns a boolean if a field has been set.

func (*TransactionResponse) HasIsPayrollAdvance

func (o *TransactionResponse) HasIsPayrollAdvance() bool

HasIsPayrollAdvance returns a boolean if a field has been set.

func (*TransactionResponse) HasIsRecurring

func (o *TransactionResponse) HasIsRecurring() bool

HasIsRecurring returns a boolean if a field has been set.

func (*TransactionResponse) HasIsSubscription

func (o *TransactionResponse) HasIsSubscription() bool

HasIsSubscription returns a boolean if a field has been set.

func (*TransactionResponse) HasLatitude

func (o *TransactionResponse) HasLatitude() bool

HasLatitude returns a boolean if a field has been set.

func (*TransactionResponse) HasLocalizedDescription

func (o *TransactionResponse) HasLocalizedDescription() bool

HasLocalizedDescription returns a boolean if a field has been set.

func (*TransactionResponse) HasLocalizedMemo

func (o *TransactionResponse) HasLocalizedMemo() bool

HasLocalizedMemo returns a boolean if a field has been set.

func (*TransactionResponse) HasLongitude

func (o *TransactionResponse) HasLongitude() bool

HasLongitude returns a boolean if a field has been set.

func (*TransactionResponse) HasMemberGuid

func (o *TransactionResponse) HasMemberGuid() bool

HasMemberGuid returns a boolean if a field has been set.

func (*TransactionResponse) HasMemberIsManagedByUser

func (o *TransactionResponse) HasMemberIsManagedByUser() bool

HasMemberIsManagedByUser returns a boolean if a field has been set.

func (*TransactionResponse) HasMemo

func (o *TransactionResponse) HasMemo() bool

HasMemo returns a boolean if a field has been set.

func (*TransactionResponse) HasMerchantCategoryCode

func (o *TransactionResponse) HasMerchantCategoryCode() bool

HasMerchantCategoryCode returns a boolean if a field has been set.

func (*TransactionResponse) HasMerchantGuid

func (o *TransactionResponse) HasMerchantGuid() bool

HasMerchantGuid returns a boolean if a field has been set.

func (*TransactionResponse) HasMerchantLocationGuid

func (o *TransactionResponse) HasMerchantLocationGuid() bool

HasMerchantLocationGuid returns a boolean if a field has been set.

func (*TransactionResponse) HasMetadata

func (o *TransactionResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*TransactionResponse) HasOriginalDescription

func (o *TransactionResponse) HasOriginalDescription() bool

HasOriginalDescription returns a boolean if a field has been set.

func (*TransactionResponse) HasPostedAt

func (o *TransactionResponse) HasPostedAt() bool

HasPostedAt returns a boolean if a field has been set.

func (*TransactionResponse) HasStatus

func (o *TransactionResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TransactionResponse) HasTopLevelCategory

func (o *TransactionResponse) HasTopLevelCategory() bool

HasTopLevelCategory returns a boolean if a field has been set.

func (*TransactionResponse) HasTransactedAt

func (o *TransactionResponse) HasTransactedAt() bool

HasTransactedAt returns a boolean if a field has been set.

func (*TransactionResponse) HasType

func (o *TransactionResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (*TransactionResponse) HasUpdatedAt

func (o *TransactionResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*TransactionResponse) HasUserGuid

func (o *TransactionResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (*TransactionResponse) HasUserId

func (o *TransactionResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (TransactionResponse) MarshalJSON

func (o TransactionResponse) MarshalJSON() ([]byte, error)

func (*TransactionResponse) SetAccountGuid

func (o *TransactionResponse) SetAccountGuid(v string)

SetAccountGuid gets a reference to the given NullableString and assigns it to the AccountGuid field.

func (*TransactionResponse) SetAccountGuidNil added in v0.4.1

func (o *TransactionResponse) SetAccountGuidNil()

SetAccountGuidNil sets the value for AccountGuid to be an explicit nil

func (*TransactionResponse) SetAccountId

func (o *TransactionResponse) SetAccountId(v string)

SetAccountId gets a reference to the given NullableString and assigns it to the AccountId field.

func (*TransactionResponse) SetAccountIdNil

func (o *TransactionResponse) SetAccountIdNil()

SetAccountIdNil sets the value for AccountId to be an explicit nil

func (*TransactionResponse) SetAmount

func (o *TransactionResponse) SetAmount(v float32)

SetAmount gets a reference to the given NullableFloat32 and assigns it to the Amount field.

func (*TransactionResponse) SetAmountNil

func (o *TransactionResponse) SetAmountNil()

SetAmountNil sets the value for Amount to be an explicit nil

func (*TransactionResponse) SetCategory

func (o *TransactionResponse) SetCategory(v string)

SetCategory gets a reference to the given NullableString and assigns it to the Category field.

func (*TransactionResponse) SetCategoryGuid

func (o *TransactionResponse) SetCategoryGuid(v string)

SetCategoryGuid gets a reference to the given NullableString and assigns it to the CategoryGuid field.

func (*TransactionResponse) SetCategoryGuidNil

func (o *TransactionResponse) SetCategoryGuidNil()

SetCategoryGuidNil sets the value for CategoryGuid to be an explicit nil

func (*TransactionResponse) SetCategoryNil

func (o *TransactionResponse) SetCategoryNil()

SetCategoryNil sets the value for Category to be an explicit nil

func (*TransactionResponse) SetCheckNumberString

func (o *TransactionResponse) SetCheckNumberString(v string)

SetCheckNumberString gets a reference to the given NullableString and assigns it to the CheckNumberString field.

func (*TransactionResponse) SetCheckNumberStringNil

func (o *TransactionResponse) SetCheckNumberStringNil()

SetCheckNumberStringNil sets the value for CheckNumberString to be an explicit nil

func (*TransactionResponse) SetCreatedAt

func (o *TransactionResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*TransactionResponse) SetCreatedAtNil

func (o *TransactionResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*TransactionResponse) SetCurrencyCode

func (o *TransactionResponse) SetCurrencyCode(v string)

SetCurrencyCode gets a reference to the given NullableString and assigns it to the CurrencyCode field.

func (*TransactionResponse) SetCurrencyCodeNil

func (o *TransactionResponse) SetCurrencyCodeNil()

SetCurrencyCodeNil sets the value for CurrencyCode to be an explicit nil

func (*TransactionResponse) SetDate

func (o *TransactionResponse) SetDate(v string)

SetDate gets a reference to the given NullableString and assigns it to the Date field.

func (*TransactionResponse) SetDateNil

func (o *TransactionResponse) SetDateNil()

SetDateNil sets the value for Date to be an explicit nil

func (*TransactionResponse) SetDescription

func (o *TransactionResponse) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*TransactionResponse) SetDescriptionNil

func (o *TransactionResponse) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*TransactionResponse) SetExtendedTransactionType

func (o *TransactionResponse) SetExtendedTransactionType(v string)

SetExtendedTransactionType gets a reference to the given NullableString and assigns it to the ExtendedTransactionType field.

func (*TransactionResponse) SetExtendedTransactionTypeNil

func (o *TransactionResponse) SetExtendedTransactionTypeNil()

SetExtendedTransactionTypeNil sets the value for ExtendedTransactionType to be an explicit nil

func (*TransactionResponse) SetGuid

func (o *TransactionResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*TransactionResponse) SetGuidNil added in v0.4.1

func (o *TransactionResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*TransactionResponse) SetId

func (o *TransactionResponse) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*TransactionResponse) SetIdNil

func (o *TransactionResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*TransactionResponse) SetIsBillPay

func (o *TransactionResponse) SetIsBillPay(v bool)

SetIsBillPay gets a reference to the given NullableBool and assigns it to the IsBillPay field.

func (*TransactionResponse) SetIsBillPayNil

func (o *TransactionResponse) SetIsBillPayNil()

SetIsBillPayNil sets the value for IsBillPay to be an explicit nil

func (*TransactionResponse) SetIsDirectDeposit

func (o *TransactionResponse) SetIsDirectDeposit(v bool)

SetIsDirectDeposit gets a reference to the given NullableBool and assigns it to the IsDirectDeposit field.

func (*TransactionResponse) SetIsDirectDepositNil

func (o *TransactionResponse) SetIsDirectDepositNil()

SetIsDirectDepositNil sets the value for IsDirectDeposit to be an explicit nil

func (*TransactionResponse) SetIsExpense

func (o *TransactionResponse) SetIsExpense(v bool)

SetIsExpense gets a reference to the given NullableBool and assigns it to the IsExpense field.

func (*TransactionResponse) SetIsExpenseNil

func (o *TransactionResponse) SetIsExpenseNil()

SetIsExpenseNil sets the value for IsExpense to be an explicit nil

func (*TransactionResponse) SetIsFee

func (o *TransactionResponse) SetIsFee(v bool)

SetIsFee gets a reference to the given NullableBool and assigns it to the IsFee field.

func (*TransactionResponse) SetIsFeeNil

func (o *TransactionResponse) SetIsFeeNil()

SetIsFeeNil sets the value for IsFee to be an explicit nil

func (*TransactionResponse) SetIsIncome

func (o *TransactionResponse) SetIsIncome(v bool)

SetIsIncome gets a reference to the given NullableBool and assigns it to the IsIncome field.

func (*TransactionResponse) SetIsIncomeNil

func (o *TransactionResponse) SetIsIncomeNil()

SetIsIncomeNil sets the value for IsIncome to be an explicit nil

func (*TransactionResponse) SetIsInternational

func (o *TransactionResponse) SetIsInternational(v bool)

SetIsInternational gets a reference to the given NullableBool and assigns it to the IsInternational field.

func (*TransactionResponse) SetIsInternationalNil

func (o *TransactionResponse) SetIsInternationalNil()

SetIsInternationalNil sets the value for IsInternational to be an explicit nil

func (*TransactionResponse) SetIsOverdraftFee

func (o *TransactionResponse) SetIsOverdraftFee(v bool)

SetIsOverdraftFee gets a reference to the given NullableBool and assigns it to the IsOverdraftFee field.

func (*TransactionResponse) SetIsOverdraftFeeNil

func (o *TransactionResponse) SetIsOverdraftFeeNil()

SetIsOverdraftFeeNil sets the value for IsOverdraftFee to be an explicit nil

func (*TransactionResponse) SetIsPayrollAdvance

func (o *TransactionResponse) SetIsPayrollAdvance(v bool)

SetIsPayrollAdvance gets a reference to the given NullableBool and assigns it to the IsPayrollAdvance field.

func (*TransactionResponse) SetIsPayrollAdvanceNil

func (o *TransactionResponse) SetIsPayrollAdvanceNil()

SetIsPayrollAdvanceNil sets the value for IsPayrollAdvance to be an explicit nil

func (*TransactionResponse) SetIsRecurring

func (o *TransactionResponse) SetIsRecurring(v bool)

SetIsRecurring gets a reference to the given NullableBool and assigns it to the IsRecurring field.

func (*TransactionResponse) SetIsRecurringNil

func (o *TransactionResponse) SetIsRecurringNil()

SetIsRecurringNil sets the value for IsRecurring to be an explicit nil

func (*TransactionResponse) SetIsSubscription

func (o *TransactionResponse) SetIsSubscription(v bool)

SetIsSubscription gets a reference to the given NullableBool and assigns it to the IsSubscription field.

func (*TransactionResponse) SetIsSubscriptionNil

func (o *TransactionResponse) SetIsSubscriptionNil()

SetIsSubscriptionNil sets the value for IsSubscription to be an explicit nil

func (*TransactionResponse) SetLatitude

func (o *TransactionResponse) SetLatitude(v float32)

SetLatitude gets a reference to the given NullableFloat32 and assigns it to the Latitude field.

func (*TransactionResponse) SetLatitudeNil

func (o *TransactionResponse) SetLatitudeNil()

SetLatitudeNil sets the value for Latitude to be an explicit nil

func (*TransactionResponse) SetLocalizedDescription

func (o *TransactionResponse) SetLocalizedDescription(v string)

SetLocalizedDescription gets a reference to the given NullableString and assigns it to the LocalizedDescription field.

func (*TransactionResponse) SetLocalizedDescriptionNil

func (o *TransactionResponse) SetLocalizedDescriptionNil()

SetLocalizedDescriptionNil sets the value for LocalizedDescription to be an explicit nil

func (*TransactionResponse) SetLocalizedMemo

func (o *TransactionResponse) SetLocalizedMemo(v string)

SetLocalizedMemo gets a reference to the given NullableString and assigns it to the LocalizedMemo field.

func (*TransactionResponse) SetLocalizedMemoNil

func (o *TransactionResponse) SetLocalizedMemoNil()

SetLocalizedMemoNil sets the value for LocalizedMemo to be an explicit nil

func (*TransactionResponse) SetLongitude

func (o *TransactionResponse) SetLongitude(v float32)

SetLongitude gets a reference to the given NullableFloat32 and assigns it to the Longitude field.

func (*TransactionResponse) SetLongitudeNil

func (o *TransactionResponse) SetLongitudeNil()

SetLongitudeNil sets the value for Longitude to be an explicit nil

func (*TransactionResponse) SetMemberGuid

func (o *TransactionResponse) SetMemberGuid(v string)

SetMemberGuid gets a reference to the given NullableString and assigns it to the MemberGuid field.

func (*TransactionResponse) SetMemberGuidNil added in v0.4.1

func (o *TransactionResponse) SetMemberGuidNil()

SetMemberGuidNil sets the value for MemberGuid to be an explicit nil

func (*TransactionResponse) SetMemberIsManagedByUser

func (o *TransactionResponse) SetMemberIsManagedByUser(v bool)

SetMemberIsManagedByUser gets a reference to the given NullableBool and assigns it to the MemberIsManagedByUser field.

func (*TransactionResponse) SetMemberIsManagedByUserNil

func (o *TransactionResponse) SetMemberIsManagedByUserNil()

SetMemberIsManagedByUserNil sets the value for MemberIsManagedByUser to be an explicit nil

func (*TransactionResponse) SetMemo

func (o *TransactionResponse) SetMemo(v string)

SetMemo gets a reference to the given NullableString and assigns it to the Memo field.

func (*TransactionResponse) SetMemoNil

func (o *TransactionResponse) SetMemoNil()

SetMemoNil sets the value for Memo to be an explicit nil

func (*TransactionResponse) SetMerchantCategoryCode

func (o *TransactionResponse) SetMerchantCategoryCode(v int32)

SetMerchantCategoryCode gets a reference to the given NullableInt32 and assigns it to the MerchantCategoryCode field.

func (*TransactionResponse) SetMerchantCategoryCodeNil

func (o *TransactionResponse) SetMerchantCategoryCodeNil()

SetMerchantCategoryCodeNil sets the value for MerchantCategoryCode to be an explicit nil

func (*TransactionResponse) SetMerchantGuid

func (o *TransactionResponse) SetMerchantGuid(v string)

SetMerchantGuid gets a reference to the given NullableString and assigns it to the MerchantGuid field.

func (*TransactionResponse) SetMerchantGuidNil added in v0.4.1

func (o *TransactionResponse) SetMerchantGuidNil()

SetMerchantGuidNil sets the value for MerchantGuid to be an explicit nil

func (*TransactionResponse) SetMerchantLocationGuid

func (o *TransactionResponse) SetMerchantLocationGuid(v string)

SetMerchantLocationGuid gets a reference to the given NullableString and assigns it to the MerchantLocationGuid field.

func (*TransactionResponse) SetMerchantLocationGuidNil added in v0.4.1

func (o *TransactionResponse) SetMerchantLocationGuidNil()

SetMerchantLocationGuidNil sets the value for MerchantLocationGuid to be an explicit nil

func (*TransactionResponse) SetMetadata

func (o *TransactionResponse) SetMetadata(v string)

SetMetadata gets a reference to the given NullableString and assigns it to the Metadata field.

func (*TransactionResponse) SetMetadataNil

func (o *TransactionResponse) SetMetadataNil()

SetMetadataNil sets the value for Metadata to be an explicit nil

func (*TransactionResponse) SetOriginalDescription

func (o *TransactionResponse) SetOriginalDescription(v string)

SetOriginalDescription gets a reference to the given NullableString and assigns it to the OriginalDescription field.

func (*TransactionResponse) SetOriginalDescriptionNil

func (o *TransactionResponse) SetOriginalDescriptionNil()

SetOriginalDescriptionNil sets the value for OriginalDescription to be an explicit nil

func (*TransactionResponse) SetPostedAt

func (o *TransactionResponse) SetPostedAt(v string)

SetPostedAt gets a reference to the given NullableString and assigns it to the PostedAt field.

func (*TransactionResponse) SetPostedAtNil

func (o *TransactionResponse) SetPostedAtNil()

SetPostedAtNil sets the value for PostedAt to be an explicit nil

func (*TransactionResponse) SetStatus

func (o *TransactionResponse) SetStatus(v string)

SetStatus gets a reference to the given NullableString and assigns it to the Status field.

func (*TransactionResponse) SetStatusNil

func (o *TransactionResponse) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*TransactionResponse) SetTopLevelCategory

func (o *TransactionResponse) SetTopLevelCategory(v string)

SetTopLevelCategory gets a reference to the given NullableString and assigns it to the TopLevelCategory field.

func (*TransactionResponse) SetTopLevelCategoryNil

func (o *TransactionResponse) SetTopLevelCategoryNil()

SetTopLevelCategoryNil sets the value for TopLevelCategory to be an explicit nil

func (*TransactionResponse) SetTransactedAt

func (o *TransactionResponse) SetTransactedAt(v string)

SetTransactedAt gets a reference to the given NullableString and assigns it to the TransactedAt field.

func (*TransactionResponse) SetTransactedAtNil

func (o *TransactionResponse) SetTransactedAtNil()

SetTransactedAtNil sets the value for TransactedAt to be an explicit nil

func (*TransactionResponse) SetType

func (o *TransactionResponse) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*TransactionResponse) SetTypeNil

func (o *TransactionResponse) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*TransactionResponse) SetUpdatedAt

func (o *TransactionResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.

func (*TransactionResponse) SetUpdatedAtNil

func (o *TransactionResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*TransactionResponse) SetUserGuid

func (o *TransactionResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*TransactionResponse) SetUserGuidNil added in v0.4.1

func (o *TransactionResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (*TransactionResponse) SetUserId

func (o *TransactionResponse) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*TransactionResponse) SetUserIdNil

func (o *TransactionResponse) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (TransactionResponse) ToMap added in v0.17.1

func (o TransactionResponse) ToMap() (map[string]interface{}, error)

func (*TransactionResponse) UnsetAccountGuid added in v0.4.1

func (o *TransactionResponse) UnsetAccountGuid()

UnsetAccountGuid ensures that no value is present for AccountGuid, not even an explicit nil

func (*TransactionResponse) UnsetAccountId

func (o *TransactionResponse) UnsetAccountId()

UnsetAccountId ensures that no value is present for AccountId, not even an explicit nil

func (*TransactionResponse) UnsetAmount

func (o *TransactionResponse) UnsetAmount()

UnsetAmount ensures that no value is present for Amount, not even an explicit nil

func (*TransactionResponse) UnsetCategory

func (o *TransactionResponse) UnsetCategory()

UnsetCategory ensures that no value is present for Category, not even an explicit nil

func (*TransactionResponse) UnsetCategoryGuid

func (o *TransactionResponse) UnsetCategoryGuid()

UnsetCategoryGuid ensures that no value is present for CategoryGuid, not even an explicit nil

func (*TransactionResponse) UnsetCheckNumberString

func (o *TransactionResponse) UnsetCheckNumberString()

UnsetCheckNumberString ensures that no value is present for CheckNumberString, not even an explicit nil

func (*TransactionResponse) UnsetCreatedAt

func (o *TransactionResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*TransactionResponse) UnsetCurrencyCode

func (o *TransactionResponse) UnsetCurrencyCode()

UnsetCurrencyCode ensures that no value is present for CurrencyCode, not even an explicit nil

func (*TransactionResponse) UnsetDate

func (o *TransactionResponse) UnsetDate()

UnsetDate ensures that no value is present for Date, not even an explicit nil

func (*TransactionResponse) UnsetDescription

func (o *TransactionResponse) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*TransactionResponse) UnsetExtendedTransactionType

func (o *TransactionResponse) UnsetExtendedTransactionType()

UnsetExtendedTransactionType ensures that no value is present for ExtendedTransactionType, not even an explicit nil

func (*TransactionResponse) UnsetGuid added in v0.4.1

func (o *TransactionResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*TransactionResponse) UnsetId

func (o *TransactionResponse) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*TransactionResponse) UnsetIsBillPay

func (o *TransactionResponse) UnsetIsBillPay()

UnsetIsBillPay ensures that no value is present for IsBillPay, not even an explicit nil

func (*TransactionResponse) UnsetIsDirectDeposit

func (o *TransactionResponse) UnsetIsDirectDeposit()

UnsetIsDirectDeposit ensures that no value is present for IsDirectDeposit, not even an explicit nil

func (*TransactionResponse) UnsetIsExpense

func (o *TransactionResponse) UnsetIsExpense()

UnsetIsExpense ensures that no value is present for IsExpense, not even an explicit nil

func (*TransactionResponse) UnsetIsFee

func (o *TransactionResponse) UnsetIsFee()

UnsetIsFee ensures that no value is present for IsFee, not even an explicit nil

func (*TransactionResponse) UnsetIsIncome

func (o *TransactionResponse) UnsetIsIncome()

UnsetIsIncome ensures that no value is present for IsIncome, not even an explicit nil

func (*TransactionResponse) UnsetIsInternational

func (o *TransactionResponse) UnsetIsInternational()

UnsetIsInternational ensures that no value is present for IsInternational, not even an explicit nil

func (*TransactionResponse) UnsetIsOverdraftFee

func (o *TransactionResponse) UnsetIsOverdraftFee()

UnsetIsOverdraftFee ensures that no value is present for IsOverdraftFee, not even an explicit nil

func (*TransactionResponse) UnsetIsPayrollAdvance

func (o *TransactionResponse) UnsetIsPayrollAdvance()

UnsetIsPayrollAdvance ensures that no value is present for IsPayrollAdvance, not even an explicit nil

func (*TransactionResponse) UnsetIsRecurring

func (o *TransactionResponse) UnsetIsRecurring()

UnsetIsRecurring ensures that no value is present for IsRecurring, not even an explicit nil

func (*TransactionResponse) UnsetIsSubscription

func (o *TransactionResponse) UnsetIsSubscription()

UnsetIsSubscription ensures that no value is present for IsSubscription, not even an explicit nil

func (*TransactionResponse) UnsetLatitude

func (o *TransactionResponse) UnsetLatitude()

UnsetLatitude ensures that no value is present for Latitude, not even an explicit nil

func (*TransactionResponse) UnsetLocalizedDescription

func (o *TransactionResponse) UnsetLocalizedDescription()

UnsetLocalizedDescription ensures that no value is present for LocalizedDescription, not even an explicit nil

func (*TransactionResponse) UnsetLocalizedMemo

func (o *TransactionResponse) UnsetLocalizedMemo()

UnsetLocalizedMemo ensures that no value is present for LocalizedMemo, not even an explicit nil

func (*TransactionResponse) UnsetLongitude

func (o *TransactionResponse) UnsetLongitude()

UnsetLongitude ensures that no value is present for Longitude, not even an explicit nil

func (*TransactionResponse) UnsetMemberGuid added in v0.4.1

func (o *TransactionResponse) UnsetMemberGuid()

UnsetMemberGuid ensures that no value is present for MemberGuid, not even an explicit nil

func (*TransactionResponse) UnsetMemberIsManagedByUser

func (o *TransactionResponse) UnsetMemberIsManagedByUser()

UnsetMemberIsManagedByUser ensures that no value is present for MemberIsManagedByUser, not even an explicit nil

func (*TransactionResponse) UnsetMemo

func (o *TransactionResponse) UnsetMemo()

UnsetMemo ensures that no value is present for Memo, not even an explicit nil

func (*TransactionResponse) UnsetMerchantCategoryCode

func (o *TransactionResponse) UnsetMerchantCategoryCode()

UnsetMerchantCategoryCode ensures that no value is present for MerchantCategoryCode, not even an explicit nil

func (*TransactionResponse) UnsetMerchantGuid added in v0.4.1

func (o *TransactionResponse) UnsetMerchantGuid()

UnsetMerchantGuid ensures that no value is present for MerchantGuid, not even an explicit nil

func (*TransactionResponse) UnsetMerchantLocationGuid added in v0.4.1

func (o *TransactionResponse) UnsetMerchantLocationGuid()

UnsetMerchantLocationGuid ensures that no value is present for MerchantLocationGuid, not even an explicit nil

func (*TransactionResponse) UnsetMetadata

func (o *TransactionResponse) UnsetMetadata()

UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil

func (*TransactionResponse) UnsetOriginalDescription

func (o *TransactionResponse) UnsetOriginalDescription()

UnsetOriginalDescription ensures that no value is present for OriginalDescription, not even an explicit nil

func (*TransactionResponse) UnsetPostedAt

func (o *TransactionResponse) UnsetPostedAt()

UnsetPostedAt ensures that no value is present for PostedAt, not even an explicit nil

func (*TransactionResponse) UnsetStatus

func (o *TransactionResponse) UnsetStatus()

UnsetStatus ensures that no value is present for Status, not even an explicit nil

func (*TransactionResponse) UnsetTopLevelCategory

func (o *TransactionResponse) UnsetTopLevelCategory()

UnsetTopLevelCategory ensures that no value is present for TopLevelCategory, not even an explicit nil

func (*TransactionResponse) UnsetTransactedAt

func (o *TransactionResponse) UnsetTransactedAt()

UnsetTransactedAt ensures that no value is present for TransactedAt, not even an explicit nil

func (*TransactionResponse) UnsetType

func (o *TransactionResponse) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

func (*TransactionResponse) UnsetUpdatedAt

func (o *TransactionResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*TransactionResponse) UnsetUserGuid added in v0.4.1

func (o *TransactionResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

func (*TransactionResponse) UnsetUserId

func (o *TransactionResponse) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type TransactionResponseBody

type TransactionResponseBody struct {
	Transaction *TransactionResponse `json:"transaction,omitempty"`
}

TransactionResponseBody struct for TransactionResponseBody

func NewTransactionResponseBody

func NewTransactionResponseBody() *TransactionResponseBody

NewTransactionResponseBody instantiates a new TransactionResponseBody 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 NewTransactionResponseBodyWithDefaults

func NewTransactionResponseBodyWithDefaults() *TransactionResponseBody

NewTransactionResponseBodyWithDefaults instantiates a new TransactionResponseBody 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 (*TransactionResponseBody) GetTransaction

func (o *TransactionResponseBody) GetTransaction() TransactionResponse

GetTransaction returns the Transaction field value if set, zero value otherwise.

func (*TransactionResponseBody) GetTransactionOk

func (o *TransactionResponseBody) GetTransactionOk() (*TransactionResponse, bool)

GetTransactionOk returns a tuple with the Transaction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionResponseBody) HasTransaction

func (o *TransactionResponseBody) HasTransaction() bool

HasTransaction returns a boolean if a field has been set.

func (TransactionResponseBody) MarshalJSON

func (o TransactionResponseBody) MarshalJSON() ([]byte, error)

func (*TransactionResponseBody) SetTransaction

func (o *TransactionResponseBody) SetTransaction(v TransactionResponse)

SetTransaction gets a reference to the given TransactionResponse and assigns it to the Transaction field.

func (TransactionResponseBody) ToMap added in v0.17.1

func (o TransactionResponseBody) ToMap() (map[string]interface{}, error)

type TransactionRuleCreateRequest

type TransactionRuleCreateRequest struct {
	CategoryGuid     string  `json:"category_guid"`
	Description      *string `json:"description,omitempty"`
	MatchDescription string  `json:"match_description"`
}

TransactionRuleCreateRequest struct for TransactionRuleCreateRequest

func NewTransactionRuleCreateRequest

func NewTransactionRuleCreateRequest(categoryGuid string, matchDescription string) *TransactionRuleCreateRequest

NewTransactionRuleCreateRequest instantiates a new TransactionRuleCreateRequest 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 NewTransactionRuleCreateRequestWithDefaults

func NewTransactionRuleCreateRequestWithDefaults() *TransactionRuleCreateRequest

NewTransactionRuleCreateRequestWithDefaults instantiates a new TransactionRuleCreateRequest 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 (*TransactionRuleCreateRequest) GetCategoryGuid

func (o *TransactionRuleCreateRequest) GetCategoryGuid() string

GetCategoryGuid returns the CategoryGuid field value

func (*TransactionRuleCreateRequest) GetCategoryGuidOk

func (o *TransactionRuleCreateRequest) GetCategoryGuidOk() (*string, bool)

GetCategoryGuidOk returns a tuple with the CategoryGuid field value and a boolean to check if the value has been set.

func (*TransactionRuleCreateRequest) GetDescription

func (o *TransactionRuleCreateRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TransactionRuleCreateRequest) GetDescriptionOk

func (o *TransactionRuleCreateRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRuleCreateRequest) GetMatchDescription

func (o *TransactionRuleCreateRequest) GetMatchDescription() string

GetMatchDescription returns the MatchDescription field value

func (*TransactionRuleCreateRequest) GetMatchDescriptionOk

func (o *TransactionRuleCreateRequest) GetMatchDescriptionOk() (*string, bool)

GetMatchDescriptionOk returns a tuple with the MatchDescription field value and a boolean to check if the value has been set.

func (*TransactionRuleCreateRequest) HasDescription

func (o *TransactionRuleCreateRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (TransactionRuleCreateRequest) MarshalJSON

func (o TransactionRuleCreateRequest) MarshalJSON() ([]byte, error)

func (*TransactionRuleCreateRequest) SetCategoryGuid

func (o *TransactionRuleCreateRequest) SetCategoryGuid(v string)

SetCategoryGuid sets field value

func (*TransactionRuleCreateRequest) SetDescription

func (o *TransactionRuleCreateRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TransactionRuleCreateRequest) SetMatchDescription

func (o *TransactionRuleCreateRequest) SetMatchDescription(v string)

SetMatchDescription sets field value

func (TransactionRuleCreateRequest) ToMap added in v0.17.1

func (o TransactionRuleCreateRequest) ToMap() (map[string]interface{}, error)

type TransactionRuleCreateRequestBody

type TransactionRuleCreateRequestBody struct {
	TransactionRule *TransactionRuleCreateRequest `json:"transaction_rule,omitempty"`
}

TransactionRuleCreateRequestBody struct for TransactionRuleCreateRequestBody

func NewTransactionRuleCreateRequestBody

func NewTransactionRuleCreateRequestBody() *TransactionRuleCreateRequestBody

NewTransactionRuleCreateRequestBody instantiates a new TransactionRuleCreateRequestBody 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 NewTransactionRuleCreateRequestBodyWithDefaults

func NewTransactionRuleCreateRequestBodyWithDefaults() *TransactionRuleCreateRequestBody

NewTransactionRuleCreateRequestBodyWithDefaults instantiates a new TransactionRuleCreateRequestBody 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 (*TransactionRuleCreateRequestBody) GetTransactionRule

GetTransactionRule returns the TransactionRule field value if set, zero value otherwise.

func (*TransactionRuleCreateRequestBody) GetTransactionRuleOk

GetTransactionRuleOk returns a tuple with the TransactionRule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRuleCreateRequestBody) HasTransactionRule

func (o *TransactionRuleCreateRequestBody) HasTransactionRule() bool

HasTransactionRule returns a boolean if a field has been set.

func (TransactionRuleCreateRequestBody) MarshalJSON

func (o TransactionRuleCreateRequestBody) MarshalJSON() ([]byte, error)

func (*TransactionRuleCreateRequestBody) SetTransactionRule

SetTransactionRule gets a reference to the given TransactionRuleCreateRequest and assigns it to the TransactionRule field.

func (TransactionRuleCreateRequestBody) ToMap added in v0.17.1

func (o TransactionRuleCreateRequestBody) ToMap() (map[string]interface{}, error)

type TransactionRuleResponse

type TransactionRuleResponse struct {
	CategoryGuid     NullableString `json:"category_guid,omitempty"`
	CreatedAt        NullableString `json:"created_at,omitempty"`
	Description      NullableString `json:"description,omitempty"`
	Guid             NullableString `json:"guid,omitempty"`
	MatchDescription NullableString `json:"match_description,omitempty"`
	UpdatedAt        NullableString `json:"updated_at,omitempty"`
	UserGuid         NullableString `json:"user_guid,omitempty"`
}

TransactionRuleResponse struct for TransactionRuleResponse

func NewTransactionRuleResponse

func NewTransactionRuleResponse() *TransactionRuleResponse

NewTransactionRuleResponse instantiates a new TransactionRuleResponse 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 NewTransactionRuleResponseWithDefaults

func NewTransactionRuleResponseWithDefaults() *TransactionRuleResponse

NewTransactionRuleResponseWithDefaults instantiates a new TransactionRuleResponse 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 (*TransactionRuleResponse) GetCategoryGuid

func (o *TransactionRuleResponse) GetCategoryGuid() string

GetCategoryGuid returns the CategoryGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionRuleResponse) GetCategoryGuidOk

func (o *TransactionRuleResponse) GetCategoryGuidOk() (*string, bool)

GetCategoryGuidOk returns a tuple with the CategoryGuid 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 (*TransactionRuleResponse) GetCreatedAt

func (o *TransactionRuleResponse) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionRuleResponse) GetCreatedAtOk

func (o *TransactionRuleResponse) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransactionRuleResponse) GetDescription

func (o *TransactionRuleResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionRuleResponse) GetDescriptionOk

func (o *TransactionRuleResponse) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransactionRuleResponse) GetGuid

func (o *TransactionRuleResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionRuleResponse) GetGuidOk

func (o *TransactionRuleResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*TransactionRuleResponse) GetMatchDescription

func (o *TransactionRuleResponse) GetMatchDescription() string

GetMatchDescription returns the MatchDescription field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionRuleResponse) GetMatchDescriptionOk

func (o *TransactionRuleResponse) GetMatchDescriptionOk() (*string, bool)

GetMatchDescriptionOk returns a tuple with the MatchDescription 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 (*TransactionRuleResponse) GetUpdatedAt

func (o *TransactionRuleResponse) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionRuleResponse) GetUpdatedAtOk

func (o *TransactionRuleResponse) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TransactionRuleResponse) GetUserGuid

func (o *TransactionRuleResponse) GetUserGuid() string

GetUserGuid returns the UserGuid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TransactionRuleResponse) GetUserGuidOk

func (o *TransactionRuleResponse) GetUserGuidOk() (*string, bool)

GetUserGuidOk returns a tuple with the UserGuid 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 (*TransactionRuleResponse) HasCategoryGuid

func (o *TransactionRuleResponse) HasCategoryGuid() bool

HasCategoryGuid returns a boolean if a field has been set.

func (*TransactionRuleResponse) HasCreatedAt

func (o *TransactionRuleResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TransactionRuleResponse) HasDescription

func (o *TransactionRuleResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TransactionRuleResponse) HasGuid

func (o *TransactionRuleResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*TransactionRuleResponse) HasMatchDescription

func (o *TransactionRuleResponse) HasMatchDescription() bool

HasMatchDescription returns a boolean if a field has been set.

func (*TransactionRuleResponse) HasUpdatedAt

func (o *TransactionRuleResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*TransactionRuleResponse) HasUserGuid

func (o *TransactionRuleResponse) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (TransactionRuleResponse) MarshalJSON

func (o TransactionRuleResponse) MarshalJSON() ([]byte, error)

func (*TransactionRuleResponse) SetCategoryGuid

func (o *TransactionRuleResponse) SetCategoryGuid(v string)

SetCategoryGuid gets a reference to the given NullableString and assigns it to the CategoryGuid field.

func (*TransactionRuleResponse) SetCategoryGuidNil added in v0.4.1

func (o *TransactionRuleResponse) SetCategoryGuidNil()

SetCategoryGuidNil sets the value for CategoryGuid to be an explicit nil

func (*TransactionRuleResponse) SetCreatedAt

func (o *TransactionRuleResponse) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.

func (*TransactionRuleResponse) SetCreatedAtNil

func (o *TransactionRuleResponse) SetCreatedAtNil()

SetCreatedAtNil sets the value for CreatedAt to be an explicit nil

func (*TransactionRuleResponse) SetDescription

func (o *TransactionRuleResponse) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*TransactionRuleResponse) SetDescriptionNil

func (o *TransactionRuleResponse) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*TransactionRuleResponse) SetGuid

func (o *TransactionRuleResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*TransactionRuleResponse) SetGuidNil added in v0.4.1

func (o *TransactionRuleResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*TransactionRuleResponse) SetMatchDescription

func (o *TransactionRuleResponse) SetMatchDescription(v string)

SetMatchDescription gets a reference to the given NullableString and assigns it to the MatchDescription field.

func (*TransactionRuleResponse) SetMatchDescriptionNil

func (o *TransactionRuleResponse) SetMatchDescriptionNil()

SetMatchDescriptionNil sets the value for MatchDescription to be an explicit nil

func (*TransactionRuleResponse) SetUpdatedAt

func (o *TransactionRuleResponse) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.

func (*TransactionRuleResponse) SetUpdatedAtNil

func (o *TransactionRuleResponse) SetUpdatedAtNil()

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (*TransactionRuleResponse) SetUserGuid

func (o *TransactionRuleResponse) SetUserGuid(v string)

SetUserGuid gets a reference to the given NullableString and assigns it to the UserGuid field.

func (*TransactionRuleResponse) SetUserGuidNil added in v0.4.1

func (o *TransactionRuleResponse) SetUserGuidNil()

SetUserGuidNil sets the value for UserGuid to be an explicit nil

func (TransactionRuleResponse) ToMap added in v0.17.1

func (o TransactionRuleResponse) ToMap() (map[string]interface{}, error)

func (*TransactionRuleResponse) UnsetCategoryGuid added in v0.4.1

func (o *TransactionRuleResponse) UnsetCategoryGuid()

UnsetCategoryGuid ensures that no value is present for CategoryGuid, not even an explicit nil

func (*TransactionRuleResponse) UnsetCreatedAt

func (o *TransactionRuleResponse) UnsetCreatedAt()

UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil

func (*TransactionRuleResponse) UnsetDescription

func (o *TransactionRuleResponse) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*TransactionRuleResponse) UnsetGuid added in v0.4.1

func (o *TransactionRuleResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*TransactionRuleResponse) UnsetMatchDescription

func (o *TransactionRuleResponse) UnsetMatchDescription()

UnsetMatchDescription ensures that no value is present for MatchDescription, not even an explicit nil

func (*TransactionRuleResponse) UnsetUpdatedAt

func (o *TransactionRuleResponse) UnsetUpdatedAt()

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

func (*TransactionRuleResponse) UnsetUserGuid added in v0.4.1

func (o *TransactionRuleResponse) UnsetUserGuid()

UnsetUserGuid ensures that no value is present for UserGuid, not even an explicit nil

type TransactionRuleResponseBody

type TransactionRuleResponseBody struct {
	TransactionRule *TransactionRuleResponse `json:"transaction_rule,omitempty"`
}

TransactionRuleResponseBody struct for TransactionRuleResponseBody

func NewTransactionRuleResponseBody

func NewTransactionRuleResponseBody() *TransactionRuleResponseBody

NewTransactionRuleResponseBody instantiates a new TransactionRuleResponseBody 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 NewTransactionRuleResponseBodyWithDefaults

func NewTransactionRuleResponseBodyWithDefaults() *TransactionRuleResponseBody

NewTransactionRuleResponseBodyWithDefaults instantiates a new TransactionRuleResponseBody 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 (*TransactionRuleResponseBody) GetTransactionRule

func (o *TransactionRuleResponseBody) GetTransactionRule() TransactionRuleResponse

GetTransactionRule returns the TransactionRule field value if set, zero value otherwise.

func (*TransactionRuleResponseBody) GetTransactionRuleOk

func (o *TransactionRuleResponseBody) GetTransactionRuleOk() (*TransactionRuleResponse, bool)

GetTransactionRuleOk returns a tuple with the TransactionRule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRuleResponseBody) HasTransactionRule

func (o *TransactionRuleResponseBody) HasTransactionRule() bool

HasTransactionRule returns a boolean if a field has been set.

func (TransactionRuleResponseBody) MarshalJSON

func (o TransactionRuleResponseBody) MarshalJSON() ([]byte, error)

func (*TransactionRuleResponseBody) SetTransactionRule

func (o *TransactionRuleResponseBody) SetTransactionRule(v TransactionRuleResponse)

SetTransactionRule gets a reference to the given TransactionRuleResponse and assigns it to the TransactionRule field.

func (TransactionRuleResponseBody) ToMap added in v0.17.1

func (o TransactionRuleResponseBody) ToMap() (map[string]interface{}, error)

type TransactionRuleUpdateRequest

type TransactionRuleUpdateRequest struct {
	CategoryGuid     *string `json:"category_guid,omitempty"`
	Description      *string `json:"description,omitempty"`
	MatchDescription *string `json:"match_description,omitempty"`
}

TransactionRuleUpdateRequest struct for TransactionRuleUpdateRequest

func NewTransactionRuleUpdateRequest

func NewTransactionRuleUpdateRequest() *TransactionRuleUpdateRequest

NewTransactionRuleUpdateRequest instantiates a new TransactionRuleUpdateRequest 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 NewTransactionRuleUpdateRequestWithDefaults

func NewTransactionRuleUpdateRequestWithDefaults() *TransactionRuleUpdateRequest

NewTransactionRuleUpdateRequestWithDefaults instantiates a new TransactionRuleUpdateRequest 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 (*TransactionRuleUpdateRequest) GetCategoryGuid

func (o *TransactionRuleUpdateRequest) GetCategoryGuid() string

GetCategoryGuid returns the CategoryGuid field value if set, zero value otherwise.

func (*TransactionRuleUpdateRequest) GetCategoryGuidOk

func (o *TransactionRuleUpdateRequest) GetCategoryGuidOk() (*string, bool)

GetCategoryGuidOk returns a tuple with the CategoryGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRuleUpdateRequest) GetDescription

func (o *TransactionRuleUpdateRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TransactionRuleUpdateRequest) GetDescriptionOk

func (o *TransactionRuleUpdateRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRuleUpdateRequest) GetMatchDescription

func (o *TransactionRuleUpdateRequest) GetMatchDescription() string

GetMatchDescription returns the MatchDescription field value if set, zero value otherwise.

func (*TransactionRuleUpdateRequest) GetMatchDescriptionOk

func (o *TransactionRuleUpdateRequest) GetMatchDescriptionOk() (*string, bool)

GetMatchDescriptionOk returns a tuple with the MatchDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRuleUpdateRequest) HasCategoryGuid

func (o *TransactionRuleUpdateRequest) HasCategoryGuid() bool

HasCategoryGuid returns a boolean if a field has been set.

func (*TransactionRuleUpdateRequest) HasDescription

func (o *TransactionRuleUpdateRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TransactionRuleUpdateRequest) HasMatchDescription

func (o *TransactionRuleUpdateRequest) HasMatchDescription() bool

HasMatchDescription returns a boolean if a field has been set.

func (TransactionRuleUpdateRequest) MarshalJSON

func (o TransactionRuleUpdateRequest) MarshalJSON() ([]byte, error)

func (*TransactionRuleUpdateRequest) SetCategoryGuid

func (o *TransactionRuleUpdateRequest) SetCategoryGuid(v string)

SetCategoryGuid gets a reference to the given string and assigns it to the CategoryGuid field.

func (*TransactionRuleUpdateRequest) SetDescription

func (o *TransactionRuleUpdateRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TransactionRuleUpdateRequest) SetMatchDescription

func (o *TransactionRuleUpdateRequest) SetMatchDescription(v string)

SetMatchDescription gets a reference to the given string and assigns it to the MatchDescription field.

func (TransactionRuleUpdateRequest) ToMap added in v0.17.1

func (o TransactionRuleUpdateRequest) ToMap() (map[string]interface{}, error)

type TransactionRuleUpdateRequestBody

type TransactionRuleUpdateRequestBody struct {
	TransactionRule *TransactionRuleUpdateRequest `json:"transaction_rule,omitempty"`
}

TransactionRuleUpdateRequestBody struct for TransactionRuleUpdateRequestBody

func NewTransactionRuleUpdateRequestBody

func NewTransactionRuleUpdateRequestBody() *TransactionRuleUpdateRequestBody

NewTransactionRuleUpdateRequestBody instantiates a new TransactionRuleUpdateRequestBody 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 NewTransactionRuleUpdateRequestBodyWithDefaults

func NewTransactionRuleUpdateRequestBodyWithDefaults() *TransactionRuleUpdateRequestBody

NewTransactionRuleUpdateRequestBodyWithDefaults instantiates a new TransactionRuleUpdateRequestBody 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 (*TransactionRuleUpdateRequestBody) GetTransactionRule

GetTransactionRule returns the TransactionRule field value if set, zero value otherwise.

func (*TransactionRuleUpdateRequestBody) GetTransactionRuleOk

GetTransactionRuleOk returns a tuple with the TransactionRule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRuleUpdateRequestBody) HasTransactionRule

func (o *TransactionRuleUpdateRequestBody) HasTransactionRule() bool

HasTransactionRule returns a boolean if a field has been set.

func (TransactionRuleUpdateRequestBody) MarshalJSON

func (o TransactionRuleUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*TransactionRuleUpdateRequestBody) SetTransactionRule

SetTransactionRule gets a reference to the given TransactionRuleUpdateRequest and assigns it to the TransactionRule field.

func (TransactionRuleUpdateRequestBody) ToMap added in v0.17.1

func (o TransactionRuleUpdateRequestBody) ToMap() (map[string]interface{}, error)

type TransactionRulesResponseBody

type TransactionRulesResponseBody struct {
	Pagination       *PaginationResponse       `json:"pagination,omitempty"`
	TransactionRules []TransactionRuleResponse `json:"transaction_rules,omitempty"`
}

TransactionRulesResponseBody struct for TransactionRulesResponseBody

func NewTransactionRulesResponseBody

func NewTransactionRulesResponseBody() *TransactionRulesResponseBody

NewTransactionRulesResponseBody instantiates a new TransactionRulesResponseBody 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 NewTransactionRulesResponseBodyWithDefaults

func NewTransactionRulesResponseBodyWithDefaults() *TransactionRulesResponseBody

NewTransactionRulesResponseBodyWithDefaults instantiates a new TransactionRulesResponseBody 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 (*TransactionRulesResponseBody) GetPagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*TransactionRulesResponseBody) GetPaginationOk

func (o *TransactionRulesResponseBody) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRulesResponseBody) GetTransactionRules

func (o *TransactionRulesResponseBody) GetTransactionRules() []TransactionRuleResponse

GetTransactionRules returns the TransactionRules field value if set, zero value otherwise.

func (*TransactionRulesResponseBody) GetTransactionRulesOk

func (o *TransactionRulesResponseBody) GetTransactionRulesOk() ([]TransactionRuleResponse, bool)

GetTransactionRulesOk returns a tuple with the TransactionRules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionRulesResponseBody) HasPagination

func (o *TransactionRulesResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*TransactionRulesResponseBody) HasTransactionRules

func (o *TransactionRulesResponseBody) HasTransactionRules() bool

HasTransactionRules returns a boolean if a field has been set.

func (TransactionRulesResponseBody) MarshalJSON

func (o TransactionRulesResponseBody) MarshalJSON() ([]byte, error)

func (*TransactionRulesResponseBody) SetPagination

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*TransactionRulesResponseBody) SetTransactionRules

func (o *TransactionRulesResponseBody) SetTransactionRules(v []TransactionRuleResponse)

SetTransactionRules gets a reference to the given []TransactionRuleResponse and assigns it to the TransactionRules field.

func (TransactionRulesResponseBody) ToMap added in v0.17.1

func (o TransactionRulesResponseBody) ToMap() (map[string]interface{}, error)

type TransactionUpdateRequest

type TransactionUpdateRequest struct {
	Description string `json:"description"`
}

TransactionUpdateRequest struct for TransactionUpdateRequest

func NewTransactionUpdateRequest

func NewTransactionUpdateRequest(description string) *TransactionUpdateRequest

NewTransactionUpdateRequest instantiates a new TransactionUpdateRequest 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 NewTransactionUpdateRequestWithDefaults

func NewTransactionUpdateRequestWithDefaults() *TransactionUpdateRequest

NewTransactionUpdateRequestWithDefaults instantiates a new TransactionUpdateRequest 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 (*TransactionUpdateRequest) GetDescription

func (o *TransactionUpdateRequest) GetDescription() string

GetDescription returns the Description field value

func (*TransactionUpdateRequest) GetDescriptionOk

func (o *TransactionUpdateRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (TransactionUpdateRequest) MarshalJSON

func (o TransactionUpdateRequest) MarshalJSON() ([]byte, error)

func (*TransactionUpdateRequest) SetDescription

func (o *TransactionUpdateRequest) SetDescription(v string)

SetDescription sets field value

func (TransactionUpdateRequest) ToMap added in v0.17.1

func (o TransactionUpdateRequest) ToMap() (map[string]interface{}, error)

type TransactionUpdateRequestBody

type TransactionUpdateRequestBody struct {
	Transaction *TransactionUpdateRequest `json:"transaction,omitempty"`
}

TransactionUpdateRequestBody struct for TransactionUpdateRequestBody

func NewTransactionUpdateRequestBody

func NewTransactionUpdateRequestBody() *TransactionUpdateRequestBody

NewTransactionUpdateRequestBody instantiates a new TransactionUpdateRequestBody 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 NewTransactionUpdateRequestBodyWithDefaults

func NewTransactionUpdateRequestBodyWithDefaults() *TransactionUpdateRequestBody

NewTransactionUpdateRequestBodyWithDefaults instantiates a new TransactionUpdateRequestBody 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 (*TransactionUpdateRequestBody) GetTransaction

GetTransaction returns the Transaction field value if set, zero value otherwise.

func (*TransactionUpdateRequestBody) GetTransactionOk

GetTransactionOk returns a tuple with the Transaction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionUpdateRequestBody) HasTransaction

func (o *TransactionUpdateRequestBody) HasTransaction() bool

HasTransaction returns a boolean if a field has been set.

func (TransactionUpdateRequestBody) MarshalJSON

func (o TransactionUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*TransactionUpdateRequestBody) SetTransaction

SetTransaction gets a reference to the given TransactionUpdateRequest and assigns it to the Transaction field.

func (TransactionUpdateRequestBody) ToMap added in v0.17.1

func (o TransactionUpdateRequestBody) ToMap() (map[string]interface{}, error)

type TransactionsResponseBody

type TransactionsResponseBody struct {
	Pagination   *PaginationResponse   `json:"pagination,omitempty"`
	Transactions []TransactionResponse `json:"transactions,omitempty"`
}

TransactionsResponseBody struct for TransactionsResponseBody

func NewTransactionsResponseBody

func NewTransactionsResponseBody() *TransactionsResponseBody

NewTransactionsResponseBody instantiates a new TransactionsResponseBody 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 NewTransactionsResponseBodyWithDefaults

func NewTransactionsResponseBodyWithDefaults() *TransactionsResponseBody

NewTransactionsResponseBodyWithDefaults instantiates a new TransactionsResponseBody 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 (*TransactionsResponseBody) GetPagination

func (o *TransactionsResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*TransactionsResponseBody) GetPaginationOk

func (o *TransactionsResponseBody) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransactionsResponseBody) GetTransactions

func (o *TransactionsResponseBody) GetTransactions() []TransactionResponse

GetTransactions returns the Transactions field value if set, zero value otherwise.

func (*TransactionsResponseBody) GetTransactionsOk

func (o *TransactionsResponseBody) GetTransactionsOk() ([]TransactionResponse, bool)

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 (*TransactionsResponseBody) HasPagination

func (o *TransactionsResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*TransactionsResponseBody) HasTransactions

func (o *TransactionsResponseBody) HasTransactions() bool

HasTransactions returns a boolean if a field has been set.

func (TransactionsResponseBody) MarshalJSON

func (o TransactionsResponseBody) MarshalJSON() ([]byte, error)

func (*TransactionsResponseBody) SetPagination

func (o *TransactionsResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*TransactionsResponseBody) SetTransactions

func (o *TransactionsResponseBody) SetTransactions(v []TransactionResponse)

SetTransactions gets a reference to the given []TransactionResponse and assigns it to the Transactions field.

func (TransactionsResponseBody) ToMap added in v0.17.1

func (o TransactionsResponseBody) ToMap() (map[string]interface{}, error)

type UserCreateRequest

type UserCreateRequest struct {
	Email      *string `json:"email,omitempty"`
	Id         *string `json:"id,omitempty"`
	IsDisabled *bool   `json:"is_disabled,omitempty"`
	Metadata   *string `json:"metadata,omitempty"`
}

UserCreateRequest struct for UserCreateRequest

func NewUserCreateRequest

func NewUserCreateRequest() *UserCreateRequest

NewUserCreateRequest instantiates a new UserCreateRequest 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 NewUserCreateRequestWithDefaults

func NewUserCreateRequestWithDefaults() *UserCreateRequest

NewUserCreateRequestWithDefaults instantiates a new UserCreateRequest 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 (*UserCreateRequest) GetEmail

func (o *UserCreateRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UserCreateRequest) GetEmailOk

func (o *UserCreateRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreateRequest) GetId

func (o *UserCreateRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UserCreateRequest) GetIdOk

func (o *UserCreateRequest) 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 (*UserCreateRequest) GetIsDisabled

func (o *UserCreateRequest) GetIsDisabled() bool

GetIsDisabled returns the IsDisabled field value if set, zero value otherwise.

func (*UserCreateRequest) GetIsDisabledOk

func (o *UserCreateRequest) GetIsDisabledOk() (*bool, bool)

GetIsDisabledOk returns a tuple with the IsDisabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreateRequest) GetMetadata

func (o *UserCreateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*UserCreateRequest) GetMetadataOk

func (o *UserCreateRequest) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreateRequest) HasEmail

func (o *UserCreateRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserCreateRequest) HasId

func (o *UserCreateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserCreateRequest) HasIsDisabled

func (o *UserCreateRequest) HasIsDisabled() bool

HasIsDisabled returns a boolean if a field has been set.

func (*UserCreateRequest) HasMetadata

func (o *UserCreateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (UserCreateRequest) MarshalJSON

func (o UserCreateRequest) MarshalJSON() ([]byte, error)

func (*UserCreateRequest) SetEmail

func (o *UserCreateRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UserCreateRequest) SetId

func (o *UserCreateRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UserCreateRequest) SetIsDisabled

func (o *UserCreateRequest) SetIsDisabled(v bool)

SetIsDisabled gets a reference to the given bool and assigns it to the IsDisabled field.

func (*UserCreateRequest) SetMetadata

func (o *UserCreateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (UserCreateRequest) ToMap added in v0.17.1

func (o UserCreateRequest) ToMap() (map[string]interface{}, error)

type UserCreateRequestBody

type UserCreateRequestBody struct {
	User *UserCreateRequest `json:"user,omitempty"`
}

UserCreateRequestBody struct for UserCreateRequestBody

func NewUserCreateRequestBody

func NewUserCreateRequestBody() *UserCreateRequestBody

NewUserCreateRequestBody instantiates a new UserCreateRequestBody 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 NewUserCreateRequestBodyWithDefaults

func NewUserCreateRequestBodyWithDefaults() *UserCreateRequestBody

NewUserCreateRequestBodyWithDefaults instantiates a new UserCreateRequestBody 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 (*UserCreateRequestBody) GetUser

GetUser returns the User field value if set, zero value otherwise.

func (*UserCreateRequestBody) GetUserOk

func (o *UserCreateRequestBody) GetUserOk() (*UserCreateRequest, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreateRequestBody) HasUser

func (o *UserCreateRequestBody) HasUser() bool

HasUser returns a boolean if a field has been set.

func (UserCreateRequestBody) MarshalJSON

func (o UserCreateRequestBody) MarshalJSON() ([]byte, error)

func (*UserCreateRequestBody) SetUser

SetUser gets a reference to the given UserCreateRequest and assigns it to the User field.

func (UserCreateRequestBody) ToMap added in v0.17.1

func (o UserCreateRequestBody) ToMap() (map[string]interface{}, error)

type UserResponse

type UserResponse struct {
	Email      NullableString `json:"email,omitempty"`
	Guid       NullableString `json:"guid,omitempty"`
	Id         NullableString `json:"id,omitempty"`
	IsDisabled NullableBool   `json:"is_disabled,omitempty"`
	Metadata   NullableString `json:"metadata,omitempty"`
}

UserResponse struct for UserResponse

func NewUserResponse

func NewUserResponse() *UserResponse

NewUserResponse instantiates a new UserResponse 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 NewUserResponseWithDefaults

func NewUserResponseWithDefaults() *UserResponse

NewUserResponseWithDefaults instantiates a new UserResponse 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 (*UserResponse) GetEmail

func (o *UserResponse) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserResponse) GetEmailOk

func (o *UserResponse) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserResponse) GetGuid

func (o *UserResponse) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserResponse) GetGuidOk

func (o *UserResponse) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*UserResponse) GetId

func (o *UserResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserResponse) GetIdOk

func (o *UserResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserResponse) GetIsDisabled

func (o *UserResponse) GetIsDisabled() bool

GetIsDisabled returns the IsDisabled field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserResponse) GetIsDisabledOk

func (o *UserResponse) GetIsDisabledOk() (*bool, bool)

GetIsDisabledOk returns a tuple with the IsDisabled 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 (*UserResponse) GetMetadata

func (o *UserResponse) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserResponse) GetMetadataOk

func (o *UserResponse) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata 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 (*UserResponse) HasEmail

func (o *UserResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserResponse) HasGuid

func (o *UserResponse) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*UserResponse) HasId

func (o *UserResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserResponse) HasIsDisabled

func (o *UserResponse) HasIsDisabled() bool

HasIsDisabled returns a boolean if a field has been set.

func (*UserResponse) HasMetadata

func (o *UserResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (UserResponse) MarshalJSON

func (o UserResponse) MarshalJSON() ([]byte, error)

func (*UserResponse) SetEmail

func (o *UserResponse) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*UserResponse) SetEmailNil

func (o *UserResponse) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*UserResponse) SetGuid

func (o *UserResponse) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*UserResponse) SetGuidNil added in v0.4.1

func (o *UserResponse) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*UserResponse) SetId

func (o *UserResponse) SetId(v string)

SetId gets a reference to the given NullableString and assigns it to the Id field.

func (*UserResponse) SetIdNil

func (o *UserResponse) SetIdNil()

SetIdNil sets the value for Id to be an explicit nil

func (*UserResponse) SetIsDisabled

func (o *UserResponse) SetIsDisabled(v bool)

SetIsDisabled gets a reference to the given NullableBool and assigns it to the IsDisabled field.

func (*UserResponse) SetIsDisabledNil

func (o *UserResponse) SetIsDisabledNil()

SetIsDisabledNil sets the value for IsDisabled to be an explicit nil

func (*UserResponse) SetMetadata

func (o *UserResponse) SetMetadata(v string)

SetMetadata gets a reference to the given NullableString and assigns it to the Metadata field.

func (*UserResponse) SetMetadataNil

func (o *UserResponse) SetMetadataNil()

SetMetadataNil sets the value for Metadata to be an explicit nil

func (UserResponse) ToMap added in v0.17.1

func (o UserResponse) ToMap() (map[string]interface{}, error)

func (*UserResponse) UnsetEmail

func (o *UserResponse) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*UserResponse) UnsetGuid added in v0.4.1

func (o *UserResponse) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*UserResponse) UnsetId

func (o *UserResponse) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

func (*UserResponse) UnsetIsDisabled

func (o *UserResponse) UnsetIsDisabled()

UnsetIsDisabled ensures that no value is present for IsDisabled, not even an explicit nil

func (*UserResponse) UnsetMetadata

func (o *UserResponse) UnsetMetadata()

UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil

type UserResponseBody

type UserResponseBody struct {
	User *UserResponse `json:"user,omitempty"`
}

UserResponseBody struct for UserResponseBody

func NewUserResponseBody

func NewUserResponseBody() *UserResponseBody

NewUserResponseBody instantiates a new UserResponseBody 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 NewUserResponseBodyWithDefaults

func NewUserResponseBodyWithDefaults() *UserResponseBody

NewUserResponseBodyWithDefaults instantiates a new UserResponseBody 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 (*UserResponseBody) GetUser

func (o *UserResponseBody) GetUser() UserResponse

GetUser returns the User field value if set, zero value otherwise.

func (*UserResponseBody) GetUserOk

func (o *UserResponseBody) GetUserOk() (*UserResponse, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserResponseBody) HasUser

func (o *UserResponseBody) HasUser() bool

HasUser returns a boolean if a field has been set.

func (UserResponseBody) MarshalJSON

func (o UserResponseBody) MarshalJSON() ([]byte, error)

func (*UserResponseBody) SetUser

func (o *UserResponseBody) SetUser(v UserResponse)

SetUser gets a reference to the given UserResponse and assigns it to the User field.

func (UserResponseBody) ToMap added in v0.17.1

func (o UserResponseBody) ToMap() (map[string]interface{}, error)

type UserUpdateRequest

type UserUpdateRequest struct {
	Email      *string `json:"email,omitempty"`
	Id         *string `json:"id,omitempty"`
	IsDisabled *bool   `json:"is_disabled,omitempty"`
	Metadata   *string `json:"metadata,omitempty"`
}

UserUpdateRequest struct for UserUpdateRequest

func NewUserUpdateRequest

func NewUserUpdateRequest() *UserUpdateRequest

NewUserUpdateRequest instantiates a new UserUpdateRequest 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 NewUserUpdateRequestWithDefaults

func NewUserUpdateRequestWithDefaults() *UserUpdateRequest

NewUserUpdateRequestWithDefaults instantiates a new UserUpdateRequest 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 (*UserUpdateRequest) GetEmail

func (o *UserUpdateRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UserUpdateRequest) GetEmailOk

func (o *UserUpdateRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdateRequest) GetId

func (o *UserUpdateRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UserUpdateRequest) GetIdOk

func (o *UserUpdateRequest) 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 (*UserUpdateRequest) GetIsDisabled

func (o *UserUpdateRequest) GetIsDisabled() bool

GetIsDisabled returns the IsDisabled field value if set, zero value otherwise.

func (*UserUpdateRequest) GetIsDisabledOk

func (o *UserUpdateRequest) GetIsDisabledOk() (*bool, bool)

GetIsDisabledOk returns a tuple with the IsDisabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdateRequest) GetMetadata

func (o *UserUpdateRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*UserUpdateRequest) GetMetadataOk

func (o *UserUpdateRequest) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdateRequest) HasEmail

func (o *UserUpdateRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserUpdateRequest) HasId

func (o *UserUpdateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserUpdateRequest) HasIsDisabled

func (o *UserUpdateRequest) HasIsDisabled() bool

HasIsDisabled returns a boolean if a field has been set.

func (*UserUpdateRequest) HasMetadata

func (o *UserUpdateRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (UserUpdateRequest) MarshalJSON

func (o UserUpdateRequest) MarshalJSON() ([]byte, error)

func (*UserUpdateRequest) SetEmail

func (o *UserUpdateRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UserUpdateRequest) SetId

func (o *UserUpdateRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UserUpdateRequest) SetIsDisabled

func (o *UserUpdateRequest) SetIsDisabled(v bool)

SetIsDisabled gets a reference to the given bool and assigns it to the IsDisabled field.

func (*UserUpdateRequest) SetMetadata

func (o *UserUpdateRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (UserUpdateRequest) ToMap added in v0.17.1

func (o UserUpdateRequest) ToMap() (map[string]interface{}, error)

type UserUpdateRequestBody

type UserUpdateRequestBody struct {
	User *UserUpdateRequest `json:"user,omitempty"`
}

UserUpdateRequestBody struct for UserUpdateRequestBody

func NewUserUpdateRequestBody

func NewUserUpdateRequestBody() *UserUpdateRequestBody

NewUserUpdateRequestBody instantiates a new UserUpdateRequestBody 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 NewUserUpdateRequestBodyWithDefaults

func NewUserUpdateRequestBodyWithDefaults() *UserUpdateRequestBody

NewUserUpdateRequestBodyWithDefaults instantiates a new UserUpdateRequestBody 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 (*UserUpdateRequestBody) GetUser

GetUser returns the User field value if set, zero value otherwise.

func (*UserUpdateRequestBody) GetUserOk

func (o *UserUpdateRequestBody) GetUserOk() (*UserUpdateRequest, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdateRequestBody) HasUser

func (o *UserUpdateRequestBody) HasUser() bool

HasUser returns a boolean if a field has been set.

func (UserUpdateRequestBody) MarshalJSON

func (o UserUpdateRequestBody) MarshalJSON() ([]byte, error)

func (*UserUpdateRequestBody) SetUser

SetUser gets a reference to the given UserUpdateRequest and assigns it to the User field.

func (UserUpdateRequestBody) ToMap added in v0.17.1

func (o UserUpdateRequestBody) ToMap() (map[string]interface{}, error)

type UsersResponseBody

type UsersResponseBody struct {
	Pagination *PaginationResponse `json:"pagination,omitempty"`
	Users      []UserResponse      `json:"users,omitempty"`
}

UsersResponseBody struct for UsersResponseBody

func NewUsersResponseBody

func NewUsersResponseBody() *UsersResponseBody

NewUsersResponseBody instantiates a new UsersResponseBody 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 NewUsersResponseBodyWithDefaults

func NewUsersResponseBodyWithDefaults() *UsersResponseBody

NewUsersResponseBodyWithDefaults instantiates a new UsersResponseBody 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 (*UsersResponseBody) GetPagination

func (o *UsersResponseBody) GetPagination() PaginationResponse

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*UsersResponseBody) GetPaginationOk

func (o *UsersResponseBody) GetPaginationOk() (*PaginationResponse, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersResponseBody) GetUsers

func (o *UsersResponseBody) GetUsers() []UserResponse

GetUsers returns the Users field value if set, zero value otherwise.

func (*UsersResponseBody) GetUsersOk

func (o *UsersResponseBody) GetUsersOk() ([]UserResponse, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersResponseBody) HasPagination

func (o *UsersResponseBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*UsersResponseBody) HasUsers

func (o *UsersResponseBody) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (UsersResponseBody) MarshalJSON

func (o UsersResponseBody) MarshalJSON() ([]byte, error)

func (*UsersResponseBody) SetPagination

func (o *UsersResponseBody) SetPagination(v PaginationResponse)

SetPagination gets a reference to the given PaginationResponse and assigns it to the Pagination field.

func (*UsersResponseBody) SetUsers

func (o *UsersResponseBody) SetUsers(v []UserResponse)

SetUsers gets a reference to the given []UserResponse and assigns it to the Users field.

func (UsersResponseBody) ToMap added in v0.17.1

func (o UsersResponseBody) ToMap() (map[string]interface{}, error)

type WidgetRequest

type WidgetRequest struct {
	ClientRedirectUrl         *string `json:"client_redirect_url,omitempty"`
	ColorScheme               *string `json:"color_scheme,omitempty"`
	CurrentInstitutionCode    *string `json:"current_institution_code,omitempty"`
	CurrentInstitutionGuid    *string `json:"current_institution_guid,omitempty"`
	CurrentMemberGuid         *string `json:"current_member_guid,omitempty"`
	DisableBackgroundAgg      *bool   `json:"disable_background_agg,omitempty"`
	DisableInstitutionSearch  *bool   `json:"disable_institution_search,omitempty"`
	IncludeIdentity           *bool   `json:"include_identity,omitempty"`
	IncludeTransactions       *bool   `json:"include_transactions,omitempty"`
	IsMobileWebview           *bool   `json:"is_mobile_webview,omitempty"`
	MicrowidgetInstanceId     *string `json:"microwidget_instance_id,omitempty"`
	Mode                      *string `json:"mode,omitempty"`
	OauthReferralSource       *string `json:"oauth_referral_source,omitempty"`
	UiMessageVersion          *int32  `json:"ui_message_version,omitempty"`
	UiMessageWebviewUrlScheme *string `json:"ui_message_webview_url_scheme,omitempty"`
	UpdateCredentials         *bool   `json:"update_credentials,omitempty"`
	WidgetType                string  `json:"widget_type"`
}

WidgetRequest struct for WidgetRequest

func NewWidgetRequest

func NewWidgetRequest(widgetType string) *WidgetRequest

NewWidgetRequest instantiates a new WidgetRequest 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 NewWidgetRequestWithDefaults

func NewWidgetRequestWithDefaults() *WidgetRequest

NewWidgetRequestWithDefaults instantiates a new WidgetRequest 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 (*WidgetRequest) GetClientRedirectUrl added in v0.8.2

func (o *WidgetRequest) GetClientRedirectUrl() string

GetClientRedirectUrl returns the ClientRedirectUrl field value if set, zero value otherwise.

func (*WidgetRequest) GetClientRedirectUrlOk added in v0.8.2

func (o *WidgetRequest) GetClientRedirectUrlOk() (*string, bool)

GetClientRedirectUrlOk returns a tuple with the ClientRedirectUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetColorScheme

func (o *WidgetRequest) GetColorScheme() string

GetColorScheme returns the ColorScheme field value if set, zero value otherwise.

func (*WidgetRequest) GetColorSchemeOk

func (o *WidgetRequest) GetColorSchemeOk() (*string, bool)

GetColorSchemeOk returns a tuple with the ColorScheme field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetCurrentInstitutionCode

func (o *WidgetRequest) GetCurrentInstitutionCode() string

GetCurrentInstitutionCode returns the CurrentInstitutionCode field value if set, zero value otherwise.

func (*WidgetRequest) GetCurrentInstitutionCodeOk

func (o *WidgetRequest) GetCurrentInstitutionCodeOk() (*string, bool)

GetCurrentInstitutionCodeOk returns a tuple with the CurrentInstitutionCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetCurrentInstitutionGuid

func (o *WidgetRequest) GetCurrentInstitutionGuid() string

GetCurrentInstitutionGuid returns the CurrentInstitutionGuid field value if set, zero value otherwise.

func (*WidgetRequest) GetCurrentInstitutionGuidOk

func (o *WidgetRequest) GetCurrentInstitutionGuidOk() (*string, bool)

GetCurrentInstitutionGuidOk returns a tuple with the CurrentInstitutionGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetCurrentMemberGuid

func (o *WidgetRequest) GetCurrentMemberGuid() string

GetCurrentMemberGuid returns the CurrentMemberGuid field value if set, zero value otherwise.

func (*WidgetRequest) GetCurrentMemberGuidOk

func (o *WidgetRequest) GetCurrentMemberGuidOk() (*string, bool)

GetCurrentMemberGuidOk returns a tuple with the CurrentMemberGuid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetDisableBackgroundAgg added in v0.9.1

func (o *WidgetRequest) GetDisableBackgroundAgg() bool

GetDisableBackgroundAgg returns the DisableBackgroundAgg field value if set, zero value otherwise.

func (*WidgetRequest) GetDisableBackgroundAggOk added in v0.9.1

func (o *WidgetRequest) GetDisableBackgroundAggOk() (*bool, bool)

GetDisableBackgroundAggOk returns a tuple with the DisableBackgroundAgg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetDisableInstitutionSearch

func (o *WidgetRequest) GetDisableInstitutionSearch() bool

GetDisableInstitutionSearch returns the DisableInstitutionSearch field value if set, zero value otherwise.

func (*WidgetRequest) GetDisableInstitutionSearchOk

func (o *WidgetRequest) GetDisableInstitutionSearchOk() (*bool, bool)

GetDisableInstitutionSearchOk returns a tuple with the DisableInstitutionSearch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetIncludeIdentity added in v0.9.0

func (o *WidgetRequest) GetIncludeIdentity() bool

GetIncludeIdentity returns the IncludeIdentity field value if set, zero value otherwise.

func (*WidgetRequest) GetIncludeIdentityOk added in v0.9.0

func (o *WidgetRequest) GetIncludeIdentityOk() (*bool, bool)

GetIncludeIdentityOk returns a tuple with the IncludeIdentity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetIncludeTransactions

func (o *WidgetRequest) GetIncludeTransactions() bool

GetIncludeTransactions returns the IncludeTransactions field value if set, zero value otherwise.

func (*WidgetRequest) GetIncludeTransactionsOk

func (o *WidgetRequest) GetIncludeTransactionsOk() (*bool, bool)

GetIncludeTransactionsOk returns a tuple with the IncludeTransactions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetIsMobileWebview

func (o *WidgetRequest) GetIsMobileWebview() bool

GetIsMobileWebview returns the IsMobileWebview field value if set, zero value otherwise.

func (*WidgetRequest) GetIsMobileWebviewOk

func (o *WidgetRequest) GetIsMobileWebviewOk() (*bool, bool)

GetIsMobileWebviewOk returns a tuple with the IsMobileWebview field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetMicrowidgetInstanceId added in v0.21.0

func (o *WidgetRequest) GetMicrowidgetInstanceId() string

GetMicrowidgetInstanceId returns the MicrowidgetInstanceId field value if set, zero value otherwise.

func (*WidgetRequest) GetMicrowidgetInstanceIdOk added in v0.21.0

func (o *WidgetRequest) GetMicrowidgetInstanceIdOk() (*string, bool)

GetMicrowidgetInstanceIdOk returns a tuple with the MicrowidgetInstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetMode

func (o *WidgetRequest) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*WidgetRequest) GetModeOk

func (o *WidgetRequest) GetModeOk() (*string, bool)

GetModeOk returns a tuple with the Mode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetOauthReferralSource added in v0.9.0

func (o *WidgetRequest) GetOauthReferralSource() string

GetOauthReferralSource returns the OauthReferralSource field value if set, zero value otherwise.

func (*WidgetRequest) GetOauthReferralSourceOk added in v0.9.0

func (o *WidgetRequest) GetOauthReferralSourceOk() (*string, bool)

GetOauthReferralSourceOk returns a tuple with the OauthReferralSource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetUiMessageVersion

func (o *WidgetRequest) GetUiMessageVersion() int32

GetUiMessageVersion returns the UiMessageVersion field value if set, zero value otherwise.

func (*WidgetRequest) GetUiMessageVersionOk

func (o *WidgetRequest) GetUiMessageVersionOk() (*int32, bool)

GetUiMessageVersionOk returns a tuple with the UiMessageVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetUiMessageWebviewUrlScheme

func (o *WidgetRequest) GetUiMessageWebviewUrlScheme() string

GetUiMessageWebviewUrlScheme returns the UiMessageWebviewUrlScheme field value if set, zero value otherwise.

func (*WidgetRequest) GetUiMessageWebviewUrlSchemeOk

func (o *WidgetRequest) GetUiMessageWebviewUrlSchemeOk() (*string, bool)

GetUiMessageWebviewUrlSchemeOk returns a tuple with the UiMessageWebviewUrlScheme field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetUpdateCredentials

func (o *WidgetRequest) GetUpdateCredentials() bool

GetUpdateCredentials returns the UpdateCredentials field value if set, zero value otherwise.

func (*WidgetRequest) GetUpdateCredentialsOk

func (o *WidgetRequest) GetUpdateCredentialsOk() (*bool, bool)

GetUpdateCredentialsOk returns a tuple with the UpdateCredentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequest) GetWidgetType

func (o *WidgetRequest) GetWidgetType() string

GetWidgetType returns the WidgetType field value

func (*WidgetRequest) GetWidgetTypeOk

func (o *WidgetRequest) GetWidgetTypeOk() (*string, bool)

GetWidgetTypeOk returns a tuple with the WidgetType field value and a boolean to check if the value has been set.

func (*WidgetRequest) HasClientRedirectUrl added in v0.8.2

func (o *WidgetRequest) HasClientRedirectUrl() bool

HasClientRedirectUrl returns a boolean if a field has been set.

func (*WidgetRequest) HasColorScheme

func (o *WidgetRequest) HasColorScheme() bool

HasColorScheme returns a boolean if a field has been set.

func (*WidgetRequest) HasCurrentInstitutionCode

func (o *WidgetRequest) HasCurrentInstitutionCode() bool

HasCurrentInstitutionCode returns a boolean if a field has been set.

func (*WidgetRequest) HasCurrentInstitutionGuid

func (o *WidgetRequest) HasCurrentInstitutionGuid() bool

HasCurrentInstitutionGuid returns a boolean if a field has been set.

func (*WidgetRequest) HasCurrentMemberGuid

func (o *WidgetRequest) HasCurrentMemberGuid() bool

HasCurrentMemberGuid returns a boolean if a field has been set.

func (*WidgetRequest) HasDisableBackgroundAgg added in v0.9.1

func (o *WidgetRequest) HasDisableBackgroundAgg() bool

HasDisableBackgroundAgg returns a boolean if a field has been set.

func (*WidgetRequest) HasDisableInstitutionSearch

func (o *WidgetRequest) HasDisableInstitutionSearch() bool

HasDisableInstitutionSearch returns a boolean if a field has been set.

func (*WidgetRequest) HasIncludeIdentity added in v0.9.0

func (o *WidgetRequest) HasIncludeIdentity() bool

HasIncludeIdentity returns a boolean if a field has been set.

func (*WidgetRequest) HasIncludeTransactions

func (o *WidgetRequest) HasIncludeTransactions() bool

HasIncludeTransactions returns a boolean if a field has been set.

func (*WidgetRequest) HasIsMobileWebview

func (o *WidgetRequest) HasIsMobileWebview() bool

HasIsMobileWebview returns a boolean if a field has been set.

func (*WidgetRequest) HasMicrowidgetInstanceId added in v0.21.0

func (o *WidgetRequest) HasMicrowidgetInstanceId() bool

HasMicrowidgetInstanceId returns a boolean if a field has been set.

func (*WidgetRequest) HasMode

func (o *WidgetRequest) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*WidgetRequest) HasOauthReferralSource added in v0.9.0

func (o *WidgetRequest) HasOauthReferralSource() bool

HasOauthReferralSource returns a boolean if a field has been set.

func (*WidgetRequest) HasUiMessageVersion

func (o *WidgetRequest) HasUiMessageVersion() bool

HasUiMessageVersion returns a boolean if a field has been set.

func (*WidgetRequest) HasUiMessageWebviewUrlScheme

func (o *WidgetRequest) HasUiMessageWebviewUrlScheme() bool

HasUiMessageWebviewUrlScheme returns a boolean if a field has been set.

func (*WidgetRequest) HasUpdateCredentials

func (o *WidgetRequest) HasUpdateCredentials() bool

HasUpdateCredentials returns a boolean if a field has been set.

func (WidgetRequest) MarshalJSON

func (o WidgetRequest) MarshalJSON() ([]byte, error)

func (*WidgetRequest) SetClientRedirectUrl added in v0.8.2

func (o *WidgetRequest) SetClientRedirectUrl(v string)

SetClientRedirectUrl gets a reference to the given string and assigns it to the ClientRedirectUrl field.

func (*WidgetRequest) SetColorScheme

func (o *WidgetRequest) SetColorScheme(v string)

SetColorScheme gets a reference to the given string and assigns it to the ColorScheme field.

func (*WidgetRequest) SetCurrentInstitutionCode

func (o *WidgetRequest) SetCurrentInstitutionCode(v string)

SetCurrentInstitutionCode gets a reference to the given string and assigns it to the CurrentInstitutionCode field.

func (*WidgetRequest) SetCurrentInstitutionGuid

func (o *WidgetRequest) SetCurrentInstitutionGuid(v string)

SetCurrentInstitutionGuid gets a reference to the given string and assigns it to the CurrentInstitutionGuid field.

func (*WidgetRequest) SetCurrentMemberGuid

func (o *WidgetRequest) SetCurrentMemberGuid(v string)

SetCurrentMemberGuid gets a reference to the given string and assigns it to the CurrentMemberGuid field.

func (*WidgetRequest) SetDisableBackgroundAgg added in v0.9.1

func (o *WidgetRequest) SetDisableBackgroundAgg(v bool)

SetDisableBackgroundAgg gets a reference to the given bool and assigns it to the DisableBackgroundAgg field.

func (*WidgetRequest) SetDisableInstitutionSearch

func (o *WidgetRequest) SetDisableInstitutionSearch(v bool)

SetDisableInstitutionSearch gets a reference to the given bool and assigns it to the DisableInstitutionSearch field.

func (*WidgetRequest) SetIncludeIdentity added in v0.9.0

func (o *WidgetRequest) SetIncludeIdentity(v bool)

SetIncludeIdentity gets a reference to the given bool and assigns it to the IncludeIdentity field.

func (*WidgetRequest) SetIncludeTransactions

func (o *WidgetRequest) SetIncludeTransactions(v bool)

SetIncludeTransactions gets a reference to the given bool and assigns it to the IncludeTransactions field.

func (*WidgetRequest) SetIsMobileWebview

func (o *WidgetRequest) SetIsMobileWebview(v bool)

SetIsMobileWebview gets a reference to the given bool and assigns it to the IsMobileWebview field.

func (*WidgetRequest) SetMicrowidgetInstanceId added in v0.21.0

func (o *WidgetRequest) SetMicrowidgetInstanceId(v string)

SetMicrowidgetInstanceId gets a reference to the given string and assigns it to the MicrowidgetInstanceId field.

func (*WidgetRequest) SetMode

func (o *WidgetRequest) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*WidgetRequest) SetOauthReferralSource added in v0.9.0

func (o *WidgetRequest) SetOauthReferralSource(v string)

SetOauthReferralSource gets a reference to the given string and assigns it to the OauthReferralSource field.

func (*WidgetRequest) SetUiMessageVersion

func (o *WidgetRequest) SetUiMessageVersion(v int32)

SetUiMessageVersion gets a reference to the given int32 and assigns it to the UiMessageVersion field.

func (*WidgetRequest) SetUiMessageWebviewUrlScheme

func (o *WidgetRequest) SetUiMessageWebviewUrlScheme(v string)

SetUiMessageWebviewUrlScheme gets a reference to the given string and assigns it to the UiMessageWebviewUrlScheme field.

func (*WidgetRequest) SetUpdateCredentials

func (o *WidgetRequest) SetUpdateCredentials(v bool)

SetUpdateCredentials gets a reference to the given bool and assigns it to the UpdateCredentials field.

func (*WidgetRequest) SetWidgetType

func (o *WidgetRequest) SetWidgetType(v string)

SetWidgetType sets field value

func (WidgetRequest) ToMap added in v0.17.1

func (o WidgetRequest) ToMap() (map[string]interface{}, error)

type WidgetRequestBody

type WidgetRequestBody struct {
	WidgetUrl *WidgetRequest `json:"widget_url,omitempty"`
}

WidgetRequestBody struct for WidgetRequestBody

func NewWidgetRequestBody

func NewWidgetRequestBody() *WidgetRequestBody

NewWidgetRequestBody instantiates a new WidgetRequestBody 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 NewWidgetRequestBodyWithDefaults

func NewWidgetRequestBodyWithDefaults() *WidgetRequestBody

NewWidgetRequestBodyWithDefaults instantiates a new WidgetRequestBody 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 (*WidgetRequestBody) GetWidgetUrl

func (o *WidgetRequestBody) GetWidgetUrl() WidgetRequest

GetWidgetUrl returns the WidgetUrl field value if set, zero value otherwise.

func (*WidgetRequestBody) GetWidgetUrlOk

func (o *WidgetRequestBody) GetWidgetUrlOk() (*WidgetRequest, bool)

GetWidgetUrlOk returns a tuple with the WidgetUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetRequestBody) HasWidgetUrl

func (o *WidgetRequestBody) HasWidgetUrl() bool

HasWidgetUrl returns a boolean if a field has been set.

func (WidgetRequestBody) MarshalJSON

func (o WidgetRequestBody) MarshalJSON() ([]byte, error)

func (*WidgetRequestBody) SetWidgetUrl

func (o *WidgetRequestBody) SetWidgetUrl(v WidgetRequest)

SetWidgetUrl gets a reference to the given WidgetRequest and assigns it to the WidgetUrl field.

func (WidgetRequestBody) ToMap added in v0.17.1

func (o WidgetRequestBody) ToMap() (map[string]interface{}, error)

type WidgetResponse

type WidgetResponse struct {
	Type   NullableString `json:"type,omitempty"`
	Url    NullableString `json:"url,omitempty"`
	UserId NullableString `json:"user_id,omitempty"`
}

WidgetResponse struct for WidgetResponse

func NewWidgetResponse

func NewWidgetResponse() *WidgetResponse

NewWidgetResponse instantiates a new WidgetResponse 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 NewWidgetResponseWithDefaults

func NewWidgetResponseWithDefaults() *WidgetResponse

NewWidgetResponseWithDefaults instantiates a new WidgetResponse 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 (*WidgetResponse) GetType

func (o *WidgetResponse) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WidgetResponse) GetTypeOk

func (o *WidgetResponse) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type 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 (*WidgetResponse) GetUrl

func (o *WidgetResponse) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WidgetResponse) GetUrlOk

func (o *WidgetResponse) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url 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 (*WidgetResponse) GetUserId

func (o *WidgetResponse) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WidgetResponse) GetUserIdOk

func (o *WidgetResponse) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId 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 (*WidgetResponse) HasType

func (o *WidgetResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (*WidgetResponse) HasUrl

func (o *WidgetResponse) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*WidgetResponse) HasUserId

func (o *WidgetResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (WidgetResponse) MarshalJSON

func (o WidgetResponse) MarshalJSON() ([]byte, error)

func (*WidgetResponse) SetType

func (o *WidgetResponse) SetType(v string)

SetType gets a reference to the given NullableString and assigns it to the Type field.

func (*WidgetResponse) SetTypeNil

func (o *WidgetResponse) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*WidgetResponse) SetUrl

func (o *WidgetResponse) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*WidgetResponse) SetUrlNil

func (o *WidgetResponse) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*WidgetResponse) SetUserId

func (o *WidgetResponse) SetUserId(v string)

SetUserId gets a reference to the given NullableString and assigns it to the UserId field.

func (*WidgetResponse) SetUserIdNil

func (o *WidgetResponse) SetUserIdNil()

SetUserIdNil sets the value for UserId to be an explicit nil

func (WidgetResponse) ToMap added in v0.17.1

func (o WidgetResponse) ToMap() (map[string]interface{}, error)

func (*WidgetResponse) UnsetType

func (o *WidgetResponse) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

func (*WidgetResponse) UnsetUrl

func (o *WidgetResponse) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

func (*WidgetResponse) UnsetUserId

func (o *WidgetResponse) UnsetUserId()

UnsetUserId ensures that no value is present for UserId, not even an explicit nil

type WidgetResponseBody

type WidgetResponseBody struct {
	WidgetUrl *WidgetResponse `json:"widget_url,omitempty"`
}

WidgetResponseBody struct for WidgetResponseBody

func NewWidgetResponseBody

func NewWidgetResponseBody() *WidgetResponseBody

NewWidgetResponseBody instantiates a new WidgetResponseBody 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 NewWidgetResponseBodyWithDefaults

func NewWidgetResponseBodyWithDefaults() *WidgetResponseBody

NewWidgetResponseBodyWithDefaults instantiates a new WidgetResponseBody 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 (*WidgetResponseBody) GetWidgetUrl

func (o *WidgetResponseBody) GetWidgetUrl() WidgetResponse

GetWidgetUrl returns the WidgetUrl field value if set, zero value otherwise.

func (*WidgetResponseBody) GetWidgetUrlOk

func (o *WidgetResponseBody) GetWidgetUrlOk() (*WidgetResponse, bool)

GetWidgetUrlOk returns a tuple with the WidgetUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WidgetResponseBody) HasWidgetUrl

func (o *WidgetResponseBody) HasWidgetUrl() bool

HasWidgetUrl returns a boolean if a field has been set.

func (WidgetResponseBody) MarshalJSON

func (o WidgetResponseBody) MarshalJSON() ([]byte, error)

func (*WidgetResponseBody) SetWidgetUrl

func (o *WidgetResponseBody) SetWidgetUrl(v WidgetResponse)

SetWidgetUrl gets a reference to the given WidgetResponse and assigns it to the WidgetUrl field.

func (WidgetResponseBody) ToMap added in v0.17.1

func (o WidgetResponseBody) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL