openapi

package module
v0.0.0-...-f779a40 Latest Latest
Warning

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

Go to latest
Published: Feb 8, 2025 License: MIT Imports: 20 Imported by: 1

README

Go API client for openapi

API documentation for Wallos

API documentation

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0.0
  • Package version: 1.0.0
  • Generator version: 7.11.0-SNAPSHOT
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import openapi "github.com/flowline-io/sdk-wallos-api"

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 openapi.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi.ContextServerIndex, 1)
Templated Server URL

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

ctx := context.WithValue(context.Background(), openapi.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 openapi.ContextOperationServerIndices and openapi.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
DefaultAPI ApiAdminGetAdminSettingsPhpGet Get /api/admin/get_admin_settings.php Get Admin Settings
DefaultAPI ApiCategoriesGetCategoriesPhpGet Get /api/categories/get_categories.php Get Categories
DefaultAPI ApiCurrenciesGetCurrenciesPhpGet Get /api/currencies/get_currencies.php Get Currencies
DefaultAPI ApiFixerGetFixerPhpGet Get /api/fixer/get_fixer.php Get Fixer Settings
DefaultAPI ApiHouseholdGetHouseholdPhpGet Get /api/household/get_household.php Get Household
DefaultAPI ApiNotificationsGetNotificationSettingsPhpGet Get /api/notifications/get_notification_settings.php Get Notification Settings
DefaultAPI ApiPaymentMethodsGetPaymentMethodsPhpGet Get /api/payment_methods/get_payment_methods.php Get Payment Methods
DefaultAPI ApiSettingsGetSettingsPhpGet Get /api/settings/get_settings.php Get User Settings
DefaultAPI ApiSubscriptionsGetMonthlyCostPhpGet Get /api/subscriptions/get_monthly_cost.php Get Monthly Cost
DefaultAPI ApiSubscriptionsGetSubscriptionsPhpGet Get /api/subscriptions/get_subscriptions.php Get Subscriptions

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

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 (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

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

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

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

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	DefaultAPI *DefaultAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Wallos API 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 ApiAdminGetAdminSettingsPhpGet200Response

type ApiAdminGetAdminSettingsPhpGet200Response struct {
	// Indicates whether the request was successful.
	Success *bool `json:"success,omitempty"`
	// The title of the response.
	Title         *string                                                 `json:"title,omitempty"`
	AdminSettings *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings `json:"admin_settings,omitempty"`
	// Warning messages or additional information.
	Notes []string `json:"notes,omitempty"`
}

ApiAdminGetAdminSettingsPhpGet200Response struct for ApiAdminGetAdminSettingsPhpGet200Response

func NewApiAdminGetAdminSettingsPhpGet200Response

func NewApiAdminGetAdminSettingsPhpGet200Response() *ApiAdminGetAdminSettingsPhpGet200Response

NewApiAdminGetAdminSettingsPhpGet200Response instantiates a new ApiAdminGetAdminSettingsPhpGet200Response 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 NewApiAdminGetAdminSettingsPhpGet200ResponseWithDefaults

func NewApiAdminGetAdminSettingsPhpGet200ResponseWithDefaults() *ApiAdminGetAdminSettingsPhpGet200Response

NewApiAdminGetAdminSettingsPhpGet200ResponseWithDefaults instantiates a new ApiAdminGetAdminSettingsPhpGet200Response 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 (*ApiAdminGetAdminSettingsPhpGet200Response) GetAdminSettings

GetAdminSettings returns the AdminSettings field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200Response) GetAdminSettingsOk

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

func (*ApiAdminGetAdminSettingsPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200Response) GetNotesOk

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

func (*ApiAdminGetAdminSettingsPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200Response) GetSuccessOk

func (o *ApiAdminGetAdminSettingsPhpGet200Response) GetSuccessOk() (*bool, bool)

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

func (*ApiAdminGetAdminSettingsPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200Response) GetTitleOk

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

func (*ApiAdminGetAdminSettingsPhpGet200Response) HasAdminSettings

func (o *ApiAdminGetAdminSettingsPhpGet200Response) HasAdminSettings() bool

HasAdminSettings returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiAdminGetAdminSettingsPhpGet200Response) MarshalJSON

func (*ApiAdminGetAdminSettingsPhpGet200Response) SetAdminSettings

SetAdminSettings gets a reference to the given ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings and assigns it to the AdminSettings field.

func (*ApiAdminGetAdminSettingsPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiAdminGetAdminSettingsPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiAdminGetAdminSettingsPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiAdminGetAdminSettingsPhpGet200Response) ToMap

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

type ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings

type ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings struct {
	// Indicates if registrations are open (1 for true, 0 for false).
	RegistrationsOpen *int32 `json:"registrations_open,omitempty"`
	// The maximum number of users allowed.
	MaxUsers *int32 `json:"max_users,omitempty"`
	// Indicates if email verification is required (1 for true, 0 for false).
	RequireEmailVerification *int32 `json:"require_email_verification,omitempty"`
	// The server URL.
	ServerUrl *string `json:"server_url,omitempty"`
	// The SMTP address for sending emails.
	SmtpAddress *string `json:"smtp_address,omitempty"`
	// The port for the SMTP server.
	SmtpPort *int32 `json:"smtp_port,omitempty"`
	// The username for SMTP authentication.
	SmtpUsername *string `json:"smtp_username,omitempty"`
	// The password for SMTP authentication.
	SmtpPassword *string `json:"smtp_password,omitempty"`
	// The email address used as the sender.
	FromEmail *string `json:"from_email,omitempty"`
	// The encryption method for SMTP (e.g., tls, ssl).
	Encryption *string `json:"encryption,omitempty"`
	// Indicates if login is disabled (1 for true, 0 for false).
	LoginDisabled *int32 `json:"login_disabled,omitempty"`
	// The latest version of the application.
	LatestVersion *string `json:"latest_version,omitempty"`
	// Indicates if update notifications are enabled (1 for true, 0 for false).
	UpdateNotification *int32 `json:"update_notification,omitempty"`
}

ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings struct for ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings

func NewApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings

func NewApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings() *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings

NewApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings instantiates a new ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings 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 NewApiAdminGetAdminSettingsPhpGet200ResponseAdminSettingsWithDefaults

func NewApiAdminGetAdminSettingsPhpGet200ResponseAdminSettingsWithDefaults() *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings

NewApiAdminGetAdminSettingsPhpGet200ResponseAdminSettingsWithDefaults instantiates a new ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings 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 (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetEncryption

GetEncryption returns the Encryption field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetEncryptionOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetFromEmail

GetFromEmail returns the FromEmail field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetFromEmailOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetLatestVersion

GetLatestVersion returns the LatestVersion field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetLatestVersionOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetLoginDisabled

GetLoginDisabled returns the LoginDisabled field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetLoginDisabledOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetMaxUsers

GetMaxUsers returns the MaxUsers field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetMaxUsersOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetRegistrationsOpen

GetRegistrationsOpen returns the RegistrationsOpen field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetRegistrationsOpenOk

func (o *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetRegistrationsOpenOk() (*int32, bool)

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetRequireEmailVerification

func (o *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetRequireEmailVerification() int32

GetRequireEmailVerification returns the RequireEmailVerification field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetRequireEmailVerificationOk

func (o *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetRequireEmailVerificationOk() (*int32, bool)

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetServerUrl

GetServerUrl returns the ServerUrl field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetServerUrlOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetSmtpAddress

GetSmtpAddress returns the SmtpAddress field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetSmtpAddressOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetSmtpPassword

GetSmtpPassword returns the SmtpPassword field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetSmtpPasswordOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetSmtpPort

GetSmtpPort returns the SmtpPort field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetSmtpPortOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetSmtpUsername

GetSmtpUsername returns the SmtpUsername field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetSmtpUsernameOk

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetUpdateNotification

GetUpdateNotification returns the UpdateNotification field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetUpdateNotificationOk

func (o *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) GetUpdateNotificationOk() (*int32, bool)

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

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasEncryption

HasEncryption returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasFromEmail

HasFromEmail returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasLatestVersion

HasLatestVersion returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasLoginDisabled

HasLoginDisabled returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasMaxUsers

HasMaxUsers returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasRegistrationsOpen

HasRegistrationsOpen returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasRequireEmailVerification

func (o *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasRequireEmailVerification() bool

HasRequireEmailVerification returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasServerUrl

HasServerUrl returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasSmtpAddress

HasSmtpAddress returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasSmtpPassword

HasSmtpPassword returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasSmtpPort

HasSmtpPort returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasSmtpUsername

HasSmtpUsername returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) HasUpdateNotification

HasUpdateNotification returns a boolean if a field has been set.

func (ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) MarshalJSON

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetEncryption

SetEncryption gets a reference to the given string and assigns it to the Encryption field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetFromEmail

SetFromEmail gets a reference to the given string and assigns it to the FromEmail field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetLatestVersion

SetLatestVersion gets a reference to the given string and assigns it to the LatestVersion field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetLoginDisabled

SetLoginDisabled gets a reference to the given int32 and assigns it to the LoginDisabled field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetMaxUsers

SetMaxUsers gets a reference to the given int32 and assigns it to the MaxUsers field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetRegistrationsOpen

SetRegistrationsOpen gets a reference to the given int32 and assigns it to the RegistrationsOpen field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetRequireEmailVerification

func (o *ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetRequireEmailVerification(v int32)

SetRequireEmailVerification gets a reference to the given int32 and assigns it to the RequireEmailVerification field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetServerUrl

SetServerUrl gets a reference to the given string and assigns it to the ServerUrl field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetSmtpAddress

SetSmtpAddress gets a reference to the given string and assigns it to the SmtpAddress field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetSmtpPassword

SetSmtpPassword gets a reference to the given string and assigns it to the SmtpPassword field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetSmtpPort

SetSmtpPort gets a reference to the given int32 and assigns it to the SmtpPort field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetSmtpUsername

SetSmtpUsername gets a reference to the given string and assigns it to the SmtpUsername field.

func (*ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) SetUpdateNotification

SetUpdateNotification gets a reference to the given int32 and assigns it to the UpdateNotification field.

func (ApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) ToMap

type ApiAdminGetAdminSettingsPhpGet401Response

type ApiAdminGetAdminSettingsPhpGet401Response struct {
	Success *bool    `json:"success,omitempty"`
	Title   *string  `json:"title,omitempty"`
	Notes   []string `json:"notes,omitempty"`
}

ApiAdminGetAdminSettingsPhpGet401Response struct for ApiAdminGetAdminSettingsPhpGet401Response

func NewApiAdminGetAdminSettingsPhpGet401Response

func NewApiAdminGetAdminSettingsPhpGet401Response() *ApiAdminGetAdminSettingsPhpGet401Response

NewApiAdminGetAdminSettingsPhpGet401Response instantiates a new ApiAdminGetAdminSettingsPhpGet401Response 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 NewApiAdminGetAdminSettingsPhpGet401ResponseWithDefaults

func NewApiAdminGetAdminSettingsPhpGet401ResponseWithDefaults() *ApiAdminGetAdminSettingsPhpGet401Response

NewApiAdminGetAdminSettingsPhpGet401ResponseWithDefaults instantiates a new ApiAdminGetAdminSettingsPhpGet401Response 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 (*ApiAdminGetAdminSettingsPhpGet401Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet401Response) GetNotesOk

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

func (*ApiAdminGetAdminSettingsPhpGet401Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet401Response) GetSuccessOk

func (o *ApiAdminGetAdminSettingsPhpGet401Response) GetSuccessOk() (*bool, bool)

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

func (*ApiAdminGetAdminSettingsPhpGet401Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiAdminGetAdminSettingsPhpGet401Response) GetTitleOk

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

func (*ApiAdminGetAdminSettingsPhpGet401Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet401Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiAdminGetAdminSettingsPhpGet401Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiAdminGetAdminSettingsPhpGet401Response) MarshalJSON

func (*ApiAdminGetAdminSettingsPhpGet401Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiAdminGetAdminSettingsPhpGet401Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiAdminGetAdminSettingsPhpGet401Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiAdminGetAdminSettingsPhpGet401Response) ToMap

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

type ApiApiAdminGetAdminSettingsPhpGetRequest

type ApiApiAdminGetAdminSettingsPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiAdminGetAdminSettingsPhpGetRequest) ApiKey

API key of the user.

func (ApiApiAdminGetAdminSettingsPhpGetRequest) Execute

type ApiApiCategoriesGetCategoriesPhpGetRequest

type ApiApiCategoriesGetCategoriesPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiCategoriesGetCategoriesPhpGetRequest) ApiKey

API key of the user.

func (ApiApiCategoriesGetCategoriesPhpGetRequest) Execute

type ApiApiCurrenciesGetCurrenciesPhpGetRequest

type ApiApiCurrenciesGetCurrenciesPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiCurrenciesGetCurrenciesPhpGetRequest) ApiKey

API key of the user.

func (ApiApiCurrenciesGetCurrenciesPhpGetRequest) Execute

type ApiApiFixerGetFixerPhpGetRequest

type ApiApiFixerGetFixerPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiFixerGetFixerPhpGetRequest) ApiKey

API key of the user.

func (ApiApiFixerGetFixerPhpGetRequest) Execute

type ApiApiHouseholdGetHouseholdPhpGetRequest

type ApiApiHouseholdGetHouseholdPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiHouseholdGetHouseholdPhpGetRequest) ApiKey

