splitit

package module
v0.0.0-...-064b5ce Latest Latest
Warning

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

Go to latest
Published: Nov 1, 2023 License: MIT Imports: 23 Imported by: 0

README

Go API client for splitit

Splitit's Onboarding API

Overview

This API client was generated by the Konfig.

  • API version: 1.0.0
  • Package version: 3.0.0

Installation

Add package to your project:

go get github.com/konfig-dev/splitit-onboarding-sdks/go

Add the following in import:

import splitit "github.com/konfig-dev/splitit-onboarding-sdks/go"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

import splitit "github.com/konfig-dev/splitit-onboarding-sdks/go"
configuration := splitit.NewConfiguration()
configuration.Context = context.WithValue(configuration.Context, splitit.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

import splitit "github.com/konfig-dev/splitit-onboarding-sdks/go"
configuration := splitit.NewConfiguration()
configuration.Context = context.WithValue(configuration.Context, splitit.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

import splitit "github.com/konfig-dev/splitit-onboarding-sdks/go"
configuration := splitit.NewConfiguration()
configuration.Context = context.WithValue(configuration.Context, splitit.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
configuration.Context = context.WithValue(configuration.Context, splitit.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://onboarding-v2.sandbox.splitit.com

Class Method HTTP request Description
DataApi GetCountries Get /api/data/get-countries
DataApi GetCurrencies Get /api/data/get-currencies
DataApi GetProcessors Get /api/data/get-processors
DataApi GetVerticals Get /api/data/get-verticals
DataApi StatusLegend Get /api/data/status-legend
MerchantsApi Create Post /api/merchants/create
MerchantsApi CreateDeveloper Post /api/merchants/create/developer
MerchantsApi Get Get /api/merchants/get
MerchantsApi GetDetails Get /api/merchants/get-details

Documentation For Models

Documentation For Authorization

oauth2
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • onboarding.api.v2: onboarding.api.v2

Example

import splitit "github.com/konfig-dev/splitit-onboarding-sdks/go"
configuration := splitit.NewConfiguration()
configuration.Context = context.WithValue(configuration.Context, sw.ContextAccessToken, "ACCESSTOKENSTRING")
client := splitit.NewAPIClient(configuration)
resp, httpRes, err := client.Service.Operation(args).Execute()

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

/* Perform OAuth2 round trip request and obtain a token */
clientId := os.Getenv("CLIENT_ID")
clientSecret := os.Getenv("CLIENT_SECRET")
configuration := splitit.NewConfiguration()
configuration.SetOAuthClientCredentials(clientId, clientSecret)
client := splitit.NewAPIClient(configuration)
resp, httpRes, err := client.Service.Operation(args).Execute()

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

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

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

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

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

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	DataApi *DataApiService

	MerchantsApi *MerchantsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Splitit.OnBoarding.Api.V2 API v1.0.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 BasicAuth

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

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

type Configuration

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

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

func (*Configuration) SetOAuthClientCredentials

func (c *Configuration) SetOAuthClientCredentials(clientId string, clientSecret string)

Setup OAuth Client Credentials Flow for all requests

type CountriesResponse

type CountriesResponse struct {
	Countries []CountryResponse `json:"countries"`
}

CountriesResponse struct for CountriesResponse

func NewCountriesResponse

func NewCountriesResponse(countries []CountryResponse) *CountriesResponse

NewCountriesResponse instantiates a new CountriesResponse 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 NewCountriesResponseWithDefaults

func NewCountriesResponseWithDefaults() *CountriesResponse

NewCountriesResponseWithDefaults instantiates a new CountriesResponse 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 (*CountriesResponse) GetCountries

func (o *CountriesResponse) GetCountries() []CountryResponse

GetCountries returns the Countries field value

func (*CountriesResponse) GetCountriesOk

func (o *CountriesResponse) GetCountriesOk() ([]CountryResponse, bool)

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

func (CountriesResponse) MarshalJSON

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

func (*CountriesResponse) SetCountries

func (o *CountriesResponse) SetCountries(v []CountryResponse)

SetCountries sets field value

type CountryResponse

type CountryResponse struct {
	Id        string         `json:"id"`
	Name      string         `json:"name"`
	IsoA2     string         `json:"isoA2"`
	IsoA3     string         `json:"isoA3"`
	IsoNumber NullableString `json:"isoNumber"`
}

CountryResponse struct for CountryResponse

func NewCountryResponse

func NewCountryResponse(id string, name string, isoA2 string, isoA3 string, isoNumber NullableString) *CountryResponse

NewCountryResponse instantiates a new CountryResponse 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 NewCountryResponseWithDefaults

func NewCountryResponseWithDefaults() *CountryResponse

NewCountryResponseWithDefaults instantiates a new CountryResponse 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 (*CountryResponse) GetId

func (o *CountryResponse) GetId() string

GetId returns the Id field value

func (*CountryResponse) GetIdOk

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

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

func (*CountryResponse) GetIsoA2

func (o *CountryResponse) GetIsoA2() string

GetIsoA2 returns the IsoA2 field value

func (*CountryResponse) GetIsoA2Ok

func (o *CountryResponse) GetIsoA2Ok() (*string, bool)

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

func (*CountryResponse) GetIsoA3

func (o *CountryResponse) GetIsoA3() string

GetIsoA3 returns the IsoA3 field value

func (*CountryResponse) GetIsoA3Ok

func (o *CountryResponse) GetIsoA3Ok() (*string, bool)

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

func (*CountryResponse) GetIsoNumber

func (o *CountryResponse) GetIsoNumber() string

GetIsoNumber returns the IsoNumber field value If the value is explicit nil, the zero value for string will be returned

func (*CountryResponse) GetIsoNumberOk

func (o *CountryResponse) GetIsoNumberOk() (*string, bool)

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

func (*CountryResponse) GetName

func (o *CountryResponse) GetName() string

GetName returns the Name field value

func (*CountryResponse) GetNameOk

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

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

func (CountryResponse) MarshalJSON

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

func (*CountryResponse) SetId

func (o *CountryResponse) SetId(v string)

SetId sets field value

func (*CountryResponse) SetIsoA2

func (o *CountryResponse) SetIsoA2(v string)

SetIsoA2 sets field value

func (*CountryResponse) SetIsoA3

func (o *CountryResponse) SetIsoA3(v string)

SetIsoA3 sets field value

func (*CountryResponse) SetIsoNumber

func (o *CountryResponse) SetIsoNumber(v string)

SetIsoNumber sets field value

func (*CountryResponse) SetName

func (o *CountryResponse) SetName(v string)

SetName sets field value

type CreateDeveloperRequest

type CreateDeveloperRequest struct {
	FullName           string            `json:"fullName"`
	Email              string            `json:"email"`
	CompanyName        string            `json:"companyName"`
	TermsAndConditions bool              `json:"termsAndConditions"`
	CountryCode        string            `json:"countryCode"`
	FullCountryName    string            `json:"fullCountryName"`
	RequestHeader      RequestHeaderSlim `json:"requestHeader"`
}

CreateDeveloperRequest struct for CreateDeveloperRequest

func NewCreateDeveloperRequest

func NewCreateDeveloperRequest(fullName string, email string, companyName string, termsAndConditions bool, countryCode string, fullCountryName string, requestHeader RequestHeaderSlim) *CreateDeveloperRequest

NewCreateDeveloperRequest instantiates a new CreateDeveloperRequest 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 NewCreateDeveloperRequestWithDefaults

func NewCreateDeveloperRequestWithDefaults() *CreateDeveloperRequest

NewCreateDeveloperRequestWithDefaults instantiates a new CreateDeveloperRequest 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 (*CreateDeveloperRequest) GetCompanyName

func (o *CreateDeveloperRequest) GetCompanyName() string

GetCompanyName returns the CompanyName field value

func (*CreateDeveloperRequest) GetCompanyNameOk

func (o *CreateDeveloperRequest) GetCompanyNameOk() (*string, bool)

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

func (*CreateDeveloperRequest) GetCountryCode

func (o *CreateDeveloperRequest) GetCountryCode() string

GetCountryCode returns the CountryCode field value

func (*CreateDeveloperRequest) GetCountryCodeOk

func (o *CreateDeveloperRequest) GetCountryCodeOk() (*string, bool)

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

func (*CreateDeveloperRequest) GetEmail

func (o *CreateDeveloperRequest) GetEmail() string

GetEmail returns the Email field value

func (*CreateDeveloperRequest) GetEmailOk

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

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

func (*CreateDeveloperRequest) GetFullCountryName

func (o *CreateDeveloperRequest) GetFullCountryName() string

GetFullCountryName returns the FullCountryName field value

func (*CreateDeveloperRequest) GetFullCountryNameOk

func (o *CreateDeveloperRequest) GetFullCountryNameOk() (*string, bool)

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

func (*CreateDeveloperRequest) GetFullName

func (o *CreateDeveloperRequest) GetFullName() string

GetFullName returns the FullName field value

func (*CreateDeveloperRequest) GetFullNameOk

func (o *CreateDeveloperRequest) GetFullNameOk() (*string, bool)

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

func (*CreateDeveloperRequest) GetRequestHeader

func (o *CreateDeveloperRequest) GetRequestHeader() RequestHeaderSlim

GetRequestHeader returns the RequestHeader field value

func (*CreateDeveloperRequest) GetRequestHeaderOk

func (o *CreateDeveloperRequest) GetRequestHeaderOk() (*RequestHeaderSlim, bool)

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

func (*CreateDeveloperRequest) GetTermsAndConditions

func (o *CreateDeveloperRequest) GetTermsAndConditions() bool

GetTermsAndConditions returns the TermsAndConditions field value

func (*CreateDeveloperRequest) GetTermsAndConditionsOk

func (o *CreateDeveloperRequest) GetTermsAndConditionsOk() (*bool, bool)

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

func (CreateDeveloperRequest) MarshalJSON

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

func (*CreateDeveloperRequest) SetCompanyName

func (o *CreateDeveloperRequest) SetCompanyName(v string)

SetCompanyName sets field value

func (*CreateDeveloperRequest) SetCountryCode

func (o *CreateDeveloperRequest) SetCountryCode(v string)

SetCountryCode sets field value

func (*CreateDeveloperRequest) SetEmail

func (o *CreateDeveloperRequest) SetEmail(v string)

SetEmail sets field value

func (*CreateDeveloperRequest) SetFullCountryName

func (o *CreateDeveloperRequest) SetFullCountryName(v string)

SetFullCountryName sets field value

func (*CreateDeveloperRequest) SetFullName

func (o *CreateDeveloperRequest) SetFullName(v string)

SetFullName sets field value

func (*CreateDeveloperRequest) SetRequestHeader

func (o *CreateDeveloperRequest) SetRequestHeader(v RequestHeaderSlim)

SetRequestHeader sets field value

func (*CreateDeveloperRequest) SetTermsAndConditions

func (o *CreateDeveloperRequest) SetTermsAndConditions(v bool)

SetTermsAndConditions sets field value

type CreateMerchantRequest

type CreateMerchantRequest struct {
	PublicName            string  `json:"publicName"`
	Email                 string  `json:"email"`
	PhoneNumber           string  `json:"phoneNumber"`
	CountryIso2           string  `json:"countryIso2"`
	LegalName             string  `json:"legalName"`
	CurrencyCode          string  `json:"currencyCode"`
	Vertical              string  `json:"vertical"`
	Tier                  *string `json:"tier,omitempty"`
	BusinessStreetAddress *string `json:"businessStreetAddress,omitempty"`
	BusinessCity          *string `json:"businessCity,omitempty"`
	BusinessPostalCode    *string `json:"businessPostalCode,omitempty"`
	BusinessCountry       *string `json:"businessCountry,omitempty"`
	BusinessState         *string `json:"businessState,omitempty"`
	SubVertical           *string `json:"subVertical,omitempty"`
	NameOnBankAccount     *string `json:"nameOnBankAccount,omitempty"`
	IncorporationCountry  *string `json:"incorporationCountry,omitempty"`
	AccountNumber         *string `json:"accountNumber,omitempty"`
	RoutingNumber         *string `json:"routingNumber,omitempty"`
	TaxIdNumber           *string `json:"taxIdNumber,omitempty"`
	TotalAnnualSales      *string `json:"totalAnnualSales,omitempty"`
	PlatformName          *string `json:"platformName,omitempty"`
}

CreateMerchantRequest struct for CreateMerchantRequest

func NewCreateMerchantRequest

func NewCreateMerchantRequest(publicName string, email string, phoneNumber string, countryIso2 string, legalName string, currencyCode string, vertical string) *CreateMerchantRequest

NewCreateMerchantRequest instantiates a new CreateMerchantRequest 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 NewCreateMerchantRequestWithDefaults

func NewCreateMerchantRequestWithDefaults() *CreateMerchantRequest

NewCreateMerchantRequestWithDefaults instantiates a new CreateMerchantRequest 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 (*CreateMerchantRequest) GetAccountNumber

func (o *CreateMerchantRequest) GetAccountNumber() string

GetAccountNumber returns the AccountNumber field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetAccountNumberOk

func (o *CreateMerchantRequest) 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 (*CreateMerchantRequest) GetBusinessCity

func (o *CreateMerchantRequest) GetBusinessCity() string

GetBusinessCity returns the BusinessCity field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetBusinessCityOk

func (o *CreateMerchantRequest) GetBusinessCityOk() (*string, bool)

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

func (*CreateMerchantRequest) GetBusinessCountry

func (o *CreateMerchantRequest) GetBusinessCountry() string

GetBusinessCountry returns the BusinessCountry field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetBusinessCountryOk

func (o *CreateMerchantRequest) GetBusinessCountryOk() (*string, bool)

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

func (*CreateMerchantRequest) GetBusinessPostalCode

func (o *CreateMerchantRequest) GetBusinessPostalCode() string

GetBusinessPostalCode returns the BusinessPostalCode field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetBusinessPostalCodeOk

func (o *CreateMerchantRequest) GetBusinessPostalCodeOk() (*string, bool)

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

func (*CreateMerchantRequest) GetBusinessState

func (o *CreateMerchantRequest) GetBusinessState() string

GetBusinessState returns the BusinessState field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetBusinessStateOk

func (o *CreateMerchantRequest) GetBusinessStateOk() (*string, bool)

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

func (*CreateMerchantRequest) GetBusinessStreetAddress

func (o *CreateMerchantRequest) GetBusinessStreetAddress() string

GetBusinessStreetAddress returns the BusinessStreetAddress field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetBusinessStreetAddressOk

func (o *CreateMerchantRequest) GetBusinessStreetAddressOk() (*string, bool)

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

func (*CreateMerchantRequest) GetCountryIso2

func (o *CreateMerchantRequest) GetCountryIso2() string

GetCountryIso2 returns the CountryIso2 field value

func (*CreateMerchantRequest) GetCountryIso2Ok

func (o *CreateMerchantRequest) GetCountryIso2Ok() (*string, bool)

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

func (*CreateMerchantRequest) GetCurrencyCode

func (o *CreateMerchantRequest) GetCurrencyCode() string

GetCurrencyCode returns the CurrencyCode field value

func (*CreateMerchantRequest) GetCurrencyCodeOk

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

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

func (*CreateMerchantRequest) GetEmail

func (o *CreateMerchantRequest) GetEmail() string

GetEmail returns the Email field value

func (*CreateMerchantRequest) GetEmailOk

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

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

func (*CreateMerchantRequest) GetIncorporationCountry

func (o *CreateMerchantRequest) GetIncorporationCountry() string

GetIncorporationCountry returns the IncorporationCountry field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetIncorporationCountryOk

func (o *CreateMerchantRequest) GetIncorporationCountryOk() (*string, bool)

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

func (*CreateMerchantRequest) GetLegalName

func (o *CreateMerchantRequest) GetLegalName() string

GetLegalName returns the LegalName field value

func (*CreateMerchantRequest) GetLegalNameOk

func (o *CreateMerchantRequest) GetLegalNameOk() (*string, bool)

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

func (*CreateMerchantRequest) GetNameOnBankAccount

func (o *CreateMerchantRequest) GetNameOnBankAccount() string

GetNameOnBankAccount returns the NameOnBankAccount field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetNameOnBankAccountOk

func (o *CreateMerchantRequest) GetNameOnBankAccountOk() (*string, bool)

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

func (*CreateMerchantRequest) GetPhoneNumber

func (o *CreateMerchantRequest) GetPhoneNumber() string

GetPhoneNumber returns the PhoneNumber field value

func (*CreateMerchantRequest) GetPhoneNumberOk

func (o *CreateMerchantRequest) GetPhoneNumberOk() (*string, bool)

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

func (*CreateMerchantRequest) GetPlatformName

func (o *CreateMerchantRequest) GetPlatformName() string

GetPlatformName returns the PlatformName field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetPlatformNameOk

func (o *CreateMerchantRequest) GetPlatformNameOk() (*string, bool)

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

func (*CreateMerchantRequest) GetPublicName

func (o *CreateMerchantRequest) GetPublicName() string

GetPublicName returns the PublicName field value

func (*CreateMerchantRequest) GetPublicNameOk

func (o *CreateMerchantRequest) GetPublicNameOk() (*string, bool)

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

func (*CreateMerchantRequest) GetRoutingNumber

func (o *CreateMerchantRequest) GetRoutingNumber() string

GetRoutingNumber returns the RoutingNumber field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetRoutingNumberOk

func (o *CreateMerchantRequest) 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 (*CreateMerchantRequest) GetSubVertical

func (o *CreateMerchantRequest) GetSubVertical() string

GetSubVertical returns the SubVertical field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetSubVerticalOk

func (o *CreateMerchantRequest) GetSubVerticalOk() (*string, bool)

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

func (*CreateMerchantRequest) GetTaxIdNumber

func (o *CreateMerchantRequest) GetTaxIdNumber() string

GetTaxIdNumber returns the TaxIdNumber field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetTaxIdNumberOk

func (o *CreateMerchantRequest) GetTaxIdNumberOk() (*string, bool)

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

func (*CreateMerchantRequest) GetTier

func (o *CreateMerchantRequest) GetTier() string

GetTier returns the Tier field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetTierOk

func (o *CreateMerchantRequest) GetTierOk() (*string, bool)

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

func (*CreateMerchantRequest) GetTotalAnnualSales

func (o *CreateMerchantRequest) GetTotalAnnualSales() string

GetTotalAnnualSales returns the TotalAnnualSales field value if set, zero value otherwise.

func (*CreateMerchantRequest) GetTotalAnnualSalesOk

func (o *CreateMerchantRequest) GetTotalAnnualSalesOk() (*string, bool)

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

func (*CreateMerchantRequest) GetVertical

func (o *CreateMerchantRequest) GetVertical() string

GetVertical returns the Vertical field value

func (*CreateMerchantRequest) GetVerticalOk

func (o *CreateMerchantRequest) GetVerticalOk() (*string, bool)

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

func (*CreateMerchantRequest) HasAccountNumber

func (o *CreateMerchantRequest) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasBusinessCity

func (o *CreateMerchantRequest) HasBusinessCity() bool

HasBusinessCity returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasBusinessCountry

func (o *CreateMerchantRequest) HasBusinessCountry() bool

HasBusinessCountry returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasBusinessPostalCode

func (o *CreateMerchantRequest) HasBusinessPostalCode() bool

HasBusinessPostalCode returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasBusinessState

func (o *CreateMerchantRequest) HasBusinessState() bool

HasBusinessState returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasBusinessStreetAddress

func (o *CreateMerchantRequest) HasBusinessStreetAddress() bool

HasBusinessStreetAddress returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasIncorporationCountry

func (o *CreateMerchantRequest) HasIncorporationCountry() bool

HasIncorporationCountry returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasNameOnBankAccount

func (o *CreateMerchantRequest) HasNameOnBankAccount() bool

HasNameOnBankAccount returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasPlatformName

func (o *CreateMerchantRequest) HasPlatformName() bool

HasPlatformName returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasRoutingNumber

func (o *CreateMerchantRequest) HasRoutingNumber() bool

HasRoutingNumber returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasSubVertical

func (o *CreateMerchantRequest) HasSubVertical() bool

HasSubVertical returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasTaxIdNumber

func (o *CreateMerchantRequest) HasTaxIdNumber() bool

HasTaxIdNumber returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasTier

func (o *CreateMerchantRequest) HasTier() bool

HasTier returns a boolean if a field has been set.

func (*CreateMerchantRequest) HasTotalAnnualSales

func (o *CreateMerchantRequest) HasTotalAnnualSales() bool

HasTotalAnnualSales returns a boolean if a field has been set.

func (CreateMerchantRequest) MarshalJSON

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

func (*CreateMerchantRequest) SetAccountNumber

func (o *CreateMerchantRequest) SetAccountNumber(v string)

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

func (*CreateMerchantRequest) SetBusinessCity

func (o *CreateMerchantRequest) SetBusinessCity(v string)

SetBusinessCity gets a reference to the given string and assigns it to the BusinessCity field.

func (*CreateMerchantRequest) SetBusinessCountry

func (o *CreateMerchantRequest) SetBusinessCountry(v string)

SetBusinessCountry gets a reference to the given string and assigns it to the BusinessCountry field.

func (*CreateMerchantRequest) SetBusinessPostalCode

func (o *CreateMerchantRequest) SetBusinessPostalCode(v string)

SetBusinessPostalCode gets a reference to the given string and assigns it to the BusinessPostalCode field.

func (*CreateMerchantRequest) SetBusinessState

func (o *CreateMerchantRequest) SetBusinessState(v string)

SetBusinessState gets a reference to the given string and assigns it to the BusinessState field.

func (*CreateMerchantRequest) SetBusinessStreetAddress

func (o *CreateMerchantRequest) SetBusinessStreetAddress(v string)

SetBusinessStreetAddress gets a reference to the given string and assigns it to the BusinessStreetAddress field.

func (*CreateMerchantRequest) SetCountryIso2

func (o *CreateMerchantRequest) SetCountryIso2(v string)

SetCountryIso2 sets field value

func (*CreateMerchantRequest) SetCurrencyCode

func (o *CreateMerchantRequest) SetCurrencyCode(v string)

SetCurrencyCode sets field value

func (*CreateMerchantRequest) SetEmail

func (o *CreateMerchantRequest) SetEmail(v string)

SetEmail sets field value

func (*CreateMerchantRequest) SetIncorporationCountry

func (o *CreateMerchantRequest) SetIncorporationCountry(v string)

SetIncorporationCountry gets a reference to the given string and assigns it to the IncorporationCountry field.

func (*CreateMerchantRequest) SetLegalName

func (o *CreateMerchantRequest) SetLegalName(v string)

SetLegalName sets field value

func (*CreateMerchantRequest) SetNameOnBankAccount

func (o *CreateMerchantRequest) SetNameOnBankAccount(v string)

SetNameOnBankAccount gets a reference to the given string and assigns it to the NameOnBankAccount field.

func (*CreateMerchantRequest) SetPhoneNumber

func (o *CreateMerchantRequest) SetPhoneNumber(v string)

SetPhoneNumber sets field value

func (*CreateMerchantRequest) SetPlatformName

func (o *CreateMerchantRequest) SetPlatformName(v string)

SetPlatformName gets a reference to the given string and assigns it to the PlatformName field.

func (*CreateMerchantRequest) SetPublicName

func (o *CreateMerchantRequest) SetPublicName(v string)

SetPublicName sets field value

func (*CreateMerchantRequest) SetRoutingNumber

func (o *CreateMerchantRequest) SetRoutingNumber(v string)

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

func (*CreateMerchantRequest) SetSubVertical

func (o *CreateMerchantRequest) SetSubVertical(v string)

SetSubVertical gets a reference to the given string and assigns it to the SubVertical field.

func (*CreateMerchantRequest) SetTaxIdNumber

func (o *CreateMerchantRequest) SetTaxIdNumber(v string)

SetTaxIdNumber gets a reference to the given string and assigns it to the TaxIdNumber field.

func (*CreateMerchantRequest) SetTier

func (o *CreateMerchantRequest) SetTier(v string)

SetTier gets a reference to the given string and assigns it to the Tier field.

func (*CreateMerchantRequest) SetTotalAnnualSales

func (o *CreateMerchantRequest) SetTotalAnnualSales(v string)

SetTotalAnnualSales gets a reference to the given string and assigns it to the TotalAnnualSales field.

func (*CreateMerchantRequest) SetVertical

func (o *CreateMerchantRequest) SetVertical(v string)

SetVertical sets field value

type CreateMerchantResponse

type CreateMerchantResponse struct {
	MerchantTempId string         `json:"merchantTempId"`
	MerchantStatus string         `json:"merchantStatus"`
	ResponseHeader ResponseHeader `json:"responseHeader"`
}

CreateMerchantResponse struct for CreateMerchantResponse

func NewCreateMerchantResponse

func NewCreateMerchantResponse(merchantTempId string, merchantStatus string, responseHeader ResponseHeader) *CreateMerchantResponse

NewCreateMerchantResponse instantiates a new CreateMerchantResponse 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 NewCreateMerchantResponseWithDefaults

func NewCreateMerchantResponseWithDefaults() *CreateMerchantResponse

NewCreateMerchantResponseWithDefaults instantiates a new CreateMerchantResponse 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 (*CreateMerchantResponse) GetMerchantStatus

func (o *CreateMerchantResponse) GetMerchantStatus() string

GetMerchantStatus returns the MerchantStatus field value

func (*CreateMerchantResponse) GetMerchantStatusOk

func (o *CreateMerchantResponse) GetMerchantStatusOk() (*string, bool)

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

func (*CreateMerchantResponse) GetMerchantTempId

func (o *CreateMerchantResponse) GetMerchantTempId() string

GetMerchantTempId returns the MerchantTempId field value

func (*CreateMerchantResponse) GetMerchantTempIdOk

func (o *CreateMerchantResponse) GetMerchantTempIdOk() (*string, bool)

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

func (*CreateMerchantResponse) GetResponseHeader

func (o *CreateMerchantResponse) GetResponseHeader() ResponseHeader

GetResponseHeader returns the ResponseHeader field value

func (*CreateMerchantResponse) GetResponseHeaderOk

func (o *CreateMerchantResponse) GetResponseHeaderOk() (*ResponseHeader, bool)

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

func (CreateMerchantResponse) MarshalJSON

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

func (*CreateMerchantResponse) SetMerchantStatus

func (o *CreateMerchantResponse) SetMerchantStatus(v string)

SetMerchantStatus sets field value

func (*CreateMerchantResponse) SetMerchantTempId

func (o *CreateMerchantResponse) SetMerchantTempId(v string)

SetMerchantTempId sets field value

func (*CreateMerchantResponse) SetResponseHeader

func (o *CreateMerchantResponse) SetResponseHeader(v ResponseHeader)

SetResponseHeader sets field value

type CurrenciesResponse

type CurrenciesResponse struct {
	Currencies []CurrencyResponse `json:"currencies"`
}

CurrenciesResponse struct for CurrenciesResponse

func NewCurrenciesResponse

func NewCurrenciesResponse(currencies []CurrencyResponse) *CurrenciesResponse

NewCurrenciesResponse instantiates a new CurrenciesResponse 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 NewCurrenciesResponseWithDefaults

func NewCurrenciesResponseWithDefaults() *CurrenciesResponse

NewCurrenciesResponseWithDefaults instantiates a new CurrenciesResponse 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 (*CurrenciesResponse) GetCurrencies

func (o *CurrenciesResponse) GetCurrencies() []CurrencyResponse

GetCurrencies returns the Currencies field value

func (*CurrenciesResponse) GetCurrenciesOk

func (o *CurrenciesResponse) GetCurrenciesOk() ([]CurrencyResponse, bool)

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

func (CurrenciesResponse) MarshalJSON

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

func (*CurrenciesResponse) SetCurrencies

func (o *CurrenciesResponse) SetCurrencies(v []CurrencyResponse)

SetCurrencies sets field value

type CurrencyResponse

type CurrencyResponse struct {
	Code      *string `json:"code,omitempty"`
	Name      *string `json:"name,omitempty"`
	Symbol    *string `json:"symbol,omitempty"`
	IsoNumber *string `json:"isoNumber,omitempty"`
}

CurrencyResponse struct for CurrencyResponse

func NewCurrencyResponse

func NewCurrencyResponse() *CurrencyResponse

NewCurrencyResponse instantiates a new CurrencyResponse 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 NewCurrencyResponseWithDefaults

func NewCurrencyResponseWithDefaults() *CurrencyResponse

NewCurrencyResponseWithDefaults instantiates a new CurrencyResponse 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 (*CurrencyResponse) GetCode

func (o *CurrencyResponse) GetCode() string

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

func (*CurrencyResponse) GetCodeOk

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

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

func (*CurrencyResponse) GetIsoNumber

func (o *CurrencyResponse) GetIsoNumber() string

GetIsoNumber returns the IsoNumber field value if set, zero value otherwise.

func (*CurrencyResponse) GetIsoNumberOk

func (o *CurrencyResponse) GetIsoNumberOk() (*string, bool)

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

func (*CurrencyResponse) GetName

func (o *CurrencyResponse) GetName() string

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

func (*CurrencyResponse) GetNameOk

func (o *CurrencyResponse) 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 (*CurrencyResponse) GetSymbol

func (o *CurrencyResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*CurrencyResponse) GetSymbolOk

func (o *CurrencyResponse) 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.

func (*CurrencyResponse) HasCode

func (o *CurrencyResponse) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*CurrencyResponse) HasIsoNumber

func (o *CurrencyResponse) HasIsoNumber() bool

HasIsoNumber returns a boolean if a field has been set.

func (*CurrencyResponse) HasName

func (o *CurrencyResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*CurrencyResponse) HasSymbol

func (o *CurrencyResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (CurrencyResponse) MarshalJSON

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

func (*CurrencyResponse) SetCode

func (o *CurrencyResponse) SetCode(v string)

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

func (*CurrencyResponse) SetIsoNumber

func (o *CurrencyResponse) SetIsoNumber(v string)

SetIsoNumber gets a reference to the given string and assigns it to the IsoNumber field.

func (*CurrencyResponse) SetName

func (o *CurrencyResponse) SetName(v string)

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

func (*CurrencyResponse) SetSymbol

func (o *CurrencyResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

type DataApiGetCountriesRequest

type DataApiGetCountriesRequest struct {
	ApiService *DataApiService
	// contains filtered or unexported fields
}

func (DataApiGetCountriesRequest) Execute

type DataApiGetCurrenciesRequest

type DataApiGetCurrenciesRequest struct {
	ApiService *DataApiService
	// contains filtered or unexported fields
}

func (DataApiGetCurrenciesRequest) Execute

type DataApiGetProcessorsRequest

type DataApiGetProcessorsRequest struct {
	ApiService *DataApiService
	// contains filtered or unexported fields
}

func (DataApiGetProcessorsRequest) Execute

type DataApiGetVerticalsRequest

type DataApiGetVerticalsRequest struct {
	ApiService *DataApiService
	// contains filtered or unexported fields
}

func (DataApiGetVerticalsRequest) Execute

type DataApiService

type DataApiService service

DataApiService DataApi service

func (*DataApiService) GetCountries

func (a *DataApiService) GetCountries() DataApiGetCountriesRequest

GetCountries Method for GetCountries

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

func (*DataApiService) GetCountriesExecute

Execute executes the request

@return CountriesResponse

func (*DataApiService) GetCurrencies

func (a *DataApiService) GetCurrencies() DataApiGetCurrenciesRequest

GetCurrencies Method for GetCurrencies

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

func (*DataApiService) GetCurrenciesExecute

Execute executes the request

@return CurrenciesResponse

func (*DataApiService) GetProcessors

func (a *DataApiService) GetProcessors() DataApiGetProcessorsRequest

GetProcessors Method for GetProcessors

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

func (*DataApiService) GetProcessorsExecute

Execute executes the request

@return ProcessorsResponse

func (*DataApiService) GetVerticals

func (a *DataApiService) GetVerticals() DataApiGetVerticalsRequest

GetVerticals Method for GetVerticals

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

func (*DataApiService) GetVerticalsExecute

Execute executes the request

@return MerchantVerticalsResponse

func (*DataApiService) StatusLegend

func (a *DataApiService) StatusLegend() DataApiStatusLegendRequest

StatusLegend Method for StatusLegend

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

func (*DataApiService) StatusLegendExecute

func (a *DataApiService) StatusLegendExecute(r DataApiStatusLegendRequest) ([]EnumDTO, *http.Response, error)

Execute executes the request

@return []EnumDTO

type DataApiStatusLegendRequest

type DataApiStatusLegendRequest struct {
	ApiService *DataApiService
	// contains filtered or unexported fields
}

func (DataApiStatusLegendRequest) Execute

type EnumDTO

type EnumDTO struct {
	Key  int32  `json:"key"`
	Name string `json:"name"`
}

EnumDTO struct for EnumDTO

func NewEnumDTO

func NewEnumDTO(key int32, name string) *EnumDTO

NewEnumDTO instantiates a new EnumDTO 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 NewEnumDTOWithDefaults

func NewEnumDTOWithDefaults() *EnumDTO

NewEnumDTOWithDefaults instantiates a new EnumDTO 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 (*EnumDTO) GetKey

func (o *EnumDTO) GetKey() int32

GetKey returns the Key field value

func (*EnumDTO) GetKeyOk

func (o *EnumDTO) GetKeyOk() (*int32, bool)

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

func (*EnumDTO) GetName

func (o *EnumDTO) GetName() string

GetName returns the Name field value

func (*EnumDTO) GetNameOk

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

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

func (EnumDTO) MarshalJSON

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

func (*EnumDTO) SetKey

func (o *EnumDTO) SetKey(v int32)

SetKey sets field value

func (*EnumDTO) SetName

func (o *EnumDTO) SetName(v string)

SetName sets field value

type Error

type Error struct {
	ErrorCode      *string `json:"errorCode,omitempty"`
	Message        *string `json:"message,omitempty"`
	AdditionalInfo *string `json:"additionalInfo,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

NewError instantiates a new Error 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 NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error 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 (*Error) GetAdditionalInfo

func (o *Error) GetAdditionalInfo() string

GetAdditionalInfo returns the AdditionalInfo field value if set, zero value otherwise.

func (*Error) GetAdditionalInfoOk

func (o *Error) GetAdditionalInfoOk() (*string, bool)

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

func (*Error) GetErrorCode

func (o *Error) GetErrorCode() string

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*Error) GetErrorCodeOk

func (o *Error) GetErrorCodeOk() (*string, bool)

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

func (*Error) GetMessage

func (o *Error) GetMessage() string

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

func (*Error) GetMessageOk

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

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

func (*Error) HasAdditionalInfo

func (o *Error) HasAdditionalInfo() bool

HasAdditionalInfo returns a boolean if a field has been set.

func (*Error) HasErrorCode

func (o *Error) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*Error) HasMessage

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Error) MarshalJSON

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

func (*Error) SetAdditionalInfo

func (o *Error) SetAdditionalInfo(v string)

SetAdditionalInfo gets a reference to the given string and assigns it to the AdditionalInfo field.

func (*Error) SetErrorCode

func (o *Error) SetErrorCode(v string)

SetErrorCode gets a reference to the given string and assigns it to the ErrorCode field.

func (*Error) SetMessage

func (o *Error) SetMessage(v string)

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

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 GetMerchantDetailsResponse

type GetMerchantDetailsResponse struct {
	PublicName     string `json:"publicName"`
	LegalName      string `json:"legalName"`
	PhoneNumber    string `json:"phoneNumber"`
	MerchantTempId string `json:"merchantTempId"`
	Email          string `json:"email"`
	MerchantStatus string `json:"merchantStatus"`
}

GetMerchantDetailsResponse struct for GetMerchantDetailsResponse

func NewGetMerchantDetailsResponse

func NewGetMerchantDetailsResponse(publicName string, legalName string, phoneNumber string, merchantTempId string, email string, merchantStatus string) *GetMerchantDetailsResponse

NewGetMerchantDetailsResponse instantiates a new GetMerchantDetailsResponse 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 NewGetMerchantDetailsResponseWithDefaults

func NewGetMerchantDetailsResponseWithDefaults() *GetMerchantDetailsResponse

NewGetMerchantDetailsResponseWithDefaults instantiates a new GetMerchantDetailsResponse 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 (*GetMerchantDetailsResponse) GetEmail

func (o *GetMerchantDetailsResponse) GetEmail() string

GetEmail returns the Email field value

func (*GetMerchantDetailsResponse) GetEmailOk

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

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

func (*GetMerchantDetailsResponse) GetLegalName

func (o *GetMerchantDetailsResponse) GetLegalName() string

GetLegalName returns the LegalName field value

func (*GetMerchantDetailsResponse) GetLegalNameOk

func (o *GetMerchantDetailsResponse) GetLegalNameOk() (*string, bool)

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

func (*GetMerchantDetailsResponse) GetMerchantStatus

func (o *GetMerchantDetailsResponse) GetMerchantStatus() string

GetMerchantStatus returns the MerchantStatus field value

func (*GetMerchantDetailsResponse) GetMerchantStatusOk

func (o *GetMerchantDetailsResponse) GetMerchantStatusOk() (*string, bool)

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

func (*GetMerchantDetailsResponse) GetMerchantTempId

func (o *GetMerchantDetailsResponse) GetMerchantTempId() string

GetMerchantTempId returns the MerchantTempId field value

func (*GetMerchantDetailsResponse) GetMerchantTempIdOk

func (o *GetMerchantDetailsResponse) GetMerchantTempIdOk() (*string, bool)

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

func (*GetMerchantDetailsResponse) GetPhoneNumber

func (o *GetMerchantDetailsResponse) GetPhoneNumber() string

GetPhoneNumber returns the PhoneNumber field value

func (*GetMerchantDetailsResponse) GetPhoneNumberOk

func (o *GetMerchantDetailsResponse) GetPhoneNumberOk() (*string, bool)

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

func (*GetMerchantDetailsResponse) GetPublicName

func (o *GetMerchantDetailsResponse) GetPublicName() string

GetPublicName returns the PublicName field value

func (*GetMerchantDetailsResponse) GetPublicNameOk

func (o *GetMerchantDetailsResponse) GetPublicNameOk() (*string, bool)

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

func (GetMerchantDetailsResponse) MarshalJSON

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

func (*GetMerchantDetailsResponse) SetEmail

func (o *GetMerchantDetailsResponse) SetEmail(v string)

SetEmail sets field value

func (*GetMerchantDetailsResponse) SetLegalName

func (o *GetMerchantDetailsResponse) SetLegalName(v string)

SetLegalName sets field value

func (*GetMerchantDetailsResponse) SetMerchantStatus

func (o *GetMerchantDetailsResponse) SetMerchantStatus(v string)

SetMerchantStatus sets field value

func (*GetMerchantDetailsResponse) SetMerchantTempId

func (o *GetMerchantDetailsResponse) SetMerchantTempId(v string)

SetMerchantTempId sets field value

func (*GetMerchantDetailsResponse) SetPhoneNumber

func (o *GetMerchantDetailsResponse) SetPhoneNumber(v string)

SetPhoneNumber sets field value

func (*GetMerchantDetailsResponse) SetPublicName

func (o *GetMerchantDetailsResponse) SetPublicName(v string)

SetPublicName sets field value

type GetMerchantResponse

type GetMerchantResponse struct {
	PublicName     string `json:"publicName"`
	LegalName      string `json:"legalName"`
	Phone          string `json:"phone"`
	Country        string `json:"country"`
	AnnualSales    string `json:"annualSales"`
	Status         string `json:"status"`
	MerchantTempId string `json:"merchantTempId"`
}

GetMerchantResponse struct for GetMerchantResponse

func NewGetMerchantResponse

func NewGetMerchantResponse(publicName string, legalName string, phone string, country string, annualSales string, status string, merchantTempId string) *GetMerchantResponse

NewGetMerchantResponse instantiates a new GetMerchantResponse 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 NewGetMerchantResponseWithDefaults

func NewGetMerchantResponseWithDefaults() *GetMerchantResponse

NewGetMerchantResponseWithDefaults instantiates a new GetMerchantResponse 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 (*GetMerchantResponse) GetAnnualSales

func (o *GetMerchantResponse) GetAnnualSales() string

GetAnnualSales returns the AnnualSales field value

func (*GetMerchantResponse) GetAnnualSalesOk

func (o *GetMerchantResponse) GetAnnualSalesOk() (*string, bool)

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

func (*GetMerchantResponse) GetCountry

func (o *GetMerchantResponse) GetCountry() string

GetCountry returns the Country field value

func (*GetMerchantResponse) GetCountryOk

func (o *GetMerchantResponse) GetCountryOk() (*string, bool)

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

func (*GetMerchantResponse) GetLegalName

func (o *GetMerchantResponse) GetLegalName() string

GetLegalName returns the LegalName field value

func (*GetMerchantResponse) GetLegalNameOk

func (o *GetMerchantResponse) GetLegalNameOk() (*string, bool)

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

func (*GetMerchantResponse) GetMerchantTempId

func (o *GetMerchantResponse) GetMerchantTempId() string

GetMerchantTempId returns the MerchantTempId field value

func (*GetMerchantResponse) GetMerchantTempIdOk

func (o *GetMerchantResponse) GetMerchantTempIdOk() (*string, bool)

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

func (*GetMerchantResponse) GetPhone

func (o *GetMerchantResponse) GetPhone() string

GetPhone returns the Phone field value

func (*GetMerchantResponse) GetPhoneOk

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

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

func (*GetMerchantResponse) GetPublicName

func (o *GetMerchantResponse) GetPublicName() string

GetPublicName returns the PublicName field value

func (*GetMerchantResponse) GetPublicNameOk

func (o *GetMerchantResponse) GetPublicNameOk() (*string, bool)

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

func (*GetMerchantResponse) GetStatus

func (o *GetMerchantResponse) GetStatus() string

GetStatus returns the Status field value

func (*GetMerchantResponse) GetStatusOk

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

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

func (GetMerchantResponse) MarshalJSON

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

func (*GetMerchantResponse) SetAnnualSales

func (o *GetMerchantResponse) SetAnnualSales(v string)

SetAnnualSales sets field value

func (*GetMerchantResponse) SetCountry

func (o *GetMerchantResponse) SetCountry(v string)

SetCountry sets field value

func (*GetMerchantResponse) SetLegalName

func (o *GetMerchantResponse) SetLegalName(v string)

SetLegalName sets field value

func (*GetMerchantResponse) SetMerchantTempId

func (o *GetMerchantResponse) SetMerchantTempId(v string)

SetMerchantTempId sets field value

func (*GetMerchantResponse) SetPhone

func (o *GetMerchantResponse) SetPhone(v string)

SetPhone sets field value

func (*GetMerchantResponse) SetPublicName

func (o *GetMerchantResponse) SetPublicName(v string)

SetPublicName sets field value

func (*GetMerchantResponse) SetStatus

func (o *GetMerchantResponse) SetStatus(v string)

SetStatus sets field value

type GetMerchantsResponse

type GetMerchantsResponse struct {
	Merchants []GetMerchantResponse `json:"merchants"`
}

GetMerchantsResponse struct for GetMerchantsResponse

func NewGetMerchantsResponse

func NewGetMerchantsResponse(merchants []GetMerchantResponse) *GetMerchantsResponse

NewGetMerchantsResponse instantiates a new GetMerchantsResponse 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 NewGetMerchantsResponseWithDefaults

func NewGetMerchantsResponseWithDefaults() *GetMerchantsResponse

NewGetMerchantsResponseWithDefaults instantiates a new GetMerchantsResponse 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 (*GetMerchantsResponse) GetMerchants

func (o *GetMerchantsResponse) GetMerchants() []GetMerchantResponse

GetMerchants returns the Merchants field value

func (*GetMerchantsResponse) GetMerchantsOk

func (o *GetMerchantsResponse) GetMerchantsOk() ([]GetMerchantResponse, bool)

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

func (GetMerchantsResponse) MarshalJSON

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

func (*GetMerchantsResponse) SetMerchants

func (o *GetMerchantsResponse) SetMerchants(v []GetMerchantResponse)

SetMerchants sets field value

type MerchantVerticalResponse

type MerchantVerticalResponse struct {
	VerticalDisplayName string   `json:"verticalDisplayName"`
	VerticalSplititName string   `json:"verticalSplititName"`
	SubCategories       []string `json:"subCategories"`
}

MerchantVerticalResponse struct for MerchantVerticalResponse

func NewMerchantVerticalResponse

func NewMerchantVerticalResponse(verticalDisplayName string, verticalSplititName string, subCategories []string) *MerchantVerticalResponse

NewMerchantVerticalResponse instantiates a new MerchantVerticalResponse 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 NewMerchantVerticalResponseWithDefaults

func NewMerchantVerticalResponseWithDefaults() *MerchantVerticalResponse

NewMerchantVerticalResponseWithDefaults instantiates a new MerchantVerticalResponse 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 (*MerchantVerticalResponse) GetSubCategories

func (o *MerchantVerticalResponse) GetSubCategories() []string

GetSubCategories returns the SubCategories field value

func (*MerchantVerticalResponse) GetSubCategoriesOk

func (o *MerchantVerticalResponse) GetSubCategoriesOk() ([]string, bool)

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

func (*MerchantVerticalResponse) GetVerticalDisplayName

func (o *MerchantVerticalResponse) GetVerticalDisplayName() string

GetVerticalDisplayName returns the VerticalDisplayName field value

func (*MerchantVerticalResponse) GetVerticalDisplayNameOk

func (o *MerchantVerticalResponse) GetVerticalDisplayNameOk() (*string, bool)

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

func (*MerchantVerticalResponse) GetVerticalSplititName

func (o *MerchantVerticalResponse) GetVerticalSplititName() string

GetVerticalSplititName returns the VerticalSplititName field value

func (*MerchantVerticalResponse) GetVerticalSplititNameOk

func (o *MerchantVerticalResponse) GetVerticalSplititNameOk() (*string, bool)

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

func (MerchantVerticalResponse) MarshalJSON

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

func (*MerchantVerticalResponse) SetSubCategories

func (o *MerchantVerticalResponse) SetSubCategories(v []string)

SetSubCategories sets field value

func (*MerchantVerticalResponse) SetVerticalDisplayName

func (o *MerchantVerticalResponse) SetVerticalDisplayName(v string)

SetVerticalDisplayName sets field value

func (*MerchantVerticalResponse) SetVerticalSplititName

func (o *MerchantVerticalResponse) SetVerticalSplititName(v string)

SetVerticalSplititName sets field value

type MerchantVerticalsResponse

type MerchantVerticalsResponse struct {
	MerchantVerticals []MerchantVerticalResponse `json:"merchantVerticals"`
}

MerchantVerticalsResponse struct for MerchantVerticalsResponse

func NewMerchantVerticalsResponse

func NewMerchantVerticalsResponse(merchantVerticals []MerchantVerticalResponse) *MerchantVerticalsResponse

NewMerchantVerticalsResponse instantiates a new MerchantVerticalsResponse 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 NewMerchantVerticalsResponseWithDefaults

func NewMerchantVerticalsResponseWithDefaults() *MerchantVerticalsResponse

NewMerchantVerticalsResponseWithDefaults instantiates a new MerchantVerticalsResponse 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 (*MerchantVerticalsResponse) GetMerchantVerticals

func (o *MerchantVerticalsResponse) GetMerchantVerticals() []MerchantVerticalResponse

GetMerchantVerticals returns the MerchantVerticals field value

func (*MerchantVerticalsResponse) GetMerchantVerticalsOk

func (o *MerchantVerticalsResponse) GetMerchantVerticalsOk() ([]MerchantVerticalResponse, bool)

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

func (MerchantVerticalsResponse) MarshalJSON

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

func (*MerchantVerticalsResponse) SetMerchantVerticals

func (o *MerchantVerticalsResponse) SetMerchantVerticals(v []MerchantVerticalResponse)

SetMerchantVerticals sets field value

type MerchantsApiCreateDeveloperRequest

type MerchantsApiCreateDeveloperRequest struct {
	ApiService *MerchantsApiService
	// contains filtered or unexported fields
}

func (MerchantsApiCreateDeveloperRequest) CreateDeveloperRequest

func (r MerchantsApiCreateDeveloperRequest) CreateDeveloperRequest(createDeveloperRequest CreateDeveloperRequest) MerchantsApiCreateDeveloperRequest

func (MerchantsApiCreateDeveloperRequest) Execute

type MerchantsApiCreateRequest

type MerchantsApiCreateRequest struct {
	ApiService *MerchantsApiService
	// contains filtered or unexported fields
}

func (MerchantsApiCreateRequest) CreateMerchantRequest

func (r MerchantsApiCreateRequest) CreateMerchantRequest(createMerchantRequest CreateMerchantRequest) MerchantsApiCreateRequest

func (MerchantsApiCreateRequest) Execute

type MerchantsApiGetDetailsRequest

type MerchantsApiGetDetailsRequest struct {
	ApiService *MerchantsApiService
	// contains filtered or unexported fields
}

func (MerchantsApiGetDetailsRequest) Execute

func (MerchantsApiGetDetailsRequest) MerchantTempId

func (r MerchantsApiGetDetailsRequest) MerchantTempId(merchantTempId string) MerchantsApiGetDetailsRequest

type MerchantsApiGetRequest

type MerchantsApiGetRequest struct {
	ApiService *MerchantsApiService
	// contains filtered or unexported fields
}

func (MerchantsApiGetRequest) Execute

func (MerchantsApiGetRequest) LegalName

func (r MerchantsApiGetRequest) LegalName(legalName string) MerchantsApiGetRequest

func (MerchantsApiGetRequest) Name

func (MerchantsApiGetRequest) NumberOfRowsInPage

func (r MerchantsApiGetRequest) NumberOfRowsInPage(numberOfRowsInPage int32) MerchantsApiGetRequest

func (MerchantsApiGetRequest) PageNumber

func (r MerchantsApiGetRequest) PageNumber(pageNumber int32) MerchantsApiGetRequest

func (MerchantsApiGetRequest) Status

type MerchantsApiService

type MerchantsApiService service

MerchantsApiService MerchantsApi service

func (*MerchantsApiService) Create

Create Method for Create

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

func (*MerchantsApiService) CreateDeveloper

CreateDeveloper Method for CreateDeveloper

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

func (*MerchantsApiService) CreateDeveloperExecute

Execute executes the request

@return CreateMerchantResponse

func (*MerchantsApiService) CreateExecute

Execute executes the request

@return CreateMerchantResponse

func (*MerchantsApiService) Get

Get Method for Get

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

func (*MerchantsApiService) GetDetails

GetDetails Method for GetDetails

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

func (*MerchantsApiService) GetDetailsExecute

Execute executes the request

@return GetMerchantDetailsResponse

func (*MerchantsApiService) GetExecute

Execute executes the request

@return GetMerchantsResponse

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 NullableCountriesResponse

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

func NewNullableCountriesResponse

func NewNullableCountriesResponse(val *CountriesResponse) *NullableCountriesResponse

func (NullableCountriesResponse) Get

func (NullableCountriesResponse) IsSet

func (v NullableCountriesResponse) IsSet() bool

func (NullableCountriesResponse) MarshalJSON

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

func (*NullableCountriesResponse) Set

func (*NullableCountriesResponse) UnmarshalJSON

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

func (*NullableCountriesResponse) Unset

func (v *NullableCountriesResponse) Unset()

type NullableCountryResponse

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

func NewNullableCountryResponse

func NewNullableCountryResponse(val *CountryResponse) *NullableCountryResponse

func (NullableCountryResponse) Get

func (NullableCountryResponse) IsSet

func (v NullableCountryResponse) IsSet() bool

func (NullableCountryResponse) MarshalJSON

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

func (*NullableCountryResponse) Set

func (*NullableCountryResponse) UnmarshalJSON

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

func (*NullableCountryResponse) Unset

func (v *NullableCountryResponse) Unset()

type NullableCreateDeveloperRequest

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

func (NullableCreateDeveloperRequest) Get

func (NullableCreateDeveloperRequest) IsSet

func (NullableCreateDeveloperRequest) MarshalJSON

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

func (*NullableCreateDeveloperRequest) Set

func (*NullableCreateDeveloperRequest) UnmarshalJSON

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

func (*NullableCreateDeveloperRequest) Unset

func (v *NullableCreateDeveloperRequest) Unset()

type NullableCreateMerchantRequest

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

func (NullableCreateMerchantRequest) Get

func (NullableCreateMerchantRequest) IsSet

func (NullableCreateMerchantRequest) MarshalJSON

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

func (*NullableCreateMerchantRequest) Set

func (*NullableCreateMerchantRequest) UnmarshalJSON

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

func (*NullableCreateMerchantRequest) Unset

func (v *NullableCreateMerchantRequest) Unset()

type NullableCreateMerchantResponse

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

func (NullableCreateMerchantResponse) Get

func (NullableCreateMerchantResponse) IsSet

func (NullableCreateMerchantResponse) MarshalJSON

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

func (*NullableCreateMerchantResponse) Set

func (*NullableCreateMerchantResponse) UnmarshalJSON

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

func (*NullableCreateMerchantResponse) Unset

func (v *NullableCreateMerchantResponse) Unset()

type NullableCurrenciesResponse

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

func NewNullableCurrenciesResponse

func NewNullableCurrenciesResponse(val *CurrenciesResponse) *NullableCurrenciesResponse

func (NullableCurrenciesResponse) Get

func (NullableCurrenciesResponse) IsSet

func (v NullableCurrenciesResponse) IsSet() bool

func (NullableCurrenciesResponse) MarshalJSON

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

func (*NullableCurrenciesResponse) Set

func (*NullableCurrenciesResponse) UnmarshalJSON

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

func (*NullableCurrenciesResponse) Unset

func (v *NullableCurrenciesResponse) Unset()

type NullableCurrencyResponse

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

func NewNullableCurrencyResponse

func NewNullableCurrencyResponse(val *CurrencyResponse) *NullableCurrencyResponse

func (NullableCurrencyResponse) Get

func (NullableCurrencyResponse) IsSet

func (v NullableCurrencyResponse) IsSet() bool

func (NullableCurrencyResponse) MarshalJSON

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

func (*NullableCurrencyResponse) Set

func (*NullableCurrencyResponse) UnmarshalJSON

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

func (*NullableCurrencyResponse) Unset

func (v *NullableCurrencyResponse) Unset()

type NullableEnumDTO

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

func NewNullableEnumDTO

func NewNullableEnumDTO(val *EnumDTO) *NullableEnumDTO

func (NullableEnumDTO) Get

func (v NullableEnumDTO) Get() *EnumDTO

func (NullableEnumDTO) IsSet

func (v NullableEnumDTO) IsSet() bool

func (NullableEnumDTO) MarshalJSON

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

func (*NullableEnumDTO) Set

func (v *NullableEnumDTO) Set(val *EnumDTO)

func (*NullableEnumDTO) UnmarshalJSON

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

func (*NullableEnumDTO) Unset

func (v *NullableEnumDTO) Unset()

type NullableError

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

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

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

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

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

func (*NullableError) Unset

func (v *NullableError) 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 NullableGetMerchantDetailsResponse

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

func (NullableGetMerchantDetailsResponse) Get

func (NullableGetMerchantDetailsResponse) IsSet

func (NullableGetMerchantDetailsResponse) MarshalJSON

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

func (*NullableGetMerchantDetailsResponse) Set

func (*NullableGetMerchantDetailsResponse) UnmarshalJSON

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

func (*NullableGetMerchantDetailsResponse) Unset

type NullableGetMerchantResponse

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

func NewNullableGetMerchantResponse

func NewNullableGetMerchantResponse(val *GetMerchantResponse) *NullableGetMerchantResponse

func (NullableGetMerchantResponse) Get

func (NullableGetMerchantResponse) IsSet

func (NullableGetMerchantResponse) MarshalJSON

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

func (*NullableGetMerchantResponse) Set

func (*NullableGetMerchantResponse) UnmarshalJSON

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

func (*NullableGetMerchantResponse) Unset

func (v *NullableGetMerchantResponse) Unset()

type NullableGetMerchantsResponse

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

func NewNullableGetMerchantsResponse

func NewNullableGetMerchantsResponse(val *GetMerchantsResponse) *NullableGetMerchantsResponse

func (NullableGetMerchantsResponse) Get

func (NullableGetMerchantsResponse) IsSet

func (NullableGetMerchantsResponse) MarshalJSON

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

func (*NullableGetMerchantsResponse) Set

func (*NullableGetMerchantsResponse) UnmarshalJSON

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

func (*NullableGetMerchantsResponse) Unset

func (v *NullableGetMerchantsResponse) 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 NullableMerchantVerticalResponse

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

func (NullableMerchantVerticalResponse) Get

func (NullableMerchantVerticalResponse) IsSet

func (NullableMerchantVerticalResponse) MarshalJSON

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

func (*NullableMerchantVerticalResponse) Set

func (*NullableMerchantVerticalResponse) UnmarshalJSON

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

func (*NullableMerchantVerticalResponse) Unset

type NullableMerchantVerticalsResponse

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

func (NullableMerchantVerticalsResponse) Get

func (NullableMerchantVerticalsResponse) IsSet

func (NullableMerchantVerticalsResponse) MarshalJSON

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

func (*NullableMerchantVerticalsResponse) Set

func (*NullableMerchantVerticalsResponse) UnmarshalJSON

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

func (*NullableMerchantVerticalsResponse) Unset

type NullableProcessorAuthenticationParametersRequest

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

func (NullableProcessorAuthenticationParametersRequest) Get

func (NullableProcessorAuthenticationParametersRequest) IsSet

func (NullableProcessorAuthenticationParametersRequest) MarshalJSON

func (*NullableProcessorAuthenticationParametersRequest) Set

func (*NullableProcessorAuthenticationParametersRequest) UnmarshalJSON

func (*NullableProcessorAuthenticationParametersRequest) Unset

type NullableProcessorResponse

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

func NewNullableProcessorResponse

func NewNullableProcessorResponse(val *ProcessorResponse) *NullableProcessorResponse

func (NullableProcessorResponse) Get

func (NullableProcessorResponse) IsSet

func (v NullableProcessorResponse) IsSet() bool

func (NullableProcessorResponse) MarshalJSON

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

func (*NullableProcessorResponse) Set

func (*NullableProcessorResponse) UnmarshalJSON

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

func (*NullableProcessorResponse) Unset

func (v *NullableProcessorResponse) Unset()

type NullableProcessorsResponse

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

func NewNullableProcessorsResponse

func NewNullableProcessorsResponse(val *ProcessorsResponse) *NullableProcessorsResponse

func (NullableProcessorsResponse) Get

func (NullableProcessorsResponse) IsSet

func (v NullableProcessorsResponse) IsSet() bool

func (NullableProcessorsResponse) MarshalJSON

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

func (*NullableProcessorsResponse) Set

func (*NullableProcessorsResponse) UnmarshalJSON

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

func (*NullableProcessorsResponse) Unset

func (v *NullableProcessorsResponse) Unset()

type NullableRequestHeaderSlim

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

func NewNullableRequestHeaderSlim

func NewNullableRequestHeaderSlim(val *RequestHeaderSlim) *NullableRequestHeaderSlim

func (NullableRequestHeaderSlim) Get

func (NullableRequestHeaderSlim) IsSet

func (v NullableRequestHeaderSlim) IsSet() bool

func (NullableRequestHeaderSlim) MarshalJSON

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

func (*NullableRequestHeaderSlim) Set

func (*NullableRequestHeaderSlim) UnmarshalJSON

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

func (*NullableRequestHeaderSlim) Unset

func (v *NullableRequestHeaderSlim) Unset()

type NullableResponseHeader

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

func NewNullableResponseHeader

func NewNullableResponseHeader(val *ResponseHeader) *NullableResponseHeader

func (NullableResponseHeader) Get

func (NullableResponseHeader) IsSet

func (v NullableResponseHeader) IsSet() bool

func (NullableResponseHeader) MarshalJSON

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

func (*NullableResponseHeader) Set

func (*NullableResponseHeader) UnmarshalJSON

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

func (*NullableResponseHeader) Unset

func (v *NullableResponseHeader) Unset()

type NullableSelfOnBoardingErrorResponse

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

func (NullableSelfOnBoardingErrorResponse) Get

func (NullableSelfOnBoardingErrorResponse) IsSet

func (NullableSelfOnBoardingErrorResponse) MarshalJSON

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

func (*NullableSelfOnBoardingErrorResponse) Set

func (*NullableSelfOnBoardingErrorResponse) UnmarshalJSON

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

func (*NullableSelfOnBoardingErrorResponse) Unset

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type ProcessorAuthenticationParametersRequest

type ProcessorAuthenticationParametersRequest struct {
	Key string `json:"key"`
}

ProcessorAuthenticationParametersRequest struct for ProcessorAuthenticationParametersRequest

func NewProcessorAuthenticationParametersRequest

func NewProcessorAuthenticationParametersRequest(key string) *ProcessorAuthenticationParametersRequest

NewProcessorAuthenticationParametersRequest instantiates a new ProcessorAuthenticationParametersRequest 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 NewProcessorAuthenticationParametersRequestWithDefaults

func NewProcessorAuthenticationParametersRequestWithDefaults() *ProcessorAuthenticationParametersRequest

NewProcessorAuthenticationParametersRequestWithDefaults instantiates a new ProcessorAuthenticationParametersRequest 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 (*ProcessorAuthenticationParametersRequest) GetKey

GetKey returns the Key field value

func (*ProcessorAuthenticationParametersRequest) GetKeyOk

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

func (ProcessorAuthenticationParametersRequest) MarshalJSON

func (*ProcessorAuthenticationParametersRequest) SetKey

SetKey sets field value

type ProcessorResponse

type ProcessorResponse struct {
	Id                                       int64                                      `json:"id"`
	Name                                     string                                     `json:"name"`
	ProcessorAuthenticationParametersRequest []ProcessorAuthenticationParametersRequest `json:"processorAuthenticationParametersRequest"`
}

ProcessorResponse struct for ProcessorResponse

func NewProcessorResponse

func NewProcessorResponse(id int64, name string, processorAuthenticationParametersRequest []ProcessorAuthenticationParametersRequest) *ProcessorResponse

NewProcessorResponse instantiates a new ProcessorResponse 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 NewProcessorResponseWithDefaults

func NewProcessorResponseWithDefaults() *ProcessorResponse

NewProcessorResponseWithDefaults instantiates a new ProcessorResponse 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 (*ProcessorResponse) GetId

func (o *ProcessorResponse) GetId() int64

GetId returns the Id field value

func (*ProcessorResponse) GetIdOk

func (o *ProcessorResponse) GetIdOk() (*int64, bool)

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

func (*ProcessorResponse) GetName

func (o *ProcessorResponse) GetName() string

GetName returns the Name field value

func (*ProcessorResponse) GetNameOk

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

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

func (*ProcessorResponse) GetProcessorAuthenticationParametersRequest

func (o *ProcessorResponse) GetProcessorAuthenticationParametersRequest() []ProcessorAuthenticationParametersRequest

GetProcessorAuthenticationParametersRequest returns the ProcessorAuthenticationParametersRequest field value

func (*ProcessorResponse) GetProcessorAuthenticationParametersRequestOk

func (o *ProcessorResponse) GetProcessorAuthenticationParametersRequestOk() ([]ProcessorAuthenticationParametersRequest, bool)

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

func (ProcessorResponse) MarshalJSON

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

func (*ProcessorResponse) SetId

func (o *ProcessorResponse) SetId(v int64)

SetId sets field value

func (*ProcessorResponse) SetName

func (o *ProcessorResponse) SetName(v string)

SetName sets field value

func (*ProcessorResponse) SetProcessorAuthenticationParametersRequest

func (o *ProcessorResponse) SetProcessorAuthenticationParametersRequest(v []ProcessorAuthenticationParametersRequest)

SetProcessorAuthenticationParametersRequest sets field value

type ProcessorsResponse

type ProcessorsResponse struct {
	Processors []ProcessorResponse `json:"processors"`
}

ProcessorsResponse struct for ProcessorsResponse

func NewProcessorsResponse

func NewProcessorsResponse(processors []ProcessorResponse) *ProcessorsResponse

NewProcessorsResponse instantiates a new ProcessorsResponse 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 NewProcessorsResponseWithDefaults

func NewProcessorsResponseWithDefaults() *ProcessorsResponse

NewProcessorsResponseWithDefaults instantiates a new ProcessorsResponse 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 (*ProcessorsResponse) GetProcessors

func (o *ProcessorsResponse) GetProcessors() []ProcessorResponse

GetProcessors returns the Processors field value

func (*ProcessorsResponse) GetProcessorsOk

func (o *ProcessorsResponse) GetProcessorsOk() ([]ProcessorResponse, bool)

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

func (ProcessorsResponse) MarshalJSON

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

func (*ProcessorsResponse) SetProcessors

func (o *ProcessorsResponse) SetProcessors(v []ProcessorResponse)

SetProcessors sets field value

type RequestHeaderSlim

type RequestHeaderSlim struct {
	SessionId string `json:"sessionId"`
}

RequestHeaderSlim struct for RequestHeaderSlim

func NewRequestHeaderSlim

func NewRequestHeaderSlim(sessionId string) *RequestHeaderSlim

NewRequestHeaderSlim instantiates a new RequestHeaderSlim 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 NewRequestHeaderSlimWithDefaults

func NewRequestHeaderSlimWithDefaults() *RequestHeaderSlim

NewRequestHeaderSlimWithDefaults instantiates a new RequestHeaderSlim 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 (*RequestHeaderSlim) GetSessionId

func (o *RequestHeaderSlim) GetSessionId() string

GetSessionId returns the SessionId field value

func (*RequestHeaderSlim) GetSessionIdOk

func (o *RequestHeaderSlim) GetSessionIdOk() (*string, bool)

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

func (RequestHeaderSlim) MarshalJSON

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

func (*RequestHeaderSlim) SetSessionId

func (o *RequestHeaderSlim) SetSessionId(v string)

SetSessionId sets field value

type ResponseHeader

type ResponseHeader struct {
	Succeeded bool    `json:"succeeded"`
	Errors    []Error `json:"errors,omitempty"`
	TraceId   *string `json:"traceId,omitempty"`
}

ResponseHeader struct for ResponseHeader

func NewResponseHeader

func NewResponseHeader(succeeded bool) *ResponseHeader

NewResponseHeader instantiates a new ResponseHeader 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 NewResponseHeaderWithDefaults

func NewResponseHeaderWithDefaults() *ResponseHeader

NewResponseHeaderWithDefaults instantiates a new ResponseHeader 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 (*ResponseHeader) GetErrors

func (o *ResponseHeader) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ResponseHeader) GetErrorsOk

func (o *ResponseHeader) GetErrorsOk() ([]Error, bool)

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

func (*ResponseHeader) GetSucceeded

func (o *ResponseHeader) GetSucceeded() bool

GetSucceeded returns the Succeeded field value

func (*ResponseHeader) GetSucceededOk

func (o *ResponseHeader) GetSucceededOk() (*bool, bool)

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

func (*ResponseHeader) GetTraceId

func (o *ResponseHeader) GetTraceId() string

GetTraceId returns the TraceId field value if set, zero value otherwise.

func (*ResponseHeader) GetTraceIdOk

func (o *ResponseHeader) GetTraceIdOk() (*string, bool)

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

func (*ResponseHeader) HasErrors

func (o *ResponseHeader) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ResponseHeader) HasTraceId

func (o *ResponseHeader) HasTraceId() bool

HasTraceId returns a boolean if a field has been set.

func (ResponseHeader) MarshalJSON

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

func (*ResponseHeader) SetErrors

func (o *ResponseHeader) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (*ResponseHeader) SetSucceeded

func (o *ResponseHeader) SetSucceeded(v bool)

SetSucceeded sets field value

func (*ResponseHeader) SetTraceId

func (o *ResponseHeader) SetTraceId(v string)

SetTraceId gets a reference to the given string and assigns it to the TraceId field.

type SelfOnBoardingErrorResponse

type SelfOnBoardingErrorResponse struct {
	Message   *string `json:"message,omitempty"`
	ErrorCode *int32  `json:"errorCode,omitempty"`
	ParamName *string `json:"paramName,omitempty"`
	TraceId   *string `json:"traceId,omitempty"`
}

SelfOnBoardingErrorResponse struct for SelfOnBoardingErrorResponse

func NewSelfOnBoardingErrorResponse

func NewSelfOnBoardingErrorResponse() *SelfOnBoardingErrorResponse

NewSelfOnBoardingErrorResponse instantiates a new SelfOnBoardingErrorResponse 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 NewSelfOnBoardingErrorResponseWithDefaults

func NewSelfOnBoardingErrorResponseWithDefaults() *SelfOnBoardingErrorResponse

NewSelfOnBoardingErrorResponseWithDefaults instantiates a new SelfOnBoardingErrorResponse 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 (*SelfOnBoardingErrorResponse) GetErrorCode

func (o *SelfOnBoardingErrorResponse) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*SelfOnBoardingErrorResponse) GetErrorCodeOk

func (o *SelfOnBoardingErrorResponse) GetErrorCodeOk() (*int32, bool)

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

func (*SelfOnBoardingErrorResponse) GetMessage

func (o *SelfOnBoardingErrorResponse) GetMessage() string

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

func (*SelfOnBoardingErrorResponse) GetMessageOk

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

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

func (*SelfOnBoardingErrorResponse) GetParamName

func (o *SelfOnBoardingErrorResponse) GetParamName() string

GetParamName returns the ParamName field value if set, zero value otherwise.

func (*SelfOnBoardingErrorResponse) GetParamNameOk

func (o *SelfOnBoardingErrorResponse) GetParamNameOk() (*string, bool)

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

func (*SelfOnBoardingErrorResponse) GetTraceId

func (o *SelfOnBoardingErrorResponse) GetTraceId() string

GetTraceId returns the TraceId field value if set, zero value otherwise.

func (*SelfOnBoardingErrorResponse) GetTraceIdOk

func (o *SelfOnBoardingErrorResponse) GetTraceIdOk() (*string, bool)

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

func (*SelfOnBoardingErrorResponse) HasErrorCode

func (o *SelfOnBoardingErrorResponse) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*SelfOnBoardingErrorResponse) HasMessage

func (o *SelfOnBoardingErrorResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*SelfOnBoardingErrorResponse) HasParamName

func (o *SelfOnBoardingErrorResponse) HasParamName() bool

HasParamName returns a boolean if a field has been set.

func (*SelfOnBoardingErrorResponse) HasTraceId

func (o *SelfOnBoardingErrorResponse) HasTraceId() bool

HasTraceId returns a boolean if a field has been set.

func (SelfOnBoardingErrorResponse) MarshalJSON

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

func (*SelfOnBoardingErrorResponse) SetErrorCode

func (o *SelfOnBoardingErrorResponse) SetErrorCode(v int32)

SetErrorCode gets a reference to the given int32 and assigns it to the ErrorCode field.

func (*SelfOnBoardingErrorResponse) SetMessage

func (o *SelfOnBoardingErrorResponse) SetMessage(v string)

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

func (*SelfOnBoardingErrorResponse) SetParamName

func (o *SelfOnBoardingErrorResponse) SetParamName(v string)

SetParamName gets a reference to the given string and assigns it to the ParamName field.

func (*SelfOnBoardingErrorResponse) SetTraceId

func (o *SelfOnBoardingErrorResponse) SetTraceId(v string)

SetTraceId gets a reference to the given string and assigns it to the TraceId field.

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

Jump to

Keyboard shortcuts

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