func (ApiApiHouseholdGetHouseholdPhpGetRequest) Execute

type ApiApiNotificationsGetNotificationSettingsPhpGetRequest

type ApiApiNotificationsGetNotificationSettingsPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiNotificationsGetNotificationSettingsPhpGetRequest) ApiKey

func (ApiApiNotificationsGetNotificationSettingsPhpGetRequest) Execute

type ApiApiPaymentMethodsGetPaymentMethodsPhpGetRequest

type ApiApiPaymentMethodsGetPaymentMethodsPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiPaymentMethodsGetPaymentMethodsPhpGetRequest) ApiKey

func (ApiApiPaymentMethodsGetPaymentMethodsPhpGetRequest) Execute

type ApiApiSettingsGetSettingsPhpGetRequest

type ApiApiSettingsGetSettingsPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiSettingsGetSettingsPhpGetRequest) ApiKey

func (ApiApiSettingsGetSettingsPhpGetRequest) Execute

type ApiApiSubscriptionsGetMonthlyCostPhpGetRequest

type ApiApiSubscriptionsGetMonthlyCostPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiSubscriptionsGetMonthlyCostPhpGetRequest) ApiKey

The API key of the user.

func (ApiApiSubscriptionsGetMonthlyCostPhpGetRequest) Execute

func (ApiApiSubscriptionsGetMonthlyCostPhpGetRequest) Month

The month for which the cost is to be calculated.

func (ApiApiSubscriptionsGetMonthlyCostPhpGetRequest) Year

The year for which the cost is to be calculated.

type ApiApiSubscriptionsGetSubscriptionsPhpGetRequest

type ApiApiSubscriptionsGetSubscriptionsPhpGetRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) ApiKey

The API key of the user.

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) Category

The ID of the category to filter.

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) ConvertCurrency

Whether to convert the prices to the main currency.

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) DisabledToBottom

Whether to sort inactive subscriptions to the bottom.

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) Execute

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) Member

Comma-separated IDs of the members to filter.

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) PaymentMethod

The ID of the payment method to filter.

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) Sort

The sorting method ['name', 'id', 'next_payment', 'price', etc.].

func (ApiApiSubscriptionsGetSubscriptionsPhpGetRequest) State

The state of the subscription to filter [0 - active, 1 - inactive].

type ApiCategoriesGetCategoriesPhpGet200Response

type ApiCategoriesGetCategoriesPhpGet200Response struct {
	// Indicates whether the request was successful.
	Success *bool `json:"success,omitempty"`
	// The title of the response.
	Title      *string                                                      `json:"title,omitempty"`
	Categories []ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner `json:"categories,omitempty"`
	// Warning messages or additional information.
	Notes []string `json:"notes,omitempty"`
}

ApiCategoriesGetCategoriesPhpGet200Response struct for ApiCategoriesGetCategoriesPhpGet200Response

func NewApiCategoriesGetCategoriesPhpGet200Response

func NewApiCategoriesGetCategoriesPhpGet200Response() *ApiCategoriesGetCategoriesPhpGet200Response

NewApiCategoriesGetCategoriesPhpGet200Response instantiates a new ApiCategoriesGetCategoriesPhpGet200Response 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 NewApiCategoriesGetCategoriesPhpGet200ResponseWithDefaults

func NewApiCategoriesGetCategoriesPhpGet200ResponseWithDefaults() *ApiCategoriesGetCategoriesPhpGet200Response

NewApiCategoriesGetCategoriesPhpGet200ResponseWithDefaults instantiates a new ApiCategoriesGetCategoriesPhpGet200Response 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 (*ApiCategoriesGetCategoriesPhpGet200Response) GetCategories

GetCategories returns the Categories field value if set, zero value otherwise.

func (*ApiCategoriesGetCategoriesPhpGet200Response) GetCategoriesOk

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

func (*ApiCategoriesGetCategoriesPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiCategoriesGetCategoriesPhpGet200Response) GetNotesOk

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

func (*ApiCategoriesGetCategoriesPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiCategoriesGetCategoriesPhpGet200Response) GetSuccessOk

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

func (*ApiCategoriesGetCategoriesPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiCategoriesGetCategoriesPhpGet200Response) GetTitleOk

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

func (*ApiCategoriesGetCategoriesPhpGet200Response) HasCategories

HasCategories returns a boolean if a field has been set.

func (*ApiCategoriesGetCategoriesPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiCategoriesGetCategoriesPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiCategoriesGetCategoriesPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiCategoriesGetCategoriesPhpGet200Response) MarshalJSON

func (*ApiCategoriesGetCategoriesPhpGet200Response) SetCategories

SetCategories gets a reference to the given []ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner and assigns it to the Categories field.

func (*ApiCategoriesGetCategoriesPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiCategoriesGetCategoriesPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiCategoriesGetCategoriesPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiCategoriesGetCategoriesPhpGet200Response) ToMap

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

type ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner

type ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner struct {
	// The unique identifier for the category.
	Id *int32 `json:"id,omitempty"`
	// The name of the category.
	Name *string `json:"name,omitempty"`
	// The display order of the category.
	Order *int32 `json:"order,omitempty"`
	// Indicates if the category is currently in use.
	InUse *bool `json:"in_use,omitempty"`
}

ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner struct for ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner

func NewApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner

func NewApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner() *ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner

NewApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner instantiates a new ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner 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 NewApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInnerWithDefaults

func NewApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInnerWithDefaults() *ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner

NewApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInnerWithDefaults instantiates a new ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner 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 (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) GetId

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

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) GetIdOk

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

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) GetInUse

GetInUse returns the InUse field value if set, zero value otherwise.

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) GetInUseOk

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

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) GetName

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

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) GetNameOk

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 (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) GetOrder

GetOrder returns the Order field value if set, zero value otherwise.

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) GetOrderOk

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

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) HasId

HasId returns a boolean if a field has been set.

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) HasInUse

HasInUse returns a boolean if a field has been set.

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) HasName

HasName returns a boolean if a field has been set.

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) HasOrder

HasOrder returns a boolean if a field has been set.

func (ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) MarshalJSON

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) SetId

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

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) SetInUse

SetInUse gets a reference to the given bool and assigns it to the InUse field.

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) SetName

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

func (*ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) SetOrder

SetOrder gets a reference to the given int32 and assigns it to the Order field.

func (ApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) ToMap

type ApiCurrenciesGetCurrenciesPhpGet200Response

type ApiCurrenciesGetCurrenciesPhpGet200Response struct {
	// Indicates whether the request was successful.
	Success *bool `json:"success,omitempty"`
	// The title of the response.
	Title *string `json:"title,omitempty"`
	// The ID of the main currency of the user.
	MainCurrency *int32                                                       `json:"main_currency,omitempty"`
	Currencies   []ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner `json:"currencies,omitempty"`
	// Warning messages or additional information.
	Notes []string `json:"notes,omitempty"`
}

ApiCurrenciesGetCurrenciesPhpGet200Response struct for ApiCurrenciesGetCurrenciesPhpGet200Response

func NewApiCurrenciesGetCurrenciesPhpGet200Response

func NewApiCurrenciesGetCurrenciesPhpGet200Response() *ApiCurrenciesGetCurrenciesPhpGet200Response

NewApiCurrenciesGetCurrenciesPhpGet200Response instantiates a new ApiCurrenciesGetCurrenciesPhpGet200Response 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 NewApiCurrenciesGetCurrenciesPhpGet200ResponseWithDefaults

func NewApiCurrenciesGetCurrenciesPhpGet200ResponseWithDefaults() *ApiCurrenciesGetCurrenciesPhpGet200Response

NewApiCurrenciesGetCurrenciesPhpGet200ResponseWithDefaults instantiates a new ApiCurrenciesGetCurrenciesPhpGet200Response 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 (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetCurrencies

GetCurrencies returns the Currencies field value if set, zero value otherwise.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetCurrenciesOk

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

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetMainCurrency

GetMainCurrency returns the MainCurrency field value if set, zero value otherwise.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetMainCurrencyOk

func (o *ApiCurrenciesGetCurrenciesPhpGet200Response) GetMainCurrencyOk() (*int32, bool)

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

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetNotesOk

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

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetSuccessOk

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

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) GetTitleOk

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

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) HasCurrencies

HasCurrencies returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) HasMainCurrency

HasMainCurrency returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiCurrenciesGetCurrenciesPhpGet200Response) MarshalJSON

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) SetCurrencies

SetCurrencies gets a reference to the given []ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner and assigns it to the Currencies field.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) SetMainCurrency

func (o *ApiCurrenciesGetCurrenciesPhpGet200Response) SetMainCurrency(v int32)

SetMainCurrency gets a reference to the given int32 and assigns it to the MainCurrency field.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiCurrenciesGetCurrenciesPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiCurrenciesGetCurrenciesPhpGet200Response) ToMap

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

type ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner

type ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner struct {
	// The unique identifier for the currency.
	Id *int32 `json:"id,omitempty"`
	// The name of the currency.
	Name *string `json:"name,omitempty"`
	// The symbol of the currency.
	Symbol *string `json:"symbol,omitempty"`
	// The ISO code of the currency.
	Code *string `json:"code,omitempty"`
	// The current exchange rate of the currency.
	Rate *string `json:"rate,omitempty"`
	// Indicates if the currency is currently in use.
	InUse *bool `json:"in_use,omitempty"`
}

ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner struct for ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner

func NewApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner

func NewApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner() *ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner

NewApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner instantiates a new ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner 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 NewApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInnerWithDefaults

func NewApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInnerWithDefaults() *ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner

NewApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInnerWithDefaults instantiates a new ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner 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 (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetCode

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetCodeOk

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 (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetId

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetIdOk

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetInUse

GetInUse returns the InUse field value if set, zero value otherwise.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetInUseOk

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetName

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetNameOk

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 (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetRate

GetRate returns the Rate field value if set, zero value otherwise.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetRateOk

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetSymbol

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) GetSymbolOk

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 (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) HasCode

HasCode returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) HasId

HasId returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) HasInUse

HasInUse returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) HasName

HasName returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) HasRate

HasRate returns a boolean if a field has been set.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) MarshalJSON

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) SetCode

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) SetId

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) SetInUse

SetInUse gets a reference to the given bool and assigns it to the InUse field.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) SetName

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

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) SetRate

SetRate gets a reference to the given string and assigns it to the Rate field.

func (*ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) SetSymbol

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

func (ApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) ToMap

type ApiFixerGetFixerPhpGet200Response

type ApiFixerGetFixerPhpGet200Response struct {
	// Indicates whether the request was successful.
	Success *bool `json:"success,omitempty"`
	// The title of the response.
	Title *string                                 `json:"title,omitempty"`
	Fixer *ApiFixerGetFixerPhpGet200ResponseFixer `json:"fixer,omitempty"`
	// Warning messages or additional information.
	Notes []string `json:"notes,omitempty"`
}

ApiFixerGetFixerPhpGet200Response struct for ApiFixerGetFixerPhpGet200Response

func NewApiFixerGetFixerPhpGet200Response

func NewApiFixerGetFixerPhpGet200Response() *ApiFixerGetFixerPhpGet200Response

NewApiFixerGetFixerPhpGet200Response instantiates a new ApiFixerGetFixerPhpGet200Response 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 NewApiFixerGetFixerPhpGet200ResponseWithDefaults

func NewApiFixerGetFixerPhpGet200ResponseWithDefaults() *ApiFixerGetFixerPhpGet200Response

NewApiFixerGetFixerPhpGet200ResponseWithDefaults instantiates a new ApiFixerGetFixerPhpGet200Response 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 (*ApiFixerGetFixerPhpGet200Response) GetFixer

GetFixer returns the Fixer field value if set, zero value otherwise.

func (*ApiFixerGetFixerPhpGet200Response) GetFixerOk

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

func (*ApiFixerGetFixerPhpGet200Response) GetNotes

func (o *ApiFixerGetFixerPhpGet200Response) GetNotes() []string

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiFixerGetFixerPhpGet200Response) GetNotesOk

func (o *ApiFixerGetFixerPhpGet200Response) GetNotesOk() ([]string, bool)

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

func (*ApiFixerGetFixerPhpGet200Response) GetSuccess

func (o *ApiFixerGetFixerPhpGet200Response) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiFixerGetFixerPhpGet200Response) GetSuccessOk

func (o *ApiFixerGetFixerPhpGet200Response) GetSuccessOk() (*bool, bool)

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

func (*ApiFixerGetFixerPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiFixerGetFixerPhpGet200Response) GetTitleOk

func (o *ApiFixerGetFixerPhpGet200Response) GetTitleOk() (*string, bool)

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

func (*ApiFixerGetFixerPhpGet200Response) HasFixer

HasFixer returns a boolean if a field has been set.

func (*ApiFixerGetFixerPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiFixerGetFixerPhpGet200Response) HasSuccess

func (o *ApiFixerGetFixerPhpGet200Response) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (*ApiFixerGetFixerPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiFixerGetFixerPhpGet200Response) MarshalJSON

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

func (*ApiFixerGetFixerPhpGet200Response) SetFixer

SetFixer gets a reference to the given ApiFixerGetFixerPhpGet200ResponseFixer and assigns it to the Fixer field.

func (*ApiFixerGetFixerPhpGet200Response) SetNotes

func (o *ApiFixerGetFixerPhpGet200Response) SetNotes(v []string)

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiFixerGetFixerPhpGet200Response) SetSuccess

func (o *ApiFixerGetFixerPhpGet200Response) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiFixerGetFixerPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiFixerGetFixerPhpGet200Response) ToMap

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

type ApiFixerGetFixerPhpGet200ResponseFixer

type ApiFixerGetFixerPhpGet200ResponseFixer struct {
	// The API key used for accessing Fixer.
	ApiKey *string `json:"api_key,omitempty"`
	// The ID of the provider.
	Provider *int32 `json:"provider,omitempty"`
	// The name of the provider.
	ProviderName *string `json:"provider_name,omitempty"`
}

ApiFixerGetFixerPhpGet200ResponseFixer struct for ApiFixerGetFixerPhpGet200ResponseFixer

func NewApiFixerGetFixerPhpGet200ResponseFixer

func NewApiFixerGetFixerPhpGet200ResponseFixer() *ApiFixerGetFixerPhpGet200ResponseFixer

NewApiFixerGetFixerPhpGet200ResponseFixer instantiates a new ApiFixerGetFixerPhpGet200ResponseFixer 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 NewApiFixerGetFixerPhpGet200ResponseFixerWithDefaults

func NewApiFixerGetFixerPhpGet200ResponseFixerWithDefaults() *ApiFixerGetFixerPhpGet200ResponseFixer

NewApiFixerGetFixerPhpGet200ResponseFixerWithDefaults instantiates a new ApiFixerGetFixerPhpGet200ResponseFixer 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 (*ApiFixerGetFixerPhpGet200ResponseFixer) GetApiKey

GetApiKey returns the ApiKey field value if set, zero value otherwise.

func (*ApiFixerGetFixerPhpGet200ResponseFixer) GetApiKeyOk

func (o *ApiFixerGetFixerPhpGet200ResponseFixer) GetApiKeyOk() (*string, bool)

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

func (*ApiFixerGetFixerPhpGet200ResponseFixer) GetProvider

GetProvider returns the Provider field value if set, zero value otherwise.

func (*ApiFixerGetFixerPhpGet200ResponseFixer) GetProviderName

func (o *ApiFixerGetFixerPhpGet200ResponseFixer) GetProviderName() string

GetProviderName returns the ProviderName field value if set, zero value otherwise.

func (*ApiFixerGetFixerPhpGet200ResponseFixer) GetProviderNameOk

func (o *ApiFixerGetFixerPhpGet200ResponseFixer) GetProviderNameOk() (*string, bool)

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

func (*ApiFixerGetFixerPhpGet200ResponseFixer) GetProviderOk

func (o *ApiFixerGetFixerPhpGet200ResponseFixer) GetProviderOk() (*int32, bool)

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

func (*ApiFixerGetFixerPhpGet200ResponseFixer) HasApiKey

HasApiKey returns a boolean if a field has been set.

func (*ApiFixerGetFixerPhpGet200ResponseFixer) HasProvider

HasProvider returns a boolean if a field has been set.

func (*ApiFixerGetFixerPhpGet200ResponseFixer) HasProviderName

func (o *ApiFixerGetFixerPhpGet200ResponseFixer) HasProviderName() bool

HasProviderName returns a boolean if a field has been set.

func (ApiFixerGetFixerPhpGet200ResponseFixer) MarshalJSON

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

func (*ApiFixerGetFixerPhpGet200ResponseFixer) SetApiKey

SetApiKey gets a reference to the given string and assigns it to the ApiKey field.

func (*ApiFixerGetFixerPhpGet200ResponseFixer) SetProvider

SetProvider gets a reference to the given int32 and assigns it to the Provider field.

func (*ApiFixerGetFixerPhpGet200ResponseFixer) SetProviderName

func (o *ApiFixerGetFixerPhpGet200ResponseFixer) SetProviderName(v string)

SetProviderName gets a reference to the given string and assigns it to the ProviderName field.

func (ApiFixerGetFixerPhpGet200ResponseFixer) ToMap

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

type ApiHouseholdGetHouseholdPhpGet200Response

type ApiHouseholdGetHouseholdPhpGet200Response struct {
	Success   *bool                                                     `json:"success,omitempty"`
	Title     *string                                                   `json:"title,omitempty"`
	Household []ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner `json:"household,omitempty"`
	Notes     []string                                                  `json:"notes,omitempty"`
}

ApiHouseholdGetHouseholdPhpGet200Response struct for ApiHouseholdGetHouseholdPhpGet200Response

func NewApiHouseholdGetHouseholdPhpGet200Response

func NewApiHouseholdGetHouseholdPhpGet200Response() *ApiHouseholdGetHouseholdPhpGet200Response

NewApiHouseholdGetHouseholdPhpGet200Response instantiates a new ApiHouseholdGetHouseholdPhpGet200Response 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 NewApiHouseholdGetHouseholdPhpGet200ResponseWithDefaults

func NewApiHouseholdGetHouseholdPhpGet200ResponseWithDefaults() *ApiHouseholdGetHouseholdPhpGet200Response

NewApiHouseholdGetHouseholdPhpGet200ResponseWithDefaults instantiates a new ApiHouseholdGetHouseholdPhpGet200Response 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 (*ApiHouseholdGetHouseholdPhpGet200Response) GetHousehold

GetHousehold returns the Household field value if set, zero value otherwise.

func (*ApiHouseholdGetHouseholdPhpGet200Response) GetHouseholdOk

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

func (*ApiHouseholdGetHouseholdPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiHouseholdGetHouseholdPhpGet200Response) GetNotesOk

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

func (*ApiHouseholdGetHouseholdPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiHouseholdGetHouseholdPhpGet200Response) GetSuccessOk

func (o *ApiHouseholdGetHouseholdPhpGet200Response) GetSuccessOk() (*bool, bool)

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

func (*ApiHouseholdGetHouseholdPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiHouseholdGetHouseholdPhpGet200Response) GetTitleOk

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

func (*ApiHouseholdGetHouseholdPhpGet200Response) HasHousehold

HasHousehold returns a boolean if a field has been set.

func (*ApiHouseholdGetHouseholdPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiHouseholdGetHouseholdPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiHouseholdGetHouseholdPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiHouseholdGetHouseholdPhpGet200Response) MarshalJSON

func (*ApiHouseholdGetHouseholdPhpGet200Response) SetHousehold

SetHousehold gets a reference to the given []ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner and assigns it to the Household field.

func (*ApiHouseholdGetHouseholdPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiHouseholdGetHouseholdPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiHouseholdGetHouseholdPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiHouseholdGetHouseholdPhpGet200Response) ToMap

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

type ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner

type ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner struct {
	Id    *int32  `json:"id,omitempty"`
	Name  *string `json:"name,omitempty"`
	Email *string `json:"email,omitempty"`
	InUse *bool   `json:"in_use,omitempty"`
}

ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner struct for ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner

func NewApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner

func NewApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner() *ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner

NewApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner instantiates a new ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner 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 NewApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInnerWithDefaults

func NewApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInnerWithDefaults() *ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner

NewApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInnerWithDefaults instantiates a new ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner 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 (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) GetEmail

GetEmail returns the Email field value if set, zero value otherwise.

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) GetEmailOk

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

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) GetId

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

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) GetIdOk

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

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) GetInUse

GetInUse returns the InUse field value if set, zero value otherwise.

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) GetInUseOk

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

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) GetName

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

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) GetNameOk

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 (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) HasEmail

HasEmail returns a boolean if a field has been set.

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) HasId

HasId returns a boolean if a field has been set.

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) HasInUse

HasInUse returns a boolean if a field has been set.

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) HasName

HasName returns a boolean if a field has been set.

func (ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) MarshalJSON

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) SetEmail

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

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) SetId

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

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) SetInUse

SetInUse gets a reference to the given bool and assigns it to the InUse field.

func (*ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) SetName

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

func (ApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) ToMap

type ApiNotificationsGetNotificationSettingsPhpGet200Response

type ApiNotificationsGetNotificationSettingsPhpGet200Response struct {
	Success              *bool                                                                         `json:"success,omitempty"`
	Title                *string                                                                       `json:"title,omitempty"`
	NotificationSettings *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings `json:"notification_settings,omitempty"`
	Notes                []string                                                                      `json:"notes,omitempty"`
}

ApiNotificationsGetNotificationSettingsPhpGet200Response struct for ApiNotificationsGetNotificationSettingsPhpGet200Response

func NewApiNotificationsGetNotificationSettingsPhpGet200Response

func NewApiNotificationsGetNotificationSettingsPhpGet200Response() *ApiNotificationsGetNotificationSettingsPhpGet200Response

NewApiNotificationsGetNotificationSettingsPhpGet200Response instantiates a new ApiNotificationsGetNotificationSettingsPhpGet200Response 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 NewApiNotificationsGetNotificationSettingsPhpGet200ResponseWithDefaults

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseWithDefaults() *ApiNotificationsGetNotificationSettingsPhpGet200Response

NewApiNotificationsGetNotificationSettingsPhpGet200ResponseWithDefaults instantiates a new ApiNotificationsGetNotificationSettingsPhpGet200Response 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 (*ApiNotificationsGetNotificationSettingsPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) GetNotesOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) GetNotificationSettings

GetNotificationSettings returns the NotificationSettings field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) GetNotificationSettingsOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) GetSuccessOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) GetTitleOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) HasNotificationSettings

HasNotificationSettings returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiNotificationsGetNotificationSettingsPhpGet200Response) MarshalJSON

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) SetNotificationSettings

SetNotificationSettings gets a reference to the given ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings and assigns it to the NotificationSettings field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiNotificationsGetNotificationSettingsPhpGet200Response) ToMap

type ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings

type ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings struct {
	EmailNotifications *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications `json:"email_notifications,omitempty"`
	NtfyNotifications  *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications  `json:"ntfy_notifications,omitempty"`
}

ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings struct for ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings() *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings

NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings instantiates a new ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings 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 NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsWithDefaults

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsWithDefaults() *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings

NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsWithDefaults instantiates a new ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings 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 (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) GetEmailNotifications

GetEmailNotifications returns the EmailNotifications field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) GetEmailNotificationsOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) GetNtfyNotifications

GetNtfyNotifications returns the NtfyNotifications field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) GetNtfyNotificationsOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) HasEmailNotifications

HasEmailNotifications returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) HasNtfyNotifications

HasNtfyNotifications returns a boolean if a field has been set.

func (ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) MarshalJSON

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) SetEmailNotifications

SetEmailNotifications gets a reference to the given ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications and assigns it to the EmailNotifications field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) SetNtfyNotifications

SetNtfyNotifications gets a reference to the given ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications and assigns it to the NtfyNotifications field.

func (ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) ToMap

type ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications

type ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications struct {
	Enabled      *int32  `json:"enabled,omitempty"`
	SmtpAddress  *string `json:"smtp_address,omitempty"`
	SmtpPort     *int32  `json:"smtp_port,omitempty"`
	SmtpUsername *string `json:"smtp_username,omitempty"`
	SmtpPassword *string `json:"smtp_password,omitempty"`
	FromEmail    *string `json:"from_email,omitempty"`
	Encryption   *string `json:"encryption,omitempty"`
	OtherEmails  *string `json:"other_emails,omitempty"`
}

ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications struct for ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications() *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications

NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications instantiates a new ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications 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 NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotificationsWithDefaults

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotificationsWithDefaults() *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications

NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotificationsWithDefaults instantiates a new ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications 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 (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetEnabledOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetEncryption

GetEncryption returns the Encryption field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetEncryptionOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetFromEmail

GetFromEmail returns the FromEmail field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetFromEmailOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetOtherEmails

GetOtherEmails returns the OtherEmails field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetOtherEmailsOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetSmtpAddress

GetSmtpAddress returns the SmtpAddress field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetSmtpAddressOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetSmtpPassword

GetSmtpPassword returns the SmtpPassword field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetSmtpPasswordOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetSmtpPort

GetSmtpPort returns the SmtpPort field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetSmtpPortOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetSmtpUsername

GetSmtpUsername returns the SmtpUsername field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) GetSmtpUsernameOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) HasEncryption

HasEncryption returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) HasFromEmail

HasFromEmail returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) HasOtherEmails

HasOtherEmails returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) HasSmtpAddress

HasSmtpAddress returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) HasSmtpPassword

HasSmtpPassword returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) HasSmtpPort

HasSmtpPort returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) HasSmtpUsername

HasSmtpUsername returns a boolean if a field has been set.

func (ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) MarshalJSON

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) SetEnabled

SetEnabled gets a reference to the given int32 and assigns it to the Enabled field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) SetEncryption

SetEncryption gets a reference to the given string and assigns it to the Encryption field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) SetFromEmail

SetFromEmail gets a reference to the given string and assigns it to the FromEmail field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) SetOtherEmails

SetOtherEmails gets a reference to the given string and assigns it to the OtherEmails field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) SetSmtpAddress

SetSmtpAddress gets a reference to the given string and assigns it to the SmtpAddress field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) SetSmtpPassword

SetSmtpPassword gets a reference to the given string and assigns it to the SmtpPassword field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) SetSmtpPort

SetSmtpPort gets a reference to the given int32 and assigns it to the SmtpPort field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) SetSmtpUsername

SetSmtpUsername gets a reference to the given string and assigns it to the SmtpUsername field.

func (ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) ToMap

type ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications

type ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications struct {
	Enabled *int32  `json:"enabled,omitempty"`
	Host    *string `json:"host,omitempty"`
	Topic   *string `json:"topic,omitempty"`
	Headers *string `json:"headers,omitempty"`
}

ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications struct for ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications() *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications

NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications instantiates a new ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications 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 NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotificationsWithDefaults

func NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotificationsWithDefaults() *ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications

NewApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotificationsWithDefaults instantiates a new ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications 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 (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) GetEnabledOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) GetHeaders

GetHeaders returns the Headers field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) GetHeadersOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) GetHost

GetHost returns the Host field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) GetHostOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) GetTopic

GetTopic returns the Topic field value if set, zero value otherwise.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) GetTopicOk

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

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) HasHeaders

HasHeaders returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) HasHost

HasHost returns a boolean if a field has been set.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) HasTopic

HasTopic returns a boolean if a field has been set.

func (ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) MarshalJSON

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) SetEnabled

SetEnabled gets a reference to the given int32 and assigns it to the Enabled field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) SetHeaders

SetHeaders gets a reference to the given string and assigns it to the Headers field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) SetHost

SetHost gets a reference to the given string and assigns it to the Host field.

func (*ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) SetTopic

SetTopic gets a reference to the given string and assigns it to the Topic field.

func (ApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) ToMap

type ApiPaymentMethodsGetPaymentMethodsPhpGet200Response

type ApiPaymentMethodsGetPaymentMethodsPhpGet200Response struct {
	Success        *bool                                                                    `json:"success,omitempty"`
	Title          *string                                                                  `json:"title,omitempty"`
	PaymentMethods []ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner `json:"payment_methods,omitempty"`
	Notes          []string                                                                 `json:"notes,omitempty"`
}

ApiPaymentMethodsGetPaymentMethodsPhpGet200Response struct for ApiPaymentMethodsGetPaymentMethodsPhpGet200Response

func NewApiPaymentMethodsGetPaymentMethodsPhpGet200Response

func NewApiPaymentMethodsGetPaymentMethodsPhpGet200Response() *ApiPaymentMethodsGetPaymentMethodsPhpGet200Response

NewApiPaymentMethodsGetPaymentMethodsPhpGet200Response instantiates a new ApiPaymentMethodsGetPaymentMethodsPhpGet200Response 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 NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponseWithDefaults

func NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponseWithDefaults() *ApiPaymentMethodsGetPaymentMethodsPhpGet200Response

NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponseWithDefaults instantiates a new ApiPaymentMethodsGetPaymentMethodsPhpGet200Response 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 (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) GetNotesOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) GetPaymentMethods

GetPaymentMethods returns the PaymentMethods field value if set, zero value otherwise.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) GetPaymentMethodsOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) GetSuccessOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) GetTitleOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) HasPaymentMethods

HasPaymentMethods returns a boolean if a field has been set.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) MarshalJSON

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) SetPaymentMethods

SetPaymentMethods gets a reference to the given []ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner and assigns it to the PaymentMethods field.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiPaymentMethodsGetPaymentMethodsPhpGet200Response) ToMap

type ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner

type ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner struct {
	Id      *int32  `json:"id,omitempty"`
	Name    *string `json:"name,omitempty"`
	Icon    *string `json:"icon,omitempty"`
	Enabled *int32  `json:"enabled,omitempty"`
	Order   *int32  `json:"order,omitempty"`
	InUse   *bool   `json:"in_use,omitempty"`
}

ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner struct for ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner

func NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner

func NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner() *ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner

NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner instantiates a new ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner 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 NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInnerWithDefaults

func NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInnerWithDefaults() *ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner

NewApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInnerWithDefaults instantiates a new ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner 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 (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetEnabledOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetIcon

GetIcon returns the Icon field value if set, zero value otherwise.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetIconOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetId

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetIdOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetInUse

GetInUse returns the InUse field value if set, zero value otherwise.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetInUseOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetName

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetNameOk

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 (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetOrder

GetOrder returns the Order field value if set, zero value otherwise.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) GetOrderOk

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) HasIcon

HasIcon returns a boolean if a field has been set.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) HasId

HasId returns a boolean if a field has been set.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) HasInUse

HasInUse returns a boolean if a field has been set.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) HasName

HasName returns a boolean if a field has been set.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) HasOrder

HasOrder returns a boolean if a field has been set.

func (ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) MarshalJSON

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) SetEnabled

SetEnabled gets a reference to the given int32 and assigns it to the Enabled field.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) SetIcon

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) SetId

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) SetInUse

SetInUse gets a reference to the given bool and assigns it to the InUse field.

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) SetName

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

func (*ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) SetOrder

SetOrder gets a reference to the given int32 and assigns it to the Order field.

func (ApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) ToMap

type ApiSettingsGetSettingsPhpGet200Response

type ApiSettingsGetSettingsPhpGet200Response struct {
	Success  *bool                                            `json:"success,omitempty"`
	Title    *string                                          `json:"title,omitempty"`
	Settings *ApiSettingsGetSettingsPhpGet200ResponseSettings `json:"settings,omitempty"`
	Notes    []string                                         `json:"notes,omitempty"`
}

ApiSettingsGetSettingsPhpGet200Response struct for ApiSettingsGetSettingsPhpGet200Response

func NewApiSettingsGetSettingsPhpGet200Response

func NewApiSettingsGetSettingsPhpGet200Response() *ApiSettingsGetSettingsPhpGet200Response

NewApiSettingsGetSettingsPhpGet200Response instantiates a new ApiSettingsGetSettingsPhpGet200Response 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 NewApiSettingsGetSettingsPhpGet200ResponseWithDefaults

func NewApiSettingsGetSettingsPhpGet200ResponseWithDefaults() *ApiSettingsGetSettingsPhpGet200Response

NewApiSettingsGetSettingsPhpGet200ResponseWithDefaults instantiates a new ApiSettingsGetSettingsPhpGet200Response 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 (*ApiSettingsGetSettingsPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200Response) GetNotesOk

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

func (*ApiSettingsGetSettingsPhpGet200Response) GetSettings

GetSettings returns the Settings field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200Response) GetSettingsOk

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

func (*ApiSettingsGetSettingsPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200Response) GetSuccessOk

func (o *ApiSettingsGetSettingsPhpGet200Response) GetSuccessOk() (*bool, bool)

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

func (*ApiSettingsGetSettingsPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200Response) GetTitleOk

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

func (*ApiSettingsGetSettingsPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200Response) HasSettings

HasSettings returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiSettingsGetSettingsPhpGet200Response) MarshalJSON

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

func (*ApiSettingsGetSettingsPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiSettingsGetSettingsPhpGet200Response) SetSettings

SetSettings gets a reference to the given ApiSettingsGetSettingsPhpGet200ResponseSettings and assigns it to the Settings field.

func (*ApiSettingsGetSettingsPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiSettingsGetSettingsPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiSettingsGetSettingsPhpGet200Response) ToMap

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

type ApiSettingsGetSettingsPhpGet200ResponseSettings

type ApiSettingsGetSettingsPhpGet200ResponseSettings struct {
	DarkTheme         *int32                                                    `json:"dark_theme,omitempty"`
	MonthlyPrice      *int32                                                    `json:"monthly_price,omitempty"`
	ConvertCurrency   *int32                                                    `json:"convert_currency,omitempty"`
	RemoveBackground  *int32                                                    `json:"remove_background,omitempty"`
	ColorTheme        *string                                                   `json:"color_theme,omitempty"`
	HideDisabled      *int32                                                    `json:"hide_disabled,omitempty"`
	DisabledToBottom  *int32                                                    `json:"disabled_to_bottom,omitempty"`
	ShowOriginalPrice *int32                                                    `json:"show_original_price,omitempty"`
	MobileNav         *int32                                                    `json:"mobile_nav,omitempty"`
	CustomCss         *ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss `json:"custom_css,omitempty"`
}

ApiSettingsGetSettingsPhpGet200ResponseSettings struct for ApiSettingsGetSettingsPhpGet200ResponseSettings

func NewApiSettingsGetSettingsPhpGet200ResponseSettings

func NewApiSettingsGetSettingsPhpGet200ResponseSettings() *ApiSettingsGetSettingsPhpGet200ResponseSettings

NewApiSettingsGetSettingsPhpGet200ResponseSettings instantiates a new ApiSettingsGetSettingsPhpGet200ResponseSettings 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 NewApiSettingsGetSettingsPhpGet200ResponseSettingsWithDefaults

func NewApiSettingsGetSettingsPhpGet200ResponseSettingsWithDefaults() *ApiSettingsGetSettingsPhpGet200ResponseSettings

NewApiSettingsGetSettingsPhpGet200ResponseSettingsWithDefaults instantiates a new ApiSettingsGetSettingsPhpGet200ResponseSettings 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 (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetColorTheme

GetColorTheme returns the ColorTheme field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetColorThemeOk

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetConvertCurrency

GetConvertCurrency returns the ConvertCurrency field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetConvertCurrencyOk

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetConvertCurrencyOk() (*int32, bool)

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetCustomCss

GetCustomCss returns the CustomCss field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetCustomCssOk

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetDarkTheme

GetDarkTheme returns the DarkTheme field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetDarkThemeOk

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetDisabledToBottom

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetDisabledToBottom() int32

GetDisabledToBottom returns the DisabledToBottom field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetDisabledToBottomOk

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetDisabledToBottomOk() (*int32, bool)

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetHideDisabled

GetHideDisabled returns the HideDisabled field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetHideDisabledOk

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetHideDisabledOk() (*int32, bool)

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetMobileNav

GetMobileNav returns the MobileNav field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetMobileNavOk

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetMonthlyPrice

GetMonthlyPrice returns the MonthlyPrice field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetMonthlyPriceOk

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetMonthlyPriceOk() (*int32, bool)

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetRemoveBackground

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetRemoveBackground() int32

GetRemoveBackground returns the RemoveBackground field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetRemoveBackgroundOk

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetRemoveBackgroundOk() (*int32, bool)

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetShowOriginalPrice

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetShowOriginalPrice() int32

GetShowOriginalPrice returns the ShowOriginalPrice field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) GetShowOriginalPriceOk

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) GetShowOriginalPriceOk() (*int32, bool)

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasColorTheme

HasColorTheme returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasConvertCurrency

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) HasConvertCurrency() bool

HasConvertCurrency returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasCustomCss

HasCustomCss returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasDarkTheme

HasDarkTheme returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasDisabledToBottom

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) HasDisabledToBottom() bool

HasDisabledToBottom returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasHideDisabled

HasHideDisabled returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasMobileNav

HasMobileNav returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasMonthlyPrice

HasMonthlyPrice returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasRemoveBackground

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) HasRemoveBackground() bool

HasRemoveBackground returns a boolean if a field has been set.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) HasShowOriginalPrice

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) HasShowOriginalPrice() bool

HasShowOriginalPrice returns a boolean if a field has been set.

func (ApiSettingsGetSettingsPhpGet200ResponseSettings) MarshalJSON

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetColorTheme

SetColorTheme gets a reference to the given string and assigns it to the ColorTheme field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetConvertCurrency

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) SetConvertCurrency(v int32)

SetConvertCurrency gets a reference to the given int32 and assigns it to the ConvertCurrency field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetCustomCss

SetCustomCss gets a reference to the given ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss and assigns it to the CustomCss field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetDarkTheme

SetDarkTheme gets a reference to the given int32 and assigns it to the DarkTheme field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetDisabledToBottom

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) SetDisabledToBottom(v int32)

SetDisabledToBottom gets a reference to the given int32 and assigns it to the DisabledToBottom field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetHideDisabled

SetHideDisabled gets a reference to the given int32 and assigns it to the HideDisabled field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetMobileNav

SetMobileNav gets a reference to the given int32 and assigns it to the MobileNav field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetMonthlyPrice

SetMonthlyPrice gets a reference to the given int32 and assigns it to the MonthlyPrice field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetRemoveBackground

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) SetRemoveBackground(v int32)

SetRemoveBackground gets a reference to the given int32 and assigns it to the RemoveBackground field.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettings) SetShowOriginalPrice

func (o *ApiSettingsGetSettingsPhpGet200ResponseSettings) SetShowOriginalPrice(v int32)

SetShowOriginalPrice gets a reference to the given int32 and assigns it to the ShowOriginalPrice field.

func (ApiSettingsGetSettingsPhpGet200ResponseSettings) ToMap

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

type ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss

type ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss struct {
	Css *string `json:"css,omitempty"`
}

ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss struct for ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss

func NewApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss

func NewApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss() *ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss

NewApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss instantiates a new ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss 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 NewApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCssWithDefaults

func NewApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCssWithDefaults() *ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss

NewApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCssWithDefaults instantiates a new ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss 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 (*ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) GetCss

GetCss returns the Css field value if set, zero value otherwise.

func (*ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) GetCssOk

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

func (*ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) HasCss

HasCss returns a boolean if a field has been set.

func (ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) MarshalJSON

func (*ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) SetCss

SetCss gets a reference to the given string and assigns it to the Css field.

func (ApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) ToMap

type ApiSubscriptionsGetMonthlyCostPhpGet200Response

type ApiSubscriptionsGetMonthlyCostPhpGet200Response struct {
	// Whether the request was successful.
	Success *bool `json:"success,omitempty"`
	// A string representing the month and year (e.g., March 2025).
	Title *string `json:"title,omitempty"`
	// The total cost for the specified month.
	MonthlyCost *float32 `json:"monthly_cost,omitempty"`
	// The total cost formatted according to the user's locale and currency.
	LocalizedMonthlyCost *string `json:"localized_monthly_cost,omitempty"`
	// The currency code of the user's main currency.
	CurrencyCode *string `json:"currency_code,omitempty"`
	// The currency symbol of the user's main currency.
	CurrencySymbol *string `json:"currency_symbol,omitempty"`
	// Warning messages or additional information.
	Notes []string `json:"notes,omitempty"`
}

ApiSubscriptionsGetMonthlyCostPhpGet200Response struct for ApiSubscriptionsGetMonthlyCostPhpGet200Response

func NewApiSubscriptionsGetMonthlyCostPhpGet200Response

func NewApiSubscriptionsGetMonthlyCostPhpGet200Response() *ApiSubscriptionsGetMonthlyCostPhpGet200Response

NewApiSubscriptionsGetMonthlyCostPhpGet200Response instantiates a new ApiSubscriptionsGetMonthlyCostPhpGet200Response 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 NewApiSubscriptionsGetMonthlyCostPhpGet200ResponseWithDefaults

func NewApiSubscriptionsGetMonthlyCostPhpGet200ResponseWithDefaults() *ApiSubscriptionsGetMonthlyCostPhpGet200Response

NewApiSubscriptionsGetMonthlyCostPhpGet200ResponseWithDefaults instantiates a new ApiSubscriptionsGetMonthlyCostPhpGet200Response 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 (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetCurrencyCode

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetCurrencyCodeOk

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

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetCurrencySymbol

GetCurrencySymbol returns the CurrencySymbol field value if set, zero value otherwise.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetCurrencySymbolOk

func (o *ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetCurrencySymbolOk() (*string, bool)

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetLocalizedMonthlyCost

func (o *ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetLocalizedMonthlyCost() string

GetLocalizedMonthlyCost returns the LocalizedMonthlyCost field value if set, zero value otherwise.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetLocalizedMonthlyCostOk

func (o *ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetLocalizedMonthlyCostOk() (*string, bool)

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetMonthlyCost

GetMonthlyCost returns the MonthlyCost field value if set, zero value otherwise.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetMonthlyCostOk

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetNotesOk

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetSuccessOk

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) GetTitleOk

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) HasCurrencyCode

HasCurrencyCode returns a boolean if a field has been set.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) HasCurrencySymbol

HasCurrencySymbol returns a boolean if a field has been set.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) HasLocalizedMonthlyCost

func (o *ApiSubscriptionsGetMonthlyCostPhpGet200Response) HasLocalizedMonthlyCost() bool

HasLocalizedMonthlyCost returns a boolean if a field has been set.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) HasMonthlyCost

HasMonthlyCost returns a boolean if a field has been set.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiSubscriptionsGetMonthlyCostPhpGet200Response) MarshalJSON

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) SetCurrencyCode

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

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) SetCurrencySymbol

SetCurrencySymbol gets a reference to the given string and assigns it to the CurrencySymbol field.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) SetLocalizedMonthlyCost

func (o *ApiSubscriptionsGetMonthlyCostPhpGet200Response) SetLocalizedMonthlyCost(v string)

SetLocalizedMonthlyCost gets a reference to the given string and assigns it to the LocalizedMonthlyCost field.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) SetMonthlyCost

SetMonthlyCost gets a reference to the given float32 and assigns it to the MonthlyCost field.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiSubscriptionsGetMonthlyCostPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiSubscriptionsGetMonthlyCostPhpGet200Response) ToMap

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

type ApiSubscriptionsGetSubscriptionsPhpGet200Response

type ApiSubscriptionsGetSubscriptionsPhpGet200Response struct {
	// Whether the request was successful.
	Success *bool `json:"success,omitempty"`
	// The title of the response, typically 'subscriptions'.
	Title         *string                                                               `json:"title,omitempty"`
	Subscriptions []ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner `json:"subscriptions,omitempty"`
	// Warning messages or additional information.
	Notes []string `json:"notes,omitempty"`
}

ApiSubscriptionsGetSubscriptionsPhpGet200Response struct for ApiSubscriptionsGetSubscriptionsPhpGet200Response

func NewApiSubscriptionsGetSubscriptionsPhpGet200Response

func NewApiSubscriptionsGetSubscriptionsPhpGet200Response() *ApiSubscriptionsGetSubscriptionsPhpGet200Response

NewApiSubscriptionsGetSubscriptionsPhpGet200Response instantiates a new ApiSubscriptionsGetSubscriptionsPhpGet200Response 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 NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseWithDefaults

func NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseWithDefaults() *ApiSubscriptionsGetSubscriptionsPhpGet200Response

NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseWithDefaults instantiates a new ApiSubscriptionsGetSubscriptionsPhpGet200Response 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 (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) GetNotesOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) GetSubscriptions

GetSubscriptions returns the Subscriptions field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) GetSubscriptionsOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) GetSuccess

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) GetSuccessOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) GetTitleOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) HasSubscriptions

HasSubscriptions returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) HasSuccess

HasSuccess returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ApiSubscriptionsGetSubscriptionsPhpGet200Response) MarshalJSON

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) SetNotes

SetNotes gets a reference to the given []string and assigns it to the Notes field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) SetSubscriptions

SetSubscriptions gets a reference to the given []ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner and assigns it to the Subscriptions field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) SetSuccess

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ApiSubscriptionsGetSubscriptionsPhpGet200Response) ToMap

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

type ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner

type ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner struct {
	Id                *int32   `json:"id,omitempty"`
	Name              *string  `json:"name,omitempty"`
	Price             *float32 `json:"price,omitempty"`
	CurrencyId        *int32   `json:"currency_id,omitempty"`
	NextPayment       *string  `json:"next_payment,omitempty"`
	Cycle             *int32   `json:"cycle,omitempty"`
	Frequency         *int32   `json:"frequency,omitempty"`
	Notes             *string  `json:"notes,omitempty"`
	PaymentMethodId   *int32   `json:"payment_method_id,omitempty"`
	PayerUserId       *int32   `json:"payer_user_id,omitempty"`
	CategoryId        *int32   `json:"category_id,omitempty"`
	Notify            *bool    `json:"notify,omitempty"`
	Url               *string  `json:"url,omitempty"`
	Inactive          *bool    `json:"inactive,omitempty"`
	NotifyDaysBefore  *int32   `json:"notify_days_before,omitempty"`
	CancelationDate   *string  `json:"cancelation_date,omitempty"`
	CategoryName      *string  `json:"category_name,omitempty"`
	PayerUserName     *string  `json:"payer_user_name,omitempty"`
	PaymentMethodName *string  `json:"payment_method_name,omitempty"`
}

ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner struct for ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner

func NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner

func NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner() *ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner

NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner instantiates a new ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner 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 NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInnerWithDefaults

func NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInnerWithDefaults() *ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner

NewApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInnerWithDefaults instantiates a new ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner 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 (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCancelationDate

GetCancelationDate returns the CancelationDate field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCancelationDateOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCategoryId

GetCategoryId returns the CategoryId field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCategoryIdOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCategoryName

GetCategoryName returns the CategoryName field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCategoryNameOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCurrencyId

GetCurrencyId returns the CurrencyId field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCurrencyIdOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCycle

GetCycle returns the Cycle field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetCycleOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetFrequency

GetFrequency returns the Frequency field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetFrequencyOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetId

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetIdOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetInactive

GetInactive returns the Inactive field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetInactiveOk

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

GetLogo returns the Logo field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetLogoOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetName

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNameOk

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 (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNextPayment

GetNextPayment returns the NextPayment field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNextPaymentOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNotes

GetNotes returns the Notes field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNotesOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNotify

GetNotify returns the Notify field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNotifyDaysBefore

GetNotifyDaysBefore returns the NotifyDaysBefore field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNotifyDaysBeforeOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetNotifyOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPayerUserId

GetPayerUserId returns the PayerUserId field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPayerUserIdOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPayerUserName

GetPayerUserName returns the PayerUserName field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPayerUserNameOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPaymentMethodId

GetPaymentMethodId returns the PaymentMethodId field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPaymentMethodIdOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPaymentMethodName

GetPaymentMethodName returns the PaymentMethodName field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPaymentMethodNameOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetPriceOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetUrl

GetUrl returns the Url field value if set, zero value otherwise.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) GetUrlOk

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasCancelationDate

HasCancelationDate returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasCategoryId

HasCategoryId returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasCategoryName

HasCategoryName returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasCurrencyId

HasCurrencyId returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasCycle

HasCycle returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasFrequency

HasFrequency returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasId

HasId returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasInactive

HasInactive returns a boolean if a field has been set.

HasLogo returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasName

HasName returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasNextPayment

HasNextPayment returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasNotes

HasNotes returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasNotify

HasNotify returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasNotifyDaysBefore

HasNotifyDaysBefore returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasPayerUserId

HasPayerUserId returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasPayerUserName

HasPayerUserName returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasPaymentMethodId

HasPaymentMethodId returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasPaymentMethodName

HasPaymentMethodName returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasPrice

HasPrice returns a boolean if a field has been set.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) HasUrl

HasUrl returns a boolean if a field has been set.

func (ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) MarshalJSON

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetCancelationDate

SetCancelationDate gets a reference to the given string and assigns it to the CancelationDate field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetCategoryId

SetCategoryId gets a reference to the given int32 and assigns it to the CategoryId field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetCategoryName

SetCategoryName gets a reference to the given string and assigns it to the CategoryName field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetCurrencyId

SetCurrencyId gets a reference to the given int32 and assigns it to the CurrencyId field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetCycle

SetCycle gets a reference to the given int32 and assigns it to the Cycle field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetFrequency

SetFrequency gets a reference to the given int32 and assigns it to the Frequency field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetId

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetInactive

SetInactive gets a reference to the given bool and assigns it to the Inactive field.

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetName

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

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetNextPayment

SetNextPayment gets a reference to the given string and assigns it to the NextPayment field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetNotes

SetNotes gets a reference to the given string and assigns it to the Notes field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetNotify

SetNotify gets a reference to the given bool and assigns it to the Notify field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetNotifyDaysBefore

SetNotifyDaysBefore gets a reference to the given int32 and assigns it to the NotifyDaysBefore field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetPayerUserId

SetPayerUserId gets a reference to the given int32 and assigns it to the PayerUserId field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetPayerUserName

SetPayerUserName gets a reference to the given string and assigns it to the PayerUserName field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetPaymentMethodId

SetPaymentMethodId gets a reference to the given int32 and assigns it to the PaymentMethodId field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetPaymentMethodName

SetPaymentMethodName gets a reference to the given string and assigns it to the PaymentMethodName field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetPrice

SetPrice gets a reference to the given float32 and assigns it to the Price field.

func (*ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) SetUrl

SetUrl gets a reference to the given string and assigns it to the Url field.

func (ApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) ToMap

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
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type DefaultAPIService

type DefaultAPIService service

DefaultAPIService DefaultAPI service

func (*DefaultAPIService) ApiAdminGetAdminSettingsPhpGet

func (a *DefaultAPIService) ApiAdminGetAdminSettingsPhpGet(ctx context.Context) ApiApiAdminGetAdminSettingsPhpGetRequest

ApiAdminGetAdminSettingsPhpGet Get Admin Settings

Retrieve admin settings from the Wallos application.

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

func (*DefaultAPIService) ApiAdminGetAdminSettingsPhpGetExecute

Execute executes the request

@return ApiAdminGetAdminSettingsPhpGet200Response

func (*DefaultAPIService) ApiCategoriesGetCategoriesPhpGet

func (a *DefaultAPIService) ApiCategoriesGetCategoriesPhpGet(ctx context.Context) ApiApiCategoriesGetCategoriesPhpGetRequest

ApiCategoriesGetCategoriesPhpGet Get Categories

Retrieve a list of categories from the Wallos application.

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

func (*DefaultAPIService) ApiCategoriesGetCategoriesPhpGetExecute

Execute executes the request

@return ApiCategoriesGetCategoriesPhpGet200Response

func (*DefaultAPIService) ApiCurrenciesGetCurrenciesPhpGet

func (a *DefaultAPIService) ApiCurrenciesGetCurrenciesPhpGet(ctx context.Context) ApiApiCurrenciesGetCurrenciesPhpGetRequest

ApiCurrenciesGetCurrenciesPhpGet Get Currencies

Retrieve a list of currencies and the main currency of the user.

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

func (*DefaultAPIService) ApiCurrenciesGetCurrenciesPhpGetExecute

Execute executes the request

@return ApiCurrenciesGetCurrenciesPhpGet200Response

func (*DefaultAPIService) ApiFixerGetFixerPhpGet

func (a *DefaultAPIService) ApiFixerGetFixerPhpGet(ctx context.Context) ApiApiFixerGetFixerPhpGetRequest

ApiFixerGetFixerPhpGet Get Fixer Settings

Retrieve the Fixer settings for the user.

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

func (*DefaultAPIService) ApiFixerGetFixerPhpGetExecute

Execute executes the request

@return ApiFixerGetFixerPhpGet200Response

func (*DefaultAPIService) ApiHouseholdGetHouseholdPhpGet

func (a *DefaultAPIService) ApiHouseholdGetHouseholdPhpGet(ctx context.Context) ApiApiHouseholdGetHouseholdPhpGetRequest

ApiHouseholdGetHouseholdPhpGet Get Household

Retrieve the household members.

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

func (*DefaultAPIService) ApiHouseholdGetHouseholdPhpGetExecute

Execute executes the request

@return ApiHouseholdGetHouseholdPhpGet200Response

func (*DefaultAPIService) ApiNotificationsGetNotificationSettingsPhpGet

func (a *DefaultAPIService) ApiNotificationsGetNotificationSettingsPhpGet(ctx context.Context) ApiApiNotificationsGetNotificationSettingsPhpGetRequest

ApiNotificationsGetNotificationSettingsPhpGet Get Notification Settings

Retrieve the notification settings for the enabled methods.

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

func (*DefaultAPIService) ApiNotificationsGetNotificationSettingsPhpGetExecute

Execute executes the request

@return ApiNotificationsGetNotificationSettingsPhpGet200Response

func (*DefaultAPIService) ApiPaymentMethodsGetPaymentMethodsPhpGet

func (a *DefaultAPIService) ApiPaymentMethodsGetPaymentMethodsPhpGet(ctx context.Context) ApiApiPaymentMethodsGetPaymentMethodsPhpGetRequest

ApiPaymentMethodsGetPaymentMethodsPhpGet Get Payment Methods

Retrieve the available payment methods.

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

func (*DefaultAPIService) ApiPaymentMethodsGetPaymentMethodsPhpGetExecute

Execute executes the request

@return ApiPaymentMethodsGetPaymentMethodsPhpGet200Response

func (*DefaultAPIService) ApiSettingsGetSettingsPhpGet

func (a *DefaultAPIService) ApiSettingsGetSettingsPhpGet(ctx context.Context) ApiApiSettingsGetSettingsPhpGetRequest

ApiSettingsGetSettingsPhpGet Get User Settings

Retrieve the user settings.

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

func (*DefaultAPIService) ApiSettingsGetSettingsPhpGetExecute

Execute executes the request

@return ApiSettingsGetSettingsPhpGet200Response

func (*DefaultAPIService) ApiSubscriptionsGetMonthlyCostPhpGet

func (a *DefaultAPIService) ApiSubscriptionsGetMonthlyCostPhpGet(ctx context.Context) ApiApiSubscriptionsGetMonthlyCostPhpGetRequest

ApiSubscriptionsGetMonthlyCostPhpGet Get Monthly Cost

Retrieve the total cost of subscriptions for a specific month and year.

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

func (*DefaultAPIService) ApiSubscriptionsGetMonthlyCostPhpGetExecute

Execute executes the request

@return ApiSubscriptionsGetMonthlyCostPhpGet200Response

func (*DefaultAPIService) ApiSubscriptionsGetSubscriptionsPhpGet

func (a *DefaultAPIService) ApiSubscriptionsGetSubscriptionsPhpGet(ctx context.Context) ApiApiSubscriptionsGetSubscriptionsPhpGetRequest

ApiSubscriptionsGetSubscriptionsPhpGet Get Subscriptions

Retrieve a list of subscriptions with optional filters.

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

func (*DefaultAPIService) ApiSubscriptionsGetSubscriptionsPhpGetExecute

Execute executes the request

@return ApiSubscriptionsGetSubscriptionsPhpGet200Response

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 MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableApiAdminGetAdminSettingsPhpGet200Response

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

func (NullableApiAdminGetAdminSettingsPhpGet200Response) Get

func (NullableApiAdminGetAdminSettingsPhpGet200Response) IsSet

func (NullableApiAdminGetAdminSettingsPhpGet200Response) MarshalJSON

func (*NullableApiAdminGetAdminSettingsPhpGet200Response) Set

func (*NullableApiAdminGetAdminSettingsPhpGet200Response) UnmarshalJSON

func (*NullableApiAdminGetAdminSettingsPhpGet200Response) Unset

type NullableApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings

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

func (NullableApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) Get

func (NullableApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) IsSet

func (NullableApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) MarshalJSON

func (*NullableApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) Set

func (*NullableApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) UnmarshalJSON

func (*NullableApiAdminGetAdminSettingsPhpGet200ResponseAdminSettings) Unset

type NullableApiAdminGetAdminSettingsPhpGet401Response

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

func (NullableApiAdminGetAdminSettingsPhpGet401Response) Get

func (NullableApiAdminGetAdminSettingsPhpGet401Response) IsSet

func (NullableApiAdminGetAdminSettingsPhpGet401Response) MarshalJSON

func (*NullableApiAdminGetAdminSettingsPhpGet401Response) Set

func (*NullableApiAdminGetAdminSettingsPhpGet401Response) UnmarshalJSON

func (*NullableApiAdminGetAdminSettingsPhpGet401Response) Unset

type NullableApiCategoriesGetCategoriesPhpGet200Response

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

func (NullableApiCategoriesGetCategoriesPhpGet200Response) Get

func (NullableApiCategoriesGetCategoriesPhpGet200Response) IsSet

func (NullableApiCategoriesGetCategoriesPhpGet200Response) MarshalJSON

func (*NullableApiCategoriesGetCategoriesPhpGet200Response) Set

func (*NullableApiCategoriesGetCategoriesPhpGet200Response) UnmarshalJSON

func (*NullableApiCategoriesGetCategoriesPhpGet200Response) Unset

type NullableApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner

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

func (NullableApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) Get

func (NullableApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) IsSet

func (NullableApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) MarshalJSON

func (*NullableApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) Set

func (*NullableApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) UnmarshalJSON

func (*NullableApiCategoriesGetCategoriesPhpGet200ResponseCategoriesInner) Unset

type NullableApiCurrenciesGetCurrenciesPhpGet200Response

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

func (NullableApiCurrenciesGetCurrenciesPhpGet200Response) Get

func (NullableApiCurrenciesGetCurrenciesPhpGet200Response) IsSet

func (NullableApiCurrenciesGetCurrenciesPhpGet200Response) MarshalJSON

func (*NullableApiCurrenciesGetCurrenciesPhpGet200Response) Set

func (*NullableApiCurrenciesGetCurrenciesPhpGet200Response) UnmarshalJSON

func (*NullableApiCurrenciesGetCurrenciesPhpGet200Response) Unset

type NullableApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner

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

func (NullableApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) Get

func (NullableApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) IsSet

func (NullableApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) MarshalJSON

func (*NullableApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) Set

func (*NullableApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) UnmarshalJSON

func (*NullableApiCurrenciesGetCurrenciesPhpGet200ResponseCurrenciesInner) Unset

type NullableApiFixerGetFixerPhpGet200Response

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

func (NullableApiFixerGetFixerPhpGet200Response) Get

func (NullableApiFixerGetFixerPhpGet200Response) IsSet

func (NullableApiFixerGetFixerPhpGet200Response) MarshalJSON

func (*NullableApiFixerGetFixerPhpGet200Response) Set

func (*NullableApiFixerGetFixerPhpGet200Response) UnmarshalJSON

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

func (*NullableApiFixerGetFixerPhpGet200Response) Unset

type NullableApiFixerGetFixerPhpGet200ResponseFixer

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

func (NullableApiFixerGetFixerPhpGet200ResponseFixer) Get

func (NullableApiFixerGetFixerPhpGet200ResponseFixer) IsSet

func (NullableApiFixerGetFixerPhpGet200ResponseFixer) MarshalJSON

func (*NullableApiFixerGetFixerPhpGet200ResponseFixer) Set

func (*NullableApiFixerGetFixerPhpGet200ResponseFixer) UnmarshalJSON

func (*NullableApiFixerGetFixerPhpGet200ResponseFixer) Unset

type NullableApiHouseholdGetHouseholdPhpGet200Response

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

func (NullableApiHouseholdGetHouseholdPhpGet200Response) Get

func (NullableApiHouseholdGetHouseholdPhpGet200Response) IsSet

func (NullableApiHouseholdGetHouseholdPhpGet200Response) MarshalJSON

func (*NullableApiHouseholdGetHouseholdPhpGet200Response) Set

func (*NullableApiHouseholdGetHouseholdPhpGet200Response) UnmarshalJSON

func (*NullableApiHouseholdGetHouseholdPhpGet200Response) Unset

type NullableApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner

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

func (NullableApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) Get

func (NullableApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) IsSet

func (NullableApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) MarshalJSON

func (*NullableApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) Set

func (*NullableApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) UnmarshalJSON

func (*NullableApiHouseholdGetHouseholdPhpGet200ResponseHouseholdInner) Unset

type NullableApiNotificationsGetNotificationSettingsPhpGet200Response

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

func (NullableApiNotificationsGetNotificationSettingsPhpGet200Response) Get

func (NullableApiNotificationsGetNotificationSettingsPhpGet200Response) IsSet

func (NullableApiNotificationsGetNotificationSettingsPhpGet200Response) MarshalJSON

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200Response) Set

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200Response) UnmarshalJSON

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200Response) Unset

type NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings

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

func (NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) Get

func (NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) IsSet

func (NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) MarshalJSON

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) Set

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) UnmarshalJSON

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettings) Unset

type NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications

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

func (NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) IsSet

func (NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) MarshalJSON

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) Set

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) UnmarshalJSON

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsEmailNotifications) Unset

type NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications

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

func (NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) IsSet

func (NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) MarshalJSON

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) Set

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) UnmarshalJSON

func (*NullableApiNotificationsGetNotificationSettingsPhpGet200ResponseNotificationSettingsNtfyNotifications) Unset

type NullableApiPaymentMethodsGetPaymentMethodsPhpGet200Response

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

func (NullableApiPaymentMethodsGetPaymentMethodsPhpGet200Response) Get

func (NullableApiPaymentMethodsGetPaymentMethodsPhpGet200Response) IsSet

func (NullableApiPaymentMethodsGetPaymentMethodsPhpGet200Response) MarshalJSON

func (*NullableApiPaymentMethodsGetPaymentMethodsPhpGet200Response) Set

func (*NullableApiPaymentMethodsGetPaymentMethodsPhpGet200Response) UnmarshalJSON

func (*NullableApiPaymentMethodsGetPaymentMethodsPhpGet200Response) Unset

type NullableApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner

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

func (NullableApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) Get

func (NullableApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) IsSet

func (NullableApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) MarshalJSON

func (*NullableApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) Set

func (*NullableApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) UnmarshalJSON

func (*NullableApiPaymentMethodsGetPaymentMethodsPhpGet200ResponsePaymentMethodsInner) Unset

type NullableApiSettingsGetSettingsPhpGet200Response

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

func (NullableApiSettingsGetSettingsPhpGet200Response) Get

func (NullableApiSettingsGetSettingsPhpGet200Response) IsSet

func (NullableApiSettingsGetSettingsPhpGet200Response) MarshalJSON

func (*NullableApiSettingsGetSettingsPhpGet200Response) Set

func (*NullableApiSettingsGetSettingsPhpGet200Response) UnmarshalJSON

func (*NullableApiSettingsGetSettingsPhpGet200Response) Unset

type NullableApiSettingsGetSettingsPhpGet200ResponseSettings

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

func (NullableApiSettingsGetSettingsPhpGet200ResponseSettings) Get

func (NullableApiSettingsGetSettingsPhpGet200ResponseSettings) IsSet

func (NullableApiSettingsGetSettingsPhpGet200ResponseSettings) MarshalJSON

func (*NullableApiSettingsGetSettingsPhpGet200ResponseSettings) Set

func (*NullableApiSettingsGetSettingsPhpGet200ResponseSettings) UnmarshalJSON

func (*NullableApiSettingsGetSettingsPhpGet200ResponseSettings) Unset

type NullableApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss

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

func (NullableApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) Get

func (NullableApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) IsSet

func (NullableApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) MarshalJSON

func (*NullableApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) Set

func (*NullableApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) UnmarshalJSON

func (*NullableApiSettingsGetSettingsPhpGet200ResponseSettingsCustomCss) Unset

type NullableApiSubscriptionsGetMonthlyCostPhpGet200Response

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

func (NullableApiSubscriptionsGetMonthlyCostPhpGet200Response) Get

func (NullableApiSubscriptionsGetMonthlyCostPhpGet200Response) IsSet

func (NullableApiSubscriptionsGetMonthlyCostPhpGet200Response) MarshalJSON

func (*NullableApiSubscriptionsGetMonthlyCostPhpGet200Response) Set

func (*NullableApiSubscriptionsGetMonthlyCostPhpGet200Response) UnmarshalJSON

func (*NullableApiSubscriptionsGetMonthlyCostPhpGet200Response) Unset

type NullableApiSubscriptionsGetSubscriptionsPhpGet200Response

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

func (NullableApiSubscriptionsGetSubscriptionsPhpGet200Response) Get

func (NullableApiSubscriptionsGetSubscriptionsPhpGet200Response) IsSet

func (NullableApiSubscriptionsGetSubscriptionsPhpGet200Response) MarshalJSON

func (*NullableApiSubscriptionsGetSubscriptionsPhpGet200Response) Set

func (*NullableApiSubscriptionsGetSubscriptionsPhpGet200Response) UnmarshalJSON

func (*NullableApiSubscriptionsGetSubscriptionsPhpGet200Response) Unset

type NullableApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner

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

func (NullableApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) Get

func (NullableApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) IsSet

func (NullableApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) MarshalJSON

func (*NullableApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) Set

func (*NullableApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) UnmarshalJSON

func (*NullableApiSubscriptionsGetSubscriptionsPhpGet200ResponseSubscriptionsInner) Unset

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type 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 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

Source Files

Jump to

Keyboard shortcuts

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