invoicetronicsdk

package module
v1.0.1 Latest Latest
Warning

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

Go to latest
Published: Sep 16, 2025 License: MIT Imports: 20 Imported by: 0

README

Go SDK for the Invoicetronic API

The Invoicetronic API is a RESTful service that allows you to send and receive invoices through the Italian Servizio di Interscambio (SDI), or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools.

For more information, see Invoicetronic website

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
  • Package version: 1.0.1
  • Generator version: 7.14.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://invoicetronic.com

Installation

Install the following dependencies:

go get github.com/invoicetronic/go-sdk

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
CompanyAPI CompanyGet Get /company List companies
CompanyAPI CompanyIdDelete Delete /company/{id} Delete a company
CompanyAPI CompanyIdGet Get /company/{id} Get a company by id
CompanyAPI CompanyPost Post /company Add a company
CompanyAPI CompanyPut Put /company Update a company
LogAPI LogGet Get /log List events
LogAPI LogIdGet Get /log/{id} Get an event by id
ReceiveAPI ReceiveGet Get /receive List incoming invoices
ReceiveAPI ReceiveIdDelete Delete /receive/{id} Delete an incoming invoice by id
ReceiveAPI ReceiveIdGet Get /receive/{id} Get an incoming invoice by id
SendAPI SendFilePost Post /send/file Add an invoice by file
SendAPI SendGet Get /send List invoices
SendAPI SendIdGet Get /send/{id} Get a invoice by id
SendAPI SendIdentifierGet Get /send/{identifier} Get a invoice by identifier
SendAPI SendJsonPost Post /send/json Add an invoice by json
SendAPI SendPost Post /send Add an invoice
SendAPI SendValidateFilePost Post /send/validate/file Validate an invoice file
SendAPI SendValidateJsonPost Post /send/validate/json Validate an invoice by json
SendAPI SendValidatePost Post /send/validate Validate an invoice
SendAPI SendValidateXmlPost Post /send/validate/xml Validate an invoice by xml
SendAPI SendXmlPost Post /send/xml Add an invoice by xml
StatusAPI StatusGet Get /status Account status
UpdateAPI UpdateGet Get /update List updates
UpdateAPI UpdateIdGet Get /update/{id} Get an update by id
WebhookAPI WebhookGet Get /webhook List webhooks
WebhookAPI WebhookIdDelete Delete /webhook/{id} Delete a webhook by id
WebhookAPI WebhookIdGet Get /webhook/{id} Get a webhook by id
WebhookAPI WebhookPost Post /webhook Add a webhook
WebhookAPI WebhookPut Put /webhook Update a webhook
WebhookAPI WebhookhistoryGet Get /webhookhistory List webhook history items
WebhookAPI WebhookhistoryIdGet Get /webhookhistory/{id} Get a webhook history item by id

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

Basic
  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), invoicetronicsdk.ContextBasicAuth, invoicetronicsdk.BasicAuth{
	UserName: "username",
	Password: "password",
})
r, err := client.Service.Operation(auth, args)

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

info@invoicetronic.com

Documentation

Index

Constants

This section is empty.

Variables

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

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

	// 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 {
	CompanyAPI *CompanyAPIService

	LogAPI *LogAPIService

	ReceiveAPI *ReceiveAPIService

	SendAPI *SendAPIService

	StatusAPI *StatusAPIService

	UpdateAPI *UpdateAPIService

	WebhookAPI *WebhookAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Invoicetronic API API v1 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 Allegati

type Allegati struct {
	NomeAttachment        NullableString `json:"nome_attachment,omitempty"`
	AlgoritmoCompressione NullableString `json:"algoritmo_compressione,omitempty"`
	FormatoAttachment     NullableString `json:"formato_attachment,omitempty"`
	DescrizioneAttachment NullableString `json:"descrizione_attachment,omitempty"`
	Attachment            NullableString `json:"attachment,omitempty"`
}

Allegati struct for Allegati

func NewAllegati

func NewAllegati() *Allegati

NewAllegati instantiates a new Allegati 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 NewAllegatiWithDefaults

func NewAllegatiWithDefaults() *Allegati

NewAllegatiWithDefaults instantiates a new Allegati 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 (*Allegati) GetAlgoritmoCompressione

func (o *Allegati) GetAlgoritmoCompressione() string

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

func (*Allegati) GetAlgoritmoCompressioneOk

func (o *Allegati) GetAlgoritmoCompressioneOk() (*string, bool)

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

func (*Allegati) GetAttachment

func (o *Allegati) GetAttachment() string

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

func (*Allegati) GetAttachmentOk

func (o *Allegati) GetAttachmentOk() (*string, bool)

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

func (*Allegati) GetDescrizioneAttachment

func (o *Allegati) GetDescrizioneAttachment() string

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

func (*Allegati) GetDescrizioneAttachmentOk

func (o *Allegati) GetDescrizioneAttachmentOk() (*string, bool)

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

func (*Allegati) GetFormatoAttachment

func (o *Allegati) GetFormatoAttachment() string

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

func (*Allegati) GetFormatoAttachmentOk

func (o *Allegati) GetFormatoAttachmentOk() (*string, bool)

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

func (*Allegati) GetNomeAttachment

func (o *Allegati) GetNomeAttachment() string

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

func (*Allegati) GetNomeAttachmentOk

func (o *Allegati) GetNomeAttachmentOk() (*string, bool)

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

func (*Allegati) HasAlgoritmoCompressione

func (o *Allegati) HasAlgoritmoCompressione() bool

HasAlgoritmoCompressione returns a boolean if a field has been set.

func (*Allegati) HasAttachment

func (o *Allegati) HasAttachment() bool

HasAttachment returns a boolean if a field has been set.

func (*Allegati) HasDescrizioneAttachment

func (o *Allegati) HasDescrizioneAttachment() bool

HasDescrizioneAttachment returns a boolean if a field has been set.

func (*Allegati) HasFormatoAttachment

func (o *Allegati) HasFormatoAttachment() bool

HasFormatoAttachment returns a boolean if a field has been set.

func (*Allegati) HasNomeAttachment

func (o *Allegati) HasNomeAttachment() bool

HasNomeAttachment returns a boolean if a field has been set.

func (Allegati) MarshalJSON

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

func (*Allegati) SetAlgoritmoCompressione

func (o *Allegati) SetAlgoritmoCompressione(v string)

SetAlgoritmoCompressione gets a reference to the given NullableString and assigns it to the AlgoritmoCompressione field.

func (*Allegati) SetAlgoritmoCompressioneNil

func (o *Allegati) SetAlgoritmoCompressioneNil()

SetAlgoritmoCompressioneNil sets the value for AlgoritmoCompressione to be an explicit nil

func (*Allegati) SetAttachment

func (o *Allegati) SetAttachment(v string)

SetAttachment gets a reference to the given NullableString and assigns it to the Attachment field.

func (*Allegati) SetAttachmentNil

func (o *Allegati) SetAttachmentNil()

SetAttachmentNil sets the value for Attachment to be an explicit nil

func (*Allegati) SetDescrizioneAttachment

func (o *Allegati) SetDescrizioneAttachment(v string)

SetDescrizioneAttachment gets a reference to the given NullableString and assigns it to the DescrizioneAttachment field.

func (*Allegati) SetDescrizioneAttachmentNil

func (o *Allegati) SetDescrizioneAttachmentNil()

SetDescrizioneAttachmentNil sets the value for DescrizioneAttachment to be an explicit nil

func (*Allegati) SetFormatoAttachment

func (o *Allegati) SetFormatoAttachment(v string)

SetFormatoAttachment gets a reference to the given NullableString and assigns it to the FormatoAttachment field.

func (*Allegati) SetFormatoAttachmentNil

func (o *Allegati) SetFormatoAttachmentNil()

SetFormatoAttachmentNil sets the value for FormatoAttachment to be an explicit nil

func (*Allegati) SetNomeAttachment

func (o *Allegati) SetNomeAttachment(v string)

SetNomeAttachment gets a reference to the given NullableString and assigns it to the NomeAttachment field.

func (*Allegati) SetNomeAttachmentNil

func (o *Allegati) SetNomeAttachmentNil()

SetNomeAttachmentNil sets the value for NomeAttachment to be an explicit nil

func (Allegati) ToMap

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

func (*Allegati) UnsetAlgoritmoCompressione

func (o *Allegati) UnsetAlgoritmoCompressione()

UnsetAlgoritmoCompressione ensures that no value is present for AlgoritmoCompressione, not even an explicit nil

func (*Allegati) UnsetAttachment

func (o *Allegati) UnsetAttachment()

UnsetAttachment ensures that no value is present for Attachment, not even an explicit nil

func (*Allegati) UnsetDescrizioneAttachment

func (o *Allegati) UnsetDescrizioneAttachment()

UnsetDescrizioneAttachment ensures that no value is present for DescrizioneAttachment, not even an explicit nil

func (*Allegati) UnsetFormatoAttachment

func (o *Allegati) UnsetFormatoAttachment()

UnsetFormatoAttachment ensures that no value is present for FormatoAttachment, not even an explicit nil

func (*Allegati) UnsetNomeAttachment

func (o *Allegati) UnsetNomeAttachment()

UnsetNomeAttachment ensures that no value is present for NomeAttachment, not even an explicit nil

type AltriDatiGestionali

type AltriDatiGestionali struct {
	TipoDato          NullableString  `json:"tipo_dato,omitempty"`
	RiferimentoTesto  NullableString  `json:"riferimento_testo,omitempty"`
	RiferimentoNumero NullableFloat64 `json:"riferimento_numero,omitempty"`
	RiferimentoData   NullableTime    `json:"riferimento_data,omitempty"`
}

AltriDatiGestionali struct for AltriDatiGestionali

func NewAltriDatiGestionali

func NewAltriDatiGestionali() *AltriDatiGestionali

NewAltriDatiGestionali instantiates a new AltriDatiGestionali 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 NewAltriDatiGestionaliWithDefaults

func NewAltriDatiGestionaliWithDefaults() *AltriDatiGestionali

NewAltriDatiGestionaliWithDefaults instantiates a new AltriDatiGestionali 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 (*AltriDatiGestionali) GetRiferimentoData

func (o *AltriDatiGestionali) GetRiferimentoData() time.Time

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

func (*AltriDatiGestionali) GetRiferimentoDataOk

func (o *AltriDatiGestionali) GetRiferimentoDataOk() (*time.Time, bool)

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

func (*AltriDatiGestionali) GetRiferimentoNumero

func (o *AltriDatiGestionali) GetRiferimentoNumero() float64

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

func (*AltriDatiGestionali) GetRiferimentoNumeroOk

func (o *AltriDatiGestionali) GetRiferimentoNumeroOk() (*float64, bool)

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

func (*AltriDatiGestionali) GetRiferimentoTesto

func (o *AltriDatiGestionali) GetRiferimentoTesto() string

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

func (*AltriDatiGestionali) GetRiferimentoTestoOk

func (o *AltriDatiGestionali) GetRiferimentoTestoOk() (*string, bool)

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

func (*AltriDatiGestionali) GetTipoDato

func (o *AltriDatiGestionali) GetTipoDato() string

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

func (*AltriDatiGestionali) GetTipoDatoOk

func (o *AltriDatiGestionali) GetTipoDatoOk() (*string, bool)

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

func (*AltriDatiGestionali) HasRiferimentoData

func (o *AltriDatiGestionali) HasRiferimentoData() bool

HasRiferimentoData returns a boolean if a field has been set.

func (*AltriDatiGestionali) HasRiferimentoNumero

func (o *AltriDatiGestionali) HasRiferimentoNumero() bool

HasRiferimentoNumero returns a boolean if a field has been set.

func (*AltriDatiGestionali) HasRiferimentoTesto

func (o *AltriDatiGestionali) HasRiferimentoTesto() bool

HasRiferimentoTesto returns a boolean if a field has been set.

func (*AltriDatiGestionali) HasTipoDato

func (o *AltriDatiGestionali) HasTipoDato() bool

HasTipoDato returns a boolean if a field has been set.

func (AltriDatiGestionali) MarshalJSON

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

func (*AltriDatiGestionali) SetRiferimentoData

func (o *AltriDatiGestionali) SetRiferimentoData(v time.Time)

SetRiferimentoData gets a reference to the given NullableTime and assigns it to the RiferimentoData field.

func (*AltriDatiGestionali) SetRiferimentoDataNil

func (o *AltriDatiGestionali) SetRiferimentoDataNil()

SetRiferimentoDataNil sets the value for RiferimentoData to be an explicit nil

func (*AltriDatiGestionali) SetRiferimentoNumero

func (o *AltriDatiGestionali) SetRiferimentoNumero(v float64)

SetRiferimentoNumero gets a reference to the given NullableFloat64 and assigns it to the RiferimentoNumero field.

func (*AltriDatiGestionali) SetRiferimentoNumeroNil

func (o *AltriDatiGestionali) SetRiferimentoNumeroNil()

SetRiferimentoNumeroNil sets the value for RiferimentoNumero to be an explicit nil

func (*AltriDatiGestionali) SetRiferimentoTesto

func (o *AltriDatiGestionali) SetRiferimentoTesto(v string)

SetRiferimentoTesto gets a reference to the given NullableString and assigns it to the RiferimentoTesto field.

func (*AltriDatiGestionali) SetRiferimentoTestoNil

func (o *AltriDatiGestionali) SetRiferimentoTestoNil()

SetRiferimentoTestoNil sets the value for RiferimentoTesto to be an explicit nil

func (*AltriDatiGestionali) SetTipoDato

func (o *AltriDatiGestionali) SetTipoDato(v string)

SetTipoDato gets a reference to the given NullableString and assigns it to the TipoDato field.

func (*AltriDatiGestionali) SetTipoDatoNil

func (o *AltriDatiGestionali) SetTipoDatoNil()

SetTipoDatoNil sets the value for TipoDato to be an explicit nil

func (AltriDatiGestionali) ToMap

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

func (*AltriDatiGestionali) UnsetRiferimentoData

func (o *AltriDatiGestionali) UnsetRiferimentoData()

UnsetRiferimentoData ensures that no value is present for RiferimentoData, not even an explicit nil

func (*AltriDatiGestionali) UnsetRiferimentoNumero

func (o *AltriDatiGestionali) UnsetRiferimentoNumero()

UnsetRiferimentoNumero ensures that no value is present for RiferimentoNumero, not even an explicit nil

func (*AltriDatiGestionali) UnsetRiferimentoTesto

func (o *AltriDatiGestionali) UnsetRiferimentoTesto()

UnsetRiferimentoTesto ensures that no value is present for RiferimentoTesto, not even an explicit nil

func (*AltriDatiGestionali) UnsetTipoDato

func (o *AltriDatiGestionali) UnsetTipoDato()

UnsetTipoDato ensures that no value is present for TipoDato, not even an explicit nil

type Anagrafica

type Anagrafica struct {
	Denominazione NullableString `json:"denominazione,omitempty"`
	Nome          NullableString `json:"nome,omitempty"`
	Cognome       NullableString `json:"cognome,omitempty"`
	Titolo        NullableString `json:"titolo,omitempty"`
	CodEori       NullableString `json:"cod_eori,omitempty"`
}

Anagrafica struct for Anagrafica

func NewAnagrafica

func NewAnagrafica() *Anagrafica

NewAnagrafica instantiates a new Anagrafica 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 NewAnagraficaWithDefaults

func NewAnagraficaWithDefaults() *Anagrafica

NewAnagraficaWithDefaults instantiates a new Anagrafica 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 (*Anagrafica) GetCodEori

func (o *Anagrafica) GetCodEori() string

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

func (*Anagrafica) GetCodEoriOk

func (o *Anagrafica) GetCodEoriOk() (*string, bool)

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

func (*Anagrafica) GetCognome

func (o *Anagrafica) GetCognome() string

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

func (*Anagrafica) GetCognomeOk

func (o *Anagrafica) GetCognomeOk() (*string, bool)

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

func (*Anagrafica) GetDenominazione

func (o *Anagrafica) GetDenominazione() string

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

func (*Anagrafica) GetDenominazioneOk

func (o *Anagrafica) GetDenominazioneOk() (*string, bool)

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

func (*Anagrafica) GetNome

func (o *Anagrafica) GetNome() string

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

func (*Anagrafica) GetNomeOk

func (o *Anagrafica) GetNomeOk() (*string, bool)

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

func (*Anagrafica) GetTitolo

func (o *Anagrafica) GetTitolo() string

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

func (*Anagrafica) GetTitoloOk

func (o *Anagrafica) GetTitoloOk() (*string, bool)

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

func (*Anagrafica) HasCodEori

func (o *Anagrafica) HasCodEori() bool

HasCodEori returns a boolean if a field has been set.

func (*Anagrafica) HasCognome

func (o *Anagrafica) HasCognome() bool

HasCognome returns a boolean if a field has been set.

func (*Anagrafica) HasDenominazione

func (o *Anagrafica) HasDenominazione() bool

HasDenominazione returns a boolean if a field has been set.

func (*Anagrafica) HasNome

func (o *Anagrafica) HasNome() bool

HasNome returns a boolean if a field has been set.

func (*Anagrafica) HasTitolo

func (o *Anagrafica) HasTitolo() bool

HasTitolo returns a boolean if a field has been set.

func (Anagrafica) MarshalJSON

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

func (*Anagrafica) SetCodEori

func (o *Anagrafica) SetCodEori(v string)

SetCodEori gets a reference to the given NullableString and assigns it to the CodEori field.

func (*Anagrafica) SetCodEoriNil

func (o *Anagrafica) SetCodEoriNil()

SetCodEoriNil sets the value for CodEori to be an explicit nil

func (*Anagrafica) SetCognome

func (o *Anagrafica) SetCognome(v string)

SetCognome gets a reference to the given NullableString and assigns it to the Cognome field.

func (*Anagrafica) SetCognomeNil

func (o *Anagrafica) SetCognomeNil()

SetCognomeNil sets the value for Cognome to be an explicit nil

func (*Anagrafica) SetDenominazione

func (o *Anagrafica) SetDenominazione(v string)

SetDenominazione gets a reference to the given NullableString and assigns it to the Denominazione field.

func (*Anagrafica) SetDenominazioneNil

func (o *Anagrafica) SetDenominazioneNil()

SetDenominazioneNil sets the value for Denominazione to be an explicit nil

func (*Anagrafica) SetNome

func (o *Anagrafica) SetNome(v string)

SetNome gets a reference to the given NullableString and assigns it to the Nome field.

func (*Anagrafica) SetNomeNil

func (o *Anagrafica) SetNomeNil()

SetNomeNil sets the value for Nome to be an explicit nil

func (*Anagrafica) SetTitolo

func (o *Anagrafica) SetTitolo(v string)

SetTitolo gets a reference to the given NullableString and assigns it to the Titolo field.

func (*Anagrafica) SetTitoloNil

func (o *Anagrafica) SetTitoloNil()

SetTitoloNil sets the value for Titolo to be an explicit nil

func (Anagrafica) ToMap

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

func (*Anagrafica) UnsetCodEori

func (o *Anagrafica) UnsetCodEori()

UnsetCodEori ensures that no value is present for CodEori, not even an explicit nil

func (*Anagrafica) UnsetCognome

func (o *Anagrafica) UnsetCognome()

UnsetCognome ensures that no value is present for Cognome, not even an explicit nil

func (*Anagrafica) UnsetDenominazione

func (o *Anagrafica) UnsetDenominazione()

UnsetDenominazione ensures that no value is present for Denominazione, not even an explicit nil

func (*Anagrafica) UnsetNome

func (o *Anagrafica) UnsetNome()

UnsetNome ensures that no value is present for Nome, not even an explicit nil

func (*Anagrafica) UnsetTitolo

func (o *Anagrafica) UnsetTitolo()

UnsetTitolo ensures that no value is present for Titolo, not even an explicit nil

type ApiCompanyGetRequest

type ApiCompanyGetRequest struct {
	ApiService *CompanyAPIService
	// contains filtered or unexported fields
}

func (ApiCompanyGetRequest) Execute

func (r ApiCompanyGetRequest) Execute() ([]Company, *http.Response, error)

func (ApiCompanyGetRequest) Page

Page number.

func (ApiCompanyGetRequest) PageSize

func (r ApiCompanyGetRequest) PageSize(pageSize int32) ApiCompanyGetRequest

Items per page. Cannot be greater than 200.

func (ApiCompanyGetRequest) Sort

Sort by field. Prefix with '-' for descending order.

type ApiCompanyIdDeleteRequest

type ApiCompanyIdDeleteRequest struct {
	ApiService *CompanyAPIService
	// contains filtered or unexported fields
}

func (ApiCompanyIdDeleteRequest) Execute

type ApiCompanyIdGetRequest

type ApiCompanyIdGetRequest struct {
	ApiService *CompanyAPIService
	// contains filtered or unexported fields
}

func (ApiCompanyIdGetRequest) Execute

func (r ApiCompanyIdGetRequest) Execute() (*Company, *http.Response, error)

type ApiCompanyPostRequest

type ApiCompanyPostRequest struct {
	ApiService *CompanyAPIService
	// contains filtered or unexported fields
}

func (ApiCompanyPostRequest) Company

func (ApiCompanyPostRequest) Execute

func (r ApiCompanyPostRequest) Execute() (*Company, *http.Response, error)

type ApiCompanyPutRequest

type ApiCompanyPutRequest struct {
	ApiService *CompanyAPIService
	// contains filtered or unexported fields
}

func (ApiCompanyPutRequest) Company

func (ApiCompanyPutRequest) Execute

func (r ApiCompanyPutRequest) Execute() (*Company, *http.Response, error)

type ApiLogGetRequest

type ApiLogGetRequest struct {
	ApiService *LogAPIService
	// contains filtered or unexported fields
}

func (ApiLogGetRequest) ApiVerion

func (r ApiLogGetRequest) ApiVerion(apiVerion int32) ApiLogGetRequest

Api version

func (ApiLogGetRequest) CompanyId

func (r ApiLogGetRequest) CompanyId(companyId int32) ApiLogGetRequest

Company id

func (ApiLogGetRequest) DateCreatedFrom

func (r ApiLogGetRequest) DateCreatedFrom(dateCreatedFrom time.Time) ApiLogGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiLogGetRequest) DateCreatedTo

func (r ApiLogGetRequest) DateCreatedTo(dateCreatedTo time.Time) ApiLogGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiLogGetRequest) DateTimeFrom

func (r ApiLogGetRequest) DateTimeFrom(dateTimeFrom time.Time) ApiLogGetRequest

Date and time of the event

func (ApiLogGetRequest) DateTimeTo

func (r ApiLogGetRequest) DateTimeTo(dateTimeTo time.Time) ApiLogGetRequest

Date and time of the event

func (ApiLogGetRequest) Endpoint

func (r ApiLogGetRequest) Endpoint(endpoint string) ApiLogGetRequest

func (ApiLogGetRequest) Execute

func (r ApiLogGetRequest) Execute() ([]Event, *http.Response, error)

func (ApiLogGetRequest) Method

func (r ApiLogGetRequest) Method(method string) ApiLogGetRequest

func (ApiLogGetRequest) Page

Page number.

func (ApiLogGetRequest) PageSize

func (r ApiLogGetRequest) PageSize(pageSize int32) ApiLogGetRequest

Items per page. Cannot be greater than 200.

func (ApiLogGetRequest) Query

func (r ApiLogGetRequest) Query(query string) ApiLogGetRequest

func (ApiLogGetRequest) Sort

Sort by field. Prefix with '-' for descending order.

func (ApiLogGetRequest) StatusCode

func (r ApiLogGetRequest) StatusCode(statusCode int32) ApiLogGetRequest

Response status code

func (ApiLogGetRequest) Success

func (r ApiLogGetRequest) Success(success bool) ApiLogGetRequest

type ApiLogIdGetRequest

type ApiLogIdGetRequest struct {
	ApiService *LogAPIService
	// contains filtered or unexported fields
}

func (ApiLogIdGetRequest) Execute

func (r ApiLogIdGetRequest) Execute() (*Event, *http.Response, error)

type ApiReceiveGetRequest

type ApiReceiveGetRequest struct {
	ApiService *ReceiveAPIService
	// contains filtered or unexported fields
}

func (ApiReceiveGetRequest) Committente

func (r ApiReceiveGetRequest) Committente(committente string) ApiReceiveGetRequest

Vat number or fiscal code.

func (ApiReceiveGetRequest) CompanyId

func (r ApiReceiveGetRequest) CompanyId(companyId int32) ApiReceiveGetRequest

Company id

func (ApiReceiveGetRequest) DateSentFrom

func (r ApiReceiveGetRequest) DateSentFrom(dateSentFrom time.Time) ApiReceiveGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiReceiveGetRequest) DateSentTo

func (r ApiReceiveGetRequest) DateSentTo(dateSentTo time.Time) ApiReceiveGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiReceiveGetRequest) DocumentDateFrom

func (r ApiReceiveGetRequest) DocumentDateFrom(documentDateFrom time.Time) ApiReceiveGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiReceiveGetRequest) DocumentDateTo

func (r ApiReceiveGetRequest) DocumentDateTo(documentDateTo time.Time) ApiReceiveGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiReceiveGetRequest) DocumentNumber

func (r ApiReceiveGetRequest) DocumentNumber(documentNumber string) ApiReceiveGetRequest

Document number.

func (ApiReceiveGetRequest) Execute

func (r ApiReceiveGetRequest) Execute() ([]Receive, *http.Response, error)

func (ApiReceiveGetRequest) FileName

func (r ApiReceiveGetRequest) FileName(fileName string) ApiReceiveGetRequest

File name.

func (ApiReceiveGetRequest) Identifier

func (r ApiReceiveGetRequest) Identifier(identifier string) ApiReceiveGetRequest

SDI identifier.

func (ApiReceiveGetRequest) IncludePayload

func (r ApiReceiveGetRequest) IncludePayload(includePayload bool) ApiReceiveGetRequest

Include payload in the response. Defaults to false.

func (ApiReceiveGetRequest) LastUpdateFrom

func (r ApiReceiveGetRequest) LastUpdateFrom(lastUpdateFrom time.Time) ApiReceiveGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiReceiveGetRequest) LastUpdateTo

func (r ApiReceiveGetRequest) LastUpdateTo(lastUpdateTo time.Time) ApiReceiveGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiReceiveGetRequest) Page

Page number.

func (ApiReceiveGetRequest) PageSize

func (r ApiReceiveGetRequest) PageSize(pageSize int32) ApiReceiveGetRequest

Items per page. Cannot be greater than 200.

func (ApiReceiveGetRequest) Prestatore

func (r ApiReceiveGetRequest) Prestatore(prestatore string) ApiReceiveGetRequest

Vat number or fiscal code.

func (ApiReceiveGetRequest) Sort

Sort by field. Prefix with '-' for descending order.

func (ApiReceiveGetRequest) Unread

Unread items only.

type ApiReceiveIdDeleteRequest

type ApiReceiveIdDeleteRequest struct {
	ApiService *ReceiveAPIService
	// contains filtered or unexported fields
}

func (ApiReceiveIdDeleteRequest) Execute

type ApiReceiveIdGetRequest

type ApiReceiveIdGetRequest struct {
	ApiService *ReceiveAPIService
	// contains filtered or unexported fields
}

func (ApiReceiveIdGetRequest) Execute

func (r ApiReceiveIdGetRequest) Execute() (*Receive, *http.Response, error)

func (ApiReceiveIdGetRequest) IncludePayload

func (r ApiReceiveIdGetRequest) IncludePayload(includePayload bool) ApiReceiveIdGetRequest

Include payload in the response. Defaults to false.

type ApiSendFilePostRequest

type ApiSendFilePostRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendFilePostRequest) Execute

func (r ApiSendFilePostRequest) Execute() (*Send, *http.Response, error)

func (ApiSendFilePostRequest) File

func (ApiSendFilePostRequest) Signature

func (r ApiSendFilePostRequest) Signature(signature string) ApiSendFilePostRequest

Whether to digitally sign the document.

func (ApiSendFilePostRequest) Validate

func (r ApiSendFilePostRequest) Validate(validate bool) ApiSendFilePostRequest

Validate the document first, and reject it on failure.

type ApiSendGetRequest

type ApiSendGetRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendGetRequest) Committente

func (r ApiSendGetRequest) Committente(committente string) ApiSendGetRequest

Vat number or fiscal code.

func (ApiSendGetRequest) CompanyId

func (r ApiSendGetRequest) CompanyId(companyId int32) ApiSendGetRequest

Company id

func (ApiSendGetRequest) DateSentFrom

func (r ApiSendGetRequest) DateSentFrom(dateSentFrom time.Time) ApiSendGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiSendGetRequest) DateSentTo

func (r ApiSendGetRequest) DateSentTo(dateSentTo time.Time) ApiSendGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiSendGetRequest) DocumentDateFrom

func (r ApiSendGetRequest) DocumentDateFrom(documentDateFrom time.Time) ApiSendGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiSendGetRequest) DocumentDateTo

func (r ApiSendGetRequest) DocumentDateTo(documentDateTo time.Time) ApiSendGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiSendGetRequest) DocumentNumber

func (r ApiSendGetRequest) DocumentNumber(documentNumber string) ApiSendGetRequest

Document number.

func (ApiSendGetRequest) Execute

func (r ApiSendGetRequest) Execute() ([]Send, *http.Response, error)

func (ApiSendGetRequest) FileName

func (r ApiSendGetRequest) FileName(fileName string) ApiSendGetRequest

File name.

func (ApiSendGetRequest) Identifier

func (r ApiSendGetRequest) Identifier(identifier string) ApiSendGetRequest

SDI identifier.

func (ApiSendGetRequest) IncludePayload

func (r ApiSendGetRequest) IncludePayload(includePayload bool) ApiSendGetRequest

Include payload in the response. Defaults to false.

func (ApiSendGetRequest) LastUpdateFrom

func (r ApiSendGetRequest) LastUpdateFrom(lastUpdateFrom time.Time) ApiSendGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiSendGetRequest) LastUpdateTo

func (r ApiSendGetRequest) LastUpdateTo(lastUpdateTo time.Time) ApiSendGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiSendGetRequest) Page

Page number.

func (ApiSendGetRequest) PageSize

func (r ApiSendGetRequest) PageSize(pageSize int32) ApiSendGetRequest

Items per page. Cannot be greater than 200.

func (ApiSendGetRequest) Prestatore

func (r ApiSendGetRequest) Prestatore(prestatore string) ApiSendGetRequest

Vat number or fiscal code.

func (ApiSendGetRequest) Sort

Sort by field. Prefix with '-' for descending order.

type ApiSendIdGetRequest

type ApiSendIdGetRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendIdGetRequest) Execute

func (r ApiSendIdGetRequest) Execute() (*Send, *http.Response, error)

func (ApiSendIdGetRequest) IncludePayload

func (r ApiSendIdGetRequest) IncludePayload(includePayload bool) ApiSendIdGetRequest

Include payload in the response. Defaults to false.

type ApiSendIdentifierGetRequest

type ApiSendIdentifierGetRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendIdentifierGetRequest) Execute

func (ApiSendIdentifierGetRequest) IncludePayload

func (r ApiSendIdentifierGetRequest) IncludePayload(includePayload bool) ApiSendIdentifierGetRequest

Include payload in the response. Defaults to false.

type ApiSendJsonPostRequest

type ApiSendJsonPostRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendJsonPostRequest) Execute

func (r ApiSendJsonPostRequest) Execute() (*Send, *http.Response, error)

func (ApiSendJsonPostRequest) FatturaOrdinaria

func (r ApiSendJsonPostRequest) FatturaOrdinaria(fatturaOrdinaria FatturaOrdinaria) ApiSendJsonPostRequest

func (ApiSendJsonPostRequest) Signature

func (r ApiSendJsonPostRequest) Signature(signature string) ApiSendJsonPostRequest

Whether to digitally sign the document.

func (ApiSendJsonPostRequest) Validate

func (r ApiSendJsonPostRequest) Validate(validate bool) ApiSendJsonPostRequest

Validate the document first, and reject it on failure.

type ApiSendPostRequest

type ApiSendPostRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendPostRequest) Execute

func (r ApiSendPostRequest) Execute() (*Send, *http.Response, error)

func (ApiSendPostRequest) Send

func (ApiSendPostRequest) Signature

func (r ApiSendPostRequest) Signature(signature string) ApiSendPostRequest

Whether to digitally sign the document.

func (ApiSendPostRequest) Validate

func (r ApiSendPostRequest) Validate(validate bool) ApiSendPostRequest

Validate the document first, and reject it on failure.

type ApiSendValidateFilePostRequest

type ApiSendValidateFilePostRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendValidateFilePostRequest) Execute

func (ApiSendValidateFilePostRequest) File

type ApiSendValidateJsonPostRequest

type ApiSendValidateJsonPostRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendValidateJsonPostRequest) Execute

func (ApiSendValidateJsonPostRequest) FatturaOrdinaria

type ApiSendValidatePostRequest

type ApiSendValidatePostRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendValidatePostRequest) Execute

func (ApiSendValidatePostRequest) Send

type ApiSendValidateXmlPostRequest

type ApiSendValidateXmlPostRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendValidateXmlPostRequest) Execute

func (ApiSendValidateXmlPostRequest) FatturaOrdinaria

type ApiSendXmlPostRequest

type ApiSendXmlPostRequest struct {
	ApiService *SendAPIService
	// contains filtered or unexported fields
}

func (ApiSendXmlPostRequest) Execute

func (r ApiSendXmlPostRequest) Execute() (*Send, *http.Response, error)

func (ApiSendXmlPostRequest) FatturaOrdinaria

func (r ApiSendXmlPostRequest) FatturaOrdinaria(fatturaOrdinaria FatturaOrdinaria) ApiSendXmlPostRequest

func (ApiSendXmlPostRequest) Signature

func (r ApiSendXmlPostRequest) Signature(signature string) ApiSendXmlPostRequest

Whether to digitally sign the document.

func (ApiSendXmlPostRequest) Validate

func (r ApiSendXmlPostRequest) Validate(validate bool) ApiSendXmlPostRequest

Validate the document first, and reject it on failure.

type ApiStatusGetRequest

type ApiStatusGetRequest struct {
	ApiService *StatusAPIService
	// contains filtered or unexported fields
}

func (ApiStatusGetRequest) Execute

func (r ApiStatusGetRequest) Execute() (*Status, *http.Response, error)

type ApiUpdateGetRequest

type ApiUpdateGetRequest struct {
	ApiService *UpdateAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateGetRequest) CompanyId

func (r ApiUpdateGetRequest) CompanyId(companyId int32) ApiUpdateGetRequest

Company id

func (ApiUpdateGetRequest) DateSentFrom

func (r ApiUpdateGetRequest) DateSentFrom(dateSentFrom time.Time) ApiUpdateGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiUpdateGetRequest) DateSentTo

func (r ApiUpdateGetRequest) DateSentTo(dateSentTo time.Time) ApiUpdateGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiUpdateGetRequest) Execute

func (r ApiUpdateGetRequest) Execute() ([]Update, *http.Response, error)

func (ApiUpdateGetRequest) Identifier

func (r ApiUpdateGetRequest) Identifier(identifier string) ApiUpdateGetRequest

SDI identifier.

func (ApiUpdateGetRequest) LastUpdateFrom

func (r ApiUpdateGetRequest) LastUpdateFrom(lastUpdateFrom time.Time) ApiUpdateGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiUpdateGetRequest) LastUpdateTo

func (r ApiUpdateGetRequest) LastUpdateTo(lastUpdateTo time.Time) ApiUpdateGetRequest

UTC ISO 8601 (2024-11-29T12:34:56Z)

func (ApiUpdateGetRequest) Page

Page number.

func (ApiUpdateGetRequest) PageSize

func (r ApiUpdateGetRequest) PageSize(pageSize int32) ApiUpdateGetRequest

Items per page. Cannot be greater than 200.

func (ApiUpdateGetRequest) Prestatore

func (r ApiUpdateGetRequest) Prestatore(prestatore string) ApiUpdateGetRequest

Vat number or fiscal code.

func (ApiUpdateGetRequest) SendId

Send item's id.

func (ApiUpdateGetRequest) Sort

Sort by field. Prefix with '-' for descending order.

func (ApiUpdateGetRequest) State

SDI state

func (ApiUpdateGetRequest) Unread

func (r ApiUpdateGetRequest) Unread(unread bool) ApiUpdateGetRequest

Unread items only.

type ApiUpdateIdGetRequest

type ApiUpdateIdGetRequest struct {
	ApiService *UpdateAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIdGetRequest) Execute

func (r ApiUpdateIdGetRequest) Execute() (*Update, *http.Response, error)

type ApiWebhookGetRequest

type ApiWebhookGetRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiWebhookGetRequest) CompanyId

func (r ApiWebhookGetRequest) CompanyId(companyId int32) ApiWebhookGetRequest

Company id

func (ApiWebhookGetRequest) Description

func (r ApiWebhookGetRequest) Description(description string) ApiWebhookGetRequest

func (ApiWebhookGetRequest) Enabled

func (r ApiWebhookGetRequest) Enabled(enabled bool) ApiWebhookGetRequest

func (ApiWebhookGetRequest) Events

func (ApiWebhookGetRequest) Execute

func (r ApiWebhookGetRequest) Execute() ([]WebHook, *http.Response, error)

func (ApiWebhookGetRequest) Page

Page number.

func (ApiWebhookGetRequest) PageSize

func (r ApiWebhookGetRequest) PageSize(pageSize int32) ApiWebhookGetRequest

Items per page. Cannot be greater than 200.

func (ApiWebhookGetRequest) Sort

Sort by field. Prefix with '-' for descending order.

func (ApiWebhookGetRequest) Url

type ApiWebhookIdDeleteRequest

type ApiWebhookIdDeleteRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiWebhookIdDeleteRequest) Execute

type ApiWebhookIdGetRequest

type ApiWebhookIdGetRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiWebhookIdGetRequest) Execute

func (r ApiWebhookIdGetRequest) Execute() (*WebHook, *http.Response, error)

type ApiWebhookPostRequest

type ApiWebhookPostRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiWebhookPostRequest) Execute

func (r ApiWebhookPostRequest) Execute() (*WebHook, *http.Response, error)

func (ApiWebhookPostRequest) WebHook

type ApiWebhookPutRequest

type ApiWebhookPutRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiWebhookPutRequest) Execute

func (r ApiWebhookPutRequest) Execute() (*WebHook, *http.Response, error)

func (ApiWebhookPutRequest) WebHook

type ApiWebhookhistoryGetRequest

type ApiWebhookhistoryGetRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiWebhookhistoryGetRequest) Execute

func (ApiWebhookhistoryGetRequest) Page

Page number.

func (ApiWebhookhistoryGetRequest) PageSize

Items per page. Cannot be greater than 200.

func (ApiWebhookhistoryGetRequest) Sort

Sort by field. Prefix with '-' for descending order.

func (ApiWebhookhistoryGetRequest) WebhookId

WebHook id

type ApiWebhookhistoryIdGetRequest

type ApiWebhookhistoryIdGetRequest struct {
	ApiService *WebhookAPIService
	// contains filtered or unexported fields
}

func (ApiWebhookhistoryIdGetRequest) Execute

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 CedentePrestatore

type CedentePrestatore struct {
	DatiAnagrafici             *DatiAnagraficiCedentePrestatore `json:"dati_anagrafici,omitempty"`
	Sede                       *SedeCedentePrestatore           `json:"sede,omitempty"`
	StabileOrganizzazione      *StabileOrganizzazione           `json:"stabile_organizzazione,omitempty"`
	IscrizioneRea              *IscrizioneREA                   `json:"iscrizione_rea,omitempty"`
	Contatti                   *Contatti                        `json:"contatti,omitempty"`
	RiferimentoAmministrazione NullableString                   `json:"riferimento_amministrazione,omitempty"`
}

CedentePrestatore struct for CedentePrestatore

func NewCedentePrestatore

func NewCedentePrestatore() *CedentePrestatore

NewCedentePrestatore instantiates a new CedentePrestatore 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 NewCedentePrestatoreWithDefaults

func NewCedentePrestatoreWithDefaults() *CedentePrestatore

NewCedentePrestatoreWithDefaults instantiates a new CedentePrestatore 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 (*CedentePrestatore) GetContatti

func (o *CedentePrestatore) GetContatti() Contatti

GetContatti returns the Contatti field value if set, zero value otherwise.

func (*CedentePrestatore) GetContattiOk

func (o *CedentePrestatore) GetContattiOk() (*Contatti, bool)

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

func (*CedentePrestatore) GetDatiAnagrafici

func (o *CedentePrestatore) GetDatiAnagrafici() DatiAnagraficiCedentePrestatore

GetDatiAnagrafici returns the DatiAnagrafici field value if set, zero value otherwise.

func (*CedentePrestatore) GetDatiAnagraficiOk

func (o *CedentePrestatore) GetDatiAnagraficiOk() (*DatiAnagraficiCedentePrestatore, bool)

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

func (*CedentePrestatore) GetIscrizioneRea

func (o *CedentePrestatore) GetIscrizioneRea() IscrizioneREA

GetIscrizioneRea returns the IscrizioneRea field value if set, zero value otherwise.

func (*CedentePrestatore) GetIscrizioneReaOk

func (o *CedentePrestatore) GetIscrizioneReaOk() (*IscrizioneREA, bool)

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

func (*CedentePrestatore) GetRiferimentoAmministrazione

func (o *CedentePrestatore) GetRiferimentoAmministrazione() string

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

func (*CedentePrestatore) GetRiferimentoAmministrazioneOk

func (o *CedentePrestatore) GetRiferimentoAmministrazioneOk() (*string, bool)

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

func (*CedentePrestatore) GetSede

GetSede returns the Sede field value if set, zero value otherwise.

func (*CedentePrestatore) GetSedeOk

func (o *CedentePrestatore) GetSedeOk() (*SedeCedentePrestatore, bool)

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

func (*CedentePrestatore) GetStabileOrganizzazione

func (o *CedentePrestatore) GetStabileOrganizzazione() StabileOrganizzazione

GetStabileOrganizzazione returns the StabileOrganizzazione field value if set, zero value otherwise.

func (*CedentePrestatore) GetStabileOrganizzazioneOk

func (o *CedentePrestatore) GetStabileOrganizzazioneOk() (*StabileOrganizzazione, bool)

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

func (*CedentePrestatore) HasContatti

func (o *CedentePrestatore) HasContatti() bool

HasContatti returns a boolean if a field has been set.

func (*CedentePrestatore) HasDatiAnagrafici

func (o *CedentePrestatore) HasDatiAnagrafici() bool

HasDatiAnagrafici returns a boolean if a field has been set.

func (*CedentePrestatore) HasIscrizioneRea

func (o *CedentePrestatore) HasIscrizioneRea() bool

HasIscrizioneRea returns a boolean if a field has been set.

func (*CedentePrestatore) HasRiferimentoAmministrazione

func (o *CedentePrestatore) HasRiferimentoAmministrazione() bool

HasRiferimentoAmministrazione returns a boolean if a field has been set.

func (*CedentePrestatore) HasSede

func (o *CedentePrestatore) HasSede() bool

HasSede returns a boolean if a field has been set.

func (*CedentePrestatore) HasStabileOrganizzazione

func (o *CedentePrestatore) HasStabileOrganizzazione() bool

HasStabileOrganizzazione returns a boolean if a field has been set.

func (CedentePrestatore) MarshalJSON

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

func (*CedentePrestatore) SetContatti

func (o *CedentePrestatore) SetContatti(v Contatti)

SetContatti gets a reference to the given Contatti and assigns it to the Contatti field.

func (*CedentePrestatore) SetDatiAnagrafici

func (o *CedentePrestatore) SetDatiAnagrafici(v DatiAnagraficiCedentePrestatore)

SetDatiAnagrafici gets a reference to the given DatiAnagraficiCedentePrestatore and assigns it to the DatiAnagrafici field.

func (*CedentePrestatore) SetIscrizioneRea

func (o *CedentePrestatore) SetIscrizioneRea(v IscrizioneREA)

SetIscrizioneRea gets a reference to the given IscrizioneREA and assigns it to the IscrizioneRea field.

func (*CedentePrestatore) SetRiferimentoAmministrazione

func (o *CedentePrestatore) SetRiferimentoAmministrazione(v string)

SetRiferimentoAmministrazione gets a reference to the given NullableString and assigns it to the RiferimentoAmministrazione field.

func (*CedentePrestatore) SetRiferimentoAmministrazioneNil

func (o *CedentePrestatore) SetRiferimentoAmministrazioneNil()

SetRiferimentoAmministrazioneNil sets the value for RiferimentoAmministrazione to be an explicit nil

func (*CedentePrestatore) SetSede

SetSede gets a reference to the given SedeCedentePrestatore and assigns it to the Sede field.

func (*CedentePrestatore) SetStabileOrganizzazione

func (o *CedentePrestatore) SetStabileOrganizzazione(v StabileOrganizzazione)

SetStabileOrganizzazione gets a reference to the given StabileOrganizzazione and assigns it to the StabileOrganizzazione field.

func (CedentePrestatore) ToMap

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

func (*CedentePrestatore) UnsetRiferimentoAmministrazione

func (o *CedentePrestatore) UnsetRiferimentoAmministrazione()

UnsetRiferimentoAmministrazione ensures that no value is present for RiferimentoAmministrazione, not even an explicit nil

type CessionarioCommittente

type CessionarioCommittente struct {
	DatiAnagrafici        *DatiAnagraficiCessionarioCommittente        `json:"dati_anagrafici,omitempty"`
	Sede                  *SedeCessionarioCommittente                  `json:"sede,omitempty"`
	StabileOrganizzazione *StabileOrganizzazione                       `json:"stabile_organizzazione,omitempty"`
	RappresentanteFiscale *RappresentanteFiscaleCessionarioCommittente `json:"rappresentante_fiscale,omitempty"`
}

CessionarioCommittente struct for CessionarioCommittente

func NewCessionarioCommittente

func NewCessionarioCommittente() *CessionarioCommittente

NewCessionarioCommittente instantiates a new CessionarioCommittente 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 NewCessionarioCommittenteWithDefaults

func NewCessionarioCommittenteWithDefaults() *CessionarioCommittente

NewCessionarioCommittenteWithDefaults instantiates a new CessionarioCommittente 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 (*CessionarioCommittente) GetDatiAnagrafici

GetDatiAnagrafici returns the DatiAnagrafici field value if set, zero value otherwise.

func (*CessionarioCommittente) GetDatiAnagraficiOk

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

func (*CessionarioCommittente) GetRappresentanteFiscale

GetRappresentanteFiscale returns the RappresentanteFiscale field value if set, zero value otherwise.

func (*CessionarioCommittente) GetRappresentanteFiscaleOk

func (o *CessionarioCommittente) GetRappresentanteFiscaleOk() (*RappresentanteFiscaleCessionarioCommittente, bool)

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

func (*CessionarioCommittente) GetSede

GetSede returns the Sede field value if set, zero value otherwise.

func (*CessionarioCommittente) GetSedeOk

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

func (*CessionarioCommittente) GetStabileOrganizzazione

func (o *CessionarioCommittente) GetStabileOrganizzazione() StabileOrganizzazione

GetStabileOrganizzazione returns the StabileOrganizzazione field value if set, zero value otherwise.

func (*CessionarioCommittente) GetStabileOrganizzazioneOk

func (o *CessionarioCommittente) GetStabileOrganizzazioneOk() (*StabileOrganizzazione, bool)

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

func (*CessionarioCommittente) HasDatiAnagrafici

func (o *CessionarioCommittente) HasDatiAnagrafici() bool

HasDatiAnagrafici returns a boolean if a field has been set.

func (*CessionarioCommittente) HasRappresentanteFiscale

func (o *CessionarioCommittente) HasRappresentanteFiscale() bool

HasRappresentanteFiscale returns a boolean if a field has been set.

func (*CessionarioCommittente) HasSede

func (o *CessionarioCommittente) HasSede() bool

HasSede returns a boolean if a field has been set.

func (*CessionarioCommittente) HasStabileOrganizzazione

func (o *CessionarioCommittente) HasStabileOrganizzazione() bool

HasStabileOrganizzazione returns a boolean if a field has been set.

func (CessionarioCommittente) MarshalJSON

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

func (*CessionarioCommittente) SetDatiAnagrafici

SetDatiAnagrafici gets a reference to the given DatiAnagraficiCessionarioCommittente and assigns it to the DatiAnagrafici field.

func (*CessionarioCommittente) SetRappresentanteFiscale

SetRappresentanteFiscale gets a reference to the given RappresentanteFiscaleCessionarioCommittente and assigns it to the RappresentanteFiscale field.

func (*CessionarioCommittente) SetSede

SetSede gets a reference to the given SedeCessionarioCommittente and assigns it to the Sede field.

func (*CessionarioCommittente) SetStabileOrganizzazione

func (o *CessionarioCommittente) SetStabileOrganizzazione(v StabileOrganizzazione)

SetStabileOrganizzazione gets a reference to the given StabileOrganizzazione and assigns it to the StabileOrganizzazione field.

func (CessionarioCommittente) ToMap

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

type CodiceArticolo

type CodiceArticolo struct {
	CodiceTipo   NullableString `json:"codice_tipo,omitempty"`
	CodiceValore NullableString `json:"codice_valore,omitempty"`
}

CodiceArticolo struct for CodiceArticolo

func NewCodiceArticolo

func NewCodiceArticolo() *CodiceArticolo

NewCodiceArticolo instantiates a new CodiceArticolo 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 NewCodiceArticoloWithDefaults

func NewCodiceArticoloWithDefaults() *CodiceArticolo

NewCodiceArticoloWithDefaults instantiates a new CodiceArticolo 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 (*CodiceArticolo) GetCodiceTipo

func (o *CodiceArticolo) GetCodiceTipo() string

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

func (*CodiceArticolo) GetCodiceTipoOk

func (o *CodiceArticolo) GetCodiceTipoOk() (*string, bool)

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

func (*CodiceArticolo) GetCodiceValore

func (o *CodiceArticolo) GetCodiceValore() string

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

func (*CodiceArticolo) GetCodiceValoreOk

func (o *CodiceArticolo) GetCodiceValoreOk() (*string, bool)

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

func (*CodiceArticolo) HasCodiceTipo

func (o *CodiceArticolo) HasCodiceTipo() bool

HasCodiceTipo returns a boolean if a field has been set.

func (*CodiceArticolo) HasCodiceValore

func (o *CodiceArticolo) HasCodiceValore() bool

HasCodiceValore returns a boolean if a field has been set.

func (CodiceArticolo) MarshalJSON

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

func (*CodiceArticolo) SetCodiceTipo

func (o *CodiceArticolo) SetCodiceTipo(v string)

SetCodiceTipo gets a reference to the given NullableString and assigns it to the CodiceTipo field.

func (*CodiceArticolo) SetCodiceTipoNil

func (o *CodiceArticolo) SetCodiceTipoNil()

SetCodiceTipoNil sets the value for CodiceTipo to be an explicit nil

func (*CodiceArticolo) SetCodiceValore

func (o *CodiceArticolo) SetCodiceValore(v string)

SetCodiceValore gets a reference to the given NullableString and assigns it to the CodiceValore field.

func (*CodiceArticolo) SetCodiceValoreNil

func (o *CodiceArticolo) SetCodiceValoreNil()

SetCodiceValoreNil sets the value for CodiceValore to be an explicit nil

func (CodiceArticolo) ToMap

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

func (*CodiceArticolo) UnsetCodiceTipo

func (o *CodiceArticolo) UnsetCodiceTipo()

UnsetCodiceTipo ensures that no value is present for CodiceTipo, not even an explicit nil

func (*CodiceArticolo) UnsetCodiceValore

func (o *CodiceArticolo) UnsetCodiceValore()

UnsetCodiceValore ensures that no value is present for CodiceValore, not even an explicit nil

type Company

type Company struct {
	// Unique identifier. Leave it at 0 for new records as it will be set automatically.
	Id *int32 `json:"id,omitempty"`
	// Creation date. It is set automatically.
	Created *time.Time `json:"created,omitempty"`
	// Row version, for optimistic concurrency. It is set automatically.
	Version *int32 `json:"version,omitempty"`
	// User id.
	UserId *int32 `json:"user_id,omitempty"`
	// Vat number. Must include the country code.
	Vat string `json:"vat"`
	// Fiscal code. In most cases it's the same as the vat number.
	FiscalCode string `json:"fiscal_code"`
	// Name
	Name string `json:"name"`
}

Company A company model.

func NewCompany

func NewCompany(vat string, fiscalCode string, name string) *Company

NewCompany instantiates a new Company 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 NewCompanyWithDefaults

func NewCompanyWithDefaults() *Company

NewCompanyWithDefaults instantiates a new Company 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 (*Company) GetCreated

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

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

func (*Company) GetCreatedOk

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

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

func (*Company) GetFiscalCode

func (o *Company) GetFiscalCode() string

GetFiscalCode returns the FiscalCode field value

func (*Company) GetFiscalCodeOk

func (o *Company) GetFiscalCodeOk() (*string, bool)

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

func (*Company) GetId

func (o *Company) GetId() int32

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

func (*Company) GetIdOk

func (o *Company) GetIdOk() (*int32, bool)

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

func (*Company) GetName

func (o *Company) GetName() string

GetName returns the Name field value

func (*Company) GetNameOk

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

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

func (*Company) GetUserId

func (o *Company) GetUserId() int32

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Company) GetUserIdOk

func (o *Company) GetUserIdOk() (*int32, bool)

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

func (*Company) GetVat

func (o *Company) GetVat() string

GetVat returns the Vat field value

func (*Company) GetVatOk

func (o *Company) GetVatOk() (*string, bool)

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

func (*Company) GetVersion

func (o *Company) GetVersion() int32

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

func (*Company) GetVersionOk

func (o *Company) GetVersionOk() (*int32, bool)

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

func (*Company) HasCreated

func (o *Company) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Company) HasId

func (o *Company) HasId() bool

HasId returns a boolean if a field has been set.

func (*Company) HasUserId

func (o *Company) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*Company) HasVersion

func (o *Company) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Company) MarshalJSON

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

func (*Company) SetCreated

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

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

func (*Company) SetFiscalCode

func (o *Company) SetFiscalCode(v string)

SetFiscalCode sets field value

func (*Company) SetId

func (o *Company) SetId(v int32)

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

func (*Company) SetName

func (o *Company) SetName(v string)

SetName sets field value

func (*Company) SetUserId

func (o *Company) SetUserId(v int32)

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

func (*Company) SetVat

func (o *Company) SetVat(v string)

SetVat sets field value

func (*Company) SetVersion

func (o *Company) SetVersion(v int32)

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

func (Company) ToMap

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

func (*Company) UnmarshalJSON

func (o *Company) UnmarshalJSON(data []byte) (err error)

type CompanyAPIService

type CompanyAPIService service

CompanyAPIService CompanyAPI service

func (*CompanyAPIService) CompanyGet

CompanyGet List companies

Companies are the entities that send and receive invoices. As you send invoices, companies are added as needed (company details are extrapolated). **You can only receive invoices for existing companies, so ensure they exist**.

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

func (*CompanyAPIService) CompanyGetExecute

func (a *CompanyAPIService) CompanyGetExecute(r ApiCompanyGetRequest) ([]Company, *http.Response, error)

Execute executes the request

@return []Company

func (*CompanyAPIService) CompanyIdDelete

func (a *CompanyAPIService) CompanyIdDelete(ctx context.Context, id int32) ApiCompanyIdDeleteRequest

CompanyIdDelete Delete a company

Companies are the entities that send and receive invoices. As you send invoices, companies are added as needed (company details are extrapolated). **You can only receive invoices for existing companies, so ensure they exist**.

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

func (*CompanyAPIService) CompanyIdDeleteExecute

func (a *CompanyAPIService) CompanyIdDeleteExecute(r ApiCompanyIdDeleteRequest) (*Company, *http.Response, error)

Execute executes the request

@return Company

func (*CompanyAPIService) CompanyIdGet

CompanyIdGet Get a company by id

Companies are the entities that send and receive invoices. As you send invoices, companies are added as needed (company details are extrapolated). **You can only receive invoices for existing companies, so ensure they exist**.

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

func (*CompanyAPIService) CompanyIdGetExecute

func (a *CompanyAPIService) CompanyIdGetExecute(r ApiCompanyIdGetRequest) (*Company, *http.Response, error)

Execute executes the request

@return Company

func (*CompanyAPIService) CompanyPost

CompanyPost Add a company

Companies are the entities that send and receive invoices. As you send invoices, companies are added as needed (company details are extrapolated). **You can only receive invoices for existing companies, so ensure they exist**.

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

func (*CompanyAPIService) CompanyPostExecute

func (a *CompanyAPIService) CompanyPostExecute(r ApiCompanyPostRequest) (*Company, *http.Response, error)

Execute executes the request

@return Company

func (*CompanyAPIService) CompanyPut

CompanyPut Update a company

Companies are the entities that send and receive invoices. As you send invoices, companies are added as needed (company details are extrapolated). **You can only receive invoices for existing companies, so ensure they exist**.

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

func (*CompanyAPIService) CompanyPutExecute

func (a *CompanyAPIService) CompanyPutExecute(r ApiCompanyPutRequest) (*Company, *http.Response, error)

Execute executes the request

@return Company

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 Contatti

type Contatti struct {
	Telefono NullableString `json:"telefono,omitempty"`
	Fax      NullableString `json:"fax,omitempty"`
	Email    NullableString `json:"email,omitempty"`
}

Contatti struct for Contatti

func NewContatti

func NewContatti() *Contatti

NewContatti instantiates a new Contatti 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 NewContattiWithDefaults

func NewContattiWithDefaults() *Contatti

NewContattiWithDefaults instantiates a new Contatti 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 (*Contatti) GetEmail

func (o *Contatti) GetEmail() string

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

func (*Contatti) GetEmailOk

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

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

func (*Contatti) GetFax

func (o *Contatti) GetFax() string

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

func (*Contatti) GetFaxOk

func (o *Contatti) GetFaxOk() (*string, bool)

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

func (*Contatti) GetTelefono

func (o *Contatti) GetTelefono() string

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

func (*Contatti) GetTelefonoOk

func (o *Contatti) GetTelefonoOk() (*string, bool)

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

func (*Contatti) HasEmail

func (o *Contatti) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Contatti) HasFax

func (o *Contatti) HasFax() bool

HasFax returns a boolean if a field has been set.

func (*Contatti) HasTelefono

func (o *Contatti) HasTelefono() bool

HasTelefono returns a boolean if a field has been set.

func (Contatti) MarshalJSON

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

func (*Contatti) SetEmail

func (o *Contatti) SetEmail(v string)

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

func (*Contatti) SetEmailNil

func (o *Contatti) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*Contatti) SetFax

func (o *Contatti) SetFax(v string)

SetFax gets a reference to the given NullableString and assigns it to the Fax field.

func (*Contatti) SetFaxNil

func (o *Contatti) SetFaxNil()

SetFaxNil sets the value for Fax to be an explicit nil

func (*Contatti) SetTelefono

func (o *Contatti) SetTelefono(v string)

SetTelefono gets a reference to the given NullableString and assigns it to the Telefono field.

func (*Contatti) SetTelefonoNil

func (o *Contatti) SetTelefonoNil()

SetTelefonoNil sets the value for Telefono to be an explicit nil

func (Contatti) ToMap

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

func (*Contatti) UnsetEmail

func (o *Contatti) UnsetEmail()

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

func (*Contatti) UnsetFax

func (o *Contatti) UnsetFax()

UnsetFax ensures that no value is present for Fax, not even an explicit nil

func (*Contatti) UnsetTelefono

func (o *Contatti) UnsetTelefono()

UnsetTelefono ensures that no value is present for Telefono, not even an explicit nil

type ContattiTrasmittente

type ContattiTrasmittente struct {
	Telefono NullableString `json:"telefono,omitempty"`
	Email    NullableString `json:"email,omitempty"`
}

ContattiTrasmittente struct for ContattiTrasmittente

func NewContattiTrasmittente

func NewContattiTrasmittente() *ContattiTrasmittente

NewContattiTrasmittente instantiates a new ContattiTrasmittente 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 NewContattiTrasmittenteWithDefaults

func NewContattiTrasmittenteWithDefaults() *ContattiTrasmittente

NewContattiTrasmittenteWithDefaults instantiates a new ContattiTrasmittente 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 (*ContattiTrasmittente) GetEmail

func (o *ContattiTrasmittente) GetEmail() string

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

func (*ContattiTrasmittente) GetEmailOk

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

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

func (*ContattiTrasmittente) GetTelefono

func (o *ContattiTrasmittente) GetTelefono() string

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

func (*ContattiTrasmittente) GetTelefonoOk

func (o *ContattiTrasmittente) GetTelefonoOk() (*string, bool)

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

func (*ContattiTrasmittente) HasEmail

func (o *ContattiTrasmittente) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*ContattiTrasmittente) HasTelefono

func (o *ContattiTrasmittente) HasTelefono() bool

HasTelefono returns a boolean if a field has been set.

func (ContattiTrasmittente) MarshalJSON

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

func (*ContattiTrasmittente) SetEmail

func (o *ContattiTrasmittente) SetEmail(v string)

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

func (*ContattiTrasmittente) SetEmailNil

func (o *ContattiTrasmittente) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*ContattiTrasmittente) SetTelefono

func (o *ContattiTrasmittente) SetTelefono(v string)

SetTelefono gets a reference to the given NullableString and assigns it to the Telefono field.

func (*ContattiTrasmittente) SetTelefonoNil

func (o *ContattiTrasmittente) SetTelefonoNil()

SetTelefonoNil sets the value for Telefono to be an explicit nil

func (ContattiTrasmittente) ToMap

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

func (*ContattiTrasmittente) UnsetEmail

func (o *ContattiTrasmittente) UnsetEmail()

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

func (*ContattiTrasmittente) UnsetTelefono

func (o *ContattiTrasmittente) UnsetTelefono()

UnsetTelefono ensures that no value is present for Telefono, not even an explicit nil

type DatiAnagrafici

type DatiAnagrafici struct {
	IdFiscaleIva  *IdFiscaleIVA  `json:"id_fiscale_iva,omitempty"`
	CodiceFiscale NullableString `json:"codice_fiscale,omitempty"`
	Anagrafica    *Anagrafica    `json:"anagrafica,omitempty"`
}

DatiAnagrafici struct for DatiAnagrafici

func NewDatiAnagrafici

func NewDatiAnagrafici() *DatiAnagrafici

NewDatiAnagrafici instantiates a new DatiAnagrafici 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 NewDatiAnagraficiWithDefaults

func NewDatiAnagraficiWithDefaults() *DatiAnagrafici

NewDatiAnagraficiWithDefaults instantiates a new DatiAnagrafici 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 (*DatiAnagrafici) GetAnagrafica

func (o *DatiAnagrafici) GetAnagrafica() Anagrafica

GetAnagrafica returns the Anagrafica field value if set, zero value otherwise.

func (*DatiAnagrafici) GetAnagraficaOk

func (o *DatiAnagrafici) GetAnagraficaOk() (*Anagrafica, bool)

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

func (*DatiAnagrafici) GetCodiceFiscale

func (o *DatiAnagrafici) GetCodiceFiscale() string

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

func (*DatiAnagrafici) GetCodiceFiscaleOk

func (o *DatiAnagrafici) GetCodiceFiscaleOk() (*string, bool)

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

func (*DatiAnagrafici) GetIdFiscaleIva

func (o *DatiAnagrafici) GetIdFiscaleIva() IdFiscaleIVA

GetIdFiscaleIva returns the IdFiscaleIva field value if set, zero value otherwise.

func (*DatiAnagrafici) GetIdFiscaleIvaOk

func (o *DatiAnagrafici) GetIdFiscaleIvaOk() (*IdFiscaleIVA, bool)

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

func (*DatiAnagrafici) HasAnagrafica

func (o *DatiAnagrafici) HasAnagrafica() bool

HasAnagrafica returns a boolean if a field has been set.

func (*DatiAnagrafici) HasCodiceFiscale

func (o *DatiAnagrafici) HasCodiceFiscale() bool

HasCodiceFiscale returns a boolean if a field has been set.

func (*DatiAnagrafici) HasIdFiscaleIva

func (o *DatiAnagrafici) HasIdFiscaleIva() bool

HasIdFiscaleIva returns a boolean if a field has been set.

func (DatiAnagrafici) MarshalJSON

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

func (*DatiAnagrafici) SetAnagrafica

func (o *DatiAnagrafici) SetAnagrafica(v Anagrafica)

SetAnagrafica gets a reference to the given Anagrafica and assigns it to the Anagrafica field.

func (*DatiAnagrafici) SetCodiceFiscale

func (o *DatiAnagrafici) SetCodiceFiscale(v string)

SetCodiceFiscale gets a reference to the given NullableString and assigns it to the CodiceFiscale field.

func (*DatiAnagrafici) SetCodiceFiscaleNil

func (o *DatiAnagrafici) SetCodiceFiscaleNil()

SetCodiceFiscaleNil sets the value for CodiceFiscale to be an explicit nil

func (*DatiAnagrafici) SetIdFiscaleIva

func (o *DatiAnagrafici) SetIdFiscaleIva(v IdFiscaleIVA)

SetIdFiscaleIva gets a reference to the given IdFiscaleIVA and assigns it to the IdFiscaleIva field.

func (DatiAnagrafici) ToMap

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

func (*DatiAnagrafici) UnsetCodiceFiscale

func (o *DatiAnagrafici) UnsetCodiceFiscale()

UnsetCodiceFiscale ensures that no value is present for CodiceFiscale, not even an explicit nil

type DatiAnagraficiCedentePrestatore

type DatiAnagraficiCedentePrestatore struct {
	IdFiscaleIva         *IdFiscaleIVA  `json:"id_fiscale_iva,omitempty"`
	CodiceFiscale        NullableString `json:"codice_fiscale,omitempty"`
	Anagrafica           *Anagrafica    `json:"anagrafica,omitempty"`
	AlboProfessionale    NullableString `json:"albo_professionale,omitempty"`
	ProvinciaAlbo        NullableString `json:"provincia_albo,omitempty"`
	NumeroIscrizioneAlbo NullableString `json:"numero_iscrizione_albo,omitempty"`
	DataIscrizioneAlbo   NullableTime   `json:"data_iscrizione_albo,omitempty"`
	RegimeFiscale        NullableString `json:"regime_fiscale,omitempty"`
}

DatiAnagraficiCedentePrestatore struct for DatiAnagraficiCedentePrestatore

func NewDatiAnagraficiCedentePrestatore

func NewDatiAnagraficiCedentePrestatore() *DatiAnagraficiCedentePrestatore

NewDatiAnagraficiCedentePrestatore instantiates a new DatiAnagraficiCedentePrestatore 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 NewDatiAnagraficiCedentePrestatoreWithDefaults

func NewDatiAnagraficiCedentePrestatoreWithDefaults() *DatiAnagraficiCedentePrestatore

NewDatiAnagraficiCedentePrestatoreWithDefaults instantiates a new DatiAnagraficiCedentePrestatore 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 (*DatiAnagraficiCedentePrestatore) GetAlboProfessionale

func (o *DatiAnagraficiCedentePrestatore) GetAlboProfessionale() string

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

func (*DatiAnagraficiCedentePrestatore) GetAlboProfessionaleOk

func (o *DatiAnagraficiCedentePrestatore) GetAlboProfessionaleOk() (*string, bool)

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

func (*DatiAnagraficiCedentePrestatore) GetAnagrafica

func (o *DatiAnagraficiCedentePrestatore) GetAnagrafica() Anagrafica

GetAnagrafica returns the Anagrafica field value if set, zero value otherwise.

func (*DatiAnagraficiCedentePrestatore) GetAnagraficaOk

func (o *DatiAnagraficiCedentePrestatore) GetAnagraficaOk() (*Anagrafica, bool)

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

func (*DatiAnagraficiCedentePrestatore) GetCodiceFiscale

func (o *DatiAnagraficiCedentePrestatore) GetCodiceFiscale() string

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

func (*DatiAnagraficiCedentePrestatore) GetCodiceFiscaleOk

func (o *DatiAnagraficiCedentePrestatore) GetCodiceFiscaleOk() (*string, bool)

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

func (*DatiAnagraficiCedentePrestatore) GetDataIscrizioneAlbo

func (o *DatiAnagraficiCedentePrestatore) GetDataIscrizioneAlbo() time.Time

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

func (*DatiAnagraficiCedentePrestatore) GetDataIscrizioneAlboOk

func (o *DatiAnagraficiCedentePrestatore) GetDataIscrizioneAlboOk() (*time.Time, bool)

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

func (*DatiAnagraficiCedentePrestatore) GetIdFiscaleIva

func (o *DatiAnagraficiCedentePrestatore) GetIdFiscaleIva() IdFiscaleIVA

GetIdFiscaleIva returns the IdFiscaleIva field value if set, zero value otherwise.

func (*DatiAnagraficiCedentePrestatore) GetIdFiscaleIvaOk

func (o *DatiAnagraficiCedentePrestatore) GetIdFiscaleIvaOk() (*IdFiscaleIVA, bool)

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

func (*DatiAnagraficiCedentePrestatore) GetNumeroIscrizioneAlbo

func (o *DatiAnagraficiCedentePrestatore) GetNumeroIscrizioneAlbo() string

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

func (*DatiAnagraficiCedentePrestatore) GetNumeroIscrizioneAlboOk

func (o *DatiAnagraficiCedentePrestatore) GetNumeroIscrizioneAlboOk() (*string, bool)

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

func (*DatiAnagraficiCedentePrestatore) GetProvinciaAlbo

func (o *DatiAnagraficiCedentePrestatore) GetProvinciaAlbo() string

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

func (*DatiAnagraficiCedentePrestatore) GetProvinciaAlboOk

func (o *DatiAnagraficiCedentePrestatore) GetProvinciaAlboOk() (*string, bool)

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

func (*DatiAnagraficiCedentePrestatore) GetRegimeFiscale

func (o *DatiAnagraficiCedentePrestatore) GetRegimeFiscale() string

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

func (*DatiAnagraficiCedentePrestatore) GetRegimeFiscaleOk

func (o *DatiAnagraficiCedentePrestatore) GetRegimeFiscaleOk() (*string, bool)

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

func (*DatiAnagraficiCedentePrestatore) HasAlboProfessionale

func (o *DatiAnagraficiCedentePrestatore) HasAlboProfessionale() bool

HasAlboProfessionale returns a boolean if a field has been set.

func (*DatiAnagraficiCedentePrestatore) HasAnagrafica

func (o *DatiAnagraficiCedentePrestatore) HasAnagrafica() bool

HasAnagrafica returns a boolean if a field has been set.

func (*DatiAnagraficiCedentePrestatore) HasCodiceFiscale

func (o *DatiAnagraficiCedentePrestatore) HasCodiceFiscale() bool

HasCodiceFiscale returns a boolean if a field has been set.

func (*DatiAnagraficiCedentePrestatore) HasDataIscrizioneAlbo

func (o *DatiAnagraficiCedentePrestatore) HasDataIscrizioneAlbo() bool

HasDataIscrizioneAlbo returns a boolean if a field has been set.

func (*DatiAnagraficiCedentePrestatore) HasIdFiscaleIva

func (o *DatiAnagraficiCedentePrestatore) HasIdFiscaleIva() bool

HasIdFiscaleIva returns a boolean if a field has been set.

func (*DatiAnagraficiCedentePrestatore) HasNumeroIscrizioneAlbo

func (o *DatiAnagraficiCedentePrestatore) HasNumeroIscrizioneAlbo() bool

HasNumeroIscrizioneAlbo returns a boolean if a field has been set.

func (*DatiAnagraficiCedentePrestatore) HasProvinciaAlbo

func (o *DatiAnagraficiCedentePrestatore) HasProvinciaAlbo() bool

HasProvinciaAlbo returns a boolean if a field has been set.

func (*DatiAnagraficiCedentePrestatore) HasRegimeFiscale

func (o *DatiAnagraficiCedentePrestatore) HasRegimeFiscale() bool

HasRegimeFiscale returns a boolean if a field has been set.

func (DatiAnagraficiCedentePrestatore) MarshalJSON

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

func (*DatiAnagraficiCedentePrestatore) SetAlboProfessionale

func (o *DatiAnagraficiCedentePrestatore) SetAlboProfessionale(v string)

SetAlboProfessionale gets a reference to the given NullableString and assigns it to the AlboProfessionale field.

func (*DatiAnagraficiCedentePrestatore) SetAlboProfessionaleNil

func (o *DatiAnagraficiCedentePrestatore) SetAlboProfessionaleNil()

SetAlboProfessionaleNil sets the value for AlboProfessionale to be an explicit nil

func (*DatiAnagraficiCedentePrestatore) SetAnagrafica

func (o *DatiAnagraficiCedentePrestatore) SetAnagrafica(v Anagrafica)

SetAnagrafica gets a reference to the given Anagrafica and assigns it to the Anagrafica field.

func (*DatiAnagraficiCedentePrestatore) SetCodiceFiscale

func (o *DatiAnagraficiCedentePrestatore) SetCodiceFiscale(v string)

SetCodiceFiscale gets a reference to the given NullableString and assigns it to the CodiceFiscale field.

func (*DatiAnagraficiCedentePrestatore) SetCodiceFiscaleNil

func (o *DatiAnagraficiCedentePrestatore) SetCodiceFiscaleNil()

SetCodiceFiscaleNil sets the value for CodiceFiscale to be an explicit nil

func (*DatiAnagraficiCedentePrestatore) SetDataIscrizioneAlbo

func (o *DatiAnagraficiCedentePrestatore) SetDataIscrizioneAlbo(v time.Time)

SetDataIscrizioneAlbo gets a reference to the given NullableTime and assigns it to the DataIscrizioneAlbo field.

func (*DatiAnagraficiCedentePrestatore) SetDataIscrizioneAlboNil

func (o *DatiAnagraficiCedentePrestatore) SetDataIscrizioneAlboNil()

SetDataIscrizioneAlboNil sets the value for DataIscrizioneAlbo to be an explicit nil

func (*DatiAnagraficiCedentePrestatore) SetIdFiscaleIva

func (o *DatiAnagraficiCedentePrestatore) SetIdFiscaleIva(v IdFiscaleIVA)

SetIdFiscaleIva gets a reference to the given IdFiscaleIVA and assigns it to the IdFiscaleIva field.

func (*DatiAnagraficiCedentePrestatore) SetNumeroIscrizioneAlbo

func (o *DatiAnagraficiCedentePrestatore) SetNumeroIscrizioneAlbo(v string)

SetNumeroIscrizioneAlbo gets a reference to the given NullableString and assigns it to the NumeroIscrizioneAlbo field.

func (*DatiAnagraficiCedentePrestatore) SetNumeroIscrizioneAlboNil

func (o *DatiAnagraficiCedentePrestatore) SetNumeroIscrizioneAlboNil()

SetNumeroIscrizioneAlboNil sets the value for NumeroIscrizioneAlbo to be an explicit nil

func (*DatiAnagraficiCedentePrestatore) SetProvinciaAlbo

func (o *DatiAnagraficiCedentePrestatore) SetProvinciaAlbo(v string)

SetProvinciaAlbo gets a reference to the given NullableString and assigns it to the ProvinciaAlbo field.

func (*DatiAnagraficiCedentePrestatore) SetProvinciaAlboNil

func (o *DatiAnagraficiCedentePrestatore) SetProvinciaAlboNil()

SetProvinciaAlboNil sets the value for ProvinciaAlbo to be an explicit nil

func (*DatiAnagraficiCedentePrestatore) SetRegimeFiscale

func (o *DatiAnagraficiCedentePrestatore) SetRegimeFiscale(v string)

SetRegimeFiscale gets a reference to the given NullableString and assigns it to the RegimeFiscale field.

func (*DatiAnagraficiCedentePrestatore) SetRegimeFiscaleNil

func (o *DatiAnagraficiCedentePrestatore) SetRegimeFiscaleNil()

SetRegimeFiscaleNil sets the value for RegimeFiscale to be an explicit nil

func (DatiAnagraficiCedentePrestatore) ToMap

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

func (*DatiAnagraficiCedentePrestatore) UnsetAlboProfessionale

func (o *DatiAnagraficiCedentePrestatore) UnsetAlboProfessionale()

UnsetAlboProfessionale ensures that no value is present for AlboProfessionale, not even an explicit nil

func (*DatiAnagraficiCedentePrestatore) UnsetCodiceFiscale

func (o *DatiAnagraficiCedentePrestatore) UnsetCodiceFiscale()

UnsetCodiceFiscale ensures that no value is present for CodiceFiscale, not even an explicit nil

func (*DatiAnagraficiCedentePrestatore) UnsetDataIscrizioneAlbo

func (o *DatiAnagraficiCedentePrestatore) UnsetDataIscrizioneAlbo()

UnsetDataIscrizioneAlbo ensures that no value is present for DataIscrizioneAlbo, not even an explicit nil

func (*DatiAnagraficiCedentePrestatore) UnsetNumeroIscrizioneAlbo

func (o *DatiAnagraficiCedentePrestatore) UnsetNumeroIscrizioneAlbo()

UnsetNumeroIscrizioneAlbo ensures that no value is present for NumeroIscrizioneAlbo, not even an explicit nil

func (*DatiAnagraficiCedentePrestatore) UnsetProvinciaAlbo

func (o *DatiAnagraficiCedentePrestatore) UnsetProvinciaAlbo()

UnsetProvinciaAlbo ensures that no value is present for ProvinciaAlbo, not even an explicit nil

func (*DatiAnagraficiCedentePrestatore) UnsetRegimeFiscale

func (o *DatiAnagraficiCedentePrestatore) UnsetRegimeFiscale()

UnsetRegimeFiscale ensures that no value is present for RegimeFiscale, not even an explicit nil

type DatiAnagraficiCessionarioCommittente

type DatiAnagraficiCessionarioCommittente struct {
	IdFiscaleIva  *IdFiscaleIVA  `json:"id_fiscale_iva,omitempty"`
	CodiceFiscale NullableString `json:"codice_fiscale,omitempty"`
	Anagrafica    *Anagrafica    `json:"anagrafica,omitempty"`
}

DatiAnagraficiCessionarioCommittente struct for DatiAnagraficiCessionarioCommittente

func NewDatiAnagraficiCessionarioCommittente

func NewDatiAnagraficiCessionarioCommittente() *DatiAnagraficiCessionarioCommittente

NewDatiAnagraficiCessionarioCommittente instantiates a new DatiAnagraficiCessionarioCommittente 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 NewDatiAnagraficiCessionarioCommittenteWithDefaults

func NewDatiAnagraficiCessionarioCommittenteWithDefaults() *DatiAnagraficiCessionarioCommittente

NewDatiAnagraficiCessionarioCommittenteWithDefaults instantiates a new DatiAnagraficiCessionarioCommittente 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 (*DatiAnagraficiCessionarioCommittente) GetAnagrafica

GetAnagrafica returns the Anagrafica field value if set, zero value otherwise.

func (*DatiAnagraficiCessionarioCommittente) GetAnagraficaOk

func (o *DatiAnagraficiCessionarioCommittente) GetAnagraficaOk() (*Anagrafica, bool)

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

func (*DatiAnagraficiCessionarioCommittente) GetCodiceFiscale

func (o *DatiAnagraficiCessionarioCommittente) GetCodiceFiscale() string

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

func (*DatiAnagraficiCessionarioCommittente) GetCodiceFiscaleOk

func (o *DatiAnagraficiCessionarioCommittente) GetCodiceFiscaleOk() (*string, bool)

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

func (*DatiAnagraficiCessionarioCommittente) GetIdFiscaleIva

GetIdFiscaleIva returns the IdFiscaleIva field value if set, zero value otherwise.

func (*DatiAnagraficiCessionarioCommittente) GetIdFiscaleIvaOk

func (o *DatiAnagraficiCessionarioCommittente) GetIdFiscaleIvaOk() (*IdFiscaleIVA, bool)

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

func (*DatiAnagraficiCessionarioCommittente) HasAnagrafica

func (o *DatiAnagraficiCessionarioCommittente) HasAnagrafica() bool

HasAnagrafica returns a boolean if a field has been set.

func (*DatiAnagraficiCessionarioCommittente) HasCodiceFiscale

func (o *DatiAnagraficiCessionarioCommittente) HasCodiceFiscale() bool

HasCodiceFiscale returns a boolean if a field has been set.

func (*DatiAnagraficiCessionarioCommittente) HasIdFiscaleIva

func (o *DatiAnagraficiCessionarioCommittente) HasIdFiscaleIva() bool

HasIdFiscaleIva returns a boolean if a field has been set.

func (DatiAnagraficiCessionarioCommittente) MarshalJSON

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

func (*DatiAnagraficiCessionarioCommittente) SetAnagrafica

SetAnagrafica gets a reference to the given Anagrafica and assigns it to the Anagrafica field.

func (*DatiAnagraficiCessionarioCommittente) SetCodiceFiscale

func (o *DatiAnagraficiCessionarioCommittente) SetCodiceFiscale(v string)

SetCodiceFiscale gets a reference to the given NullableString and assigns it to the CodiceFiscale field.

func (*DatiAnagraficiCessionarioCommittente) SetCodiceFiscaleNil

func (o *DatiAnagraficiCessionarioCommittente) SetCodiceFiscaleNil()

SetCodiceFiscaleNil sets the value for CodiceFiscale to be an explicit nil

func (*DatiAnagraficiCessionarioCommittente) SetIdFiscaleIva

func (o *DatiAnagraficiCessionarioCommittente) SetIdFiscaleIva(v IdFiscaleIVA)

SetIdFiscaleIva gets a reference to the given IdFiscaleIVA and assigns it to the IdFiscaleIva field.

func (DatiAnagraficiCessionarioCommittente) ToMap

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

func (*DatiAnagraficiCessionarioCommittente) UnsetCodiceFiscale

func (o *DatiAnagraficiCessionarioCommittente) UnsetCodiceFiscale()

UnsetCodiceFiscale ensures that no value is present for CodiceFiscale, not even an explicit nil

type DatiAnagraficiVettore

type DatiAnagraficiVettore struct {
	IdFiscaleIva       *IdFiscaleIVA  `json:"id_fiscale_iva,omitempty"`
	CodiceFiscale      NullableString `json:"codice_fiscale,omitempty"`
	Anagrafica         *Anagrafica    `json:"anagrafica,omitempty"`
	NumeroLicenzaGuida NullableString `json:"numero_licenza_guida,omitempty"`
}

DatiAnagraficiVettore struct for DatiAnagraficiVettore

func NewDatiAnagraficiVettore

func NewDatiAnagraficiVettore() *DatiAnagraficiVettore

NewDatiAnagraficiVettore instantiates a new DatiAnagraficiVettore 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 NewDatiAnagraficiVettoreWithDefaults

func NewDatiAnagraficiVettoreWithDefaults() *DatiAnagraficiVettore

NewDatiAnagraficiVettoreWithDefaults instantiates a new DatiAnagraficiVettore 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 (*DatiAnagraficiVettore) GetAnagrafica

func (o *DatiAnagraficiVettore) GetAnagrafica() Anagrafica

GetAnagrafica returns the Anagrafica field value if set, zero value otherwise.

func (*DatiAnagraficiVettore) GetAnagraficaOk

func (o *DatiAnagraficiVettore) GetAnagraficaOk() (*Anagrafica, bool)

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

func (*DatiAnagraficiVettore) GetCodiceFiscale

func (o *DatiAnagraficiVettore) GetCodiceFiscale() string

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

func (*DatiAnagraficiVettore) GetCodiceFiscaleOk

func (o *DatiAnagraficiVettore) GetCodiceFiscaleOk() (*string, bool)

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

func (*DatiAnagraficiVettore) GetIdFiscaleIva

func (o *DatiAnagraficiVettore) GetIdFiscaleIva() IdFiscaleIVA

GetIdFiscaleIva returns the IdFiscaleIva field value if set, zero value otherwise.

func (*DatiAnagraficiVettore) GetIdFiscaleIvaOk

func (o *DatiAnagraficiVettore) GetIdFiscaleIvaOk() (*IdFiscaleIVA, bool)

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

func (*DatiAnagraficiVettore) GetNumeroLicenzaGuida

func (o *DatiAnagraficiVettore) GetNumeroLicenzaGuida() string

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

func (*DatiAnagraficiVettore) GetNumeroLicenzaGuidaOk

func (o *DatiAnagraficiVettore) GetNumeroLicenzaGuidaOk() (*string, bool)

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

func (*DatiAnagraficiVettore) HasAnagrafica

func (o *DatiAnagraficiVettore) HasAnagrafica() bool

HasAnagrafica returns a boolean if a field has been set.

func (*DatiAnagraficiVettore) HasCodiceFiscale

func (o *DatiAnagraficiVettore) HasCodiceFiscale() bool

HasCodiceFiscale returns a boolean if a field has been set.

func (*DatiAnagraficiVettore) HasIdFiscaleIva

func (o *DatiAnagraficiVettore) HasIdFiscaleIva() bool

HasIdFiscaleIva returns a boolean if a field has been set.

func (*DatiAnagraficiVettore) HasNumeroLicenzaGuida

func (o *DatiAnagraficiVettore) HasNumeroLicenzaGuida() bool

HasNumeroLicenzaGuida returns a boolean if a field has been set.

func (DatiAnagraficiVettore) MarshalJSON

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

func (*DatiAnagraficiVettore) SetAnagrafica

func (o *DatiAnagraficiVettore) SetAnagrafica(v Anagrafica)

SetAnagrafica gets a reference to the given Anagrafica and assigns it to the Anagrafica field.

func (*DatiAnagraficiVettore) SetCodiceFiscale

func (o *DatiAnagraficiVettore) SetCodiceFiscale(v string)

SetCodiceFiscale gets a reference to the given NullableString and assigns it to the CodiceFiscale field.

func (*DatiAnagraficiVettore) SetCodiceFiscaleNil

func (o *DatiAnagraficiVettore) SetCodiceFiscaleNil()

SetCodiceFiscaleNil sets the value for CodiceFiscale to be an explicit nil

func (*DatiAnagraficiVettore) SetIdFiscaleIva

func (o *DatiAnagraficiVettore) SetIdFiscaleIva(v IdFiscaleIVA)

SetIdFiscaleIva gets a reference to the given IdFiscaleIVA and assigns it to the IdFiscaleIva field.

func (*DatiAnagraficiVettore) SetNumeroLicenzaGuida

func (o *DatiAnagraficiVettore) SetNumeroLicenzaGuida(v string)

SetNumeroLicenzaGuida gets a reference to the given NullableString and assigns it to the NumeroLicenzaGuida field.

func (*DatiAnagraficiVettore) SetNumeroLicenzaGuidaNil

func (o *DatiAnagraficiVettore) SetNumeroLicenzaGuidaNil()

SetNumeroLicenzaGuidaNil sets the value for NumeroLicenzaGuida to be an explicit nil

func (DatiAnagraficiVettore) ToMap

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

func (*DatiAnagraficiVettore) UnsetCodiceFiscale

func (o *DatiAnagraficiVettore) UnsetCodiceFiscale()

UnsetCodiceFiscale ensures that no value is present for CodiceFiscale, not even an explicit nil

func (*DatiAnagraficiVettore) UnsetNumeroLicenzaGuida

func (o *DatiAnagraficiVettore) UnsetNumeroLicenzaGuida()

UnsetNumeroLicenzaGuida ensures that no value is present for NumeroLicenzaGuida, not even an explicit nil

type DatiBeniServizi

type DatiBeniServizi struct {
	DettaglioLinee []DettaglioLinee `json:"dettaglio_linee,omitempty"`
}

DatiBeniServizi struct for DatiBeniServizi

func NewDatiBeniServizi

func NewDatiBeniServizi() *DatiBeniServizi

NewDatiBeniServizi instantiates a new DatiBeniServizi 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 NewDatiBeniServiziWithDefaults

func NewDatiBeniServiziWithDefaults() *DatiBeniServizi

NewDatiBeniServiziWithDefaults instantiates a new DatiBeniServizi 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 (o *DatiBeniServizi) GetDatiRiepilogo() []DatiRiepilogo

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

func (*DatiBeniServizi) GetDatiRiepilogoOk

func (o *DatiBeniServizi) GetDatiRiepilogoOk() ([]DatiRiepilogo, bool)

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

func (*DatiBeniServizi) GetDettaglioLinee

func (o *DatiBeniServizi) GetDettaglioLinee() []DettaglioLinee

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

func (*DatiBeniServizi) GetDettaglioLineeOk

func (o *DatiBeniServizi) GetDettaglioLineeOk() ([]DettaglioLinee, bool)

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

func (o *DatiBeniServizi) HasDatiRiepilogo() bool

HasDatiRiepilogo returns a boolean if a field has been set.

func (*DatiBeniServizi) HasDettaglioLinee

func (o *DatiBeniServizi) HasDettaglioLinee() bool

HasDettaglioLinee returns a boolean if a field has been set.

func (DatiBeniServizi) MarshalJSON

func (o DatiBeniServizi) MarshalJSON() ([]byte, error)
func (o *DatiBeniServizi) SetDatiRiepilogo(v []DatiRiepilogo)

SetDatiRiepilogo gets a reference to the given []DatiRiepilogo and assigns it to the DatiRiepilogo field.

func (*DatiBeniServizi) SetDettaglioLinee

func (o *DatiBeniServizi) SetDettaglioLinee(v []DettaglioLinee)

SetDettaglioLinee gets a reference to the given []DettaglioLinee and assigns it to the DettaglioLinee field.

func (DatiBeniServizi) ToMap

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

type DatiBollo

type DatiBollo struct {
	BolloVirtuale NullableString  `json:"bollo_virtuale,omitempty"`
	ImportoBollo  NullableFloat64 `json:"importo_bollo,omitempty"`
}

DatiBollo struct for DatiBollo

func NewDatiBollo

func NewDatiBollo() *DatiBollo

NewDatiBollo instantiates a new DatiBollo 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 NewDatiBolloWithDefaults

func NewDatiBolloWithDefaults() *DatiBollo

NewDatiBolloWithDefaults instantiates a new DatiBollo 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 (*DatiBollo) GetBolloVirtuale

func (o *DatiBollo) GetBolloVirtuale() string

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

func (*DatiBollo) GetBolloVirtualeOk

func (o *DatiBollo) GetBolloVirtualeOk() (*string, bool)

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

func (*DatiBollo) GetImportoBollo

func (o *DatiBollo) GetImportoBollo() float64

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

func (*DatiBollo) GetImportoBolloOk

func (o *DatiBollo) GetImportoBolloOk() (*float64, bool)

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

func (*DatiBollo) HasBolloVirtuale

func (o *DatiBollo) HasBolloVirtuale() bool

HasBolloVirtuale returns a boolean if a field has been set.

func (*DatiBollo) HasImportoBollo

func (o *DatiBollo) HasImportoBollo() bool

HasImportoBollo returns a boolean if a field has been set.

func (DatiBollo) MarshalJSON

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

func (*DatiBollo) SetBolloVirtuale

func (o *DatiBollo) SetBolloVirtuale(v string)

SetBolloVirtuale gets a reference to the given NullableString and assigns it to the BolloVirtuale field.

func (*DatiBollo) SetBolloVirtualeNil

func (o *DatiBollo) SetBolloVirtualeNil()

SetBolloVirtualeNil sets the value for BolloVirtuale to be an explicit nil

func (*DatiBollo) SetImportoBollo

func (o *DatiBollo) SetImportoBollo(v float64)

SetImportoBollo gets a reference to the given NullableFloat64 and assigns it to the ImportoBollo field.

func (*DatiBollo) SetImportoBolloNil

func (o *DatiBollo) SetImportoBolloNil()

SetImportoBolloNil sets the value for ImportoBollo to be an explicit nil

func (DatiBollo) ToMap

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

func (*DatiBollo) UnsetBolloVirtuale

func (o *DatiBollo) UnsetBolloVirtuale()

UnsetBolloVirtuale ensures that no value is present for BolloVirtuale, not even an explicit nil

func (*DatiBollo) UnsetImportoBollo

func (o *DatiBollo) UnsetImportoBollo()

UnsetImportoBollo ensures that no value is present for ImportoBollo, not even an explicit nil

type DatiCassaPrevidenziale

type DatiCassaPrevidenziale struct {
	TipoCassa                  NullableString `json:"tipo_cassa,omitempty"`
	AlCassa                    *float64       `json:"al_cassa,omitempty"`
	ImportoContributoCassa     *float64       `json:"importo_contributo_cassa,omitempty"`
	ImponibileCassa            *float64       `json:"imponibile_cassa,omitempty"`
	AliquotaIva                *float64       `json:"aliquota_iva,omitempty"`
	Ritenuta                   NullableString `json:"ritenuta,omitempty"`
	Natura                     NullableString `json:"natura,omitempty"`
	RiferimentoAmministrazione NullableString `json:"riferimento_amministrazione,omitempty"`
}

DatiCassaPrevidenziale struct for DatiCassaPrevidenziale

func NewDatiCassaPrevidenziale

func NewDatiCassaPrevidenziale() *DatiCassaPrevidenziale

NewDatiCassaPrevidenziale instantiates a new DatiCassaPrevidenziale 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 NewDatiCassaPrevidenzialeWithDefaults

func NewDatiCassaPrevidenzialeWithDefaults() *DatiCassaPrevidenziale

NewDatiCassaPrevidenzialeWithDefaults instantiates a new DatiCassaPrevidenziale 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 (*DatiCassaPrevidenziale) GetAlCassa

func (o *DatiCassaPrevidenziale) GetAlCassa() float64

GetAlCassa returns the AlCassa field value if set, zero value otherwise.

func (*DatiCassaPrevidenziale) GetAlCassaOk

func (o *DatiCassaPrevidenziale) GetAlCassaOk() (*float64, bool)

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

func (*DatiCassaPrevidenziale) GetAliquotaIva

func (o *DatiCassaPrevidenziale) GetAliquotaIva() float64

GetAliquotaIva returns the AliquotaIva field value if set, zero value otherwise.

func (*DatiCassaPrevidenziale) GetAliquotaIvaOk

func (o *DatiCassaPrevidenziale) GetAliquotaIvaOk() (*float64, bool)

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

func (*DatiCassaPrevidenziale) GetImponibileCassa

func (o *DatiCassaPrevidenziale) GetImponibileCassa() float64

GetImponibileCassa returns the ImponibileCassa field value if set, zero value otherwise.

func (*DatiCassaPrevidenziale) GetImponibileCassaOk

func (o *DatiCassaPrevidenziale) GetImponibileCassaOk() (*float64, bool)

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

func (*DatiCassaPrevidenziale) GetImportoContributoCassa

func (o *DatiCassaPrevidenziale) GetImportoContributoCassa() float64

GetImportoContributoCassa returns the ImportoContributoCassa field value if set, zero value otherwise.

func (*DatiCassaPrevidenziale) GetImportoContributoCassaOk

func (o *DatiCassaPrevidenziale) GetImportoContributoCassaOk() (*float64, bool)

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

func (*DatiCassaPrevidenziale) GetNatura

func (o *DatiCassaPrevidenziale) GetNatura() string

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

func (*DatiCassaPrevidenziale) GetNaturaOk

func (o *DatiCassaPrevidenziale) GetNaturaOk() (*string, bool)

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

func (*DatiCassaPrevidenziale) GetRiferimentoAmministrazione

func (o *DatiCassaPrevidenziale) GetRiferimentoAmministrazione() string

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

func (*DatiCassaPrevidenziale) GetRiferimentoAmministrazioneOk

func (o *DatiCassaPrevidenziale) GetRiferimentoAmministrazioneOk() (*string, bool)

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

func (*DatiCassaPrevidenziale) GetRitenuta

func (o *DatiCassaPrevidenziale) GetRitenuta() string

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

func (*DatiCassaPrevidenziale) GetRitenutaOk

func (o *DatiCassaPrevidenziale) GetRitenutaOk() (*string, bool)

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

func (*DatiCassaPrevidenziale) GetTipoCassa

func (o *DatiCassaPrevidenziale) GetTipoCassa() string

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

func (*DatiCassaPrevidenziale) GetTipoCassaOk

func (o *DatiCassaPrevidenziale) GetTipoCassaOk() (*string, bool)

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

func (*DatiCassaPrevidenziale) HasAlCassa

func (o *DatiCassaPrevidenziale) HasAlCassa() bool

HasAlCassa returns a boolean if a field has been set.

func (*DatiCassaPrevidenziale) HasAliquotaIva

func (o *DatiCassaPrevidenziale) HasAliquotaIva() bool

HasAliquotaIva returns a boolean if a field has been set.

func (*DatiCassaPrevidenziale) HasImponibileCassa

func (o *DatiCassaPrevidenziale) HasImponibileCassa() bool

HasImponibileCassa returns a boolean if a field has been set.

func (*DatiCassaPrevidenziale) HasImportoContributoCassa

func (o *DatiCassaPrevidenziale) HasImportoContributoCassa() bool

HasImportoContributoCassa returns a boolean if a field has been set.

func (*DatiCassaPrevidenziale) HasNatura

func (o *DatiCassaPrevidenziale) HasNatura() bool

HasNatura returns a boolean if a field has been set.

func (*DatiCassaPrevidenziale) HasRiferimentoAmministrazione

func (o *DatiCassaPrevidenziale) HasRiferimentoAmministrazione() bool

HasRiferimentoAmministrazione returns a boolean if a field has been set.

func (*DatiCassaPrevidenziale) HasRitenuta

func (o *DatiCassaPrevidenziale) HasRitenuta() bool

HasRitenuta returns a boolean if a field has been set.

func (*DatiCassaPrevidenziale) HasTipoCassa

func (o *DatiCassaPrevidenziale) HasTipoCassa() bool

HasTipoCassa returns a boolean if a field has been set.

func (DatiCassaPrevidenziale) MarshalJSON

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

func (*DatiCassaPrevidenziale) SetAlCassa

func (o *DatiCassaPrevidenziale) SetAlCassa(v float64)

SetAlCassa gets a reference to the given float64 and assigns it to the AlCassa field.

func (*DatiCassaPrevidenziale) SetAliquotaIva

func (o *DatiCassaPrevidenziale) SetAliquotaIva(v float64)

SetAliquotaIva gets a reference to the given float64 and assigns it to the AliquotaIva field.

func (*DatiCassaPrevidenziale) SetImponibileCassa

func (o *DatiCassaPrevidenziale) SetImponibileCassa(v float64)

SetImponibileCassa gets a reference to the given float64 and assigns it to the ImponibileCassa field.

func (*DatiCassaPrevidenziale) SetImportoContributoCassa

func (o *DatiCassaPrevidenziale) SetImportoContributoCassa(v float64)

SetImportoContributoCassa gets a reference to the given float64 and assigns it to the ImportoContributoCassa field.

func (*DatiCassaPrevidenziale) SetNatura

func (o *DatiCassaPrevidenziale) SetNatura(v string)

SetNatura gets a reference to the given NullableString and assigns it to the Natura field.

func (*DatiCassaPrevidenziale) SetNaturaNil

func (o *DatiCassaPrevidenziale) SetNaturaNil()

SetNaturaNil sets the value for Natura to be an explicit nil

func (*DatiCassaPrevidenziale) SetRiferimentoAmministrazione

func (o *DatiCassaPrevidenziale) SetRiferimentoAmministrazione(v string)

SetRiferimentoAmministrazione gets a reference to the given NullableString and assigns it to the RiferimentoAmministrazione field.

func (*DatiCassaPrevidenziale) SetRiferimentoAmministrazioneNil

func (o *DatiCassaPrevidenziale) SetRiferimentoAmministrazioneNil()

SetRiferimentoAmministrazioneNil sets the value for RiferimentoAmministrazione to be an explicit nil

func (*DatiCassaPrevidenziale) SetRitenuta

func (o *DatiCassaPrevidenziale) SetRitenuta(v string)

SetRitenuta gets a reference to the given NullableString and assigns it to the Ritenuta field.

func (*DatiCassaPrevidenziale) SetRitenutaNil

func (o *DatiCassaPrevidenziale) SetRitenutaNil()

SetRitenutaNil sets the value for Ritenuta to be an explicit nil

func (*DatiCassaPrevidenziale) SetTipoCassa

func (o *DatiCassaPrevidenziale) SetTipoCassa(v string)

SetTipoCassa gets a reference to the given NullableString and assigns it to the TipoCassa field.

func (*DatiCassaPrevidenziale) SetTipoCassaNil

func (o *DatiCassaPrevidenziale) SetTipoCassaNil()

SetTipoCassaNil sets the value for TipoCassa to be an explicit nil

func (DatiCassaPrevidenziale) ToMap

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

func (*DatiCassaPrevidenziale) UnsetNatura

func (o *DatiCassaPrevidenziale) UnsetNatura()

UnsetNatura ensures that no value is present for Natura, not even an explicit nil

func (*DatiCassaPrevidenziale) UnsetRiferimentoAmministrazione

func (o *DatiCassaPrevidenziale) UnsetRiferimentoAmministrazione()

UnsetRiferimentoAmministrazione ensures that no value is present for RiferimentoAmministrazione, not even an explicit nil

func (*DatiCassaPrevidenziale) UnsetRitenuta

func (o *DatiCassaPrevidenziale) UnsetRitenuta()

UnsetRitenuta ensures that no value is present for Ritenuta, not even an explicit nil

func (*DatiCassaPrevidenziale) UnsetTipoCassa

func (o *DatiCassaPrevidenziale) UnsetTipoCassa()

UnsetTipoCassa ensures that no value is present for TipoCassa, not even an explicit nil

type DatiContratto

type DatiContratto struct {
	RiferimentoNumeroLinea    []int32        `json:"riferimento_numero_linea,omitempty"`
	IdDocumento               NullableString `json:"id_documento,omitempty"`
	Data                      NullableTime   `json:"data,omitempty"`
	NumItem                   NullableString `json:"num_item,omitempty"`
	CodiceCommessaConvenzione NullableString `json:"codice_commessa_convenzione,omitempty"`
	CodiceCup                 NullableString `json:"codice_cup,omitempty"`
	CodiceCig                 NullableString `json:"codice_cig,omitempty"`
}

DatiContratto struct for DatiContratto

func NewDatiContratto

func NewDatiContratto() *DatiContratto

NewDatiContratto instantiates a new DatiContratto 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 NewDatiContrattoWithDefaults

func NewDatiContrattoWithDefaults() *DatiContratto

NewDatiContrattoWithDefaults instantiates a new DatiContratto 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 (*DatiContratto) GetCodiceCig

func (o *DatiContratto) GetCodiceCig() string

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

func (*DatiContratto) GetCodiceCigOk

func (o *DatiContratto) GetCodiceCigOk() (*string, bool)

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

func (*DatiContratto) GetCodiceCommessaConvenzione

func (o *DatiContratto) GetCodiceCommessaConvenzione() string

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

func (*DatiContratto) GetCodiceCommessaConvenzioneOk

func (o *DatiContratto) GetCodiceCommessaConvenzioneOk() (*string, bool)

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

func (*DatiContratto) GetCodiceCup

func (o *DatiContratto) GetCodiceCup() string

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

func (*DatiContratto) GetCodiceCupOk

func (o *DatiContratto) GetCodiceCupOk() (*string, bool)

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

func (*DatiContratto) GetData

func (o *DatiContratto) GetData() time.Time

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

func (*DatiContratto) GetDataOk

func (o *DatiContratto) GetDataOk() (*time.Time, bool)

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

func (*DatiContratto) GetIdDocumento

func (o *DatiContratto) GetIdDocumento() string

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

func (*DatiContratto) GetIdDocumentoOk

func (o *DatiContratto) GetIdDocumentoOk() (*string, bool)

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

func (*DatiContratto) GetNumItem

func (o *DatiContratto) GetNumItem() string

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

func (*DatiContratto) GetNumItemOk

func (o *DatiContratto) GetNumItemOk() (*string, bool)

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

func (*DatiContratto) GetRiferimentoNumeroLinea

func (o *DatiContratto) GetRiferimentoNumeroLinea() []int32

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

func (*DatiContratto) GetRiferimentoNumeroLineaOk

func (o *DatiContratto) GetRiferimentoNumeroLineaOk() ([]int32, bool)

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

func (*DatiContratto) HasCodiceCig

func (o *DatiContratto) HasCodiceCig() bool

HasCodiceCig returns a boolean if a field has been set.

func (*DatiContratto) HasCodiceCommessaConvenzione

func (o *DatiContratto) HasCodiceCommessaConvenzione() bool

HasCodiceCommessaConvenzione returns a boolean if a field has been set.

func (*DatiContratto) HasCodiceCup

func (o *DatiContratto) HasCodiceCup() bool

HasCodiceCup returns a boolean if a field has been set.

func (*DatiContratto) HasData

func (o *DatiContratto) HasData() bool

HasData returns a boolean if a field has been set.

func (*DatiContratto) HasIdDocumento

func (o *DatiContratto) HasIdDocumento() bool

HasIdDocumento returns a boolean if a field has been set.

func (*DatiContratto) HasNumItem

func (o *DatiContratto) HasNumItem() bool

HasNumItem returns a boolean if a field has been set.

func (*DatiContratto) HasRiferimentoNumeroLinea

func (o *DatiContratto) HasRiferimentoNumeroLinea() bool

HasRiferimentoNumeroLinea returns a boolean if a field has been set.

func (DatiContratto) MarshalJSON

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

func (*DatiContratto) SetCodiceCig

func (o *DatiContratto) SetCodiceCig(v string)

SetCodiceCig gets a reference to the given NullableString and assigns it to the CodiceCig field.

func (*DatiContratto) SetCodiceCigNil

func (o *DatiContratto) SetCodiceCigNil()

SetCodiceCigNil sets the value for CodiceCig to be an explicit nil

func (*DatiContratto) SetCodiceCommessaConvenzione

func (o *DatiContratto) SetCodiceCommessaConvenzione(v string)

SetCodiceCommessaConvenzione gets a reference to the given NullableString and assigns it to the CodiceCommessaConvenzione field.

func (*DatiContratto) SetCodiceCommessaConvenzioneNil

func (o *DatiContratto) SetCodiceCommessaConvenzioneNil()

SetCodiceCommessaConvenzioneNil sets the value for CodiceCommessaConvenzione to be an explicit nil

func (*DatiContratto) SetCodiceCup

func (o *DatiContratto) SetCodiceCup(v string)

SetCodiceCup gets a reference to the given NullableString and assigns it to the CodiceCup field.

func (*DatiContratto) SetCodiceCupNil

func (o *DatiContratto) SetCodiceCupNil()

SetCodiceCupNil sets the value for CodiceCup to be an explicit nil

func (*DatiContratto) SetData

func (o *DatiContratto) SetData(v time.Time)

SetData gets a reference to the given NullableTime and assigns it to the Data field.

func (*DatiContratto) SetDataNil

func (o *DatiContratto) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*DatiContratto) SetIdDocumento

func (o *DatiContratto) SetIdDocumento(v string)

SetIdDocumento gets a reference to the given NullableString and assigns it to the IdDocumento field.

func (*DatiContratto) SetIdDocumentoNil

func (o *DatiContratto) SetIdDocumentoNil()

SetIdDocumentoNil sets the value for IdDocumento to be an explicit nil

func (*DatiContratto) SetNumItem

func (o *DatiContratto) SetNumItem(v string)

SetNumItem gets a reference to the given NullableString and assigns it to the NumItem field.

func (*DatiContratto) SetNumItemNil

func (o *DatiContratto) SetNumItemNil()

SetNumItemNil sets the value for NumItem to be an explicit nil

func (*DatiContratto) SetRiferimentoNumeroLinea

func (o *DatiContratto) SetRiferimentoNumeroLinea(v []int32)

SetRiferimentoNumeroLinea gets a reference to the given []int32 and assigns it to the RiferimentoNumeroLinea field.

func (DatiContratto) ToMap

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

func (*DatiContratto) UnsetCodiceCig

func (o *DatiContratto) UnsetCodiceCig()

UnsetCodiceCig ensures that no value is present for CodiceCig, not even an explicit nil

func (*DatiContratto) UnsetCodiceCommessaConvenzione

func (o *DatiContratto) UnsetCodiceCommessaConvenzione()

UnsetCodiceCommessaConvenzione ensures that no value is present for CodiceCommessaConvenzione, not even an explicit nil

func (*DatiContratto) UnsetCodiceCup

func (o *DatiContratto) UnsetCodiceCup()

UnsetCodiceCup ensures that no value is present for CodiceCup, not even an explicit nil

func (*DatiContratto) UnsetData

func (o *DatiContratto) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

func (*DatiContratto) UnsetIdDocumento

func (o *DatiContratto) UnsetIdDocumento()

UnsetIdDocumento ensures that no value is present for IdDocumento, not even an explicit nil

func (*DatiContratto) UnsetNumItem

func (o *DatiContratto) UnsetNumItem()

UnsetNumItem ensures that no value is present for NumItem, not even an explicit nil

type DatiConvenzione

type DatiConvenzione struct {
	RiferimentoNumeroLinea    []int32        `json:"riferimento_numero_linea,omitempty"`
	IdDocumento               NullableString `json:"id_documento,omitempty"`
	Data                      NullableTime   `json:"data,omitempty"`
	NumItem                   NullableString `json:"num_item,omitempty"`
	CodiceCommessaConvenzione NullableString `json:"codice_commessa_convenzione,omitempty"`
	CodiceCup                 NullableString `json:"codice_cup,omitempty"`
	CodiceCig                 NullableString `json:"codice_cig,omitempty"`
}

DatiConvenzione struct for DatiConvenzione

func NewDatiConvenzione

func NewDatiConvenzione() *DatiConvenzione

NewDatiConvenzione instantiates a new DatiConvenzione 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 NewDatiConvenzioneWithDefaults

func NewDatiConvenzioneWithDefaults() *DatiConvenzione

NewDatiConvenzioneWithDefaults instantiates a new DatiConvenzione 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 (*DatiConvenzione) GetCodiceCig

func (o *DatiConvenzione) GetCodiceCig() string

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

func (*DatiConvenzione) GetCodiceCigOk

func (o *DatiConvenzione) GetCodiceCigOk() (*string, bool)

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

func (*DatiConvenzione) GetCodiceCommessaConvenzione

func (o *DatiConvenzione) GetCodiceCommessaConvenzione() string

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

func (*DatiConvenzione) GetCodiceCommessaConvenzioneOk

func (o *DatiConvenzione) GetCodiceCommessaConvenzioneOk() (*string, bool)

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

func (*DatiConvenzione) GetCodiceCup

func (o *DatiConvenzione) GetCodiceCup() string

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

func (*DatiConvenzione) GetCodiceCupOk

func (o *DatiConvenzione) GetCodiceCupOk() (*string, bool)

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

func (*DatiConvenzione) GetData

func (o *DatiConvenzione) GetData() time.Time

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

func (*DatiConvenzione) GetDataOk

func (o *DatiConvenzione) GetDataOk() (*time.Time, bool)

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

func (*DatiConvenzione) GetIdDocumento

func (o *DatiConvenzione) GetIdDocumento() string

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

func (*DatiConvenzione) GetIdDocumentoOk

func (o *DatiConvenzione) GetIdDocumentoOk() (*string, bool)

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

func (*DatiConvenzione) GetNumItem

func (o *DatiConvenzione) GetNumItem() string

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

func (*DatiConvenzione) GetNumItemOk

func (o *DatiConvenzione) GetNumItemOk() (*string, bool)

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

func (*DatiConvenzione) GetRiferimentoNumeroLinea

func (o *DatiConvenzione) GetRiferimentoNumeroLinea() []int32

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

func (*DatiConvenzione) GetRiferimentoNumeroLineaOk

func (o *DatiConvenzione) GetRiferimentoNumeroLineaOk() ([]int32, bool)

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

func (*DatiConvenzione) HasCodiceCig

func (o *DatiConvenzione) HasCodiceCig() bool

HasCodiceCig returns a boolean if a field has been set.

func (*DatiConvenzione) HasCodiceCommessaConvenzione

func (o *DatiConvenzione) HasCodiceCommessaConvenzione() bool

HasCodiceCommessaConvenzione returns a boolean if a field has been set.

func (*DatiConvenzione) HasCodiceCup

func (o *DatiConvenzione) HasCodiceCup() bool

HasCodiceCup returns a boolean if a field has been set.

func (*DatiConvenzione) HasData

func (o *DatiConvenzione) HasData() bool

HasData returns a boolean if a field has been set.

func (*DatiConvenzione) HasIdDocumento

func (o *DatiConvenzione) HasIdDocumento() bool

HasIdDocumento returns a boolean if a field has been set.

func (*DatiConvenzione) HasNumItem

func (o *DatiConvenzione) HasNumItem() bool

HasNumItem returns a boolean if a field has been set.

func (*DatiConvenzione) HasRiferimentoNumeroLinea

func (o *DatiConvenzione) HasRiferimentoNumeroLinea() bool

HasRiferimentoNumeroLinea returns a boolean if a field has been set.

func (DatiConvenzione) MarshalJSON

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

func (*DatiConvenzione) SetCodiceCig

func (o *DatiConvenzione) SetCodiceCig(v string)

SetCodiceCig gets a reference to the given NullableString and assigns it to the CodiceCig field.

func (*DatiConvenzione) SetCodiceCigNil

func (o *DatiConvenzione) SetCodiceCigNil()

SetCodiceCigNil sets the value for CodiceCig to be an explicit nil

func (*DatiConvenzione) SetCodiceCommessaConvenzione

func (o *DatiConvenzione) SetCodiceCommessaConvenzione(v string)

SetCodiceCommessaConvenzione gets a reference to the given NullableString and assigns it to the CodiceCommessaConvenzione field.

func (*DatiConvenzione) SetCodiceCommessaConvenzioneNil

func (o *DatiConvenzione) SetCodiceCommessaConvenzioneNil()

SetCodiceCommessaConvenzioneNil sets the value for CodiceCommessaConvenzione to be an explicit nil

func (*DatiConvenzione) SetCodiceCup

func (o *DatiConvenzione) SetCodiceCup(v string)

SetCodiceCup gets a reference to the given NullableString and assigns it to the CodiceCup field.

func (*DatiConvenzione) SetCodiceCupNil

func (o *DatiConvenzione) SetCodiceCupNil()

SetCodiceCupNil sets the value for CodiceCup to be an explicit nil

func (*DatiConvenzione) SetData

func (o *DatiConvenzione) SetData(v time.Time)

SetData gets a reference to the given NullableTime and assigns it to the Data field.

func (*DatiConvenzione) SetDataNil

func (o *DatiConvenzione) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*DatiConvenzione) SetIdDocumento

func (o *DatiConvenzione) SetIdDocumento(v string)

SetIdDocumento gets a reference to the given NullableString and assigns it to the IdDocumento field.

func (*DatiConvenzione) SetIdDocumentoNil

func (o *DatiConvenzione) SetIdDocumentoNil()

SetIdDocumentoNil sets the value for IdDocumento to be an explicit nil

func (*DatiConvenzione) SetNumItem

func (o *DatiConvenzione) SetNumItem(v string)

SetNumItem gets a reference to the given NullableString and assigns it to the NumItem field.

func (*DatiConvenzione) SetNumItemNil

func (o *DatiConvenzione) SetNumItemNil()

SetNumItemNil sets the value for NumItem to be an explicit nil

func (*DatiConvenzione) SetRiferimentoNumeroLinea

func (o *DatiConvenzione) SetRiferimentoNumeroLinea(v []int32)

SetRiferimentoNumeroLinea gets a reference to the given []int32 and assigns it to the RiferimentoNumeroLinea field.

func (DatiConvenzione) ToMap

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

func (*DatiConvenzione) UnsetCodiceCig

func (o *DatiConvenzione) UnsetCodiceCig()

UnsetCodiceCig ensures that no value is present for CodiceCig, not even an explicit nil

func (*DatiConvenzione) UnsetCodiceCommessaConvenzione

func (o *DatiConvenzione) UnsetCodiceCommessaConvenzione()

UnsetCodiceCommessaConvenzione ensures that no value is present for CodiceCommessaConvenzione, not even an explicit nil

func (*DatiConvenzione) UnsetCodiceCup

func (o *DatiConvenzione) UnsetCodiceCup()

UnsetCodiceCup ensures that no value is present for CodiceCup, not even an explicit nil

func (*DatiConvenzione) UnsetData

func (o *DatiConvenzione) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

func (*DatiConvenzione) UnsetIdDocumento

func (o *DatiConvenzione) UnsetIdDocumento()

UnsetIdDocumento ensures that no value is present for IdDocumento, not even an explicit nil

func (*DatiConvenzione) UnsetNumItem

func (o *DatiConvenzione) UnsetNumItem()

UnsetNumItem ensures that no value is present for NumItem, not even an explicit nil

type DatiDDT

type DatiDDT struct {
	NumeroDdt              NullableString `json:"numero_ddt,omitempty"`
	DataDdt                *time.Time     `json:"data_ddt,omitempty"`
	RiferimentoNumeroLinea []int32        `json:"riferimento_numero_linea,omitempty"`
}

DatiDDT struct for DatiDDT

func NewDatiDDT

func NewDatiDDT() *DatiDDT

NewDatiDDT instantiates a new DatiDDT 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 NewDatiDDTWithDefaults

func NewDatiDDTWithDefaults() *DatiDDT

NewDatiDDTWithDefaults instantiates a new DatiDDT 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 (*DatiDDT) GetDataDdt

func (o *DatiDDT) GetDataDdt() time.Time

GetDataDdt returns the DataDdt field value if set, zero value otherwise.

func (*DatiDDT) GetDataDdtOk

func (o *DatiDDT) GetDataDdtOk() (*time.Time, bool)

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

func (*DatiDDT) GetNumeroDdt

func (o *DatiDDT) GetNumeroDdt() string

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

func (*DatiDDT) GetNumeroDdtOk

func (o *DatiDDT) GetNumeroDdtOk() (*string, bool)

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

func (*DatiDDT) GetRiferimentoNumeroLinea

func (o *DatiDDT) GetRiferimentoNumeroLinea() []int32

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

func (*DatiDDT) GetRiferimentoNumeroLineaOk

func (o *DatiDDT) GetRiferimentoNumeroLineaOk() ([]int32, bool)

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

func (*DatiDDT) HasDataDdt

func (o *DatiDDT) HasDataDdt() bool

HasDataDdt returns a boolean if a field has been set.

func (*DatiDDT) HasNumeroDdt

func (o *DatiDDT) HasNumeroDdt() bool

HasNumeroDdt returns a boolean if a field has been set.

func (*DatiDDT) HasRiferimentoNumeroLinea

func (o *DatiDDT) HasRiferimentoNumeroLinea() bool

HasRiferimentoNumeroLinea returns a boolean if a field has been set.

func (DatiDDT) MarshalJSON

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

func (*DatiDDT) SetDataDdt

func (o *DatiDDT) SetDataDdt(v time.Time)

SetDataDdt gets a reference to the given time.Time and assigns it to the DataDdt field.

func (*DatiDDT) SetNumeroDdt

func (o *DatiDDT) SetNumeroDdt(v string)

SetNumeroDdt gets a reference to the given NullableString and assigns it to the NumeroDdt field.

func (*DatiDDT) SetNumeroDdtNil

func (o *DatiDDT) SetNumeroDdtNil()

SetNumeroDdtNil sets the value for NumeroDdt to be an explicit nil

func (*DatiDDT) SetRiferimentoNumeroLinea

func (o *DatiDDT) SetRiferimentoNumeroLinea(v []int32)

SetRiferimentoNumeroLinea gets a reference to the given []int32 and assigns it to the RiferimentoNumeroLinea field.

func (DatiDDT) ToMap

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

func (*DatiDDT) UnsetNumeroDdt

func (o *DatiDDT) UnsetNumeroDdt()

UnsetNumeroDdt ensures that no value is present for NumeroDdt, not even an explicit nil

type DatiFattureCollegate

type DatiFattureCollegate struct {
	RiferimentoNumeroLinea    []int32        `json:"riferimento_numero_linea,omitempty"`
	IdDocumento               NullableString `json:"id_documento,omitempty"`
	Data                      NullableTime   `json:"data,omitempty"`
	NumItem                   NullableString `json:"num_item,omitempty"`
	CodiceCommessaConvenzione NullableString `json:"codice_commessa_convenzione,omitempty"`
	CodiceCup                 NullableString `json:"codice_cup,omitempty"`
	CodiceCig                 NullableString `json:"codice_cig,omitempty"`
}

DatiFattureCollegate struct for DatiFattureCollegate

func NewDatiFattureCollegate

func NewDatiFattureCollegate() *DatiFattureCollegate

NewDatiFattureCollegate instantiates a new DatiFattureCollegate 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 NewDatiFattureCollegateWithDefaults

func NewDatiFattureCollegateWithDefaults() *DatiFattureCollegate

NewDatiFattureCollegateWithDefaults instantiates a new DatiFattureCollegate 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 (*DatiFattureCollegate) GetCodiceCig

func (o *DatiFattureCollegate) GetCodiceCig() string

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

func (*DatiFattureCollegate) GetCodiceCigOk

func (o *DatiFattureCollegate) GetCodiceCigOk() (*string, bool)

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

func (*DatiFattureCollegate) GetCodiceCommessaConvenzione

func (o *DatiFattureCollegate) GetCodiceCommessaConvenzione() string

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

func (*DatiFattureCollegate) GetCodiceCommessaConvenzioneOk

func (o *DatiFattureCollegate) GetCodiceCommessaConvenzioneOk() (*string, bool)

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

func (*DatiFattureCollegate) GetCodiceCup

func (o *DatiFattureCollegate) GetCodiceCup() string

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

func (*DatiFattureCollegate) GetCodiceCupOk

func (o *DatiFattureCollegate) GetCodiceCupOk() (*string, bool)

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

func (*DatiFattureCollegate) GetData

func (o *DatiFattureCollegate) GetData() time.Time

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

func (*DatiFattureCollegate) GetDataOk

func (o *DatiFattureCollegate) GetDataOk() (*time.Time, bool)

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

func (*DatiFattureCollegate) GetIdDocumento

func (o *DatiFattureCollegate) GetIdDocumento() string

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

func (*DatiFattureCollegate) GetIdDocumentoOk

func (o *DatiFattureCollegate) GetIdDocumentoOk() (*string, bool)

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

func (*DatiFattureCollegate) GetNumItem

func (o *DatiFattureCollegate) GetNumItem() string

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

func (*DatiFattureCollegate) GetNumItemOk

func (o *DatiFattureCollegate) GetNumItemOk() (*string, bool)

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

func (*DatiFattureCollegate) GetRiferimentoNumeroLinea

func (o *DatiFattureCollegate) GetRiferimentoNumeroLinea() []int32

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

func (*DatiFattureCollegate) GetRiferimentoNumeroLineaOk

func (o *DatiFattureCollegate) GetRiferimentoNumeroLineaOk() ([]int32, bool)

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

func (*DatiFattureCollegate) HasCodiceCig

func (o *DatiFattureCollegate) HasCodiceCig() bool

HasCodiceCig returns a boolean if a field has been set.

func (*DatiFattureCollegate) HasCodiceCommessaConvenzione

func (o *DatiFattureCollegate) HasCodiceCommessaConvenzione() bool

HasCodiceCommessaConvenzione returns a boolean if a field has been set.

func (*DatiFattureCollegate) HasCodiceCup

func (o *DatiFattureCollegate) HasCodiceCup() bool

HasCodiceCup returns a boolean if a field has been set.

func (*DatiFattureCollegate) HasData

func (o *DatiFattureCollegate) HasData() bool

HasData returns a boolean if a field has been set.

func (*DatiFattureCollegate) HasIdDocumento

func (o *DatiFattureCollegate) HasIdDocumento() bool

HasIdDocumento returns a boolean if a field has been set.

func (*DatiFattureCollegate) HasNumItem

func (o *DatiFattureCollegate) HasNumItem() bool

HasNumItem returns a boolean if a field has been set.

func (*DatiFattureCollegate) HasRiferimentoNumeroLinea

func (o *DatiFattureCollegate) HasRiferimentoNumeroLinea() bool

HasRiferimentoNumeroLinea returns a boolean if a field has been set.

func (DatiFattureCollegate) MarshalJSON

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

func (*DatiFattureCollegate) SetCodiceCig

func (o *DatiFattureCollegate) SetCodiceCig(v string)

SetCodiceCig gets a reference to the given NullableString and assigns it to the CodiceCig field.

func (*DatiFattureCollegate) SetCodiceCigNil

func (o *DatiFattureCollegate) SetCodiceCigNil()

SetCodiceCigNil sets the value for CodiceCig to be an explicit nil

func (*DatiFattureCollegate) SetCodiceCommessaConvenzione

func (o *DatiFattureCollegate) SetCodiceCommessaConvenzione(v string)

SetCodiceCommessaConvenzione gets a reference to the given NullableString and assigns it to the CodiceCommessaConvenzione field.

func (*DatiFattureCollegate) SetCodiceCommessaConvenzioneNil

func (o *DatiFattureCollegate) SetCodiceCommessaConvenzioneNil()

SetCodiceCommessaConvenzioneNil sets the value for CodiceCommessaConvenzione to be an explicit nil

func (*DatiFattureCollegate) SetCodiceCup

func (o *DatiFattureCollegate) SetCodiceCup(v string)

SetCodiceCup gets a reference to the given NullableString and assigns it to the CodiceCup field.

func (*DatiFattureCollegate) SetCodiceCupNil

func (o *DatiFattureCollegate) SetCodiceCupNil()

SetCodiceCupNil sets the value for CodiceCup to be an explicit nil

func (*DatiFattureCollegate) SetData

func (o *DatiFattureCollegate) SetData(v time.Time)

SetData gets a reference to the given NullableTime and assigns it to the Data field.

func (*DatiFattureCollegate) SetDataNil

func (o *DatiFattureCollegate) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*DatiFattureCollegate) SetIdDocumento

func (o *DatiFattureCollegate) SetIdDocumento(v string)

SetIdDocumento gets a reference to the given NullableString and assigns it to the IdDocumento field.

func (*DatiFattureCollegate) SetIdDocumentoNil

func (o *DatiFattureCollegate) SetIdDocumentoNil()

SetIdDocumentoNil sets the value for IdDocumento to be an explicit nil

func (*DatiFattureCollegate) SetNumItem

func (o *DatiFattureCollegate) SetNumItem(v string)

SetNumItem gets a reference to the given NullableString and assigns it to the NumItem field.

func (*DatiFattureCollegate) SetNumItemNil

func (o *DatiFattureCollegate) SetNumItemNil()

SetNumItemNil sets the value for NumItem to be an explicit nil

func (*DatiFattureCollegate) SetRiferimentoNumeroLinea

func (o *DatiFattureCollegate) SetRiferimentoNumeroLinea(v []int32)

SetRiferimentoNumeroLinea gets a reference to the given []int32 and assigns it to the RiferimentoNumeroLinea field.

func (DatiFattureCollegate) ToMap

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

func (*DatiFattureCollegate) UnsetCodiceCig

func (o *DatiFattureCollegate) UnsetCodiceCig()

UnsetCodiceCig ensures that no value is present for CodiceCig, not even an explicit nil

func (*DatiFattureCollegate) UnsetCodiceCommessaConvenzione

func (o *DatiFattureCollegate) UnsetCodiceCommessaConvenzione()

UnsetCodiceCommessaConvenzione ensures that no value is present for CodiceCommessaConvenzione, not even an explicit nil

func (*DatiFattureCollegate) UnsetCodiceCup

func (o *DatiFattureCollegate) UnsetCodiceCup()

UnsetCodiceCup ensures that no value is present for CodiceCup, not even an explicit nil

func (*DatiFattureCollegate) UnsetData

func (o *DatiFattureCollegate) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

func (*DatiFattureCollegate) UnsetIdDocumento

func (o *DatiFattureCollegate) UnsetIdDocumento()

UnsetIdDocumento ensures that no value is present for IdDocumento, not even an explicit nil

func (*DatiFattureCollegate) UnsetNumItem

func (o *DatiFattureCollegate) UnsetNumItem()

UnsetNumItem ensures that no value is present for NumItem, not even an explicit nil

type DatiGenerali

type DatiGenerali struct {
	DatiGeneraliDocumento *DatiGeneraliDocumento `json:"dati_generali_documento,omitempty"`
	DatiOrdineAcquisto    []DatiOrdineAcquisto   `json:"dati_ordine_acquisto,omitempty"`
	DatiContratto         []DatiContratto        `json:"dati_contratto,omitempty"`
	DatiConvenzione       []DatiConvenzione      `json:"dati_convenzione,omitempty"`
	DatiRicezione         []DatiRicezione        `json:"dati_ricezione,omitempty"`
	DatiFattureCollegate  []DatiFattureCollegate `json:"dati_fatture_collegate,omitempty"`
	DatiSal               []DatiSAL              `json:"dati_sal,omitempty"`
	DatiDdt               []DatiDDT              `json:"dati_ddt,omitempty"`
	DatiTrasporto         *DatiTrasporto         `json:"dati_trasporto,omitempty"`
	FatturaPrincipale     *FatturaPrincipale     `json:"fattura_principale,omitempty"`
}

DatiGenerali struct for DatiGenerali

func NewDatiGenerali

func NewDatiGenerali() *DatiGenerali

NewDatiGenerali instantiates a new DatiGenerali 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 NewDatiGeneraliWithDefaults

func NewDatiGeneraliWithDefaults() *DatiGenerali

NewDatiGeneraliWithDefaults instantiates a new DatiGenerali 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 (*DatiGenerali) GetDatiContratto

func (o *DatiGenerali) GetDatiContratto() []DatiContratto

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

func (*DatiGenerali) GetDatiContrattoOk

func (o *DatiGenerali) GetDatiContrattoOk() ([]DatiContratto, bool)

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

func (*DatiGenerali) GetDatiConvenzione

func (o *DatiGenerali) GetDatiConvenzione() []DatiConvenzione

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

func (*DatiGenerali) GetDatiConvenzioneOk

func (o *DatiGenerali) GetDatiConvenzioneOk() ([]DatiConvenzione, bool)

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

func (*DatiGenerali) GetDatiDdt

func (o *DatiGenerali) GetDatiDdt() []DatiDDT

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

func (*DatiGenerali) GetDatiDdtOk

func (o *DatiGenerali) GetDatiDdtOk() ([]DatiDDT, bool)

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

func (*DatiGenerali) GetDatiFattureCollegate

func (o *DatiGenerali) GetDatiFattureCollegate() []DatiFattureCollegate

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

func (*DatiGenerali) GetDatiFattureCollegateOk

func (o *DatiGenerali) GetDatiFattureCollegateOk() ([]DatiFattureCollegate, bool)

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

func (*DatiGenerali) GetDatiGeneraliDocumento

func (o *DatiGenerali) GetDatiGeneraliDocumento() DatiGeneraliDocumento

GetDatiGeneraliDocumento returns the DatiGeneraliDocumento field value if set, zero value otherwise.

func (*DatiGenerali) GetDatiGeneraliDocumentoOk

func (o *DatiGenerali) GetDatiGeneraliDocumentoOk() (*DatiGeneraliDocumento, bool)

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

func (*DatiGenerali) GetDatiOrdineAcquisto

func (o *DatiGenerali) GetDatiOrdineAcquisto() []DatiOrdineAcquisto

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

func (*DatiGenerali) GetDatiOrdineAcquistoOk

func (o *DatiGenerali) GetDatiOrdineAcquistoOk() ([]DatiOrdineAcquisto, bool)

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

func (*DatiGenerali) GetDatiRicezione

func (o *DatiGenerali) GetDatiRicezione() []DatiRicezione

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

func (*DatiGenerali) GetDatiRicezioneOk

func (o *DatiGenerali) GetDatiRicezioneOk() ([]DatiRicezione, bool)

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

func (*DatiGenerali) GetDatiSal

func (o *DatiGenerali) GetDatiSal() []DatiSAL

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

func (*DatiGenerali) GetDatiSalOk

func (o *DatiGenerali) GetDatiSalOk() ([]DatiSAL, bool)

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

func (*DatiGenerali) GetDatiTrasporto

func (o *DatiGenerali) GetDatiTrasporto() DatiTrasporto

GetDatiTrasporto returns the DatiTrasporto field value if set, zero value otherwise.

func (*DatiGenerali) GetDatiTrasportoOk

func (o *DatiGenerali) GetDatiTrasportoOk() (*DatiTrasporto, bool)

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

func (*DatiGenerali) GetFatturaPrincipale

func (o *DatiGenerali) GetFatturaPrincipale() FatturaPrincipale

GetFatturaPrincipale returns the FatturaPrincipale field value if set, zero value otherwise.

func (*DatiGenerali) GetFatturaPrincipaleOk

func (o *DatiGenerali) GetFatturaPrincipaleOk() (*FatturaPrincipale, bool)

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

func (*DatiGenerali) HasDatiContratto

func (o *DatiGenerali) HasDatiContratto() bool

HasDatiContratto returns a boolean if a field has been set.

func (*DatiGenerali) HasDatiConvenzione

func (o *DatiGenerali) HasDatiConvenzione() bool

HasDatiConvenzione returns a boolean if a field has been set.

func (*DatiGenerali) HasDatiDdt

func (o *DatiGenerali) HasDatiDdt() bool

HasDatiDdt returns a boolean if a field has been set.

func (*DatiGenerali) HasDatiFattureCollegate

func (o *DatiGenerali) HasDatiFattureCollegate() bool

HasDatiFattureCollegate returns a boolean if a field has been set.

func (*DatiGenerali) HasDatiGeneraliDocumento

func (o *DatiGenerali) HasDatiGeneraliDocumento() bool

HasDatiGeneraliDocumento returns a boolean if a field has been set.

func (*DatiGenerali) HasDatiOrdineAcquisto

func (o *DatiGenerali) HasDatiOrdineAcquisto() bool

HasDatiOrdineAcquisto returns a boolean if a field has been set.

func (*DatiGenerali) HasDatiRicezione

func (o *DatiGenerali) HasDatiRicezione() bool

HasDatiRicezione returns a boolean if a field has been set.

func (*DatiGenerali) HasDatiSal

func (o *DatiGenerali) HasDatiSal() bool

HasDatiSal returns a boolean if a field has been set.

func (*DatiGenerali) HasDatiTrasporto

func (o *DatiGenerali) HasDatiTrasporto() bool

HasDatiTrasporto returns a boolean if a field has been set.

func (*DatiGenerali) HasFatturaPrincipale

func (o *DatiGenerali) HasFatturaPrincipale() bool

HasFatturaPrincipale returns a boolean if a field has been set.

func (DatiGenerali) MarshalJSON

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

func (*DatiGenerali) SetDatiContratto

func (o *DatiGenerali) SetDatiContratto(v []DatiContratto)

SetDatiContratto gets a reference to the given []DatiContratto and assigns it to the DatiContratto field.

func (*DatiGenerali) SetDatiConvenzione

func (o *DatiGenerali) SetDatiConvenzione(v []DatiConvenzione)

SetDatiConvenzione gets a reference to the given []DatiConvenzione and assigns it to the DatiConvenzione field.

func (*DatiGenerali) SetDatiDdt

func (o *DatiGenerali) SetDatiDdt(v []DatiDDT)

SetDatiDdt gets a reference to the given []DatiDDT and assigns it to the DatiDdt field.

func (*DatiGenerali) SetDatiFattureCollegate

func (o *DatiGenerali) SetDatiFattureCollegate(v []DatiFattureCollegate)

SetDatiFattureCollegate gets a reference to the given []DatiFattureCollegate and assigns it to the DatiFattureCollegate field.

func (*DatiGenerali) SetDatiGeneraliDocumento

func (o *DatiGenerali) SetDatiGeneraliDocumento(v DatiGeneraliDocumento)

SetDatiGeneraliDocumento gets a reference to the given DatiGeneraliDocumento and assigns it to the DatiGeneraliDocumento field.

func (*DatiGenerali) SetDatiOrdineAcquisto

func (o *DatiGenerali) SetDatiOrdineAcquisto(v []DatiOrdineAcquisto)

SetDatiOrdineAcquisto gets a reference to the given []DatiOrdineAcquisto and assigns it to the DatiOrdineAcquisto field.

func (*DatiGenerali) SetDatiRicezione

func (o *DatiGenerali) SetDatiRicezione(v []DatiRicezione)

SetDatiRicezione gets a reference to the given []DatiRicezione and assigns it to the DatiRicezione field.

func (*DatiGenerali) SetDatiSal

func (o *DatiGenerali) SetDatiSal(v []DatiSAL)

SetDatiSal gets a reference to the given []DatiSAL and assigns it to the DatiSal field.

func (*DatiGenerali) SetDatiTrasporto

func (o *DatiGenerali) SetDatiTrasporto(v DatiTrasporto)

SetDatiTrasporto gets a reference to the given DatiTrasporto and assigns it to the DatiTrasporto field.

func (*DatiGenerali) SetFatturaPrincipale

func (o *DatiGenerali) SetFatturaPrincipale(v FatturaPrincipale)

SetFatturaPrincipale gets a reference to the given FatturaPrincipale and assigns it to the FatturaPrincipale field.

func (DatiGenerali) ToMap

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

type DatiGeneraliDocumento

type DatiGeneraliDocumento struct {
	TipoDocumento          NullableString           `json:"tipo_documento,omitempty"`
	Divisa                 NullableString           `json:"divisa,omitempty"`
	Data                   *time.Time               `json:"data,omitempty"`
	Numero                 NullableString           `json:"numero,omitempty"`
	DatiRitenuta           []DatiRitenuta           `json:"dati_ritenuta,omitempty"`
	DatiBollo              *DatiBollo               `json:"dati_bollo,omitempty"`
	DatiCassaPrevidenziale []DatiCassaPrevidenziale `json:"dati_cassa_previdenziale,omitempty"`
	ScontoMaggiorazione    []ScontoMaggiorazione    `json:"sconto_maggiorazione,omitempty"`
	ImportoTotaleDocumento NullableFloat64          `json:"importo_totale_documento,omitempty"`
	Arrotondamento         NullableFloat64          `json:"arrotondamento,omitempty"`
	Causale                []string                 `json:"causale,omitempty"`
	Art73                  NullableString           `json:"art73,omitempty"`
}

DatiGeneraliDocumento struct for DatiGeneraliDocumento

func NewDatiGeneraliDocumento

func NewDatiGeneraliDocumento() *DatiGeneraliDocumento

NewDatiGeneraliDocumento instantiates a new DatiGeneraliDocumento 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 NewDatiGeneraliDocumentoWithDefaults

func NewDatiGeneraliDocumentoWithDefaults() *DatiGeneraliDocumento

NewDatiGeneraliDocumentoWithDefaults instantiates a new DatiGeneraliDocumento 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 (*DatiGeneraliDocumento) GetArrotondamento

func (o *DatiGeneraliDocumento) GetArrotondamento() float64

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

func (*DatiGeneraliDocumento) GetArrotondamentoOk

func (o *DatiGeneraliDocumento) GetArrotondamentoOk() (*float64, bool)

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

func (*DatiGeneraliDocumento) GetArt73

func (o *DatiGeneraliDocumento) GetArt73() string

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

func (*DatiGeneraliDocumento) GetArt73Ok

func (o *DatiGeneraliDocumento) GetArt73Ok() (*string, bool)

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

func (*DatiGeneraliDocumento) GetCausale

func (o *DatiGeneraliDocumento) GetCausale() []string

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

func (*DatiGeneraliDocumento) GetCausaleOk

func (o *DatiGeneraliDocumento) GetCausaleOk() ([]string, bool)

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

func (*DatiGeneraliDocumento) GetData

func (o *DatiGeneraliDocumento) GetData() time.Time

GetData returns the Data field value if set, zero value otherwise.

func (*DatiGeneraliDocumento) GetDataOk

func (o *DatiGeneraliDocumento) GetDataOk() (*time.Time, bool)

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

func (*DatiGeneraliDocumento) GetDatiBollo

func (o *DatiGeneraliDocumento) GetDatiBollo() DatiBollo

GetDatiBollo returns the DatiBollo field value if set, zero value otherwise.

func (*DatiGeneraliDocumento) GetDatiBolloOk

func (o *DatiGeneraliDocumento) GetDatiBolloOk() (*DatiBollo, bool)

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

func (*DatiGeneraliDocumento) GetDatiCassaPrevidenziale

func (o *DatiGeneraliDocumento) GetDatiCassaPrevidenziale() []DatiCassaPrevidenziale

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

func (*DatiGeneraliDocumento) GetDatiCassaPrevidenzialeOk

func (o *DatiGeneraliDocumento) GetDatiCassaPrevidenzialeOk() ([]DatiCassaPrevidenziale, bool)

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

func (*DatiGeneraliDocumento) GetDatiRitenuta

func (o *DatiGeneraliDocumento) GetDatiRitenuta() []DatiRitenuta

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

func (*DatiGeneraliDocumento) GetDatiRitenutaOk

func (o *DatiGeneraliDocumento) GetDatiRitenutaOk() ([]DatiRitenuta, bool)

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

func (*DatiGeneraliDocumento) GetDivisa

func (o *DatiGeneraliDocumento) GetDivisa() string

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

func (*DatiGeneraliDocumento) GetDivisaOk

func (o *DatiGeneraliDocumento) GetDivisaOk() (*string, bool)

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

func (*DatiGeneraliDocumento) GetImportoTotaleDocumento

func (o *DatiGeneraliDocumento) GetImportoTotaleDocumento() float64

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

func (*DatiGeneraliDocumento) GetImportoTotaleDocumentoOk

func (o *DatiGeneraliDocumento) GetImportoTotaleDocumentoOk() (*float64, bool)

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

func (*DatiGeneraliDocumento) GetNumero

func (o *DatiGeneraliDocumento) GetNumero() string

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

func (*DatiGeneraliDocumento) GetNumeroOk

func (o *DatiGeneraliDocumento) GetNumeroOk() (*string, bool)

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

func (*DatiGeneraliDocumento) GetScontoMaggiorazione

func (o *DatiGeneraliDocumento) GetScontoMaggiorazione() []ScontoMaggiorazione

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

func (*DatiGeneraliDocumento) GetScontoMaggiorazioneOk

func (o *DatiGeneraliDocumento) GetScontoMaggiorazioneOk() ([]ScontoMaggiorazione, bool)

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

func (*DatiGeneraliDocumento) GetTipoDocumento

func (o *DatiGeneraliDocumento) GetTipoDocumento() string

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

func (*DatiGeneraliDocumento) GetTipoDocumentoOk

func (o *DatiGeneraliDocumento) GetTipoDocumentoOk() (*string, bool)

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

func (*DatiGeneraliDocumento) HasArrotondamento

func (o *DatiGeneraliDocumento) HasArrotondamento() bool

HasArrotondamento returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasArt73

func (o *DatiGeneraliDocumento) HasArt73() bool

HasArt73 returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasCausale

func (o *DatiGeneraliDocumento) HasCausale() bool

HasCausale returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasData

func (o *DatiGeneraliDocumento) HasData() bool

HasData returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasDatiBollo

func (o *DatiGeneraliDocumento) HasDatiBollo() bool

HasDatiBollo returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasDatiCassaPrevidenziale

func (o *DatiGeneraliDocumento) HasDatiCassaPrevidenziale() bool

HasDatiCassaPrevidenziale returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasDatiRitenuta

func (o *DatiGeneraliDocumento) HasDatiRitenuta() bool

HasDatiRitenuta returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasDivisa

func (o *DatiGeneraliDocumento) HasDivisa() bool

HasDivisa returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasImportoTotaleDocumento

func (o *DatiGeneraliDocumento) HasImportoTotaleDocumento() bool

HasImportoTotaleDocumento returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasNumero

func (o *DatiGeneraliDocumento) HasNumero() bool

HasNumero returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasScontoMaggiorazione

func (o *DatiGeneraliDocumento) HasScontoMaggiorazione() bool

HasScontoMaggiorazione returns a boolean if a field has been set.

func (*DatiGeneraliDocumento) HasTipoDocumento

func (o *DatiGeneraliDocumento) HasTipoDocumento() bool

HasTipoDocumento returns a boolean if a field has been set.

func (DatiGeneraliDocumento) MarshalJSON

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

func (*DatiGeneraliDocumento) SetArrotondamento

func (o *DatiGeneraliDocumento) SetArrotondamento(v float64)

SetArrotondamento gets a reference to the given NullableFloat64 and assigns it to the Arrotondamento field.

func (*DatiGeneraliDocumento) SetArrotondamentoNil

func (o *DatiGeneraliDocumento) SetArrotondamentoNil()

SetArrotondamentoNil sets the value for Arrotondamento to be an explicit nil

func (*DatiGeneraliDocumento) SetArt73

func (o *DatiGeneraliDocumento) SetArt73(v string)

SetArt73 gets a reference to the given NullableString and assigns it to the Art73 field.

func (*DatiGeneraliDocumento) SetArt73Nil

func (o *DatiGeneraliDocumento) SetArt73Nil()

SetArt73Nil sets the value for Art73 to be an explicit nil

func (*DatiGeneraliDocumento) SetCausale

func (o *DatiGeneraliDocumento) SetCausale(v []string)

SetCausale gets a reference to the given []string and assigns it to the Causale field.

func (*DatiGeneraliDocumento) SetData

func (o *DatiGeneraliDocumento) SetData(v time.Time)

SetData gets a reference to the given time.Time and assigns it to the Data field.

func (*DatiGeneraliDocumento) SetDatiBollo

func (o *DatiGeneraliDocumento) SetDatiBollo(v DatiBollo)

SetDatiBollo gets a reference to the given DatiBollo and assigns it to the DatiBollo field.

func (*DatiGeneraliDocumento) SetDatiCassaPrevidenziale

func (o *DatiGeneraliDocumento) SetDatiCassaPrevidenziale(v []DatiCassaPrevidenziale)

SetDatiCassaPrevidenziale gets a reference to the given []DatiCassaPrevidenziale and assigns it to the DatiCassaPrevidenziale field.

func (*DatiGeneraliDocumento) SetDatiRitenuta

func (o *DatiGeneraliDocumento) SetDatiRitenuta(v []DatiRitenuta)

SetDatiRitenuta gets a reference to the given []DatiRitenuta and assigns it to the DatiRitenuta field.

func (*DatiGeneraliDocumento) SetDivisa

func (o *DatiGeneraliDocumento) SetDivisa(v string)

SetDivisa gets a reference to the given NullableString and assigns it to the Divisa field.

func (*DatiGeneraliDocumento) SetDivisaNil

func (o *DatiGeneraliDocumento) SetDivisaNil()

SetDivisaNil sets the value for Divisa to be an explicit nil

func (*DatiGeneraliDocumento) SetImportoTotaleDocumento

func (o *DatiGeneraliDocumento) SetImportoTotaleDocumento(v float64)

SetImportoTotaleDocumento gets a reference to the given NullableFloat64 and assigns it to the ImportoTotaleDocumento field.

func (*DatiGeneraliDocumento) SetImportoTotaleDocumentoNil

func (o *DatiGeneraliDocumento) SetImportoTotaleDocumentoNil()

SetImportoTotaleDocumentoNil sets the value for ImportoTotaleDocumento to be an explicit nil

func (*DatiGeneraliDocumento) SetNumero

func (o *DatiGeneraliDocumento) SetNumero(v string)

SetNumero gets a reference to the given NullableString and assigns it to the Numero field.

func (*DatiGeneraliDocumento) SetNumeroNil

func (o *DatiGeneraliDocumento) SetNumeroNil()

SetNumeroNil sets the value for Numero to be an explicit nil

func (*DatiGeneraliDocumento) SetScontoMaggiorazione

func (o *DatiGeneraliDocumento) SetScontoMaggiorazione(v []ScontoMaggiorazione)

SetScontoMaggiorazione gets a reference to the given []ScontoMaggiorazione and assigns it to the ScontoMaggiorazione field.

func (*DatiGeneraliDocumento) SetTipoDocumento

func (o *DatiGeneraliDocumento) SetTipoDocumento(v string)

SetTipoDocumento gets a reference to the given NullableString and assigns it to the TipoDocumento field.

func (*DatiGeneraliDocumento) SetTipoDocumentoNil

func (o *DatiGeneraliDocumento) SetTipoDocumentoNil()

SetTipoDocumentoNil sets the value for TipoDocumento to be an explicit nil

func (DatiGeneraliDocumento) ToMap

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

func (*DatiGeneraliDocumento) UnsetArrotondamento

func (o *DatiGeneraliDocumento) UnsetArrotondamento()

UnsetArrotondamento ensures that no value is present for Arrotondamento, not even an explicit nil

func (*DatiGeneraliDocumento) UnsetArt73

func (o *DatiGeneraliDocumento) UnsetArt73()

UnsetArt73 ensures that no value is present for Art73, not even an explicit nil

func (*DatiGeneraliDocumento) UnsetDivisa

func (o *DatiGeneraliDocumento) UnsetDivisa()

UnsetDivisa ensures that no value is present for Divisa, not even an explicit nil

func (*DatiGeneraliDocumento) UnsetImportoTotaleDocumento

func (o *DatiGeneraliDocumento) UnsetImportoTotaleDocumento()

UnsetImportoTotaleDocumento ensures that no value is present for ImportoTotaleDocumento, not even an explicit nil

func (*DatiGeneraliDocumento) UnsetNumero

func (o *DatiGeneraliDocumento) UnsetNumero()

UnsetNumero ensures that no value is present for Numero, not even an explicit nil

func (*DatiGeneraliDocumento) UnsetTipoDocumento

func (o *DatiGeneraliDocumento) UnsetTipoDocumento()

UnsetTipoDocumento ensures that no value is present for TipoDocumento, not even an explicit nil

type DatiOrdineAcquisto

type DatiOrdineAcquisto struct {
	RiferimentoNumeroLinea    []int32        `json:"riferimento_numero_linea,omitempty"`
	IdDocumento               NullableString `json:"id_documento,omitempty"`
	Data                      NullableTime   `json:"data,omitempty"`
	NumItem                   NullableString `json:"num_item,omitempty"`
	CodiceCommessaConvenzione NullableString `json:"codice_commessa_convenzione,omitempty"`
	CodiceCup                 NullableString `json:"codice_cup,omitempty"`
	CodiceCig                 NullableString `json:"codice_cig,omitempty"`
}

DatiOrdineAcquisto struct for DatiOrdineAcquisto

func NewDatiOrdineAcquisto

func NewDatiOrdineAcquisto() *DatiOrdineAcquisto

NewDatiOrdineAcquisto instantiates a new DatiOrdineAcquisto 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 NewDatiOrdineAcquistoWithDefaults

func NewDatiOrdineAcquistoWithDefaults() *DatiOrdineAcquisto

NewDatiOrdineAcquistoWithDefaults instantiates a new DatiOrdineAcquisto 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 (*DatiOrdineAcquisto) GetCodiceCig

func (o *DatiOrdineAcquisto) GetCodiceCig() string

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

func (*DatiOrdineAcquisto) GetCodiceCigOk

func (o *DatiOrdineAcquisto) GetCodiceCigOk() (*string, bool)

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

func (*DatiOrdineAcquisto) GetCodiceCommessaConvenzione

func (o *DatiOrdineAcquisto) GetCodiceCommessaConvenzione() string

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

func (*DatiOrdineAcquisto) GetCodiceCommessaConvenzioneOk

func (o *DatiOrdineAcquisto) GetCodiceCommessaConvenzioneOk() (*string, bool)

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

func (*DatiOrdineAcquisto) GetCodiceCup

func (o *DatiOrdineAcquisto) GetCodiceCup() string

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

func (*DatiOrdineAcquisto) GetCodiceCupOk

func (o *DatiOrdineAcquisto) GetCodiceCupOk() (*string, bool)

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

func (*DatiOrdineAcquisto) GetData

func (o *DatiOrdineAcquisto) GetData() time.Time

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

func (*DatiOrdineAcquisto) GetDataOk

func (o *DatiOrdineAcquisto) GetDataOk() (*time.Time, bool)

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

func (*DatiOrdineAcquisto) GetIdDocumento

func (o *DatiOrdineAcquisto) GetIdDocumento() string

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

func (*DatiOrdineAcquisto) GetIdDocumentoOk

func (o *DatiOrdineAcquisto) GetIdDocumentoOk() (*string, bool)

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

func (*DatiOrdineAcquisto) GetNumItem

func (o *DatiOrdineAcquisto) GetNumItem() string

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

func (*DatiOrdineAcquisto) GetNumItemOk

func (o *DatiOrdineAcquisto) GetNumItemOk() (*string, bool)

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

func (*DatiOrdineAcquisto) GetRiferimentoNumeroLinea

func (o *DatiOrdineAcquisto) GetRiferimentoNumeroLinea() []int32

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

func (*DatiOrdineAcquisto) GetRiferimentoNumeroLineaOk

func (o *DatiOrdineAcquisto) GetRiferimentoNumeroLineaOk() ([]int32, bool)

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

func (*DatiOrdineAcquisto) HasCodiceCig

func (o *DatiOrdineAcquisto) HasCodiceCig() bool

HasCodiceCig returns a boolean if a field has been set.

func (*DatiOrdineAcquisto) HasCodiceCommessaConvenzione

func (o *DatiOrdineAcquisto) HasCodiceCommessaConvenzione() bool

HasCodiceCommessaConvenzione returns a boolean if a field has been set.

func (*DatiOrdineAcquisto) HasCodiceCup

func (o *DatiOrdineAcquisto) HasCodiceCup() bool

HasCodiceCup returns a boolean if a field has been set.

func (*DatiOrdineAcquisto) HasData

func (o *DatiOrdineAcquisto) HasData() bool

HasData returns a boolean if a field has been set.

func (*DatiOrdineAcquisto) HasIdDocumento

func (o *DatiOrdineAcquisto) HasIdDocumento() bool

HasIdDocumento returns a boolean if a field has been set.

func (*DatiOrdineAcquisto) HasNumItem

func (o *DatiOrdineAcquisto) HasNumItem() bool

HasNumItem returns a boolean if a field has been set.

func (*DatiOrdineAcquisto) HasRiferimentoNumeroLinea

func (o *DatiOrdineAcquisto) HasRiferimentoNumeroLinea() bool

HasRiferimentoNumeroLinea returns a boolean if a field has been set.

func (DatiOrdineAcquisto) MarshalJSON

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

func (*DatiOrdineAcquisto) SetCodiceCig

func (o *DatiOrdineAcquisto) SetCodiceCig(v string)

SetCodiceCig gets a reference to the given NullableString and assigns it to the CodiceCig field.

func (*DatiOrdineAcquisto) SetCodiceCigNil

func (o *DatiOrdineAcquisto) SetCodiceCigNil()

SetCodiceCigNil sets the value for CodiceCig to be an explicit nil

func (*DatiOrdineAcquisto) SetCodiceCommessaConvenzione

func (o *DatiOrdineAcquisto) SetCodiceCommessaConvenzione(v string)

SetCodiceCommessaConvenzione gets a reference to the given NullableString and assigns it to the CodiceCommessaConvenzione field.

func (*DatiOrdineAcquisto) SetCodiceCommessaConvenzioneNil

func (o *DatiOrdineAcquisto) SetCodiceCommessaConvenzioneNil()

SetCodiceCommessaConvenzioneNil sets the value for CodiceCommessaConvenzione to be an explicit nil

func (*DatiOrdineAcquisto) SetCodiceCup

func (o *DatiOrdineAcquisto) SetCodiceCup(v string)

SetCodiceCup gets a reference to the given NullableString and assigns it to the CodiceCup field.

func (*DatiOrdineAcquisto) SetCodiceCupNil

func (o *DatiOrdineAcquisto) SetCodiceCupNil()

SetCodiceCupNil sets the value for CodiceCup to be an explicit nil

func (*DatiOrdineAcquisto) SetData

func (o *DatiOrdineAcquisto) SetData(v time.Time)

SetData gets a reference to the given NullableTime and assigns it to the Data field.

func (*DatiOrdineAcquisto) SetDataNil

func (o *DatiOrdineAcquisto) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*DatiOrdineAcquisto) SetIdDocumento

func (o *DatiOrdineAcquisto) SetIdDocumento(v string)

SetIdDocumento gets a reference to the given NullableString and assigns it to the IdDocumento field.

func (*DatiOrdineAcquisto) SetIdDocumentoNil

func (o *DatiOrdineAcquisto) SetIdDocumentoNil()

SetIdDocumentoNil sets the value for IdDocumento to be an explicit nil

func (*DatiOrdineAcquisto) SetNumItem

func (o *DatiOrdineAcquisto) SetNumItem(v string)

SetNumItem gets a reference to the given NullableString and assigns it to the NumItem field.

func (*DatiOrdineAcquisto) SetNumItemNil

func (o *DatiOrdineAcquisto) SetNumItemNil()

SetNumItemNil sets the value for NumItem to be an explicit nil

func (*DatiOrdineAcquisto) SetRiferimentoNumeroLinea

func (o *DatiOrdineAcquisto) SetRiferimentoNumeroLinea(v []int32)

SetRiferimentoNumeroLinea gets a reference to the given []int32 and assigns it to the RiferimentoNumeroLinea field.

func (DatiOrdineAcquisto) ToMap

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

func (*DatiOrdineAcquisto) UnsetCodiceCig

func (o *DatiOrdineAcquisto) UnsetCodiceCig()

UnsetCodiceCig ensures that no value is present for CodiceCig, not even an explicit nil

func (*DatiOrdineAcquisto) UnsetCodiceCommessaConvenzione

func (o *DatiOrdineAcquisto) UnsetCodiceCommessaConvenzione()

UnsetCodiceCommessaConvenzione ensures that no value is present for CodiceCommessaConvenzione, not even an explicit nil

func (*DatiOrdineAcquisto) UnsetCodiceCup

func (o *DatiOrdineAcquisto) UnsetCodiceCup()

UnsetCodiceCup ensures that no value is present for CodiceCup, not even an explicit nil

func (*DatiOrdineAcquisto) UnsetData

func (o *DatiOrdineAcquisto) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

func (*DatiOrdineAcquisto) UnsetIdDocumento

func (o *DatiOrdineAcquisto) UnsetIdDocumento()

UnsetIdDocumento ensures that no value is present for IdDocumento, not even an explicit nil

func (*DatiOrdineAcquisto) UnsetNumItem

func (o *DatiOrdineAcquisto) UnsetNumItem()

UnsetNumItem ensures that no value is present for NumItem, not even an explicit nil

type DatiPagamento

type DatiPagamento struct {
	CondizioniPagamento NullableString       `json:"condizioni_pagamento,omitempty"`
	DettaglioPagamento  []DettaglioPagamento `json:"dettaglio_pagamento,omitempty"`
}

DatiPagamento struct for DatiPagamento

func NewDatiPagamento

func NewDatiPagamento() *DatiPagamento

NewDatiPagamento instantiates a new DatiPagamento 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 NewDatiPagamentoWithDefaults

func NewDatiPagamentoWithDefaults() *DatiPagamento

NewDatiPagamentoWithDefaults instantiates a new DatiPagamento 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 (*DatiPagamento) GetCondizioniPagamento

func (o *DatiPagamento) GetCondizioniPagamento() string

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

func (*DatiPagamento) GetCondizioniPagamentoOk

func (o *DatiPagamento) GetCondizioniPagamentoOk() (*string, bool)

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

func (*DatiPagamento) GetDettaglioPagamento

func (o *DatiPagamento) GetDettaglioPagamento() []DettaglioPagamento

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

func (*DatiPagamento) GetDettaglioPagamentoOk

func (o *DatiPagamento) GetDettaglioPagamentoOk() ([]DettaglioPagamento, bool)

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

func (*DatiPagamento) HasCondizioniPagamento

func (o *DatiPagamento) HasCondizioniPagamento() bool

HasCondizioniPagamento returns a boolean if a field has been set.

func (*DatiPagamento) HasDettaglioPagamento

func (o *DatiPagamento) HasDettaglioPagamento() bool

HasDettaglioPagamento returns a boolean if a field has been set.

func (DatiPagamento) MarshalJSON

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

func (*DatiPagamento) SetCondizioniPagamento

func (o *DatiPagamento) SetCondizioniPagamento(v string)

SetCondizioniPagamento gets a reference to the given NullableString and assigns it to the CondizioniPagamento field.

func (*DatiPagamento) SetCondizioniPagamentoNil

func (o *DatiPagamento) SetCondizioniPagamentoNil()

SetCondizioniPagamentoNil sets the value for CondizioniPagamento to be an explicit nil

func (*DatiPagamento) SetDettaglioPagamento

func (o *DatiPagamento) SetDettaglioPagamento(v []DettaglioPagamento)

SetDettaglioPagamento gets a reference to the given []DettaglioPagamento and assigns it to the DettaglioPagamento field.

func (DatiPagamento) ToMap

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

func (*DatiPagamento) UnsetCondizioniPagamento

func (o *DatiPagamento) UnsetCondizioniPagamento()

UnsetCondizioniPagamento ensures that no value is present for CondizioniPagamento, not even an explicit nil

type DatiRicezione

type DatiRicezione struct {
	RiferimentoNumeroLinea    []int32        `json:"riferimento_numero_linea,omitempty"`
	IdDocumento               NullableString `json:"id_documento,omitempty"`
	Data                      NullableTime   `json:"data,omitempty"`
	NumItem                   NullableString `json:"num_item,omitempty"`
	CodiceCommessaConvenzione NullableString `json:"codice_commessa_convenzione,omitempty"`
	CodiceCup                 NullableString `json:"codice_cup,omitempty"`
	CodiceCig                 NullableString `json:"codice_cig,omitempty"`
}

DatiRicezione struct for DatiRicezione

func NewDatiRicezione

func NewDatiRicezione() *DatiRicezione

NewDatiRicezione instantiates a new DatiRicezione 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 NewDatiRicezioneWithDefaults

func NewDatiRicezioneWithDefaults() *DatiRicezione

NewDatiRicezioneWithDefaults instantiates a new DatiRicezione 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 (*DatiRicezione) GetCodiceCig

func (o *DatiRicezione) GetCodiceCig() string

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

func (*DatiRicezione) GetCodiceCigOk

func (o *DatiRicezione) GetCodiceCigOk() (*string, bool)

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

func (*DatiRicezione) GetCodiceCommessaConvenzione

func (o *DatiRicezione) GetCodiceCommessaConvenzione() string

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

func (*DatiRicezione) GetCodiceCommessaConvenzioneOk

func (o *DatiRicezione) GetCodiceCommessaConvenzioneOk() (*string, bool)

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

func (*DatiRicezione) GetCodiceCup

func (o *DatiRicezione) GetCodiceCup() string

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

func (*DatiRicezione) GetCodiceCupOk

func (o *DatiRicezione) GetCodiceCupOk() (*string, bool)

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

func (*DatiRicezione) GetData

func (o *DatiRicezione) GetData() time.Time

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

func (*DatiRicezione) GetDataOk

func (o *DatiRicezione) GetDataOk() (*time.Time, bool)

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

func (*DatiRicezione) GetIdDocumento

func (o *DatiRicezione) GetIdDocumento() string

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

func (*DatiRicezione) GetIdDocumentoOk

func (o *DatiRicezione) GetIdDocumentoOk() (*string, bool)

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

func (*DatiRicezione) GetNumItem

func (o *DatiRicezione) GetNumItem() string

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

func (*DatiRicezione) GetNumItemOk

func (o *DatiRicezione) GetNumItemOk() (*string, bool)

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

func (*DatiRicezione) GetRiferimentoNumeroLinea

func (o *DatiRicezione) GetRiferimentoNumeroLinea() []int32

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

func (*DatiRicezione) GetRiferimentoNumeroLineaOk

func (o *DatiRicezione) GetRiferimentoNumeroLineaOk() ([]int32, bool)

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

func (*DatiRicezione) HasCodiceCig

func (o *DatiRicezione) HasCodiceCig() bool

HasCodiceCig returns a boolean if a field has been set.

func (*DatiRicezione) HasCodiceCommessaConvenzione

func (o *DatiRicezione) HasCodiceCommessaConvenzione() bool

HasCodiceCommessaConvenzione returns a boolean if a field has been set.

func (*DatiRicezione) HasCodiceCup

func (o *DatiRicezione) HasCodiceCup() bool

HasCodiceCup returns a boolean if a field has been set.

func (*DatiRicezione) HasData

func (o *DatiRicezione) HasData() bool

HasData returns a boolean if a field has been set.

func (*DatiRicezione) HasIdDocumento

func (o *DatiRicezione) HasIdDocumento() bool

HasIdDocumento returns a boolean if a field has been set.

func (*DatiRicezione) HasNumItem

func (o *DatiRicezione) HasNumItem() bool

HasNumItem returns a boolean if a field has been set.

func (*DatiRicezione) HasRiferimentoNumeroLinea

func (o *DatiRicezione) HasRiferimentoNumeroLinea() bool

HasRiferimentoNumeroLinea returns a boolean if a field has been set.

func (DatiRicezione) MarshalJSON

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

func (*DatiRicezione) SetCodiceCig

func (o *DatiRicezione) SetCodiceCig(v string)

SetCodiceCig gets a reference to the given NullableString and assigns it to the CodiceCig field.

func (*DatiRicezione) SetCodiceCigNil

func (o *DatiRicezione) SetCodiceCigNil()

SetCodiceCigNil sets the value for CodiceCig to be an explicit nil

func (*DatiRicezione) SetCodiceCommessaConvenzione

func (o *DatiRicezione) SetCodiceCommessaConvenzione(v string)

SetCodiceCommessaConvenzione gets a reference to the given NullableString and assigns it to the CodiceCommessaConvenzione field.

func (*DatiRicezione) SetCodiceCommessaConvenzioneNil

func (o *DatiRicezione) SetCodiceCommessaConvenzioneNil()

SetCodiceCommessaConvenzioneNil sets the value for CodiceCommessaConvenzione to be an explicit nil

func (*DatiRicezione) SetCodiceCup

func (o *DatiRicezione) SetCodiceCup(v string)

SetCodiceCup gets a reference to the given NullableString and assigns it to the CodiceCup field.

func (*DatiRicezione) SetCodiceCupNil

func (o *DatiRicezione) SetCodiceCupNil()

SetCodiceCupNil sets the value for CodiceCup to be an explicit nil

func (*DatiRicezione) SetData

func (o *DatiRicezione) SetData(v time.Time)

SetData gets a reference to the given NullableTime and assigns it to the Data field.

func (*DatiRicezione) SetDataNil

func (o *DatiRicezione) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*DatiRicezione) SetIdDocumento

func (o *DatiRicezione) SetIdDocumento(v string)

SetIdDocumento gets a reference to the given NullableString and assigns it to the IdDocumento field.

func (*DatiRicezione) SetIdDocumentoNil

func (o *DatiRicezione) SetIdDocumentoNil()

SetIdDocumentoNil sets the value for IdDocumento to be an explicit nil

func (*DatiRicezione) SetNumItem

func (o *DatiRicezione) SetNumItem(v string)

SetNumItem gets a reference to the given NullableString and assigns it to the NumItem field.

func (*DatiRicezione) SetNumItemNil

func (o *DatiRicezione) SetNumItemNil()

SetNumItemNil sets the value for NumItem to be an explicit nil

func (*DatiRicezione) SetRiferimentoNumeroLinea

func (o *DatiRicezione) SetRiferimentoNumeroLinea(v []int32)

SetRiferimentoNumeroLinea gets a reference to the given []int32 and assigns it to the RiferimentoNumeroLinea field.

func (DatiRicezione) ToMap

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

func (*DatiRicezione) UnsetCodiceCig

func (o *DatiRicezione) UnsetCodiceCig()

UnsetCodiceCig ensures that no value is present for CodiceCig, not even an explicit nil

func (*DatiRicezione) UnsetCodiceCommessaConvenzione

func (o *DatiRicezione) UnsetCodiceCommessaConvenzione()

UnsetCodiceCommessaConvenzione ensures that no value is present for CodiceCommessaConvenzione, not even an explicit nil

func (*DatiRicezione) UnsetCodiceCup

func (o *DatiRicezione) UnsetCodiceCup()

UnsetCodiceCup ensures that no value is present for CodiceCup, not even an explicit nil

func (*DatiRicezione) UnsetData

func (o *DatiRicezione) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

func (*DatiRicezione) UnsetIdDocumento

func (o *DatiRicezione) UnsetIdDocumento()

UnsetIdDocumento ensures that no value is present for IdDocumento, not even an explicit nil

func (*DatiRicezione) UnsetNumItem

func (o *DatiRicezione) UnsetNumItem()

UnsetNumItem ensures that no value is present for NumItem, not even an explicit nil

type DatiRiepilogo struct {
	AliquotaIva          *float64        `json:"aliquota_iva,omitempty"`
	Natura               NullableString  `json:"natura,omitempty"`
	SpeseAccessorie      NullableFloat64 `json:"spese_accessorie,omitempty"`
	Arrotondamento       NullableFloat64 `json:"arrotondamento,omitempty"`
	ImponibileImporto    *float64        `json:"imponibile_importo,omitempty"`
	Imposta              *float64        `json:"imposta,omitempty"`
	EsigibilitaIva       NullableString  `json:"esigibilita_iva,omitempty"`
	RiferimentoNormativo NullableString  `json:"riferimento_normativo,omitempty"`
}

DatiRiepilogo struct for DatiRiepilogo

func NewDatiRiepilogo() *DatiRiepilogo

NewDatiRiepilogo instantiates a new DatiRiepilogo 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 NewDatiRiepilogoWithDefaults

func NewDatiRiepilogoWithDefaults() *DatiRiepilogo

NewDatiRiepilogoWithDefaults instantiates a new DatiRiepilogo 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 (*DatiRiepilogo) GetAliquotaIva

func (o *DatiRiepilogo) GetAliquotaIva() float64

GetAliquotaIva returns the AliquotaIva field value if set, zero value otherwise.

func (*DatiRiepilogo) GetAliquotaIvaOk

func (o *DatiRiepilogo) GetAliquotaIvaOk() (*float64, bool)

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

func (*DatiRiepilogo) GetArrotondamento

func (o *DatiRiepilogo) GetArrotondamento() float64

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

func (*DatiRiepilogo) GetArrotondamentoOk

func (o *DatiRiepilogo) GetArrotondamentoOk() (*float64, bool)

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

func (*DatiRiepilogo) GetEsigibilitaIva

func (o *DatiRiepilogo) GetEsigibilitaIva() string

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

func (*DatiRiepilogo) GetEsigibilitaIvaOk

func (o *DatiRiepilogo) GetEsigibilitaIvaOk() (*string, bool)

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

func (*DatiRiepilogo) GetImponibileImporto

func (o *DatiRiepilogo) GetImponibileImporto() float64

GetImponibileImporto returns the ImponibileImporto field value if set, zero value otherwise.

func (*DatiRiepilogo) GetImponibileImportoOk

func (o *DatiRiepilogo) GetImponibileImportoOk() (*float64, bool)

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

func (*DatiRiepilogo) GetImposta

func (o *DatiRiepilogo) GetImposta() float64

GetImposta returns the Imposta field value if set, zero value otherwise.

func (*DatiRiepilogo) GetImpostaOk

func (o *DatiRiepilogo) GetImpostaOk() (*float64, bool)

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

func (*DatiRiepilogo) GetNatura

func (o *DatiRiepilogo) GetNatura() string

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

func (*DatiRiepilogo) GetNaturaOk

func (o *DatiRiepilogo) GetNaturaOk() (*string, bool)

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

func (*DatiRiepilogo) GetRiferimentoNormativo

func (o *DatiRiepilogo) GetRiferimentoNormativo() string

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

func (*DatiRiepilogo) GetRiferimentoNormativoOk

func (o *DatiRiepilogo) GetRiferimentoNormativoOk() (*string, bool)

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

func (*DatiRiepilogo) GetSpeseAccessorie

func (o *DatiRiepilogo) GetSpeseAccessorie() float64

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

func (*DatiRiepilogo) GetSpeseAccessorieOk

func (o *DatiRiepilogo) GetSpeseAccessorieOk() (*float64, bool)

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

func (*DatiRiepilogo) HasAliquotaIva

func (o *DatiRiepilogo) HasAliquotaIva() bool

HasAliquotaIva returns a boolean if a field has been set.

func (*DatiRiepilogo) HasArrotondamento

func (o *DatiRiepilogo) HasArrotondamento() bool

HasArrotondamento returns a boolean if a field has been set.

func (*DatiRiepilogo) HasEsigibilitaIva

func (o *DatiRiepilogo) HasEsigibilitaIva() bool

HasEsigibilitaIva returns a boolean if a field has been set.

func (*DatiRiepilogo) HasImponibileImporto

func (o *DatiRiepilogo) HasImponibileImporto() bool

HasImponibileImporto returns a boolean if a field has been set.

func (*DatiRiepilogo) HasImposta

func (o *DatiRiepilogo) HasImposta() bool

HasImposta returns a boolean if a field has been set.

func (*DatiRiepilogo) HasNatura

func (o *DatiRiepilogo) HasNatura() bool

HasNatura returns a boolean if a field has been set.

func (*DatiRiepilogo) HasRiferimentoNormativo

func (o *DatiRiepilogo) HasRiferimentoNormativo() bool

HasRiferimentoNormativo returns a boolean if a field has been set.

func (*DatiRiepilogo) HasSpeseAccessorie

func (o *DatiRiepilogo) HasSpeseAccessorie() bool

HasSpeseAccessorie returns a boolean if a field has been set.

func (DatiRiepilogo) MarshalJSON

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

func (*DatiRiepilogo) SetAliquotaIva

func (o *DatiRiepilogo) SetAliquotaIva(v float64)

SetAliquotaIva gets a reference to the given float64 and assigns it to the AliquotaIva field.

func (*DatiRiepilogo) SetArrotondamento

func (o *DatiRiepilogo) SetArrotondamento(v float64)

SetArrotondamento gets a reference to the given NullableFloat64 and assigns it to the Arrotondamento field.

func (*DatiRiepilogo) SetArrotondamentoNil

func (o *DatiRiepilogo) SetArrotondamentoNil()

SetArrotondamentoNil sets the value for Arrotondamento to be an explicit nil

func (*DatiRiepilogo) SetEsigibilitaIva

func (o *DatiRiepilogo) SetEsigibilitaIva(v string)

SetEsigibilitaIva gets a reference to the given NullableString and assigns it to the EsigibilitaIva field.

func (*DatiRiepilogo) SetEsigibilitaIvaNil

func (o *DatiRiepilogo) SetEsigibilitaIvaNil()

SetEsigibilitaIvaNil sets the value for EsigibilitaIva to be an explicit nil

func (*DatiRiepilogo) SetImponibileImporto

func (o *DatiRiepilogo) SetImponibileImporto(v float64)

SetImponibileImporto gets a reference to the given float64 and assigns it to the ImponibileImporto field.

func (*DatiRiepilogo) SetImposta

func (o *DatiRiepilogo) SetImposta(v float64)

SetImposta gets a reference to the given float64 and assigns it to the Imposta field.

func (*DatiRiepilogo) SetNatura

func (o *DatiRiepilogo) SetNatura(v string)

SetNatura gets a reference to the given NullableString and assigns it to the Natura field.

func (*DatiRiepilogo) SetNaturaNil

func (o *DatiRiepilogo) SetNaturaNil()

SetNaturaNil sets the value for Natura to be an explicit nil

func (*DatiRiepilogo) SetRiferimentoNormativo

func (o *DatiRiepilogo) SetRiferimentoNormativo(v string)

SetRiferimentoNormativo gets a reference to the given NullableString and assigns it to the RiferimentoNormativo field.

func (*DatiRiepilogo) SetRiferimentoNormativoNil

func (o *DatiRiepilogo) SetRiferimentoNormativoNil()

SetRiferimentoNormativoNil sets the value for RiferimentoNormativo to be an explicit nil

func (*DatiRiepilogo) SetSpeseAccessorie

func (o *DatiRiepilogo) SetSpeseAccessorie(v float64)

SetSpeseAccessorie gets a reference to the given NullableFloat64 and assigns it to the SpeseAccessorie field.

func (*DatiRiepilogo) SetSpeseAccessorieNil

func (o *DatiRiepilogo) SetSpeseAccessorieNil()

SetSpeseAccessorieNil sets the value for SpeseAccessorie to be an explicit nil

func (DatiRiepilogo) ToMap

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

func (*DatiRiepilogo) UnsetArrotondamento

func (o *DatiRiepilogo) UnsetArrotondamento()

UnsetArrotondamento ensures that no value is present for Arrotondamento, not even an explicit nil

func (*DatiRiepilogo) UnsetEsigibilitaIva

func (o *DatiRiepilogo) UnsetEsigibilitaIva()

UnsetEsigibilitaIva ensures that no value is present for EsigibilitaIva, not even an explicit nil

func (*DatiRiepilogo) UnsetNatura

func (o *DatiRiepilogo) UnsetNatura()

UnsetNatura ensures that no value is present for Natura, not even an explicit nil

func (*DatiRiepilogo) UnsetRiferimentoNormativo

func (o *DatiRiepilogo) UnsetRiferimentoNormativo()

UnsetRiferimentoNormativo ensures that no value is present for RiferimentoNormativo, not even an explicit nil

func (*DatiRiepilogo) UnsetSpeseAccessorie

func (o *DatiRiepilogo) UnsetSpeseAccessorie()

UnsetSpeseAccessorie ensures that no value is present for SpeseAccessorie, not even an explicit nil

type DatiRitenuta

type DatiRitenuta struct {
	TipoRitenuta     NullableString `json:"tipo_ritenuta,omitempty"`
	ImportoRitenuta  *float64       `json:"importo_ritenuta,omitempty"`
	AliquotaRitenuta *float64       `json:"aliquota_ritenuta,omitempty"`
	CausalePagamento NullableString `json:"causale_pagamento,omitempty"`
}

DatiRitenuta struct for DatiRitenuta

func NewDatiRitenuta

func NewDatiRitenuta() *DatiRitenuta

NewDatiRitenuta instantiates a new DatiRitenuta 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 NewDatiRitenutaWithDefaults

func NewDatiRitenutaWithDefaults() *DatiRitenuta

NewDatiRitenutaWithDefaults instantiates a new DatiRitenuta 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 (*DatiRitenuta) GetAliquotaRitenuta

func (o *DatiRitenuta) GetAliquotaRitenuta() float64

GetAliquotaRitenuta returns the AliquotaRitenuta field value if set, zero value otherwise.

func (*DatiRitenuta) GetAliquotaRitenutaOk

func (o *DatiRitenuta) GetAliquotaRitenutaOk() (*float64, bool)

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

func (*DatiRitenuta) GetCausalePagamento

func (o *DatiRitenuta) GetCausalePagamento() string

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

func (*DatiRitenuta) GetCausalePagamentoOk

func (o *DatiRitenuta) GetCausalePagamentoOk() (*string, bool)

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

func (*DatiRitenuta) GetImportoRitenuta

func (o *DatiRitenuta) GetImportoRitenuta() float64

GetImportoRitenuta returns the ImportoRitenuta field value if set, zero value otherwise.

func (*DatiRitenuta) GetImportoRitenutaOk

func (o *DatiRitenuta) GetImportoRitenutaOk() (*float64, bool)

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

func (*DatiRitenuta) GetTipoRitenuta

func (o *DatiRitenuta) GetTipoRitenuta() string

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

func (*DatiRitenuta) GetTipoRitenutaOk

func (o *DatiRitenuta) GetTipoRitenutaOk() (*string, bool)

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

func (*DatiRitenuta) HasAliquotaRitenuta

func (o *DatiRitenuta) HasAliquotaRitenuta() bool

HasAliquotaRitenuta returns a boolean if a field has been set.

func (*DatiRitenuta) HasCausalePagamento

func (o *DatiRitenuta) HasCausalePagamento() bool

HasCausalePagamento returns a boolean if a field has been set.

func (*DatiRitenuta) HasImportoRitenuta

func (o *DatiRitenuta) HasImportoRitenuta() bool

HasImportoRitenuta returns a boolean if a field has been set.

func (*DatiRitenuta) HasTipoRitenuta

func (o *DatiRitenuta) HasTipoRitenuta() bool

HasTipoRitenuta returns a boolean if a field has been set.

func (DatiRitenuta) MarshalJSON

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

func (*DatiRitenuta) SetAliquotaRitenuta

func (o *DatiRitenuta) SetAliquotaRitenuta(v float64)

SetAliquotaRitenuta gets a reference to the given float64 and assigns it to the AliquotaRitenuta field.

func (*DatiRitenuta) SetCausalePagamento

func (o *DatiRitenuta) SetCausalePagamento(v string)

SetCausalePagamento gets a reference to the given NullableString and assigns it to the CausalePagamento field.

func (*DatiRitenuta) SetCausalePagamentoNil

func (o *DatiRitenuta) SetCausalePagamentoNil()

SetCausalePagamentoNil sets the value for CausalePagamento to be an explicit nil

func (*DatiRitenuta) SetImportoRitenuta

func (o *DatiRitenuta) SetImportoRitenuta(v float64)

SetImportoRitenuta gets a reference to the given float64 and assigns it to the ImportoRitenuta field.

func (*DatiRitenuta) SetTipoRitenuta

func (o *DatiRitenuta) SetTipoRitenuta(v string)

SetTipoRitenuta gets a reference to the given NullableString and assigns it to the TipoRitenuta field.

func (*DatiRitenuta) SetTipoRitenutaNil

func (o *DatiRitenuta) SetTipoRitenutaNil()

SetTipoRitenutaNil sets the value for TipoRitenuta to be an explicit nil

func (DatiRitenuta) ToMap

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

func (*DatiRitenuta) UnsetCausalePagamento

func (o *DatiRitenuta) UnsetCausalePagamento()

UnsetCausalePagamento ensures that no value is present for CausalePagamento, not even an explicit nil

func (*DatiRitenuta) UnsetTipoRitenuta

func (o *DatiRitenuta) UnsetTipoRitenuta()

UnsetTipoRitenuta ensures that no value is present for TipoRitenuta, not even an explicit nil

type DatiSAL

type DatiSAL struct {
	RiferimentoFase *int32 `json:"riferimento_fase,omitempty"`
}

DatiSAL struct for DatiSAL

func NewDatiSAL

func NewDatiSAL() *DatiSAL

NewDatiSAL instantiates a new DatiSAL 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 NewDatiSALWithDefaults

func NewDatiSALWithDefaults() *DatiSAL

NewDatiSALWithDefaults instantiates a new DatiSAL 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 (*DatiSAL) GetRiferimentoFase

func (o *DatiSAL) GetRiferimentoFase() int32

GetRiferimentoFase returns the RiferimentoFase field value if set, zero value otherwise.

func (*DatiSAL) GetRiferimentoFaseOk

func (o *DatiSAL) GetRiferimentoFaseOk() (*int32, bool)

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

func (*DatiSAL) HasRiferimentoFase

func (o *DatiSAL) HasRiferimentoFase() bool

HasRiferimentoFase returns a boolean if a field has been set.

func (DatiSAL) MarshalJSON

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

func (*DatiSAL) SetRiferimentoFase

func (o *DatiSAL) SetRiferimentoFase(v int32)

SetRiferimentoFase gets a reference to the given int32 and assigns it to the RiferimentoFase field.

func (DatiSAL) ToMap

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

type DatiTrasmissione

type DatiTrasmissione struct {
	IdTrasmittente       *IdTrasmittente       `json:"id_trasmittente,omitempty"`
	ProgressivoInvio     NullableString        `json:"progressivo_invio,omitempty"`
	FormatoTrasmissione  NullableString        `json:"formato_trasmissione,omitempty"`
	CodiceDestinatario   NullableString        `json:"codice_destinatario,omitempty"`
	ContattiTrasmittente *ContattiTrasmittente `json:"contatti_trasmittente,omitempty"`
	PecDestinatario      NullableString        `json:"pec_destinatario,omitempty"`
}

DatiTrasmissione struct for DatiTrasmissione

func NewDatiTrasmissione

func NewDatiTrasmissione() *DatiTrasmissione

NewDatiTrasmissione instantiates a new DatiTrasmissione 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 NewDatiTrasmissioneWithDefaults

func NewDatiTrasmissioneWithDefaults() *DatiTrasmissione

NewDatiTrasmissioneWithDefaults instantiates a new DatiTrasmissione 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 (*DatiTrasmissione) GetCodiceDestinatario

func (o *DatiTrasmissione) GetCodiceDestinatario() string

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

func (*DatiTrasmissione) GetCodiceDestinatarioOk

func (o *DatiTrasmissione) GetCodiceDestinatarioOk() (*string, bool)

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

func (*DatiTrasmissione) GetContattiTrasmittente

func (o *DatiTrasmissione) GetContattiTrasmittente() ContattiTrasmittente

GetContattiTrasmittente returns the ContattiTrasmittente field value if set, zero value otherwise.

func (*DatiTrasmissione) GetContattiTrasmittenteOk

func (o *DatiTrasmissione) GetContattiTrasmittenteOk() (*ContattiTrasmittente, bool)

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

func (*DatiTrasmissione) GetFormatoTrasmissione

func (o *DatiTrasmissione) GetFormatoTrasmissione() string

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

func (*DatiTrasmissione) GetFormatoTrasmissioneOk

func (o *DatiTrasmissione) GetFormatoTrasmissioneOk() (*string, bool)

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

func (*DatiTrasmissione) GetIdTrasmittente

func (o *DatiTrasmissione) GetIdTrasmittente() IdTrasmittente

GetIdTrasmittente returns the IdTrasmittente field value if set, zero value otherwise.

func (*DatiTrasmissione) GetIdTrasmittenteOk

func (o *DatiTrasmissione) GetIdTrasmittenteOk() (*IdTrasmittente, bool)

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

func (*DatiTrasmissione) GetPecDestinatario

func (o *DatiTrasmissione) GetPecDestinatario() string

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

func (*DatiTrasmissione) GetPecDestinatarioOk

func (o *DatiTrasmissione) GetPecDestinatarioOk() (*string, bool)

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

func (*DatiTrasmissione) GetProgressivoInvio

func (o *DatiTrasmissione) GetProgressivoInvio() string

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

func (*DatiTrasmissione) GetProgressivoInvioOk

func (o *DatiTrasmissione) GetProgressivoInvioOk() (*string, bool)

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

func (*DatiTrasmissione) HasCodiceDestinatario

func (o *DatiTrasmissione) HasCodiceDestinatario() bool

HasCodiceDestinatario returns a boolean if a field has been set.

func (*DatiTrasmissione) HasContattiTrasmittente

func (o *DatiTrasmissione) HasContattiTrasmittente() bool

HasContattiTrasmittente returns a boolean if a field has been set.

func (*DatiTrasmissione) HasFormatoTrasmissione

func (o *DatiTrasmissione) HasFormatoTrasmissione() bool

HasFormatoTrasmissione returns a boolean if a field has been set.

func (*DatiTrasmissione) HasIdTrasmittente

func (o *DatiTrasmissione) HasIdTrasmittente() bool

HasIdTrasmittente returns a boolean if a field has been set.

func (*DatiTrasmissione) HasPecDestinatario

func (o *DatiTrasmissione) HasPecDestinatario() bool

HasPecDestinatario returns a boolean if a field has been set.

func (*DatiTrasmissione) HasProgressivoInvio

func (o *DatiTrasmissione) HasProgressivoInvio() bool

HasProgressivoInvio returns a boolean if a field has been set.

func (DatiTrasmissione) MarshalJSON

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

func (*DatiTrasmissione) SetCodiceDestinatario

func (o *DatiTrasmissione) SetCodiceDestinatario(v string)

SetCodiceDestinatario gets a reference to the given NullableString and assigns it to the CodiceDestinatario field.

func (*DatiTrasmissione) SetCodiceDestinatarioNil

func (o *DatiTrasmissione) SetCodiceDestinatarioNil()

SetCodiceDestinatarioNil sets the value for CodiceDestinatario to be an explicit nil

func (*DatiTrasmissione) SetContattiTrasmittente

func (o *DatiTrasmissione) SetContattiTrasmittente(v ContattiTrasmittente)

SetContattiTrasmittente gets a reference to the given ContattiTrasmittente and assigns it to the ContattiTrasmittente field.

func (*DatiTrasmissione) SetFormatoTrasmissione

func (o *DatiTrasmissione) SetFormatoTrasmissione(v string)

SetFormatoTrasmissione gets a reference to the given NullableString and assigns it to the FormatoTrasmissione field.

func (*DatiTrasmissione) SetFormatoTrasmissioneNil

func (o *DatiTrasmissione) SetFormatoTrasmissioneNil()

SetFormatoTrasmissioneNil sets the value for FormatoTrasmissione to be an explicit nil

func (*DatiTrasmissione) SetIdTrasmittente

func (o *DatiTrasmissione) SetIdTrasmittente(v IdTrasmittente)

SetIdTrasmittente gets a reference to the given IdTrasmittente and assigns it to the IdTrasmittente field.

func (*DatiTrasmissione) SetPecDestinatario

func (o *DatiTrasmissione) SetPecDestinatario(v string)

SetPecDestinatario gets a reference to the given NullableString and assigns it to the PecDestinatario field.

func (*DatiTrasmissione) SetPecDestinatarioNil

func (o *DatiTrasmissione) SetPecDestinatarioNil()

SetPecDestinatarioNil sets the value for PecDestinatario to be an explicit nil

func (*DatiTrasmissione) SetProgressivoInvio

func (o *DatiTrasmissione) SetProgressivoInvio(v string)

SetProgressivoInvio gets a reference to the given NullableString and assigns it to the ProgressivoInvio field.

func (*DatiTrasmissione) SetProgressivoInvioNil

func (o *DatiTrasmissione) SetProgressivoInvioNil()

SetProgressivoInvioNil sets the value for ProgressivoInvio to be an explicit nil

func (DatiTrasmissione) ToMap

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

func (*DatiTrasmissione) UnsetCodiceDestinatario

func (o *DatiTrasmissione) UnsetCodiceDestinatario()

UnsetCodiceDestinatario ensures that no value is present for CodiceDestinatario, not even an explicit nil

func (*DatiTrasmissione) UnsetFormatoTrasmissione

func (o *DatiTrasmissione) UnsetFormatoTrasmissione()

UnsetFormatoTrasmissione ensures that no value is present for FormatoTrasmissione, not even an explicit nil

func (*DatiTrasmissione) UnsetPecDestinatario

func (o *DatiTrasmissione) UnsetPecDestinatario()

UnsetPecDestinatario ensures that no value is present for PecDestinatario, not even an explicit nil

func (*DatiTrasmissione) UnsetProgressivoInvio

func (o *DatiTrasmissione) UnsetProgressivoInvio()

UnsetProgressivoInvio ensures that no value is present for ProgressivoInvio, not even an explicit nil

type DatiTrasporto

type DatiTrasporto struct {
	DatiAnagraficiVettore *DatiAnagraficiVettore `json:"dati_anagrafici_vettore,omitempty"`
	MezzoTrasporto        NullableString         `json:"mezzo_trasporto,omitempty"`
	CausaleTrasporto      NullableString         `json:"causale_trasporto,omitempty"`
	NumeroColli           NullableInt32          `json:"numero_colli,omitempty"`
	Descrizione           NullableString         `json:"descrizione,omitempty"`
	UnitaMisuraPeso       NullableString         `json:"unita_misura_peso,omitempty"`
	PesoLordo             NullableFloat64        `json:"peso_lordo,omitempty"`
	PesoNetto             NullableFloat64        `json:"peso_netto,omitempty"`
	DataOraRitiro         NullableTime           `json:"data_ora_ritiro,omitempty"`
	DataInizioTrasporto   NullableTime           `json:"data_inizio_trasporto,omitempty"`
	TipoResa              NullableString         `json:"tipo_resa,omitempty"`
	IndirizzoResa         *IndirizzoResa         `json:"indirizzo_resa,omitempty"`
	DataOraConsegna       NullableTime           `json:"data_ora_consegna,omitempty"`
}

DatiTrasporto struct for DatiTrasporto

func NewDatiTrasporto

func NewDatiTrasporto() *DatiTrasporto

NewDatiTrasporto instantiates a new DatiTrasporto 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 NewDatiTrasportoWithDefaults

func NewDatiTrasportoWithDefaults() *DatiTrasporto

NewDatiTrasportoWithDefaults instantiates a new DatiTrasporto 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 (*DatiTrasporto) GetCausaleTrasporto

func (o *DatiTrasporto) GetCausaleTrasporto() string

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

func (*DatiTrasporto) GetCausaleTrasportoOk

func (o *DatiTrasporto) GetCausaleTrasportoOk() (*string, bool)

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

func (*DatiTrasporto) GetDataInizioTrasporto

func (o *DatiTrasporto) GetDataInizioTrasporto() time.Time

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

func (*DatiTrasporto) GetDataInizioTrasportoOk

func (o *DatiTrasporto) GetDataInizioTrasportoOk() (*time.Time, bool)

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

func (*DatiTrasporto) GetDataOraConsegna

func (o *DatiTrasporto) GetDataOraConsegna() time.Time

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

func (*DatiTrasporto) GetDataOraConsegnaOk

func (o *DatiTrasporto) GetDataOraConsegnaOk() (*time.Time, bool)

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

func (*DatiTrasporto) GetDataOraRitiro

func (o *DatiTrasporto) GetDataOraRitiro() time.Time

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

func (*DatiTrasporto) GetDataOraRitiroOk

func (o *DatiTrasporto) GetDataOraRitiroOk() (*time.Time, bool)

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

func (*DatiTrasporto) GetDatiAnagraficiVettore

func (o *DatiTrasporto) GetDatiAnagraficiVettore() DatiAnagraficiVettore

GetDatiAnagraficiVettore returns the DatiAnagraficiVettore field value if set, zero value otherwise.

func (*DatiTrasporto) GetDatiAnagraficiVettoreOk

func (o *DatiTrasporto) GetDatiAnagraficiVettoreOk() (*DatiAnagraficiVettore, bool)

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

func (*DatiTrasporto) GetDescrizione

func (o *DatiTrasporto) GetDescrizione() string

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

func (*DatiTrasporto) GetDescrizioneOk

func (o *DatiTrasporto) GetDescrizioneOk() (*string, bool)

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

func (*DatiTrasporto) GetIndirizzoResa

func (o *DatiTrasporto) GetIndirizzoResa() IndirizzoResa

GetIndirizzoResa returns the IndirizzoResa field value if set, zero value otherwise.

func (*DatiTrasporto) GetIndirizzoResaOk

func (o *DatiTrasporto) GetIndirizzoResaOk() (*IndirizzoResa, bool)

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

func (*DatiTrasporto) GetMezzoTrasporto

func (o *DatiTrasporto) GetMezzoTrasporto() string

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

func (*DatiTrasporto) GetMezzoTrasportoOk

func (o *DatiTrasporto) GetMezzoTrasportoOk() (*string, bool)

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

func (*DatiTrasporto) GetNumeroColli

func (o *DatiTrasporto) GetNumeroColli() int32

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

func (*DatiTrasporto) GetNumeroColliOk

func (o *DatiTrasporto) GetNumeroColliOk() (*int32, bool)

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

func (*DatiTrasporto) GetPesoLordo

func (o *DatiTrasporto) GetPesoLordo() float64

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

func (*DatiTrasporto) GetPesoLordoOk

func (o *DatiTrasporto) GetPesoLordoOk() (*float64, bool)

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

func (*DatiTrasporto) GetPesoNetto

func (o *DatiTrasporto) GetPesoNetto() float64

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

func (*DatiTrasporto) GetPesoNettoOk

func (o *DatiTrasporto) GetPesoNettoOk() (*float64, bool)

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

func (*DatiTrasporto) GetTipoResa

func (o *DatiTrasporto) GetTipoResa() string

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

func (*DatiTrasporto) GetTipoResaOk

func (o *DatiTrasporto) GetTipoResaOk() (*string, bool)

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

func (*DatiTrasporto) GetUnitaMisuraPeso

func (o *DatiTrasporto) GetUnitaMisuraPeso() string

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

func (*DatiTrasporto) GetUnitaMisuraPesoOk

func (o *DatiTrasporto) GetUnitaMisuraPesoOk() (*string, bool)

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

func (*DatiTrasporto) HasCausaleTrasporto

func (o *DatiTrasporto) HasCausaleTrasporto() bool

HasCausaleTrasporto returns a boolean if a field has been set.

func (*DatiTrasporto) HasDataInizioTrasporto

func (o *DatiTrasporto) HasDataInizioTrasporto() bool

HasDataInizioTrasporto returns a boolean if a field has been set.

func (*DatiTrasporto) HasDataOraConsegna

func (o *DatiTrasporto) HasDataOraConsegna() bool

HasDataOraConsegna returns a boolean if a field has been set.

func (*DatiTrasporto) HasDataOraRitiro

func (o *DatiTrasporto) HasDataOraRitiro() bool

HasDataOraRitiro returns a boolean if a field has been set.

func (*DatiTrasporto) HasDatiAnagraficiVettore

func (o *DatiTrasporto) HasDatiAnagraficiVettore() bool

HasDatiAnagraficiVettore returns a boolean if a field has been set.

func (*DatiTrasporto) HasDescrizione

func (o *DatiTrasporto) HasDescrizione() bool

HasDescrizione returns a boolean if a field has been set.

func (*DatiTrasporto) HasIndirizzoResa

func (o *DatiTrasporto) HasIndirizzoResa() bool

HasIndirizzoResa returns a boolean if a field has been set.

func (*DatiTrasporto) HasMezzoTrasporto

func (o *DatiTrasporto) HasMezzoTrasporto() bool

HasMezzoTrasporto returns a boolean if a field has been set.

func (*DatiTrasporto) HasNumeroColli

func (o *DatiTrasporto) HasNumeroColli() bool

HasNumeroColli returns a boolean if a field has been set.

func (*DatiTrasporto) HasPesoLordo

func (o *DatiTrasporto) HasPesoLordo() bool

HasPesoLordo returns a boolean if a field has been set.

func (*DatiTrasporto) HasPesoNetto

func (o *DatiTrasporto) HasPesoNetto() bool

HasPesoNetto returns a boolean if a field has been set.

func (*DatiTrasporto) HasTipoResa

func (o *DatiTrasporto) HasTipoResa() bool

HasTipoResa returns a boolean if a field has been set.

func (*DatiTrasporto) HasUnitaMisuraPeso

func (o *DatiTrasporto) HasUnitaMisuraPeso() bool

HasUnitaMisuraPeso returns a boolean if a field has been set.

func (DatiTrasporto) MarshalJSON

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

func (*DatiTrasporto) SetCausaleTrasporto

func (o *DatiTrasporto) SetCausaleTrasporto(v string)

SetCausaleTrasporto gets a reference to the given NullableString and assigns it to the CausaleTrasporto field.

func (*DatiTrasporto) SetCausaleTrasportoNil

func (o *DatiTrasporto) SetCausaleTrasportoNil()

SetCausaleTrasportoNil sets the value for CausaleTrasporto to be an explicit nil

func (*DatiTrasporto) SetDataInizioTrasporto

func (o *DatiTrasporto) SetDataInizioTrasporto(v time.Time)

SetDataInizioTrasporto gets a reference to the given NullableTime and assigns it to the DataInizioTrasporto field.

func (*DatiTrasporto) SetDataInizioTrasportoNil

func (o *DatiTrasporto) SetDataInizioTrasportoNil()

SetDataInizioTrasportoNil sets the value for DataInizioTrasporto to be an explicit nil

func (*DatiTrasporto) SetDataOraConsegna

func (o *DatiTrasporto) SetDataOraConsegna(v time.Time)

SetDataOraConsegna gets a reference to the given NullableTime and assigns it to the DataOraConsegna field.

func (*DatiTrasporto) SetDataOraConsegnaNil

func (o *DatiTrasporto) SetDataOraConsegnaNil()

SetDataOraConsegnaNil sets the value for DataOraConsegna to be an explicit nil

func (*DatiTrasporto) SetDataOraRitiro

func (o *DatiTrasporto) SetDataOraRitiro(v time.Time)

SetDataOraRitiro gets a reference to the given NullableTime and assigns it to the DataOraRitiro field.

func (*DatiTrasporto) SetDataOraRitiroNil

func (o *DatiTrasporto) SetDataOraRitiroNil()

SetDataOraRitiroNil sets the value for DataOraRitiro to be an explicit nil

func (*DatiTrasporto) SetDatiAnagraficiVettore

func (o *DatiTrasporto) SetDatiAnagraficiVettore(v DatiAnagraficiVettore)

SetDatiAnagraficiVettore gets a reference to the given DatiAnagraficiVettore and assigns it to the DatiAnagraficiVettore field.

func (*DatiTrasporto) SetDescrizione

func (o *DatiTrasporto) SetDescrizione(v string)

SetDescrizione gets a reference to the given NullableString and assigns it to the Descrizione field.

func (*DatiTrasporto) SetDescrizioneNil

func (o *DatiTrasporto) SetDescrizioneNil()

SetDescrizioneNil sets the value for Descrizione to be an explicit nil

func (*DatiTrasporto) SetIndirizzoResa

func (o *DatiTrasporto) SetIndirizzoResa(v IndirizzoResa)

SetIndirizzoResa gets a reference to the given IndirizzoResa and assigns it to the IndirizzoResa field.

func (*DatiTrasporto) SetMezzoTrasporto

func (o *DatiTrasporto) SetMezzoTrasporto(v string)

SetMezzoTrasporto gets a reference to the given NullableString and assigns it to the MezzoTrasporto field.

func (*DatiTrasporto) SetMezzoTrasportoNil

func (o *DatiTrasporto) SetMezzoTrasportoNil()

SetMezzoTrasportoNil sets the value for MezzoTrasporto to be an explicit nil

func (*DatiTrasporto) SetNumeroColli

func (o *DatiTrasporto) SetNumeroColli(v int32)

SetNumeroColli gets a reference to the given NullableInt32 and assigns it to the NumeroColli field.

func (*DatiTrasporto) SetNumeroColliNil

func (o *DatiTrasporto) SetNumeroColliNil()

SetNumeroColliNil sets the value for NumeroColli to be an explicit nil

func (*DatiTrasporto) SetPesoLordo

func (o *DatiTrasporto) SetPesoLordo(v float64)

SetPesoLordo gets a reference to the given NullableFloat64 and assigns it to the PesoLordo field.

func (*DatiTrasporto) SetPesoLordoNil

func (o *DatiTrasporto) SetPesoLordoNil()

SetPesoLordoNil sets the value for PesoLordo to be an explicit nil

func (*DatiTrasporto) SetPesoNetto

func (o *DatiTrasporto) SetPesoNetto(v float64)

SetPesoNetto gets a reference to the given NullableFloat64 and assigns it to the PesoNetto field.

func (*DatiTrasporto) SetPesoNettoNil

func (o *DatiTrasporto) SetPesoNettoNil()

SetPesoNettoNil sets the value for PesoNetto to be an explicit nil

func (*DatiTrasporto) SetTipoResa

func (o *DatiTrasporto) SetTipoResa(v string)

SetTipoResa gets a reference to the given NullableString and assigns it to the TipoResa field.

func (*DatiTrasporto) SetTipoResaNil

func (o *DatiTrasporto) SetTipoResaNil()

SetTipoResaNil sets the value for TipoResa to be an explicit nil

func (*DatiTrasporto) SetUnitaMisuraPeso

func (o *DatiTrasporto) SetUnitaMisuraPeso(v string)

SetUnitaMisuraPeso gets a reference to the given NullableString and assigns it to the UnitaMisuraPeso field.

func (*DatiTrasporto) SetUnitaMisuraPesoNil

func (o *DatiTrasporto) SetUnitaMisuraPesoNil()

SetUnitaMisuraPesoNil sets the value for UnitaMisuraPeso to be an explicit nil

func (DatiTrasporto) ToMap

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

func (*DatiTrasporto) UnsetCausaleTrasporto

func (o *DatiTrasporto) UnsetCausaleTrasporto()

UnsetCausaleTrasporto ensures that no value is present for CausaleTrasporto, not even an explicit nil

func (*DatiTrasporto) UnsetDataInizioTrasporto

func (o *DatiTrasporto) UnsetDataInizioTrasporto()

UnsetDataInizioTrasporto ensures that no value is present for DataInizioTrasporto, not even an explicit nil

func (*DatiTrasporto) UnsetDataOraConsegna

func (o *DatiTrasporto) UnsetDataOraConsegna()

UnsetDataOraConsegna ensures that no value is present for DataOraConsegna, not even an explicit nil

func (*DatiTrasporto) UnsetDataOraRitiro

func (o *DatiTrasporto) UnsetDataOraRitiro()

UnsetDataOraRitiro ensures that no value is present for DataOraRitiro, not even an explicit nil

func (*DatiTrasporto) UnsetDescrizione

func (o *DatiTrasporto) UnsetDescrizione()

UnsetDescrizione ensures that no value is present for Descrizione, not even an explicit nil

func (*DatiTrasporto) UnsetMezzoTrasporto

func (o *DatiTrasporto) UnsetMezzoTrasporto()

UnsetMezzoTrasporto ensures that no value is present for MezzoTrasporto, not even an explicit nil

func (*DatiTrasporto) UnsetNumeroColli

func (o *DatiTrasporto) UnsetNumeroColli()

UnsetNumeroColli ensures that no value is present for NumeroColli, not even an explicit nil

func (*DatiTrasporto) UnsetPesoLordo

func (o *DatiTrasporto) UnsetPesoLordo()

UnsetPesoLordo ensures that no value is present for PesoLordo, not even an explicit nil

func (*DatiTrasporto) UnsetPesoNetto

func (o *DatiTrasporto) UnsetPesoNetto()

UnsetPesoNetto ensures that no value is present for PesoNetto, not even an explicit nil

func (*DatiTrasporto) UnsetTipoResa

func (o *DatiTrasporto) UnsetTipoResa()

UnsetTipoResa ensures that no value is present for TipoResa, not even an explicit nil

func (*DatiTrasporto) UnsetUnitaMisuraPeso

func (o *DatiTrasporto) UnsetUnitaMisuraPeso()

UnsetUnitaMisuraPeso ensures that no value is present for UnitaMisuraPeso, not even an explicit nil

type DatiVeicoli

type DatiVeicoli struct {
	Data           NullableTime   `json:"data,omitempty"`
	TotalePercorso NullableString `json:"totale_percorso,omitempty"`
}

DatiVeicoli struct for DatiVeicoli

func NewDatiVeicoli

func NewDatiVeicoli() *DatiVeicoli

NewDatiVeicoli instantiates a new DatiVeicoli 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 NewDatiVeicoliWithDefaults

func NewDatiVeicoliWithDefaults() *DatiVeicoli

NewDatiVeicoliWithDefaults instantiates a new DatiVeicoli 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 (*DatiVeicoli) GetData

func (o *DatiVeicoli) GetData() time.Time

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

func (*DatiVeicoli) GetDataOk

func (o *DatiVeicoli) GetDataOk() (*time.Time, bool)

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

func (*DatiVeicoli) GetTotalePercorso

func (o *DatiVeicoli) GetTotalePercorso() string

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

func (*DatiVeicoli) GetTotalePercorsoOk

func (o *DatiVeicoli) GetTotalePercorsoOk() (*string, bool)

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

func (*DatiVeicoli) HasData

func (o *DatiVeicoli) HasData() bool

HasData returns a boolean if a field has been set.

func (*DatiVeicoli) HasTotalePercorso

func (o *DatiVeicoli) HasTotalePercorso() bool

HasTotalePercorso returns a boolean if a field has been set.

func (DatiVeicoli) MarshalJSON

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

func (*DatiVeicoli) SetData

func (o *DatiVeicoli) SetData(v time.Time)

SetData gets a reference to the given NullableTime and assigns it to the Data field.

func (*DatiVeicoli) SetDataNil

func (o *DatiVeicoli) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*DatiVeicoli) SetTotalePercorso

func (o *DatiVeicoli) SetTotalePercorso(v string)

SetTotalePercorso gets a reference to the given NullableString and assigns it to the TotalePercorso field.

func (*DatiVeicoli) SetTotalePercorsoNil

func (o *DatiVeicoli) SetTotalePercorsoNil()

SetTotalePercorsoNil sets the value for TotalePercorso to be an explicit nil

func (DatiVeicoli) ToMap

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

func (*DatiVeicoli) UnsetData

func (o *DatiVeicoli) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

func (*DatiVeicoli) UnsetTotalePercorso

func (o *DatiVeicoli) UnsetTotalePercorso()

UnsetTotalePercorso ensures that no value is present for TotalePercorso, not even an explicit nil

type DettaglioLinee

type DettaglioLinee struct {
	NumeroLinea                *int32                `json:"numero_linea,omitempty"`
	TipoCessionePrestazione    NullableString        `json:"tipo_cessione_prestazione,omitempty"`
	CodiceArticolo             []CodiceArticolo      `json:"codice_articolo,omitempty"`
	Descrizione                NullableString        `json:"descrizione,omitempty"`
	Quantita                   NullableFloat64       `json:"quantita,omitempty"`
	UnitaMisura                NullableString        `json:"unita_misura,omitempty"`
	DataInizioPeriodo          NullableTime          `json:"data_inizio_periodo,omitempty"`
	DataFinePeriodo            NullableTime          `json:"data_fine_periodo,omitempty"`
	PrezzoUnitario             *float64              `json:"prezzo_unitario,omitempty"`
	ScontoMaggiorazione        []ScontoMaggiorazione `json:"sconto_maggiorazione,omitempty"`
	PrezzoTotale               *float64              `json:"prezzo_totale,omitempty"`
	AliquotaIva                *float64              `json:"aliquota_iva,omitempty"`
	Ritenuta                   NullableString        `json:"ritenuta,omitempty"`
	Natura                     NullableString        `json:"natura,omitempty"`
	RiferimentoAmministrazione NullableString        `json:"riferimento_amministrazione,omitempty"`
	AltriDatiGestionali        []AltriDatiGestionali `json:"altri_dati_gestionali,omitempty"`
}

DettaglioLinee struct for DettaglioLinee

func NewDettaglioLinee

func NewDettaglioLinee() *DettaglioLinee

NewDettaglioLinee instantiates a new DettaglioLinee 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 NewDettaglioLineeWithDefaults

func NewDettaglioLineeWithDefaults() *DettaglioLinee

NewDettaglioLineeWithDefaults instantiates a new DettaglioLinee 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 (*DettaglioLinee) GetAliquotaIva

func (o *DettaglioLinee) GetAliquotaIva() float64

GetAliquotaIva returns the AliquotaIva field value if set, zero value otherwise.

func (*DettaglioLinee) GetAliquotaIvaOk

func (o *DettaglioLinee) GetAliquotaIvaOk() (*float64, bool)

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

func (*DettaglioLinee) GetAltriDatiGestionali

func (o *DettaglioLinee) GetAltriDatiGestionali() []AltriDatiGestionali

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

func (*DettaglioLinee) GetAltriDatiGestionaliOk

func (o *DettaglioLinee) GetAltriDatiGestionaliOk() ([]AltriDatiGestionali, bool)

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

func (*DettaglioLinee) GetCodiceArticolo

func (o *DettaglioLinee) GetCodiceArticolo() []CodiceArticolo

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

func (*DettaglioLinee) GetCodiceArticoloOk

func (o *DettaglioLinee) GetCodiceArticoloOk() ([]CodiceArticolo, bool)

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

func (*DettaglioLinee) GetDataFinePeriodo

func (o *DettaglioLinee) GetDataFinePeriodo() time.Time

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

func (*DettaglioLinee) GetDataFinePeriodoOk

func (o *DettaglioLinee) GetDataFinePeriodoOk() (*time.Time, bool)

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

func (*DettaglioLinee) GetDataInizioPeriodo

func (o *DettaglioLinee) GetDataInizioPeriodo() time.Time

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

func (*DettaglioLinee) GetDataInizioPeriodoOk

func (o *DettaglioLinee) GetDataInizioPeriodoOk() (*time.Time, bool)

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

func (*DettaglioLinee) GetDescrizione

func (o *DettaglioLinee) GetDescrizione() string

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

func (*DettaglioLinee) GetDescrizioneOk

func (o *DettaglioLinee) GetDescrizioneOk() (*string, bool)

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

func (*DettaglioLinee) GetNatura

func (o *DettaglioLinee) GetNatura() string

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

func (*DettaglioLinee) GetNaturaOk

func (o *DettaglioLinee) GetNaturaOk() (*string, bool)

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

func (*DettaglioLinee) GetNumeroLinea

func (o *DettaglioLinee) GetNumeroLinea() int32

GetNumeroLinea returns the NumeroLinea field value if set, zero value otherwise.

func (*DettaglioLinee) GetNumeroLineaOk

func (o *DettaglioLinee) GetNumeroLineaOk() (*int32, bool)

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

func (*DettaglioLinee) GetPrezzoTotale

func (o *DettaglioLinee) GetPrezzoTotale() float64

GetPrezzoTotale returns the PrezzoTotale field value if set, zero value otherwise.

func (*DettaglioLinee) GetPrezzoTotaleOk

func (o *DettaglioLinee) GetPrezzoTotaleOk() (*float64, bool)

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

func (*DettaglioLinee) GetPrezzoUnitario

func (o *DettaglioLinee) GetPrezzoUnitario() float64

GetPrezzoUnitario returns the PrezzoUnitario field value if set, zero value otherwise.

func (*DettaglioLinee) GetPrezzoUnitarioOk

func (o *DettaglioLinee) GetPrezzoUnitarioOk() (*float64, bool)

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

func (*DettaglioLinee) GetQuantita

func (o *DettaglioLinee) GetQuantita() float64

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

func (*DettaglioLinee) GetQuantitaOk

func (o *DettaglioLinee) GetQuantitaOk() (*float64, bool)

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

func (*DettaglioLinee) GetRiferimentoAmministrazione

func (o *DettaglioLinee) GetRiferimentoAmministrazione() string

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

func (*DettaglioLinee) GetRiferimentoAmministrazioneOk

func (o *DettaglioLinee) GetRiferimentoAmministrazioneOk() (*string, bool)

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

func (*DettaglioLinee) GetRitenuta

func (o *DettaglioLinee) GetRitenuta() string

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

func (*DettaglioLinee) GetRitenutaOk

func (o *DettaglioLinee) GetRitenutaOk() (*string, bool)

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

func (*DettaglioLinee) GetScontoMaggiorazione

func (o *DettaglioLinee) GetScontoMaggiorazione() []ScontoMaggiorazione

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

func (*DettaglioLinee) GetScontoMaggiorazioneOk

func (o *DettaglioLinee) GetScontoMaggiorazioneOk() ([]ScontoMaggiorazione, bool)

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

func (*DettaglioLinee) GetTipoCessionePrestazione

func (o *DettaglioLinee) GetTipoCessionePrestazione() string

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

func (*DettaglioLinee) GetTipoCessionePrestazioneOk

func (o *DettaglioLinee) GetTipoCessionePrestazioneOk() (*string, bool)

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

func (*DettaglioLinee) GetUnitaMisura

func (o *DettaglioLinee) GetUnitaMisura() string

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

func (*DettaglioLinee) GetUnitaMisuraOk

func (o *DettaglioLinee) GetUnitaMisuraOk() (*string, bool)

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

func (*DettaglioLinee) HasAliquotaIva

func (o *DettaglioLinee) HasAliquotaIva() bool

HasAliquotaIva returns a boolean if a field has been set.

func (*DettaglioLinee) HasAltriDatiGestionali

func (o *DettaglioLinee) HasAltriDatiGestionali() bool

HasAltriDatiGestionali returns a boolean if a field has been set.

func (*DettaglioLinee) HasCodiceArticolo

func (o *DettaglioLinee) HasCodiceArticolo() bool

HasCodiceArticolo returns a boolean if a field has been set.

func (*DettaglioLinee) HasDataFinePeriodo

func (o *DettaglioLinee) HasDataFinePeriodo() bool

HasDataFinePeriodo returns a boolean if a field has been set.

func (*DettaglioLinee) HasDataInizioPeriodo

func (o *DettaglioLinee) HasDataInizioPeriodo() bool

HasDataInizioPeriodo returns a boolean if a field has been set.

func (*DettaglioLinee) HasDescrizione

func (o *DettaglioLinee) HasDescrizione() bool

HasDescrizione returns a boolean if a field has been set.

func (*DettaglioLinee) HasNatura

func (o *DettaglioLinee) HasNatura() bool

HasNatura returns a boolean if a field has been set.

func (*DettaglioLinee) HasNumeroLinea

func (o *DettaglioLinee) HasNumeroLinea() bool

HasNumeroLinea returns a boolean if a field has been set.

func (*DettaglioLinee) HasPrezzoTotale

func (o *DettaglioLinee) HasPrezzoTotale() bool

HasPrezzoTotale returns a boolean if a field has been set.

func (*DettaglioLinee) HasPrezzoUnitario

func (o *DettaglioLinee) HasPrezzoUnitario() bool

HasPrezzoUnitario returns a boolean if a field has been set.

func (*DettaglioLinee) HasQuantita

func (o *DettaglioLinee) HasQuantita() bool

HasQuantita returns a boolean if a field has been set.

func (*DettaglioLinee) HasRiferimentoAmministrazione

func (o *DettaglioLinee) HasRiferimentoAmministrazione() bool

HasRiferimentoAmministrazione returns a boolean if a field has been set.

func (*DettaglioLinee) HasRitenuta

func (o *DettaglioLinee) HasRitenuta() bool

HasRitenuta returns a boolean if a field has been set.

func (*DettaglioLinee) HasScontoMaggiorazione

func (o *DettaglioLinee) HasScontoMaggiorazione() bool

HasScontoMaggiorazione returns a boolean if a field has been set.

func (*DettaglioLinee) HasTipoCessionePrestazione

func (o *DettaglioLinee) HasTipoCessionePrestazione() bool

HasTipoCessionePrestazione returns a boolean if a field has been set.

func (*DettaglioLinee) HasUnitaMisura

func (o *DettaglioLinee) HasUnitaMisura() bool

HasUnitaMisura returns a boolean if a field has been set.

func (DettaglioLinee) MarshalJSON

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

func (*DettaglioLinee) SetAliquotaIva

func (o *DettaglioLinee) SetAliquotaIva(v float64)

SetAliquotaIva gets a reference to the given float64 and assigns it to the AliquotaIva field.

func (*DettaglioLinee) SetAltriDatiGestionali

func (o *DettaglioLinee) SetAltriDatiGestionali(v []AltriDatiGestionali)

SetAltriDatiGestionali gets a reference to the given []AltriDatiGestionali and assigns it to the AltriDatiGestionali field.

func (*DettaglioLinee) SetCodiceArticolo

func (o *DettaglioLinee) SetCodiceArticolo(v []CodiceArticolo)

SetCodiceArticolo gets a reference to the given []CodiceArticolo and assigns it to the CodiceArticolo field.

func (*DettaglioLinee) SetDataFinePeriodo

func (o *DettaglioLinee) SetDataFinePeriodo(v time.Time)

SetDataFinePeriodo gets a reference to the given NullableTime and assigns it to the DataFinePeriodo field.

func (*DettaglioLinee) SetDataFinePeriodoNil

func (o *DettaglioLinee) SetDataFinePeriodoNil()

SetDataFinePeriodoNil sets the value for DataFinePeriodo to be an explicit nil

func (*DettaglioLinee) SetDataInizioPeriodo

func (o *DettaglioLinee) SetDataInizioPeriodo(v time.Time)

SetDataInizioPeriodo gets a reference to the given NullableTime and assigns it to the DataInizioPeriodo field.

func (*DettaglioLinee) SetDataInizioPeriodoNil

func (o *DettaglioLinee) SetDataInizioPeriodoNil()

SetDataInizioPeriodoNil sets the value for DataInizioPeriodo to be an explicit nil

func (*DettaglioLinee) SetDescrizione

func (o *DettaglioLinee) SetDescrizione(v string)

SetDescrizione gets a reference to the given NullableString and assigns it to the Descrizione field.

func (*DettaglioLinee) SetDescrizioneNil

func (o *DettaglioLinee) SetDescrizioneNil()

SetDescrizioneNil sets the value for Descrizione to be an explicit nil

func (*DettaglioLinee) SetNatura

func (o *DettaglioLinee) SetNatura(v string)

SetNatura gets a reference to the given NullableString and assigns it to the Natura field.

func (*DettaglioLinee) SetNaturaNil

func (o *DettaglioLinee) SetNaturaNil()

SetNaturaNil sets the value for Natura to be an explicit nil

func (*DettaglioLinee) SetNumeroLinea

func (o *DettaglioLinee) SetNumeroLinea(v int32)

SetNumeroLinea gets a reference to the given int32 and assigns it to the NumeroLinea field.

func (*DettaglioLinee) SetPrezzoTotale

func (o *DettaglioLinee) SetPrezzoTotale(v float64)

SetPrezzoTotale gets a reference to the given float64 and assigns it to the PrezzoTotale field.

func (*DettaglioLinee) SetPrezzoUnitario

func (o *DettaglioLinee) SetPrezzoUnitario(v float64)

SetPrezzoUnitario gets a reference to the given float64 and assigns it to the PrezzoUnitario field.

func (*DettaglioLinee) SetQuantita

func (o *DettaglioLinee) SetQuantita(v float64)

SetQuantita gets a reference to the given NullableFloat64 and assigns it to the Quantita field.

func (*DettaglioLinee) SetQuantitaNil

func (o *DettaglioLinee) SetQuantitaNil()

SetQuantitaNil sets the value for Quantita to be an explicit nil

func (*DettaglioLinee) SetRiferimentoAmministrazione

func (o *DettaglioLinee) SetRiferimentoAmministrazione(v string)

SetRiferimentoAmministrazione gets a reference to the given NullableString and assigns it to the RiferimentoAmministrazione field.

func (*DettaglioLinee) SetRiferimentoAmministrazioneNil

func (o *DettaglioLinee) SetRiferimentoAmministrazioneNil()

SetRiferimentoAmministrazioneNil sets the value for RiferimentoAmministrazione to be an explicit nil

func (*DettaglioLinee) SetRitenuta

func (o *DettaglioLinee) SetRitenuta(v string)

SetRitenuta gets a reference to the given NullableString and assigns it to the Ritenuta field.

func (*DettaglioLinee) SetRitenutaNil

func (o *DettaglioLinee) SetRitenutaNil()

SetRitenutaNil sets the value for Ritenuta to be an explicit nil

func (*DettaglioLinee) SetScontoMaggiorazione

func (o *DettaglioLinee) SetScontoMaggiorazione(v []ScontoMaggiorazione)

SetScontoMaggiorazione gets a reference to the given []ScontoMaggiorazione and assigns it to the ScontoMaggiorazione field.

func (*DettaglioLinee) SetTipoCessionePrestazione

func (o *DettaglioLinee) SetTipoCessionePrestazione(v string)

SetTipoCessionePrestazione gets a reference to the given NullableString and assigns it to the TipoCessionePrestazione field.

func (*DettaglioLinee) SetTipoCessionePrestazioneNil

func (o *DettaglioLinee) SetTipoCessionePrestazioneNil()

SetTipoCessionePrestazioneNil sets the value for TipoCessionePrestazione to be an explicit nil

func (*DettaglioLinee) SetUnitaMisura

func (o *DettaglioLinee) SetUnitaMisura(v string)

SetUnitaMisura gets a reference to the given NullableString and assigns it to the UnitaMisura field.

func (*DettaglioLinee) SetUnitaMisuraNil

func (o *DettaglioLinee) SetUnitaMisuraNil()

SetUnitaMisuraNil sets the value for UnitaMisura to be an explicit nil

func (DettaglioLinee) ToMap

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

func (*DettaglioLinee) UnsetDataFinePeriodo

func (o *DettaglioLinee) UnsetDataFinePeriodo()

UnsetDataFinePeriodo ensures that no value is present for DataFinePeriodo, not even an explicit nil

func (*DettaglioLinee) UnsetDataInizioPeriodo

func (o *DettaglioLinee) UnsetDataInizioPeriodo()

UnsetDataInizioPeriodo ensures that no value is present for DataInizioPeriodo, not even an explicit nil

func (*DettaglioLinee) UnsetDescrizione

func (o *DettaglioLinee) UnsetDescrizione()

UnsetDescrizione ensures that no value is present for Descrizione, not even an explicit nil

func (*DettaglioLinee) UnsetNatura

func (o *DettaglioLinee) UnsetNatura()

UnsetNatura ensures that no value is present for Natura, not even an explicit nil

func (*DettaglioLinee) UnsetQuantita

func (o *DettaglioLinee) UnsetQuantita()

UnsetQuantita ensures that no value is present for Quantita, not even an explicit nil

func (*DettaglioLinee) UnsetRiferimentoAmministrazione

func (o *DettaglioLinee) UnsetRiferimentoAmministrazione()

UnsetRiferimentoAmministrazione ensures that no value is present for RiferimentoAmministrazione, not even an explicit nil

func (*DettaglioLinee) UnsetRitenuta

func (o *DettaglioLinee) UnsetRitenuta()

UnsetRitenuta ensures that no value is present for Ritenuta, not even an explicit nil

func (*DettaglioLinee) UnsetTipoCessionePrestazione

func (o *DettaglioLinee) UnsetTipoCessionePrestazione()

UnsetTipoCessionePrestazione ensures that no value is present for TipoCessionePrestazione, not even an explicit nil

func (*DettaglioLinee) UnsetUnitaMisura

func (o *DettaglioLinee) UnsetUnitaMisura()

UnsetUnitaMisura ensures that no value is present for UnitaMisura, not even an explicit nil

type DettaglioPagamento

type DettaglioPagamento struct {
	Beneficiario                    NullableString  `json:"beneficiario,omitempty"`
	ModalitaPagamento               NullableString  `json:"modalita_pagamento,omitempty"`
	DataRiferimentoTerminiPagamento NullableTime    `json:"data_riferimento_termini_pagamento,omitempty"`
	GiorniTerminiPagamento          NullableInt32   `json:"giorni_termini_pagamento,omitempty"`
	DataScadenzaPagamento           NullableTime    `json:"data_scadenza_pagamento,omitempty"`
	ImportoPagamento                *float64        `json:"importo_pagamento,omitempty"`
	CodUfficioPostale               NullableString  `json:"cod_ufficio_postale,omitempty"`
	CognomeQuietanzante             NullableString  `json:"cognome_quietanzante,omitempty"`
	NomeQuietanzante                NullableString  `json:"nome_quietanzante,omitempty"`
	CfQuietanzante                  NullableString  `json:"cf_quietanzante,omitempty"`
	TitoloQuietanzante              NullableString  `json:"titolo_quietanzante,omitempty"`
	IstitutoFinanziario             NullableString  `json:"istituto_finanziario,omitempty"`
	Iban                            NullableString  `json:"iban,omitempty"`
	Abi                             NullableString  `json:"abi,omitempty"`
	Cab                             NullableString  `json:"cab,omitempty"`
	Bic                             NullableString  `json:"bic,omitempty"`
	ScontoPagamentoAnticipato       NullableFloat64 `json:"sconto_pagamento_anticipato,omitempty"`
	DataLimitePagamentoAnticipato   NullableTime    `json:"data_limite_pagamento_anticipato,omitempty"`
	PenalitaPagamentiRitardati      NullableFloat64 `json:"penalita_pagamenti_ritardati,omitempty"`
	DataDecorrenzaPenale            NullableTime    `json:"data_decorrenza_penale,omitempty"`
	CodicePagamento                 NullableString  `json:"codice_pagamento,omitempty"`
}

DettaglioPagamento struct for DettaglioPagamento

func NewDettaglioPagamento

func NewDettaglioPagamento() *DettaglioPagamento

NewDettaglioPagamento instantiates a new DettaglioPagamento 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 NewDettaglioPagamentoWithDefaults

func NewDettaglioPagamentoWithDefaults() *DettaglioPagamento

NewDettaglioPagamentoWithDefaults instantiates a new DettaglioPagamento 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 (*DettaglioPagamento) GetAbi

func (o *DettaglioPagamento) GetAbi() string

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

func (*DettaglioPagamento) GetAbiOk

func (o *DettaglioPagamento) GetAbiOk() (*string, bool)

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

func (*DettaglioPagamento) GetBeneficiario

func (o *DettaglioPagamento) GetBeneficiario() string

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

func (*DettaglioPagamento) GetBeneficiarioOk

func (o *DettaglioPagamento) GetBeneficiarioOk() (*string, bool)

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

func (*DettaglioPagamento) GetBic

func (o *DettaglioPagamento) GetBic() string

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

func (*DettaglioPagamento) GetBicOk

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

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

func (*DettaglioPagamento) GetCab

func (o *DettaglioPagamento) GetCab() string

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

func (*DettaglioPagamento) GetCabOk

func (o *DettaglioPagamento) GetCabOk() (*string, bool)

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

func (*DettaglioPagamento) GetCfQuietanzante

func (o *DettaglioPagamento) GetCfQuietanzante() string

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

func (*DettaglioPagamento) GetCfQuietanzanteOk

func (o *DettaglioPagamento) GetCfQuietanzanteOk() (*string, bool)

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

func (*DettaglioPagamento) GetCodUfficioPostale

func (o *DettaglioPagamento) GetCodUfficioPostale() string

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

func (*DettaglioPagamento) GetCodUfficioPostaleOk

func (o *DettaglioPagamento) GetCodUfficioPostaleOk() (*string, bool)

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

func (*DettaglioPagamento) GetCodicePagamento

func (o *DettaglioPagamento) GetCodicePagamento() string

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

func (*DettaglioPagamento) GetCodicePagamentoOk

func (o *DettaglioPagamento) GetCodicePagamentoOk() (*string, bool)

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

func (*DettaglioPagamento) GetCognomeQuietanzante

func (o *DettaglioPagamento) GetCognomeQuietanzante() string

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

func (*DettaglioPagamento) GetCognomeQuietanzanteOk

func (o *DettaglioPagamento) GetCognomeQuietanzanteOk() (*string, bool)

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

func (*DettaglioPagamento) GetDataDecorrenzaPenale

func (o *DettaglioPagamento) GetDataDecorrenzaPenale() time.Time

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

func (*DettaglioPagamento) GetDataDecorrenzaPenaleOk

func (o *DettaglioPagamento) GetDataDecorrenzaPenaleOk() (*time.Time, bool)

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

func (*DettaglioPagamento) GetDataLimitePagamentoAnticipato

func (o *DettaglioPagamento) GetDataLimitePagamentoAnticipato() time.Time

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

func (*DettaglioPagamento) GetDataLimitePagamentoAnticipatoOk

func (o *DettaglioPagamento) GetDataLimitePagamentoAnticipatoOk() (*time.Time, bool)

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

func (*DettaglioPagamento) GetDataRiferimentoTerminiPagamento

func (o *DettaglioPagamento) GetDataRiferimentoTerminiPagamento() time.Time

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

func (*DettaglioPagamento) GetDataRiferimentoTerminiPagamentoOk

func (o *DettaglioPagamento) GetDataRiferimentoTerminiPagamentoOk() (*time.Time, bool)

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

func (*DettaglioPagamento) GetDataScadenzaPagamento

func (o *DettaglioPagamento) GetDataScadenzaPagamento() time.Time

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

func (*DettaglioPagamento) GetDataScadenzaPagamentoOk

func (o *DettaglioPagamento) GetDataScadenzaPagamentoOk() (*time.Time, bool)

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

func (*DettaglioPagamento) GetGiorniTerminiPagamento

func (o *DettaglioPagamento) GetGiorniTerminiPagamento() int32

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

func (*DettaglioPagamento) GetGiorniTerminiPagamentoOk

func (o *DettaglioPagamento) GetGiorniTerminiPagamentoOk() (*int32, bool)

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

func (*DettaglioPagamento) GetIban

func (o *DettaglioPagamento) GetIban() string

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

func (*DettaglioPagamento) GetIbanOk

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

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

func (*DettaglioPagamento) GetImportoPagamento

func (o *DettaglioPagamento) GetImportoPagamento() float64

GetImportoPagamento returns the ImportoPagamento field value if set, zero value otherwise.

func (*DettaglioPagamento) GetImportoPagamentoOk

func (o *DettaglioPagamento) GetImportoPagamentoOk() (*float64, bool)

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

func (*DettaglioPagamento) GetIstitutoFinanziario

func (o *DettaglioPagamento) GetIstitutoFinanziario() string

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

func (*DettaglioPagamento) GetIstitutoFinanziarioOk

func (o *DettaglioPagamento) GetIstitutoFinanziarioOk() (*string, bool)

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

func (*DettaglioPagamento) GetModalitaPagamento

func (o *DettaglioPagamento) GetModalitaPagamento() string

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

func (*DettaglioPagamento) GetModalitaPagamentoOk

func (o *DettaglioPagamento) GetModalitaPagamentoOk() (*string, bool)

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

func (*DettaglioPagamento) GetNomeQuietanzante

func (o *DettaglioPagamento) GetNomeQuietanzante() string

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

func (*DettaglioPagamento) GetNomeQuietanzanteOk

func (o *DettaglioPagamento) GetNomeQuietanzanteOk() (*string, bool)

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

func (*DettaglioPagamento) GetPenalitaPagamentiRitardati

func (o *DettaglioPagamento) GetPenalitaPagamentiRitardati() float64

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

func (*DettaglioPagamento) GetPenalitaPagamentiRitardatiOk

func (o *DettaglioPagamento) GetPenalitaPagamentiRitardatiOk() (*float64, bool)

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

func (*DettaglioPagamento) GetScontoPagamentoAnticipato

func (o *DettaglioPagamento) GetScontoPagamentoAnticipato() float64

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

func (*DettaglioPagamento) GetScontoPagamentoAnticipatoOk

func (o *DettaglioPagamento) GetScontoPagamentoAnticipatoOk() (*float64, bool)

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

func (*DettaglioPagamento) GetTitoloQuietanzante

func (o *DettaglioPagamento) GetTitoloQuietanzante() string

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

func (*DettaglioPagamento) GetTitoloQuietanzanteOk

func (o *DettaglioPagamento) GetTitoloQuietanzanteOk() (*string, bool)

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

func (*DettaglioPagamento) HasAbi

func (o *DettaglioPagamento) HasAbi() bool

HasAbi returns a boolean if a field has been set.

func (*DettaglioPagamento) HasBeneficiario

func (o *DettaglioPagamento) HasBeneficiario() bool

HasBeneficiario returns a boolean if a field has been set.

func (*DettaglioPagamento) HasBic

func (o *DettaglioPagamento) HasBic() bool

HasBic returns a boolean if a field has been set.

func (*DettaglioPagamento) HasCab

func (o *DettaglioPagamento) HasCab() bool

HasCab returns a boolean if a field has been set.

func (*DettaglioPagamento) HasCfQuietanzante

func (o *DettaglioPagamento) HasCfQuietanzante() bool

HasCfQuietanzante returns a boolean if a field has been set.

func (*DettaglioPagamento) HasCodUfficioPostale

func (o *DettaglioPagamento) HasCodUfficioPostale() bool

HasCodUfficioPostale returns a boolean if a field has been set.

func (*DettaglioPagamento) HasCodicePagamento

func (o *DettaglioPagamento) HasCodicePagamento() bool

HasCodicePagamento returns a boolean if a field has been set.

func (*DettaglioPagamento) HasCognomeQuietanzante

func (o *DettaglioPagamento) HasCognomeQuietanzante() bool

HasCognomeQuietanzante returns a boolean if a field has been set.

func (*DettaglioPagamento) HasDataDecorrenzaPenale

func (o *DettaglioPagamento) HasDataDecorrenzaPenale() bool

HasDataDecorrenzaPenale returns a boolean if a field has been set.

func (*DettaglioPagamento) HasDataLimitePagamentoAnticipato

func (o *DettaglioPagamento) HasDataLimitePagamentoAnticipato() bool

HasDataLimitePagamentoAnticipato returns a boolean if a field has been set.

func (*DettaglioPagamento) HasDataRiferimentoTerminiPagamento

func (o *DettaglioPagamento) HasDataRiferimentoTerminiPagamento() bool

HasDataRiferimentoTerminiPagamento returns a boolean if a field has been set.

func (*DettaglioPagamento) HasDataScadenzaPagamento

func (o *DettaglioPagamento) HasDataScadenzaPagamento() bool

HasDataScadenzaPagamento returns a boolean if a field has been set.

func (*DettaglioPagamento) HasGiorniTerminiPagamento

func (o *DettaglioPagamento) HasGiorniTerminiPagamento() bool

HasGiorniTerminiPagamento returns a boolean if a field has been set.

func (*DettaglioPagamento) HasIban

func (o *DettaglioPagamento) HasIban() bool

HasIban returns a boolean if a field has been set.

func (*DettaglioPagamento) HasImportoPagamento

func (o *DettaglioPagamento) HasImportoPagamento() bool

HasImportoPagamento returns a boolean if a field has been set.

func (*DettaglioPagamento) HasIstitutoFinanziario

func (o *DettaglioPagamento) HasIstitutoFinanziario() bool

HasIstitutoFinanziario returns a boolean if a field has been set.

func (*DettaglioPagamento) HasModalitaPagamento

func (o *DettaglioPagamento) HasModalitaPagamento() bool

HasModalitaPagamento returns a boolean if a field has been set.

func (*DettaglioPagamento) HasNomeQuietanzante

func (o *DettaglioPagamento) HasNomeQuietanzante() bool

HasNomeQuietanzante returns a boolean if a field has been set.

func (*DettaglioPagamento) HasPenalitaPagamentiRitardati

func (o *DettaglioPagamento) HasPenalitaPagamentiRitardati() bool

HasPenalitaPagamentiRitardati returns a boolean if a field has been set.

func (*DettaglioPagamento) HasScontoPagamentoAnticipato

func (o *DettaglioPagamento) HasScontoPagamentoAnticipato() bool

HasScontoPagamentoAnticipato returns a boolean if a field has been set.

func (*DettaglioPagamento) HasTitoloQuietanzante

func (o *DettaglioPagamento) HasTitoloQuietanzante() bool

HasTitoloQuietanzante returns a boolean if a field has been set.

func (DettaglioPagamento) MarshalJSON

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

func (*DettaglioPagamento) SetAbi

func (o *DettaglioPagamento) SetAbi(v string)

SetAbi gets a reference to the given NullableString and assigns it to the Abi field.

func (*DettaglioPagamento) SetAbiNil

func (o *DettaglioPagamento) SetAbiNil()

SetAbiNil sets the value for Abi to be an explicit nil

func (*DettaglioPagamento) SetBeneficiario

func (o *DettaglioPagamento) SetBeneficiario(v string)

SetBeneficiario gets a reference to the given NullableString and assigns it to the Beneficiario field.

func (*DettaglioPagamento) SetBeneficiarioNil

func (o *DettaglioPagamento) SetBeneficiarioNil()

SetBeneficiarioNil sets the value for Beneficiario to be an explicit nil

func (*DettaglioPagamento) SetBic

func (o *DettaglioPagamento) SetBic(v string)

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

func (*DettaglioPagamento) SetBicNil

func (o *DettaglioPagamento) SetBicNil()

SetBicNil sets the value for Bic to be an explicit nil

func (*DettaglioPagamento) SetCab

func (o *DettaglioPagamento) SetCab(v string)

SetCab gets a reference to the given NullableString and assigns it to the Cab field.

func (*DettaglioPagamento) SetCabNil

func (o *DettaglioPagamento) SetCabNil()

SetCabNil sets the value for Cab to be an explicit nil

func (*DettaglioPagamento) SetCfQuietanzante

func (o *DettaglioPagamento) SetCfQuietanzante(v string)

SetCfQuietanzante gets a reference to the given NullableString and assigns it to the CfQuietanzante field.

func (*DettaglioPagamento) SetCfQuietanzanteNil

func (o *DettaglioPagamento) SetCfQuietanzanteNil()

SetCfQuietanzanteNil sets the value for CfQuietanzante to be an explicit nil

func (*DettaglioPagamento) SetCodUfficioPostale

func (o *DettaglioPagamento) SetCodUfficioPostale(v string)

SetCodUfficioPostale gets a reference to the given NullableString and assigns it to the CodUfficioPostale field.

func (*DettaglioPagamento) SetCodUfficioPostaleNil

func (o *DettaglioPagamento) SetCodUfficioPostaleNil()

SetCodUfficioPostaleNil sets the value for CodUfficioPostale to be an explicit nil

func (*DettaglioPagamento) SetCodicePagamento

func (o *DettaglioPagamento) SetCodicePagamento(v string)

SetCodicePagamento gets a reference to the given NullableString and assigns it to the CodicePagamento field.

func (*DettaglioPagamento) SetCodicePagamentoNil

func (o *DettaglioPagamento) SetCodicePagamentoNil()

SetCodicePagamentoNil sets the value for CodicePagamento to be an explicit nil

func (*DettaglioPagamento) SetCognomeQuietanzante

func (o *DettaglioPagamento) SetCognomeQuietanzante(v string)

SetCognomeQuietanzante gets a reference to the given NullableString and assigns it to the CognomeQuietanzante field.

func (*DettaglioPagamento) SetCognomeQuietanzanteNil

func (o *DettaglioPagamento) SetCognomeQuietanzanteNil()

SetCognomeQuietanzanteNil sets the value for CognomeQuietanzante to be an explicit nil

func (*DettaglioPagamento) SetDataDecorrenzaPenale

func (o *DettaglioPagamento) SetDataDecorrenzaPenale(v time.Time)

SetDataDecorrenzaPenale gets a reference to the given NullableTime and assigns it to the DataDecorrenzaPenale field.

func (*DettaglioPagamento) SetDataDecorrenzaPenaleNil

func (o *DettaglioPagamento) SetDataDecorrenzaPenaleNil()

SetDataDecorrenzaPenaleNil sets the value for DataDecorrenzaPenale to be an explicit nil

func (*DettaglioPagamento) SetDataLimitePagamentoAnticipato

func (o *DettaglioPagamento) SetDataLimitePagamentoAnticipato(v time.Time)

SetDataLimitePagamentoAnticipato gets a reference to the given NullableTime and assigns it to the DataLimitePagamentoAnticipato field.

func (*DettaglioPagamento) SetDataLimitePagamentoAnticipatoNil

func (o *DettaglioPagamento) SetDataLimitePagamentoAnticipatoNil()

SetDataLimitePagamentoAnticipatoNil sets the value for DataLimitePagamentoAnticipato to be an explicit nil

func (*DettaglioPagamento) SetDataRiferimentoTerminiPagamento

func (o *DettaglioPagamento) SetDataRiferimentoTerminiPagamento(v time.Time)

SetDataRiferimentoTerminiPagamento gets a reference to the given NullableTime and assigns it to the DataRiferimentoTerminiPagamento field.

func (*DettaglioPagamento) SetDataRiferimentoTerminiPagamentoNil

func (o *DettaglioPagamento) SetDataRiferimentoTerminiPagamentoNil()

SetDataRiferimentoTerminiPagamentoNil sets the value for DataRiferimentoTerminiPagamento to be an explicit nil

func (*DettaglioPagamento) SetDataScadenzaPagamento

func (o *DettaglioPagamento) SetDataScadenzaPagamento(v time.Time)

SetDataScadenzaPagamento gets a reference to the given NullableTime and assigns it to the DataScadenzaPagamento field.

func (*DettaglioPagamento) SetDataScadenzaPagamentoNil

func (o *DettaglioPagamento) SetDataScadenzaPagamentoNil()

SetDataScadenzaPagamentoNil sets the value for DataScadenzaPagamento to be an explicit nil

func (*DettaglioPagamento) SetGiorniTerminiPagamento

func (o *DettaglioPagamento) SetGiorniTerminiPagamento(v int32)

SetGiorniTerminiPagamento gets a reference to the given NullableInt32 and assigns it to the GiorniTerminiPagamento field.

func (*DettaglioPagamento) SetGiorniTerminiPagamentoNil

func (o *DettaglioPagamento) SetGiorniTerminiPagamentoNil()

SetGiorniTerminiPagamentoNil sets the value for GiorniTerminiPagamento to be an explicit nil

func (*DettaglioPagamento) SetIban

func (o *DettaglioPagamento) SetIban(v string)

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

func (*DettaglioPagamento) SetIbanNil

func (o *DettaglioPagamento) SetIbanNil()

SetIbanNil sets the value for Iban to be an explicit nil

func (*DettaglioPagamento) SetImportoPagamento

func (o *DettaglioPagamento) SetImportoPagamento(v float64)

SetImportoPagamento gets a reference to the given float64 and assigns it to the ImportoPagamento field.

func (*DettaglioPagamento) SetIstitutoFinanziario

func (o *DettaglioPagamento) SetIstitutoFinanziario(v string)

SetIstitutoFinanziario gets a reference to the given NullableString and assigns it to the IstitutoFinanziario field.

func (*DettaglioPagamento) SetIstitutoFinanziarioNil

func (o *DettaglioPagamento) SetIstitutoFinanziarioNil()

SetIstitutoFinanziarioNil sets the value for IstitutoFinanziario to be an explicit nil

func (*DettaglioPagamento) SetModalitaPagamento

func (o *DettaglioPagamento) SetModalitaPagamento(v string)

SetModalitaPagamento gets a reference to the given NullableString and assigns it to the ModalitaPagamento field.

func (*DettaglioPagamento) SetModalitaPagamentoNil

func (o *DettaglioPagamento) SetModalitaPagamentoNil()

SetModalitaPagamentoNil sets the value for ModalitaPagamento to be an explicit nil

func (*DettaglioPagamento) SetNomeQuietanzante

func (o *DettaglioPagamento) SetNomeQuietanzante(v string)

SetNomeQuietanzante gets a reference to the given NullableString and assigns it to the NomeQuietanzante field.

func (*DettaglioPagamento) SetNomeQuietanzanteNil

func (o *DettaglioPagamento) SetNomeQuietanzanteNil()

SetNomeQuietanzanteNil sets the value for NomeQuietanzante to be an explicit nil

func (*DettaglioPagamento) SetPenalitaPagamentiRitardati

func (o *DettaglioPagamento) SetPenalitaPagamentiRitardati(v float64)

SetPenalitaPagamentiRitardati gets a reference to the given NullableFloat64 and assigns it to the PenalitaPagamentiRitardati field.

func (*DettaglioPagamento) SetPenalitaPagamentiRitardatiNil

func (o *DettaglioPagamento) SetPenalitaPagamentiRitardatiNil()

SetPenalitaPagamentiRitardatiNil sets the value for PenalitaPagamentiRitardati to be an explicit nil

func (*DettaglioPagamento) SetScontoPagamentoAnticipato

func (o *DettaglioPagamento) SetScontoPagamentoAnticipato(v float64)

SetScontoPagamentoAnticipato gets a reference to the given NullableFloat64 and assigns it to the ScontoPagamentoAnticipato field.

func (*DettaglioPagamento) SetScontoPagamentoAnticipatoNil

func (o *DettaglioPagamento) SetScontoPagamentoAnticipatoNil()

SetScontoPagamentoAnticipatoNil sets the value for ScontoPagamentoAnticipato to be an explicit nil

func (*DettaglioPagamento) SetTitoloQuietanzante

func (o *DettaglioPagamento) SetTitoloQuietanzante(v string)

SetTitoloQuietanzante gets a reference to the given NullableString and assigns it to the TitoloQuietanzante field.

func (*DettaglioPagamento) SetTitoloQuietanzanteNil

func (o *DettaglioPagamento) SetTitoloQuietanzanteNil()

SetTitoloQuietanzanteNil sets the value for TitoloQuietanzante to be an explicit nil

func (DettaglioPagamento) ToMap

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

func (*DettaglioPagamento) UnsetAbi

func (o *DettaglioPagamento) UnsetAbi()

UnsetAbi ensures that no value is present for Abi, not even an explicit nil

func (*DettaglioPagamento) UnsetBeneficiario

func (o *DettaglioPagamento) UnsetBeneficiario()

UnsetBeneficiario ensures that no value is present for Beneficiario, not even an explicit nil

func (*DettaglioPagamento) UnsetBic

func (o *DettaglioPagamento) UnsetBic()

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

func (*DettaglioPagamento) UnsetCab

func (o *DettaglioPagamento) UnsetCab()

UnsetCab ensures that no value is present for Cab, not even an explicit nil

func (*DettaglioPagamento) UnsetCfQuietanzante

func (o *DettaglioPagamento) UnsetCfQuietanzante()

UnsetCfQuietanzante ensures that no value is present for CfQuietanzante, not even an explicit nil

func (*DettaglioPagamento) UnsetCodUfficioPostale

func (o *DettaglioPagamento) UnsetCodUfficioPostale()

UnsetCodUfficioPostale ensures that no value is present for CodUfficioPostale, not even an explicit nil

func (*DettaglioPagamento) UnsetCodicePagamento

func (o *DettaglioPagamento) UnsetCodicePagamento()

UnsetCodicePagamento ensures that no value is present for CodicePagamento, not even an explicit nil

func (*DettaglioPagamento) UnsetCognomeQuietanzante

func (o *DettaglioPagamento) UnsetCognomeQuietanzante()

UnsetCognomeQuietanzante ensures that no value is present for CognomeQuietanzante, not even an explicit nil

func (*DettaglioPagamento) UnsetDataDecorrenzaPenale

func (o *DettaglioPagamento) UnsetDataDecorrenzaPenale()

UnsetDataDecorrenzaPenale ensures that no value is present for DataDecorrenzaPenale, not even an explicit nil

func (*DettaglioPagamento) UnsetDataLimitePagamentoAnticipato

func (o *DettaglioPagamento) UnsetDataLimitePagamentoAnticipato()

UnsetDataLimitePagamentoAnticipato ensures that no value is present for DataLimitePagamentoAnticipato, not even an explicit nil

func (*DettaglioPagamento) UnsetDataRiferimentoTerminiPagamento

func (o *DettaglioPagamento) UnsetDataRiferimentoTerminiPagamento()

UnsetDataRiferimentoTerminiPagamento ensures that no value is present for DataRiferimentoTerminiPagamento, not even an explicit nil

func (*DettaglioPagamento) UnsetDataScadenzaPagamento

func (o *DettaglioPagamento) UnsetDataScadenzaPagamento()

UnsetDataScadenzaPagamento ensures that no value is present for DataScadenzaPagamento, not even an explicit nil

func (*DettaglioPagamento) UnsetGiorniTerminiPagamento

func (o *DettaglioPagamento) UnsetGiorniTerminiPagamento()

UnsetGiorniTerminiPagamento ensures that no value is present for GiorniTerminiPagamento, not even an explicit nil

func (*DettaglioPagamento) UnsetIban

func (o *DettaglioPagamento) UnsetIban()

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

func (*DettaglioPagamento) UnsetIstitutoFinanziario

func (o *DettaglioPagamento) UnsetIstitutoFinanziario()

UnsetIstitutoFinanziario ensures that no value is present for IstitutoFinanziario, not even an explicit nil

func (*DettaglioPagamento) UnsetModalitaPagamento

func (o *DettaglioPagamento) UnsetModalitaPagamento()

UnsetModalitaPagamento ensures that no value is present for ModalitaPagamento, not even an explicit nil

func (*DettaglioPagamento) UnsetNomeQuietanzante

func (o *DettaglioPagamento) UnsetNomeQuietanzante()

UnsetNomeQuietanzante ensures that no value is present for NomeQuietanzante, not even an explicit nil

func (*DettaglioPagamento) UnsetPenalitaPagamentiRitardati

func (o *DettaglioPagamento) UnsetPenalitaPagamentiRitardati()

UnsetPenalitaPagamentiRitardati ensures that no value is present for PenalitaPagamentiRitardati, not even an explicit nil

func (*DettaglioPagamento) UnsetScontoPagamentoAnticipato

func (o *DettaglioPagamento) UnsetScontoPagamentoAnticipato()

UnsetScontoPagamentoAnticipato ensures that no value is present for ScontoPagamentoAnticipato, not even an explicit nil

func (*DettaglioPagamento) UnsetTitoloQuietanzante

func (o *DettaglioPagamento) UnsetTitoloQuietanzante()

UnsetTitoloQuietanzante ensures that no value is present for TitoloQuietanzante, not even an explicit nil

type DocumentData

type DocumentData struct {
	Number NullableString `json:"number,omitempty"`
	Date   *time.Time     `json:"date,omitempty"`
}

DocumentData struct for DocumentData

func NewDocumentData

func NewDocumentData() *DocumentData

NewDocumentData instantiates a new DocumentData 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 NewDocumentDataWithDefaults

func NewDocumentDataWithDefaults() *DocumentData

NewDocumentDataWithDefaults instantiates a new DocumentData 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 (*DocumentData) GetDate

func (o *DocumentData) GetDate() time.Time

GetDate returns the Date field value if set, zero value otherwise.

func (*DocumentData) GetDateOk

func (o *DocumentData) GetDateOk() (*time.Time, bool)

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

func (*DocumentData) GetNumber

func (o *DocumentData) GetNumber() string

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

func (*DocumentData) GetNumberOk

func (o *DocumentData) GetNumberOk() (*string, bool)

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

func (*DocumentData) HasDate

func (o *DocumentData) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*DocumentData) HasNumber

func (o *DocumentData) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (DocumentData) MarshalJSON

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

func (*DocumentData) SetDate

func (o *DocumentData) SetDate(v time.Time)

SetDate gets a reference to the given time.Time and assigns it to the Date field.

func (*DocumentData) SetNumber

func (o *DocumentData) SetNumber(v string)

SetNumber gets a reference to the given NullableString and assigns it to the Number field.

func (*DocumentData) SetNumberNil

func (o *DocumentData) SetNumberNil()

SetNumberNil sets the value for Number to be an explicit nil

func (DocumentData) ToMap

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

func (*DocumentData) UnsetNumber

func (o *DocumentData) UnsetNumber()

UnsetNumber ensures that no value is present for Number, not even an explicit nil

type Error

type Error struct {
	// Error code.
	Code NullableString `json:"code,omitempty"`
	// Error description.
	Description NullableString `json:"description,omitempty"`
	// Hint on how to solve the issue.
	Hint NullableString `json:"hint,omitempty"`
}

Error Validation error from the SDI.

func NewError

func NewError() *Error

NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Error) GetCode

func (o *Error) GetCode() string

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

func (*Error) GetCodeOk

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

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

func (*Error) GetDescription

func (o *Error) GetDescription() string

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

func (*Error) GetDescriptionOk

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

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

func (*Error) GetHint

func (o *Error) GetHint() string

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

func (*Error) GetHintOk

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

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

func (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasDescription

func (o *Error) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Error) HasHint

func (o *Error) HasHint() bool

HasHint returns a boolean if a field has been set.

func (Error) MarshalJSON

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

func (*Error) SetCode

func (o *Error) SetCode(v string)

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

func (*Error) SetCodeNil

func (o *Error) SetCodeNil()

SetCodeNil sets the value for Code to be an explicit nil

func (*Error) SetDescription

func (o *Error) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*Error) SetDescriptionNil

func (o *Error) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Error) SetHint

func (o *Error) SetHint(v string)

SetHint gets a reference to the given NullableString and assigns it to the Hint field.

func (*Error) SetHintNil

func (o *Error) SetHintNil()

SetHintNil sets the value for Hint to be an explicit nil

func (Error) ToMap

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

func (*Error) UnsetCode

func (o *Error) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

func (*Error) UnsetDescription

func (o *Error) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Error) UnsetHint

func (o *Error) UnsetHint()

UnsetHint ensures that no value is present for Hint, not even an explicit nil

type Event

type Event struct {
	// Unique identifier. Leave it at 0 for new records as it will be set automatically.
	Id *int32 `json:"id,omitempty"`
	// Creation date. It is set automatically.
	Created *time.Time `json:"created,omitempty"`
	// Row version, for optimistic concurrency. It is set automatically.
	Version *int32 `json:"version,omitempty"`
	// User id.
	UserId *int32 `json:"user_id,omitempty"`
	// Api key id.
	ApiKeyId *int32 `json:"api_key_id,omitempty"`
	// Company id.
	CompanyId NullableInt32 `json:"company_id,omitempty"`
	// Request method.
	Method NullableString `json:"method,omitempty"`
	// Request query.
	Query NullableString `json:"query,omitempty"`
	// API endpoint.
	Endpoint NullableString `json:"endpoint,omitempty"`
	// Api version.
	ApiVersion *int32 `json:"api_version,omitempty"`
	// Status code returned by the API.
	StatusCode *int32 `json:"status_code,omitempty"`
	// Date and time of the request.
	DateTime *time.Time `json:"date_time,omitempty"`
	// Response error.
	Error NullableString `json:"error,omitempty"`
	// Wether the request was successful.
	Success *bool `json:"success,omitempty"`
	// Response payload. It is guaranteed to be cyphered at rest.
	ResponseBody NullableString `json:"response_body,omitempty"`
}

Event struct for Event

func NewEvent

func NewEvent() *Event

NewEvent instantiates a new Event 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 NewEventWithDefaults

func NewEventWithDefaults() *Event

NewEventWithDefaults instantiates a new Event 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 (*Event) GetApiKeyId

func (o *Event) GetApiKeyId() int32

GetApiKeyId returns the ApiKeyId field value if set, zero value otherwise.

func (*Event) GetApiKeyIdOk

func (o *Event) GetApiKeyIdOk() (*int32, bool)

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

func (*Event) GetApiVersion

func (o *Event) GetApiVersion() int32

GetApiVersion returns the ApiVersion field value if set, zero value otherwise.

func (*Event) GetApiVersionOk

func (o *Event) GetApiVersionOk() (*int32, bool)

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

func (*Event) GetCompanyId

func (o *Event) GetCompanyId() int32

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

func (*Event) GetCompanyIdOk

func (o *Event) GetCompanyIdOk() (*int32, bool)

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

func (*Event) GetCreated

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

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

func (*Event) GetCreatedOk

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

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

func (*Event) GetDateTime

func (o *Event) GetDateTime() time.Time

GetDateTime returns the DateTime field value if set, zero value otherwise.

func (*Event) GetDateTimeOk

func (o *Event) GetDateTimeOk() (*time.Time, bool)

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

func (*Event) GetEndpoint

func (o *Event) GetEndpoint() string

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

func (*Event) GetEndpointOk

func (o *Event) GetEndpointOk() (*string, bool)

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

func (*Event) GetError

func (o *Event) GetError() string

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

func (*Event) GetErrorOk

func (o *Event) GetErrorOk() (*string, bool)

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

func (*Event) GetId

func (o *Event) GetId() int32

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

func (*Event) GetIdOk

func (o *Event) GetIdOk() (*int32, bool)

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

func (*Event) GetMethod

func (o *Event) GetMethod() string

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

func (*Event) GetMethodOk

func (o *Event) GetMethodOk() (*string, bool)

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

func (*Event) GetQuery

func (o *Event) GetQuery() string

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

func (*Event) GetQueryOk

func (o *Event) GetQueryOk() (*string, bool)

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

func (*Event) GetResponseBody

func (o *Event) GetResponseBody() string

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

func (*Event) GetResponseBodyOk

func (o *Event) GetResponseBodyOk() (*string, bool)

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

func (*Event) GetStatusCode

func (o *Event) GetStatusCode() int32

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*Event) GetStatusCodeOk

func (o *Event) GetStatusCodeOk() (*int32, bool)

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

func (*Event) GetSuccess

func (o *Event) GetSuccess() bool

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

func (*Event) GetSuccessOk

func (o *Event) 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 (*Event) GetUserId

func (o *Event) GetUserId() int32

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Event) GetUserIdOk

func (o *Event) GetUserIdOk() (*int32, bool)

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

func (*Event) GetVersion

func (o *Event) GetVersion() int32

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

func (*Event) GetVersionOk

func (o *Event) GetVersionOk() (*int32, bool)

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

func (*Event) HasApiKeyId

func (o *Event) HasApiKeyId() bool

HasApiKeyId returns a boolean if a field has been set.

func (*Event) HasApiVersion

func (o *Event) HasApiVersion() bool

HasApiVersion returns a boolean if a field has been set.

func (*Event) HasCompanyId

func (o *Event) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*Event) HasCreated

func (o *Event) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Event) HasDateTime

func (o *Event) HasDateTime() bool

HasDateTime returns a boolean if a field has been set.

func (*Event) HasEndpoint

func (o *Event) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*Event) HasError

func (o *Event) HasError() bool

HasError returns a boolean if a field has been set.

func (*Event) HasId

func (o *Event) HasId() bool

HasId returns a boolean if a field has been set.

func (*Event) HasMethod

func (o *Event) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*Event) HasQuery

func (o *Event) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*Event) HasResponseBody

func (o *Event) HasResponseBody() bool

HasResponseBody returns a boolean if a field has been set.

func (*Event) HasStatusCode

func (o *Event) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (*Event) HasSuccess

func (o *Event) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (*Event) HasUserId

func (o *Event) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*Event) HasVersion

func (o *Event) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Event) MarshalJSON

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

func (*Event) SetApiKeyId

func (o *Event) SetApiKeyId(v int32)

SetApiKeyId gets a reference to the given int32 and assigns it to the ApiKeyId field.

func (*Event) SetApiVersion

func (o *Event) SetApiVersion(v int32)

SetApiVersion gets a reference to the given int32 and assigns it to the ApiVersion field.

func (*Event) SetCompanyId

func (o *Event) SetCompanyId(v int32)

SetCompanyId gets a reference to the given NullableInt32 and assigns it to the CompanyId field.

func (*Event) SetCompanyIdNil

func (o *Event) SetCompanyIdNil()

SetCompanyIdNil sets the value for CompanyId to be an explicit nil

func (*Event) SetCreated

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

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

func (*Event) SetDateTime

func (o *Event) SetDateTime(v time.Time)

SetDateTime gets a reference to the given time.Time and assigns it to the DateTime field.

func (*Event) SetEndpoint

func (o *Event) SetEndpoint(v string)

SetEndpoint gets a reference to the given NullableString and assigns it to the Endpoint field.

func (*Event) SetEndpointNil

func (o *Event) SetEndpointNil()

SetEndpointNil sets the value for Endpoint to be an explicit nil

func (*Event) SetError

func (o *Event) SetError(v string)

SetError gets a reference to the given NullableString and assigns it to the Error field.

func (*Event) SetErrorNil

func (o *Event) SetErrorNil()

SetErrorNil sets the value for Error to be an explicit nil

func (*Event) SetId

func (o *Event) SetId(v int32)

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

func (*Event) SetMethod

func (o *Event) SetMethod(v string)

SetMethod gets a reference to the given NullableString and assigns it to the Method field.

func (*Event) SetMethodNil

func (o *Event) SetMethodNil()

SetMethodNil sets the value for Method to be an explicit nil

func (*Event) SetQuery

func (o *Event) SetQuery(v string)

SetQuery gets a reference to the given NullableString and assigns it to the Query field.

func (*Event) SetQueryNil

func (o *Event) SetQueryNil()

SetQueryNil sets the value for Query to be an explicit nil

func (*Event) SetResponseBody

func (o *Event) SetResponseBody(v string)

SetResponseBody gets a reference to the given NullableString and assigns it to the ResponseBody field.

func (*Event) SetResponseBodyNil

func (o *Event) SetResponseBodyNil()

SetResponseBodyNil sets the value for ResponseBody to be an explicit nil

func (*Event) SetStatusCode

func (o *Event) SetStatusCode(v int32)

SetStatusCode gets a reference to the given int32 and assigns it to the StatusCode field.

func (*Event) SetSuccess

func (o *Event) SetSuccess(v bool)

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

func (*Event) SetUserId

func (o *Event) SetUserId(v int32)

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

func (*Event) SetVersion

func (o *Event) SetVersion(v int32)

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

func (Event) ToMap

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

func (*Event) UnsetCompanyId

func (o *Event) UnsetCompanyId()

UnsetCompanyId ensures that no value is present for CompanyId, not even an explicit nil

func (*Event) UnsetEndpoint

func (o *Event) UnsetEndpoint()

UnsetEndpoint ensures that no value is present for Endpoint, not even an explicit nil

func (*Event) UnsetError

func (o *Event) UnsetError()

UnsetError ensures that no value is present for Error, not even an explicit nil

func (*Event) UnsetMethod

func (o *Event) UnsetMethod()

UnsetMethod ensures that no value is present for Method, not even an explicit nil

func (*Event) UnsetQuery

func (o *Event) UnsetQuery()

UnsetQuery ensures that no value is present for Query, not even an explicit nil

func (*Event) UnsetResponseBody

func (o *Event) UnsetResponseBody()

UnsetResponseBody ensures that no value is present for ResponseBody, not even an explicit nil

type FatturaElettronicaBody

type FatturaElettronicaBody struct {
	DatiGenerali    *DatiGenerali    `json:"dati_generali,omitempty"`
	DatiBeniServizi *DatiBeniServizi `json:"dati_beni_servizi,omitempty"`
	DatiVeicoli     *DatiVeicoli     `json:"dati_veicoli,omitempty"`
	DatiPagamento   []DatiPagamento  `json:"dati_pagamento,omitempty"`
	Allegati        []Allegati       `json:"allegati,omitempty"`
}

FatturaElettronicaBody struct for FatturaElettronicaBody

func NewFatturaElettronicaBody

func NewFatturaElettronicaBody() *FatturaElettronicaBody

NewFatturaElettronicaBody instantiates a new FatturaElettronicaBody 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 NewFatturaElettronicaBodyWithDefaults

func NewFatturaElettronicaBodyWithDefaults() *FatturaElettronicaBody

NewFatturaElettronicaBodyWithDefaults instantiates a new FatturaElettronicaBody 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 (*FatturaElettronicaBody) GetAllegati

func (o *FatturaElettronicaBody) GetAllegati() []Allegati

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

func (*FatturaElettronicaBody) GetAllegatiOk

func (o *FatturaElettronicaBody) GetAllegatiOk() ([]Allegati, bool)

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

func (*FatturaElettronicaBody) GetDatiBeniServizi

func (o *FatturaElettronicaBody) GetDatiBeniServizi() DatiBeniServizi

GetDatiBeniServizi returns the DatiBeniServizi field value if set, zero value otherwise.

func (*FatturaElettronicaBody) GetDatiBeniServiziOk

func (o *FatturaElettronicaBody) GetDatiBeniServiziOk() (*DatiBeniServizi, bool)

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

func (*FatturaElettronicaBody) GetDatiGenerali

func (o *FatturaElettronicaBody) GetDatiGenerali() DatiGenerali

GetDatiGenerali returns the DatiGenerali field value if set, zero value otherwise.

func (*FatturaElettronicaBody) GetDatiGeneraliOk

func (o *FatturaElettronicaBody) GetDatiGeneraliOk() (*DatiGenerali, bool)

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

func (*FatturaElettronicaBody) GetDatiPagamento

func (o *FatturaElettronicaBody) GetDatiPagamento() []DatiPagamento

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

func (*FatturaElettronicaBody) GetDatiPagamentoOk

func (o *FatturaElettronicaBody) GetDatiPagamentoOk() ([]DatiPagamento, bool)

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

func (*FatturaElettronicaBody) GetDatiVeicoli

func (o *FatturaElettronicaBody) GetDatiVeicoli() DatiVeicoli

GetDatiVeicoli returns the DatiVeicoli field value if set, zero value otherwise.

func (*FatturaElettronicaBody) GetDatiVeicoliOk

func (o *FatturaElettronicaBody) GetDatiVeicoliOk() (*DatiVeicoli, bool)

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

func (*FatturaElettronicaBody) HasAllegati

func (o *FatturaElettronicaBody) HasAllegati() bool

HasAllegati returns a boolean if a field has been set.

func (*FatturaElettronicaBody) HasDatiBeniServizi

func (o *FatturaElettronicaBody) HasDatiBeniServizi() bool

HasDatiBeniServizi returns a boolean if a field has been set.

func (*FatturaElettronicaBody) HasDatiGenerali

func (o *FatturaElettronicaBody) HasDatiGenerali() bool

HasDatiGenerali returns a boolean if a field has been set.

func (*FatturaElettronicaBody) HasDatiPagamento

func (o *FatturaElettronicaBody) HasDatiPagamento() bool

HasDatiPagamento returns a boolean if a field has been set.

func (*FatturaElettronicaBody) HasDatiVeicoli

func (o *FatturaElettronicaBody) HasDatiVeicoli() bool

HasDatiVeicoli returns a boolean if a field has been set.

func (FatturaElettronicaBody) MarshalJSON

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

func (*FatturaElettronicaBody) SetAllegati

func (o *FatturaElettronicaBody) SetAllegati(v []Allegati)

SetAllegati gets a reference to the given []Allegati and assigns it to the Allegati field.

func (*FatturaElettronicaBody) SetDatiBeniServizi

func (o *FatturaElettronicaBody) SetDatiBeniServizi(v DatiBeniServizi)

SetDatiBeniServizi gets a reference to the given DatiBeniServizi and assigns it to the DatiBeniServizi field.

func (*FatturaElettronicaBody) SetDatiGenerali

func (o *FatturaElettronicaBody) SetDatiGenerali(v DatiGenerali)

SetDatiGenerali gets a reference to the given DatiGenerali and assigns it to the DatiGenerali field.

func (*FatturaElettronicaBody) SetDatiPagamento

func (o *FatturaElettronicaBody) SetDatiPagamento(v []DatiPagamento)

SetDatiPagamento gets a reference to the given []DatiPagamento and assigns it to the DatiPagamento field.

func (*FatturaElettronicaBody) SetDatiVeicoli

func (o *FatturaElettronicaBody) SetDatiVeicoli(v DatiVeicoli)

SetDatiVeicoli gets a reference to the given DatiVeicoli and assigns it to the DatiVeicoli field.

func (FatturaElettronicaBody) ToMap

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

type FatturaElettronicaHeader

type FatturaElettronicaHeader struct {
	DatiTrasmissione                     *DatiTrasmissione                     `json:"dati_trasmissione,omitempty"`
	CedentePrestatore                    *CedentePrestatore                    `json:"cedente_prestatore,omitempty"`
	RappresentanteFiscale                *RappresentanteFiscale                `json:"RappresentanteFiscale,omitempty"`
	CessionarioCommittente               *CessionarioCommittente               `json:"cessionario_committente,omitempty"`
	TerzoIntermediarioOSoggettoEmittente *TerzoIntermediarioOSoggettoEmittente `json:"terzo_intermediario_o_soggetto_emittente,omitempty"`
	SoggettoEmittente                    NullableString                        `json:"soggetto_emittente,omitempty"`
}

FatturaElettronicaHeader struct for FatturaElettronicaHeader

func NewFatturaElettronicaHeader

func NewFatturaElettronicaHeader() *FatturaElettronicaHeader

NewFatturaElettronicaHeader instantiates a new FatturaElettronicaHeader 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 NewFatturaElettronicaHeaderWithDefaults

func NewFatturaElettronicaHeaderWithDefaults() *FatturaElettronicaHeader

NewFatturaElettronicaHeaderWithDefaults instantiates a new FatturaElettronicaHeader 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 (*FatturaElettronicaHeader) GetCedentePrestatore

func (o *FatturaElettronicaHeader) GetCedentePrestatore() CedentePrestatore

GetCedentePrestatore returns the CedentePrestatore field value if set, zero value otherwise.

func (*FatturaElettronicaHeader) GetCedentePrestatoreOk

func (o *FatturaElettronicaHeader) GetCedentePrestatoreOk() (*CedentePrestatore, bool)

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

func (*FatturaElettronicaHeader) GetCessionarioCommittente

func (o *FatturaElettronicaHeader) GetCessionarioCommittente() CessionarioCommittente

GetCessionarioCommittente returns the CessionarioCommittente field value if set, zero value otherwise.

func (*FatturaElettronicaHeader) GetCessionarioCommittenteOk

func (o *FatturaElettronicaHeader) GetCessionarioCommittenteOk() (*CessionarioCommittente, bool)

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

func (*FatturaElettronicaHeader) GetDatiTrasmissione

func (o *FatturaElettronicaHeader) GetDatiTrasmissione() DatiTrasmissione

GetDatiTrasmissione returns the DatiTrasmissione field value if set, zero value otherwise.

func (*FatturaElettronicaHeader) GetDatiTrasmissioneOk

func (o *FatturaElettronicaHeader) GetDatiTrasmissioneOk() (*DatiTrasmissione, bool)

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

func (*FatturaElettronicaHeader) GetRappresentanteFiscale

func (o *FatturaElettronicaHeader) GetRappresentanteFiscale() RappresentanteFiscale

GetRappresentanteFiscale returns the RappresentanteFiscale field value if set, zero value otherwise.

func (*FatturaElettronicaHeader) GetRappresentanteFiscaleOk

func (o *FatturaElettronicaHeader) GetRappresentanteFiscaleOk() (*RappresentanteFiscale, bool)

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

func (*FatturaElettronicaHeader) GetSoggettoEmittente

func (o *FatturaElettronicaHeader) GetSoggettoEmittente() string

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

func (*FatturaElettronicaHeader) GetSoggettoEmittenteOk

func (o *FatturaElettronicaHeader) GetSoggettoEmittenteOk() (*string, bool)

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

func (*FatturaElettronicaHeader) GetTerzoIntermediarioOSoggettoEmittente

func (o *FatturaElettronicaHeader) GetTerzoIntermediarioOSoggettoEmittente() TerzoIntermediarioOSoggettoEmittente

GetTerzoIntermediarioOSoggettoEmittente returns the TerzoIntermediarioOSoggettoEmittente field value if set, zero value otherwise.

func (*FatturaElettronicaHeader) GetTerzoIntermediarioOSoggettoEmittenteOk

func (o *FatturaElettronicaHeader) GetTerzoIntermediarioOSoggettoEmittenteOk() (*TerzoIntermediarioOSoggettoEmittente, bool)

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

func (*FatturaElettronicaHeader) HasCedentePrestatore

func (o *FatturaElettronicaHeader) HasCedentePrestatore() bool

HasCedentePrestatore returns a boolean if a field has been set.

func (*FatturaElettronicaHeader) HasCessionarioCommittente

func (o *FatturaElettronicaHeader) HasCessionarioCommittente() bool

HasCessionarioCommittente returns a boolean if a field has been set.

func (*FatturaElettronicaHeader) HasDatiTrasmissione

func (o *FatturaElettronicaHeader) HasDatiTrasmissione() bool

HasDatiTrasmissione returns a boolean if a field has been set.

func (*FatturaElettronicaHeader) HasRappresentanteFiscale

func (o *FatturaElettronicaHeader) HasRappresentanteFiscale() bool

HasRappresentanteFiscale returns a boolean if a field has been set.

func (*FatturaElettronicaHeader) HasSoggettoEmittente

func (o *FatturaElettronicaHeader) HasSoggettoEmittente() bool

HasSoggettoEmittente returns a boolean if a field has been set.

func (*FatturaElettronicaHeader) HasTerzoIntermediarioOSoggettoEmittente

func (o *FatturaElettronicaHeader) HasTerzoIntermediarioOSoggettoEmittente() bool

HasTerzoIntermediarioOSoggettoEmittente returns a boolean if a field has been set.

func (FatturaElettronicaHeader) MarshalJSON

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

func (*FatturaElettronicaHeader) SetCedentePrestatore

func (o *FatturaElettronicaHeader) SetCedentePrestatore(v CedentePrestatore)

SetCedentePrestatore gets a reference to the given CedentePrestatore and assigns it to the CedentePrestatore field.

func (*FatturaElettronicaHeader) SetCessionarioCommittente

func (o *FatturaElettronicaHeader) SetCessionarioCommittente(v CessionarioCommittente)

SetCessionarioCommittente gets a reference to the given CessionarioCommittente and assigns it to the CessionarioCommittente field.

func (*FatturaElettronicaHeader) SetDatiTrasmissione

func (o *FatturaElettronicaHeader) SetDatiTrasmissione(v DatiTrasmissione)

SetDatiTrasmissione gets a reference to the given DatiTrasmissione and assigns it to the DatiTrasmissione field.

func (*FatturaElettronicaHeader) SetRappresentanteFiscale

func (o *FatturaElettronicaHeader) SetRappresentanteFiscale(v RappresentanteFiscale)

SetRappresentanteFiscale gets a reference to the given RappresentanteFiscale and assigns it to the RappresentanteFiscale field.

func (*FatturaElettronicaHeader) SetSoggettoEmittente

func (o *FatturaElettronicaHeader) SetSoggettoEmittente(v string)

SetSoggettoEmittente gets a reference to the given NullableString and assigns it to the SoggettoEmittente field.

func (*FatturaElettronicaHeader) SetSoggettoEmittenteNil

func (o *FatturaElettronicaHeader) SetSoggettoEmittenteNil()

SetSoggettoEmittenteNil sets the value for SoggettoEmittente to be an explicit nil

func (*FatturaElettronicaHeader) SetTerzoIntermediarioOSoggettoEmittente

func (o *FatturaElettronicaHeader) SetTerzoIntermediarioOSoggettoEmittente(v TerzoIntermediarioOSoggettoEmittente)

SetTerzoIntermediarioOSoggettoEmittente gets a reference to the given TerzoIntermediarioOSoggettoEmittente and assigns it to the TerzoIntermediarioOSoggettoEmittente field.

func (FatturaElettronicaHeader) ToMap

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

func (*FatturaElettronicaHeader) UnsetSoggettoEmittente

func (o *FatturaElettronicaHeader) UnsetSoggettoEmittente()

UnsetSoggettoEmittente ensures that no value is present for SoggettoEmittente, not even an explicit nil

type FatturaOrdinaria

type FatturaOrdinaria struct {
	SistemaEmittente         NullableString            `json:"sistema_emittente,omitempty"`
	FatturaElettronicaHeader *FatturaElettronicaHeader `json:"fattura_elettronica_header,omitempty"`
	FatturaElettronicaBody   []FatturaElettronicaBody  `json:"fattura_elettronica_body,omitempty"`
}

FatturaOrdinaria struct for FatturaOrdinaria

func NewFatturaOrdinaria

func NewFatturaOrdinaria() *FatturaOrdinaria

NewFatturaOrdinaria instantiates a new FatturaOrdinaria 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 NewFatturaOrdinariaWithDefaults

func NewFatturaOrdinariaWithDefaults() *FatturaOrdinaria

NewFatturaOrdinariaWithDefaults instantiates a new FatturaOrdinaria 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 (*FatturaOrdinaria) GetFatturaElettronicaBody

func (o *FatturaOrdinaria) GetFatturaElettronicaBody() []FatturaElettronicaBody

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

func (*FatturaOrdinaria) GetFatturaElettronicaBodyOk

func (o *FatturaOrdinaria) GetFatturaElettronicaBodyOk() ([]FatturaElettronicaBody, bool)

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

func (*FatturaOrdinaria) GetFatturaElettronicaHeader

func (o *FatturaOrdinaria) GetFatturaElettronicaHeader() FatturaElettronicaHeader

GetFatturaElettronicaHeader returns the FatturaElettronicaHeader field value if set, zero value otherwise.

func (*FatturaOrdinaria) GetFatturaElettronicaHeaderOk

func (o *FatturaOrdinaria) GetFatturaElettronicaHeaderOk() (*FatturaElettronicaHeader, bool)

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

func (*FatturaOrdinaria) GetSistemaEmittente

func (o *FatturaOrdinaria) GetSistemaEmittente() string

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

func (*FatturaOrdinaria) GetSistemaEmittenteOk

func (o *FatturaOrdinaria) GetSistemaEmittenteOk() (*string, bool)

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

func (*FatturaOrdinaria) HasFatturaElettronicaBody

func (o *FatturaOrdinaria) HasFatturaElettronicaBody() bool

HasFatturaElettronicaBody returns a boolean if a field has been set.

func (*FatturaOrdinaria) HasFatturaElettronicaHeader

func (o *FatturaOrdinaria) HasFatturaElettronicaHeader() bool

HasFatturaElettronicaHeader returns a boolean if a field has been set.

func (*FatturaOrdinaria) HasSistemaEmittente

func (o *FatturaOrdinaria) HasSistemaEmittente() bool

HasSistemaEmittente returns a boolean if a field has been set.

func (FatturaOrdinaria) MarshalJSON

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

func (*FatturaOrdinaria) SetFatturaElettronicaBody

func (o *FatturaOrdinaria) SetFatturaElettronicaBody(v []FatturaElettronicaBody)

SetFatturaElettronicaBody gets a reference to the given []FatturaElettronicaBody and assigns it to the FatturaElettronicaBody field.

func (*FatturaOrdinaria) SetFatturaElettronicaHeader

func (o *FatturaOrdinaria) SetFatturaElettronicaHeader(v FatturaElettronicaHeader)

SetFatturaElettronicaHeader gets a reference to the given FatturaElettronicaHeader and assigns it to the FatturaElettronicaHeader field.

func (*FatturaOrdinaria) SetSistemaEmittente

func (o *FatturaOrdinaria) SetSistemaEmittente(v string)

SetSistemaEmittente gets a reference to the given NullableString and assigns it to the SistemaEmittente field.

func (*FatturaOrdinaria) SetSistemaEmittenteNil

func (o *FatturaOrdinaria) SetSistemaEmittenteNil()

SetSistemaEmittenteNil sets the value for SistemaEmittente to be an explicit nil

func (FatturaOrdinaria) ToMap

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

func (*FatturaOrdinaria) UnsetSistemaEmittente

func (o *FatturaOrdinaria) UnsetSistemaEmittente()

UnsetSistemaEmittente ensures that no value is present for SistemaEmittente, not even an explicit nil

type FatturaPrincipale

type FatturaPrincipale struct {
	NumeroFatturaPrincipale NullableString `json:"numero_fattura_principale,omitempty"`
	DataFatturaPrincipale   NullableTime   `json:"data_fattura_principale,omitempty"`
}

FatturaPrincipale struct for FatturaPrincipale

func NewFatturaPrincipale

func NewFatturaPrincipale() *FatturaPrincipale

NewFatturaPrincipale instantiates a new FatturaPrincipale 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 NewFatturaPrincipaleWithDefaults

func NewFatturaPrincipaleWithDefaults() *FatturaPrincipale

NewFatturaPrincipaleWithDefaults instantiates a new FatturaPrincipale 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 (*FatturaPrincipale) GetDataFatturaPrincipale

func (o *FatturaPrincipale) GetDataFatturaPrincipale() time.Time

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

func (*FatturaPrincipale) GetDataFatturaPrincipaleOk

func (o *FatturaPrincipale) GetDataFatturaPrincipaleOk() (*time.Time, bool)

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

func (*FatturaPrincipale) GetNumeroFatturaPrincipale

func (o *FatturaPrincipale) GetNumeroFatturaPrincipale() string

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

func (*FatturaPrincipale) GetNumeroFatturaPrincipaleOk

func (o *FatturaPrincipale) GetNumeroFatturaPrincipaleOk() (*string, bool)

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

func (*FatturaPrincipale) HasDataFatturaPrincipale

func (o *FatturaPrincipale) HasDataFatturaPrincipale() bool

HasDataFatturaPrincipale returns a boolean if a field has been set.

func (*FatturaPrincipale) HasNumeroFatturaPrincipale

func (o *FatturaPrincipale) HasNumeroFatturaPrincipale() bool

HasNumeroFatturaPrincipale returns a boolean if a field has been set.

func (FatturaPrincipale) MarshalJSON

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

func (*FatturaPrincipale) SetDataFatturaPrincipale

func (o *FatturaPrincipale) SetDataFatturaPrincipale(v time.Time)

SetDataFatturaPrincipale gets a reference to the given NullableTime and assigns it to the DataFatturaPrincipale field.

func (*FatturaPrincipale) SetDataFatturaPrincipaleNil

func (o *FatturaPrincipale) SetDataFatturaPrincipaleNil()

SetDataFatturaPrincipaleNil sets the value for DataFatturaPrincipale to be an explicit nil

func (*FatturaPrincipale) SetNumeroFatturaPrincipale

func (o *FatturaPrincipale) SetNumeroFatturaPrincipale(v string)

SetNumeroFatturaPrincipale gets a reference to the given NullableString and assigns it to the NumeroFatturaPrincipale field.

func (*FatturaPrincipale) SetNumeroFatturaPrincipaleNil

func (o *FatturaPrincipale) SetNumeroFatturaPrincipaleNil()

SetNumeroFatturaPrincipaleNil sets the value for NumeroFatturaPrincipale to be an explicit nil

func (FatturaPrincipale) ToMap

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

func (*FatturaPrincipale) UnsetDataFatturaPrincipale

func (o *FatturaPrincipale) UnsetDataFatturaPrincipale()

UnsetDataFatturaPrincipale ensures that no value is present for DataFatturaPrincipale, not even an explicit nil

func (*FatturaPrincipale) UnsetNumeroFatturaPrincipale

func (o *FatturaPrincipale) UnsetNumeroFatturaPrincipale()

UnsetNumeroFatturaPrincipale ensures that no value is present for NumeroFatturaPrincipale, not even an explicit nil

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 IdFiscaleIVA

type IdFiscaleIVA struct {
	IdPaese  NullableString `json:"id_paese,omitempty"`
	IdCodice NullableString `json:"id_codice,omitempty"`
}

IdFiscaleIVA struct for IdFiscaleIVA

func NewIdFiscaleIVA

func NewIdFiscaleIVA() *IdFiscaleIVA

NewIdFiscaleIVA instantiates a new IdFiscaleIVA 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 NewIdFiscaleIVAWithDefaults

func NewIdFiscaleIVAWithDefaults() *IdFiscaleIVA

NewIdFiscaleIVAWithDefaults instantiates a new IdFiscaleIVA 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 (*IdFiscaleIVA) GetIdCodice

func (o *IdFiscaleIVA) GetIdCodice() string

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

func (*IdFiscaleIVA) GetIdCodiceOk

func (o *IdFiscaleIVA) GetIdCodiceOk() (*string, bool)

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

func (*IdFiscaleIVA) GetIdPaese

func (o *IdFiscaleIVA) GetIdPaese() string

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

func (*IdFiscaleIVA) GetIdPaeseOk

func (o *IdFiscaleIVA) GetIdPaeseOk() (*string, bool)

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

func (*IdFiscaleIVA) HasIdCodice

func (o *IdFiscaleIVA) HasIdCodice() bool

HasIdCodice returns a boolean if a field has been set.

func (*IdFiscaleIVA) HasIdPaese

func (o *IdFiscaleIVA) HasIdPaese() bool

HasIdPaese returns a boolean if a field has been set.

func (IdFiscaleIVA) MarshalJSON

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

func (*IdFiscaleIVA) SetIdCodice

func (o *IdFiscaleIVA) SetIdCodice(v string)

SetIdCodice gets a reference to the given NullableString and assigns it to the IdCodice field.

func (*IdFiscaleIVA) SetIdCodiceNil

func (o *IdFiscaleIVA) SetIdCodiceNil()

SetIdCodiceNil sets the value for IdCodice to be an explicit nil

func (*IdFiscaleIVA) SetIdPaese

func (o *IdFiscaleIVA) SetIdPaese(v string)

SetIdPaese gets a reference to the given NullableString and assigns it to the IdPaese field.

func (*IdFiscaleIVA) SetIdPaeseNil

func (o *IdFiscaleIVA) SetIdPaeseNil()

SetIdPaeseNil sets the value for IdPaese to be an explicit nil

func (IdFiscaleIVA) ToMap

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

func (*IdFiscaleIVA) UnsetIdCodice

func (o *IdFiscaleIVA) UnsetIdCodice()

UnsetIdCodice ensures that no value is present for IdCodice, not even an explicit nil

func (*IdFiscaleIVA) UnsetIdPaese

func (o *IdFiscaleIVA) UnsetIdPaese()

UnsetIdPaese ensures that no value is present for IdPaese, not even an explicit nil

type IdTrasmittente

type IdTrasmittente struct {
	IdPaese  NullableString `json:"id_paese,omitempty"`
	IdCodice NullableString `json:"id_codice,omitempty"`
}

IdTrasmittente struct for IdTrasmittente

func NewIdTrasmittente

func NewIdTrasmittente() *IdTrasmittente

NewIdTrasmittente instantiates a new IdTrasmittente 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 NewIdTrasmittenteWithDefaults

func NewIdTrasmittenteWithDefaults() *IdTrasmittente

NewIdTrasmittenteWithDefaults instantiates a new IdTrasmittente 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 (*IdTrasmittente) GetIdCodice

func (o *IdTrasmittente) GetIdCodice() string

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

func (*IdTrasmittente) GetIdCodiceOk

func (o *IdTrasmittente) GetIdCodiceOk() (*string, bool)

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

func (*IdTrasmittente) GetIdPaese

func (o *IdTrasmittente) GetIdPaese() string

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

func (*IdTrasmittente) GetIdPaeseOk

func (o *IdTrasmittente) GetIdPaeseOk() (*string, bool)

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

func (*IdTrasmittente) HasIdCodice

func (o *IdTrasmittente) HasIdCodice() bool

HasIdCodice returns a boolean if a field has been set.

func (*IdTrasmittente) HasIdPaese

func (o *IdTrasmittente) HasIdPaese() bool

HasIdPaese returns a boolean if a field has been set.

func (IdTrasmittente) MarshalJSON

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

func (*IdTrasmittente) SetIdCodice

func (o *IdTrasmittente) SetIdCodice(v string)

SetIdCodice gets a reference to the given NullableString and assigns it to the IdCodice field.

func (*IdTrasmittente) SetIdCodiceNil

func (o *IdTrasmittente) SetIdCodiceNil()

SetIdCodiceNil sets the value for IdCodice to be an explicit nil

func (*IdTrasmittente) SetIdPaese

func (o *IdTrasmittente) SetIdPaese(v string)

SetIdPaese gets a reference to the given NullableString and assigns it to the IdPaese field.

func (*IdTrasmittente) SetIdPaeseNil

func (o *IdTrasmittente) SetIdPaeseNil()

SetIdPaeseNil sets the value for IdPaese to be an explicit nil

func (IdTrasmittente) ToMap

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

func (*IdTrasmittente) UnsetIdCodice

func (o *IdTrasmittente) UnsetIdCodice()

UnsetIdCodice ensures that no value is present for IdCodice, not even an explicit nil

func (*IdTrasmittente) UnsetIdPaese

func (o *IdTrasmittente) UnsetIdPaese()

UnsetIdPaese ensures that no value is present for IdPaese, not even an explicit nil

type IndirizzoResa

type IndirizzoResa struct {
	Indirizzo    NullableString `json:"indirizzo,omitempty"`
	NumeroCivico NullableString `json:"numero_civico,omitempty"`
	Cap          NullableString `json:"cap,omitempty"`
	Comune       NullableString `json:"comune,omitempty"`
	Provincia    NullableString `json:"provincia,omitempty"`
	Nazione      NullableString `json:"nazione,omitempty"`
}

IndirizzoResa struct for IndirizzoResa

func NewIndirizzoResa

func NewIndirizzoResa() *IndirizzoResa

NewIndirizzoResa instantiates a new IndirizzoResa 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 NewIndirizzoResaWithDefaults

func NewIndirizzoResaWithDefaults() *IndirizzoResa

NewIndirizzoResaWithDefaults instantiates a new IndirizzoResa 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 (*IndirizzoResa) GetCap

func (o *IndirizzoResa) GetCap() string

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

func (*IndirizzoResa) GetCapOk

func (o *IndirizzoResa) GetCapOk() (*string, bool)

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

func (*IndirizzoResa) GetComune

func (o *IndirizzoResa) GetComune() string

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

func (*IndirizzoResa) GetComuneOk

func (o *IndirizzoResa) GetComuneOk() (*string, bool)

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

func (*IndirizzoResa) GetIndirizzo

func (o *IndirizzoResa) GetIndirizzo() string

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

func (*IndirizzoResa) GetIndirizzoOk

func (o *IndirizzoResa) GetIndirizzoOk() (*string, bool)

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

func (*IndirizzoResa) GetNazione

func (o *IndirizzoResa) GetNazione() string

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

func (*IndirizzoResa) GetNazioneOk

func (o *IndirizzoResa) GetNazioneOk() (*string, bool)

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

func (*IndirizzoResa) GetNumeroCivico

func (o *IndirizzoResa) GetNumeroCivico() string

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

func (*IndirizzoResa) GetNumeroCivicoOk

func (o *IndirizzoResa) GetNumeroCivicoOk() (*string, bool)

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

func (*IndirizzoResa) GetProvincia

func (o *IndirizzoResa) GetProvincia() string

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

func (*IndirizzoResa) GetProvinciaOk

func (o *IndirizzoResa) GetProvinciaOk() (*string, bool)

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

func (*IndirizzoResa) HasCap

func (o *IndirizzoResa) HasCap() bool

HasCap returns a boolean if a field has been set.

func (*IndirizzoResa) HasComune

func (o *IndirizzoResa) HasComune() bool

HasComune returns a boolean if a field has been set.

func (*IndirizzoResa) HasIndirizzo

func (o *IndirizzoResa) HasIndirizzo() bool

HasIndirizzo returns a boolean if a field has been set.

func (*IndirizzoResa) HasNazione

func (o *IndirizzoResa) HasNazione() bool

HasNazione returns a boolean if a field has been set.

func (*IndirizzoResa) HasNumeroCivico

func (o *IndirizzoResa) HasNumeroCivico() bool

HasNumeroCivico returns a boolean if a field has been set.

func (*IndirizzoResa) HasProvincia

func (o *IndirizzoResa) HasProvincia() bool

HasProvincia returns a boolean if a field has been set.

func (IndirizzoResa) MarshalJSON

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

func (*IndirizzoResa) SetCap

func (o *IndirizzoResa) SetCap(v string)

SetCap gets a reference to the given NullableString and assigns it to the Cap field.

func (*IndirizzoResa) SetCapNil

func (o *IndirizzoResa) SetCapNil()

SetCapNil sets the value for Cap to be an explicit nil

func (*IndirizzoResa) SetComune

func (o *IndirizzoResa) SetComune(v string)

SetComune gets a reference to the given NullableString and assigns it to the Comune field.

func (*IndirizzoResa) SetComuneNil

func (o *IndirizzoResa) SetComuneNil()

SetComuneNil sets the value for Comune to be an explicit nil

func (*IndirizzoResa) SetIndirizzo

func (o *IndirizzoResa) SetIndirizzo(v string)

SetIndirizzo gets a reference to the given NullableString and assigns it to the Indirizzo field.

func (*IndirizzoResa) SetIndirizzoNil

func (o *IndirizzoResa) SetIndirizzoNil()

SetIndirizzoNil sets the value for Indirizzo to be an explicit nil

func (*IndirizzoResa) SetNazione

func (o *IndirizzoResa) SetNazione(v string)

SetNazione gets a reference to the given NullableString and assigns it to the Nazione field.

func (*IndirizzoResa) SetNazioneNil

func (o *IndirizzoResa) SetNazioneNil()

SetNazioneNil sets the value for Nazione to be an explicit nil

func (*IndirizzoResa) SetNumeroCivico

func (o *IndirizzoResa) SetNumeroCivico(v string)

SetNumeroCivico gets a reference to the given NullableString and assigns it to the NumeroCivico field.

func (*IndirizzoResa) SetNumeroCivicoNil

func (o *IndirizzoResa) SetNumeroCivicoNil()

SetNumeroCivicoNil sets the value for NumeroCivico to be an explicit nil

func (*IndirizzoResa) SetProvincia

func (o *IndirizzoResa) SetProvincia(v string)

SetProvincia gets a reference to the given NullableString and assigns it to the Provincia field.

func (*IndirizzoResa) SetProvinciaNil

func (o *IndirizzoResa) SetProvinciaNil()

SetProvinciaNil sets the value for Provincia to be an explicit nil

func (IndirizzoResa) ToMap

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

func (*IndirizzoResa) UnsetCap

func (o *IndirizzoResa) UnsetCap()

UnsetCap ensures that no value is present for Cap, not even an explicit nil

func (*IndirizzoResa) UnsetComune

func (o *IndirizzoResa) UnsetComune()

UnsetComune ensures that no value is present for Comune, not even an explicit nil

func (*IndirizzoResa) UnsetIndirizzo

func (o *IndirizzoResa) UnsetIndirizzo()

UnsetIndirizzo ensures that no value is present for Indirizzo, not even an explicit nil

func (*IndirizzoResa) UnsetNazione

func (o *IndirizzoResa) UnsetNazione()

UnsetNazione ensures that no value is present for Nazione, not even an explicit nil

func (*IndirizzoResa) UnsetNumeroCivico

func (o *IndirizzoResa) UnsetNumeroCivico()

UnsetNumeroCivico ensures that no value is present for NumeroCivico, not even an explicit nil

func (*IndirizzoResa) UnsetProvincia

func (o *IndirizzoResa) UnsetProvincia()

UnsetProvincia ensures that no value is present for Provincia, not even an explicit nil

type IscrizioneREA

type IscrizioneREA struct {
	Ufficio           NullableString  `json:"ufficio,omitempty"`
	NumeroRea         NullableString  `json:"numero_rea,omitempty"`
	CapitaleSociale   NullableFloat64 `json:"capitale_sociale,omitempty"`
	SocioUnico        NullableString  `json:"socio_unico,omitempty"`
	StatoLiquidazione NullableString  `json:"stato_liquidazione,omitempty"`
}

IscrizioneREA struct for IscrizioneREA

func NewIscrizioneREA

func NewIscrizioneREA() *IscrizioneREA

NewIscrizioneREA instantiates a new IscrizioneREA 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 NewIscrizioneREAWithDefaults

func NewIscrizioneREAWithDefaults() *IscrizioneREA

NewIscrizioneREAWithDefaults instantiates a new IscrizioneREA 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 (*IscrizioneREA) GetCapitaleSociale

func (o *IscrizioneREA) GetCapitaleSociale() float64

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

func (*IscrizioneREA) GetCapitaleSocialeOk

func (o *IscrizioneREA) GetCapitaleSocialeOk() (*float64, bool)

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

func (*IscrizioneREA) GetNumeroRea

func (o *IscrizioneREA) GetNumeroRea() string

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

func (*IscrizioneREA) GetNumeroReaOk

func (o *IscrizioneREA) GetNumeroReaOk() (*string, bool)

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

func (*IscrizioneREA) GetSocioUnico

func (o *IscrizioneREA) GetSocioUnico() string

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

func (*IscrizioneREA) GetSocioUnicoOk

func (o *IscrizioneREA) GetSocioUnicoOk() (*string, bool)

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

func (*IscrizioneREA) GetStatoLiquidazione

func (o *IscrizioneREA) GetStatoLiquidazione() string

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

func (*IscrizioneREA) GetStatoLiquidazioneOk

func (o *IscrizioneREA) GetStatoLiquidazioneOk() (*string, bool)

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

func (*IscrizioneREA) GetUfficio

func (o *IscrizioneREA) GetUfficio() string

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

func (*IscrizioneREA) GetUfficioOk

func (o *IscrizioneREA) GetUfficioOk() (*string, bool)

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

func (*IscrizioneREA) HasCapitaleSociale

func (o *IscrizioneREA) HasCapitaleSociale() bool

HasCapitaleSociale returns a boolean if a field has been set.

func (*IscrizioneREA) HasNumeroRea

func (o *IscrizioneREA) HasNumeroRea() bool

HasNumeroRea returns a boolean if a field has been set.

func (*IscrizioneREA) HasSocioUnico

func (o *IscrizioneREA) HasSocioUnico() bool

HasSocioUnico returns a boolean if a field has been set.

func (*IscrizioneREA) HasStatoLiquidazione

func (o *IscrizioneREA) HasStatoLiquidazione() bool

HasStatoLiquidazione returns a boolean if a field has been set.

func (*IscrizioneREA) HasUfficio

func (o *IscrizioneREA) HasUfficio() bool

HasUfficio returns a boolean if a field has been set.

func (IscrizioneREA) MarshalJSON

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

func (*IscrizioneREA) SetCapitaleSociale

func (o *IscrizioneREA) SetCapitaleSociale(v float64)

SetCapitaleSociale gets a reference to the given NullableFloat64 and assigns it to the CapitaleSociale field.

func (*IscrizioneREA) SetCapitaleSocialeNil

func (o *IscrizioneREA) SetCapitaleSocialeNil()

SetCapitaleSocialeNil sets the value for CapitaleSociale to be an explicit nil

func (*IscrizioneREA) SetNumeroRea

func (o *IscrizioneREA) SetNumeroRea(v string)

SetNumeroRea gets a reference to the given NullableString and assigns it to the NumeroRea field.

func (*IscrizioneREA) SetNumeroReaNil

func (o *IscrizioneREA) SetNumeroReaNil()

SetNumeroReaNil sets the value for NumeroRea to be an explicit nil

func (*IscrizioneREA) SetSocioUnico

func (o *IscrizioneREA) SetSocioUnico(v string)

SetSocioUnico gets a reference to the given NullableString and assigns it to the SocioUnico field.

func (*IscrizioneREA) SetSocioUnicoNil

func (o *IscrizioneREA) SetSocioUnicoNil()

SetSocioUnicoNil sets the value for SocioUnico to be an explicit nil

func (*IscrizioneREA) SetStatoLiquidazione

func (o *IscrizioneREA) SetStatoLiquidazione(v string)

SetStatoLiquidazione gets a reference to the given NullableString and assigns it to the StatoLiquidazione field.

func (*IscrizioneREA) SetStatoLiquidazioneNil

func (o *IscrizioneREA) SetStatoLiquidazioneNil()

SetStatoLiquidazioneNil sets the value for StatoLiquidazione to be an explicit nil

func (*IscrizioneREA) SetUfficio

func (o *IscrizioneREA) SetUfficio(v string)

SetUfficio gets a reference to the given NullableString and assigns it to the Ufficio field.

func (*IscrizioneREA) SetUfficioNil

func (o *IscrizioneREA) SetUfficioNil()

SetUfficioNil sets the value for Ufficio to be an explicit nil

func (IscrizioneREA) ToMap

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

func (*IscrizioneREA) UnsetCapitaleSociale

func (o *IscrizioneREA) UnsetCapitaleSociale()

UnsetCapitaleSociale ensures that no value is present for CapitaleSociale, not even an explicit nil

func (*IscrizioneREA) UnsetNumeroRea

func (o *IscrizioneREA) UnsetNumeroRea()

UnsetNumeroRea ensures that no value is present for NumeroRea, not even an explicit nil

func (*IscrizioneREA) UnsetSocioUnico

func (o *IscrizioneREA) UnsetSocioUnico()

UnsetSocioUnico ensures that no value is present for SocioUnico, not even an explicit nil

func (*IscrizioneREA) UnsetStatoLiquidazione

func (o *IscrizioneREA) UnsetStatoLiquidazione()

UnsetStatoLiquidazione ensures that no value is present for StatoLiquidazione, not even an explicit nil

func (*IscrizioneREA) UnsetUfficio

func (o *IscrizioneREA) UnsetUfficio()

UnsetUfficio ensures that no value is present for Ufficio, not even an explicit nil

type LogAPIService

type LogAPIService service

LogAPIService LogAPI service

func (*LogAPIService) LogGet

LogGet List events

Every API operation is logged and can be retrieved here. Log records are preserved for 15 days.

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

func (*LogAPIService) LogGetExecute

func (a *LogAPIService) LogGetExecute(r ApiLogGetRequest) ([]Event, *http.Response, error)

Execute executes the request

@return []Event

func (*LogAPIService) LogIdGet

func (a *LogAPIService) LogIdGet(ctx context.Context, id int32) ApiLogIdGetRequest

LogIdGet Get an event by id

Every API operation is logged and can be retrieved here. Log records are preserved for 15 days.

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

func (*LogAPIService) LogIdGetExecute

func (a *LogAPIService) LogIdGetExecute(r ApiLogIdGetRequest) (*Event, *http.Response, error)

Execute executes the request

@return Event

type MappedNullable

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

type NullableAllegati

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

func NewNullableAllegati

func NewNullableAllegati(val *Allegati) *NullableAllegati

func (NullableAllegati) Get

func (v NullableAllegati) Get() *Allegati

func (NullableAllegati) IsSet

func (v NullableAllegati) IsSet() bool

func (NullableAllegati) MarshalJSON

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

func (*NullableAllegati) Set

func (v *NullableAllegati) Set(val *Allegati)

func (*NullableAllegati) UnmarshalJSON

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

func (*NullableAllegati) Unset

func (v *NullableAllegati) Unset()

type NullableAltriDatiGestionali

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

func NewNullableAltriDatiGestionali

func NewNullableAltriDatiGestionali(val *AltriDatiGestionali) *NullableAltriDatiGestionali

func (NullableAltriDatiGestionali) Get

func (NullableAltriDatiGestionali) IsSet

func (NullableAltriDatiGestionali) MarshalJSON

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

func (*NullableAltriDatiGestionali) Set

func (*NullableAltriDatiGestionali) UnmarshalJSON

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

func (*NullableAltriDatiGestionali) Unset

func (v *NullableAltriDatiGestionali) Unset()

type NullableAnagrafica

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

func NewNullableAnagrafica

func NewNullableAnagrafica(val *Anagrafica) *NullableAnagrafica

func (NullableAnagrafica) Get

func (v NullableAnagrafica) Get() *Anagrafica

func (NullableAnagrafica) IsSet

func (v NullableAnagrafica) IsSet() bool

func (NullableAnagrafica) MarshalJSON

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

func (*NullableAnagrafica) Set

func (v *NullableAnagrafica) Set(val *Anagrafica)

func (*NullableAnagrafica) UnmarshalJSON

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

func (*NullableAnagrafica) Unset

func (v *NullableAnagrafica) 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 NullableCedentePrestatore

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

func NewNullableCedentePrestatore

func NewNullableCedentePrestatore(val *CedentePrestatore) *NullableCedentePrestatore

func (NullableCedentePrestatore) Get

func (NullableCedentePrestatore) IsSet

func (v NullableCedentePrestatore) IsSet() bool

func (NullableCedentePrestatore) MarshalJSON

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

func (*NullableCedentePrestatore) Set

func (*NullableCedentePrestatore) UnmarshalJSON

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

func (*NullableCedentePrestatore) Unset

func (v *NullableCedentePrestatore) Unset()

type NullableCessionarioCommittente

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

func (NullableCessionarioCommittente) Get

func (NullableCessionarioCommittente) IsSet

func (NullableCessionarioCommittente) MarshalJSON

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

func (*NullableCessionarioCommittente) Set

func (*NullableCessionarioCommittente) UnmarshalJSON

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

func (*NullableCessionarioCommittente) Unset

func (v *NullableCessionarioCommittente) Unset()

type NullableCodiceArticolo

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

func NewNullableCodiceArticolo

func NewNullableCodiceArticolo(val *CodiceArticolo) *NullableCodiceArticolo

func (NullableCodiceArticolo) Get

func (NullableCodiceArticolo) IsSet

func (v NullableCodiceArticolo) IsSet() bool

func (NullableCodiceArticolo) MarshalJSON

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

func (*NullableCodiceArticolo) Set

func (*NullableCodiceArticolo) UnmarshalJSON

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

func (*NullableCodiceArticolo) Unset

func (v *NullableCodiceArticolo) Unset()

type NullableCompany

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

func NewNullableCompany

func NewNullableCompany(val *Company) *NullableCompany

func (NullableCompany) Get

func (v NullableCompany) Get() *Company

func (NullableCompany) IsSet

func (v NullableCompany) IsSet() bool

func (NullableCompany) MarshalJSON

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

func (*NullableCompany) Set

func (v *NullableCompany) Set(val *Company)

func (*NullableCompany) UnmarshalJSON

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

func (*NullableCompany) Unset

func (v *NullableCompany) Unset()

type NullableContatti

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

func NewNullableContatti

func NewNullableContatti(val *Contatti) *NullableContatti

func (NullableContatti) Get

func (v NullableContatti) Get() *Contatti

func (NullableContatti) IsSet

func (v NullableContatti) IsSet() bool

func (NullableContatti) MarshalJSON

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

func (*NullableContatti) Set

func (v *NullableContatti) Set(val *Contatti)

func (*NullableContatti) UnmarshalJSON

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

func (*NullableContatti) Unset

func (v *NullableContatti) Unset()

type NullableContattiTrasmittente

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

func NewNullableContattiTrasmittente

func NewNullableContattiTrasmittente(val *ContattiTrasmittente) *NullableContattiTrasmittente

func (NullableContattiTrasmittente) Get

func (NullableContattiTrasmittente) IsSet

func (NullableContattiTrasmittente) MarshalJSON

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

func (*NullableContattiTrasmittente) Set

func (*NullableContattiTrasmittente) UnmarshalJSON

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

func (*NullableContattiTrasmittente) Unset

func (v *NullableContattiTrasmittente) Unset()

type NullableDatiAnagrafici

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

func NewNullableDatiAnagrafici

func NewNullableDatiAnagrafici(val *DatiAnagrafici) *NullableDatiAnagrafici

func (NullableDatiAnagrafici) Get

func (NullableDatiAnagrafici) IsSet

func (v NullableDatiAnagrafici) IsSet() bool

func (NullableDatiAnagrafici) MarshalJSON

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

func (*NullableDatiAnagrafici) Set

func (*NullableDatiAnagrafici) UnmarshalJSON

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

func (*NullableDatiAnagrafici) Unset

func (v *NullableDatiAnagrafici) Unset()

type NullableDatiAnagraficiCedentePrestatore

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

func (NullableDatiAnagraficiCedentePrestatore) Get

func (NullableDatiAnagraficiCedentePrestatore) IsSet

func (NullableDatiAnagraficiCedentePrestatore) MarshalJSON

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

func (*NullableDatiAnagraficiCedentePrestatore) Set

func (*NullableDatiAnagraficiCedentePrestatore) UnmarshalJSON

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

func (*NullableDatiAnagraficiCedentePrestatore) Unset

type NullableDatiAnagraficiCessionarioCommittente

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

func (NullableDatiAnagraficiCessionarioCommittente) Get

func (NullableDatiAnagraficiCessionarioCommittente) IsSet

func (NullableDatiAnagraficiCessionarioCommittente) MarshalJSON

func (*NullableDatiAnagraficiCessionarioCommittente) Set

func (*NullableDatiAnagraficiCessionarioCommittente) UnmarshalJSON

func (*NullableDatiAnagraficiCessionarioCommittente) Unset

type NullableDatiAnagraficiVettore

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

func (NullableDatiAnagraficiVettore) Get

func (NullableDatiAnagraficiVettore) IsSet

func (NullableDatiAnagraficiVettore) MarshalJSON

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

func (*NullableDatiAnagraficiVettore) Set

func (*NullableDatiAnagraficiVettore) UnmarshalJSON

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

func (*NullableDatiAnagraficiVettore) Unset

func (v *NullableDatiAnagraficiVettore) Unset()

type NullableDatiBeniServizi

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

func NewNullableDatiBeniServizi

func NewNullableDatiBeniServizi(val *DatiBeniServizi) *NullableDatiBeniServizi

func (NullableDatiBeniServizi) Get

func (NullableDatiBeniServizi) IsSet

func (v NullableDatiBeniServizi) IsSet() bool

func (NullableDatiBeniServizi) MarshalJSON

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

func (*NullableDatiBeniServizi) Set

func (*NullableDatiBeniServizi) UnmarshalJSON

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

func (*NullableDatiBeniServizi) Unset

func (v *NullableDatiBeniServizi) Unset()

type NullableDatiBollo

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

func NewNullableDatiBollo

func NewNullableDatiBollo(val *DatiBollo) *NullableDatiBollo

func (NullableDatiBollo) Get

func (v NullableDatiBollo) Get() *DatiBollo

func (NullableDatiBollo) IsSet

func (v NullableDatiBollo) IsSet() bool

func (NullableDatiBollo) MarshalJSON

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

func (*NullableDatiBollo) Set

func (v *NullableDatiBollo) Set(val *DatiBollo)

func (*NullableDatiBollo) UnmarshalJSON

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

func (*NullableDatiBollo) Unset

func (v *NullableDatiBollo) Unset()

type NullableDatiCassaPrevidenziale

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

func (NullableDatiCassaPrevidenziale) Get

func (NullableDatiCassaPrevidenziale) IsSet

func (NullableDatiCassaPrevidenziale) MarshalJSON

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

func (*NullableDatiCassaPrevidenziale) Set

func (*NullableDatiCassaPrevidenziale) UnmarshalJSON

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

func (*NullableDatiCassaPrevidenziale) Unset

func (v *NullableDatiCassaPrevidenziale) Unset()

type NullableDatiContratto

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

func NewNullableDatiContratto

func NewNullableDatiContratto(val *DatiContratto) *NullableDatiContratto

func (NullableDatiContratto) Get

func (NullableDatiContratto) IsSet

func (v NullableDatiContratto) IsSet() bool

func (NullableDatiContratto) MarshalJSON

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

func (*NullableDatiContratto) Set

func (v *NullableDatiContratto) Set(val *DatiContratto)

func (*NullableDatiContratto) UnmarshalJSON

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

func (*NullableDatiContratto) Unset

func (v *NullableDatiContratto) Unset()

type NullableDatiConvenzione

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

func NewNullableDatiConvenzione

func NewNullableDatiConvenzione(val *DatiConvenzione) *NullableDatiConvenzione

func (NullableDatiConvenzione) Get

func (NullableDatiConvenzione) IsSet

func (v NullableDatiConvenzione) IsSet() bool

func (NullableDatiConvenzione) MarshalJSON

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

func (*NullableDatiConvenzione) Set

func (*NullableDatiConvenzione) UnmarshalJSON

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

func (*NullableDatiConvenzione) Unset

func (v *NullableDatiConvenzione) Unset()

type NullableDatiDDT

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

func NewNullableDatiDDT

func NewNullableDatiDDT(val *DatiDDT) *NullableDatiDDT

func (NullableDatiDDT) Get

func (v NullableDatiDDT) Get() *DatiDDT

func (NullableDatiDDT) IsSet

func (v NullableDatiDDT) IsSet() bool

func (NullableDatiDDT) MarshalJSON

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

func (*NullableDatiDDT) Set

func (v *NullableDatiDDT) Set(val *DatiDDT)

func (*NullableDatiDDT) UnmarshalJSON

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

func (*NullableDatiDDT) Unset

func (v *NullableDatiDDT) Unset()

type NullableDatiFattureCollegate

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

func NewNullableDatiFattureCollegate

func NewNullableDatiFattureCollegate(val *DatiFattureCollegate) *NullableDatiFattureCollegate

func (NullableDatiFattureCollegate) Get

func (NullableDatiFattureCollegate) IsSet

func (NullableDatiFattureCollegate) MarshalJSON

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

func (*NullableDatiFattureCollegate) Set

func (*NullableDatiFattureCollegate) UnmarshalJSON

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

func (*NullableDatiFattureCollegate) Unset

func (v *NullableDatiFattureCollegate) Unset()

type NullableDatiGenerali

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

func NewNullableDatiGenerali

func NewNullableDatiGenerali(val *DatiGenerali) *NullableDatiGenerali

func (NullableDatiGenerali) Get

func (NullableDatiGenerali) IsSet

func (v NullableDatiGenerali) IsSet() bool

func (NullableDatiGenerali) MarshalJSON

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

func (*NullableDatiGenerali) Set

func (v *NullableDatiGenerali) Set(val *DatiGenerali)

func (*NullableDatiGenerali) UnmarshalJSON

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

func (*NullableDatiGenerali) Unset

func (v *NullableDatiGenerali) Unset()

type NullableDatiGeneraliDocumento

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

func (NullableDatiGeneraliDocumento) Get

func (NullableDatiGeneraliDocumento) IsSet

func (NullableDatiGeneraliDocumento) MarshalJSON

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

func (*NullableDatiGeneraliDocumento) Set

func (*NullableDatiGeneraliDocumento) UnmarshalJSON

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

func (*NullableDatiGeneraliDocumento) Unset

func (v *NullableDatiGeneraliDocumento) Unset()

type NullableDatiOrdineAcquisto

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

func NewNullableDatiOrdineAcquisto

func NewNullableDatiOrdineAcquisto(val *DatiOrdineAcquisto) *NullableDatiOrdineAcquisto

func (NullableDatiOrdineAcquisto) Get

func (NullableDatiOrdineAcquisto) IsSet

func (v NullableDatiOrdineAcquisto) IsSet() bool

func (NullableDatiOrdineAcquisto) MarshalJSON

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

func (*NullableDatiOrdineAcquisto) Set

func (*NullableDatiOrdineAcquisto) UnmarshalJSON

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

func (*NullableDatiOrdineAcquisto) Unset

func (v *NullableDatiOrdineAcquisto) Unset()

type NullableDatiPagamento

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

func NewNullableDatiPagamento

func NewNullableDatiPagamento(val *DatiPagamento) *NullableDatiPagamento

func (NullableDatiPagamento) Get

func (NullableDatiPagamento) IsSet

func (v NullableDatiPagamento) IsSet() bool

func (NullableDatiPagamento) MarshalJSON

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

func (*NullableDatiPagamento) Set

func (v *NullableDatiPagamento) Set(val *DatiPagamento)

func (*NullableDatiPagamento) UnmarshalJSON

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

func (*NullableDatiPagamento) Unset

func (v *NullableDatiPagamento) Unset()

type NullableDatiRicezione

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

func NewNullableDatiRicezione

func NewNullableDatiRicezione(val *DatiRicezione) *NullableDatiRicezione

func (NullableDatiRicezione) Get

func (NullableDatiRicezione) IsSet

func (v NullableDatiRicezione) IsSet() bool

func (NullableDatiRicezione) MarshalJSON

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

func (*NullableDatiRicezione) Set

func (v *NullableDatiRicezione) Set(val *DatiRicezione)

func (*NullableDatiRicezione) UnmarshalJSON

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

func (*NullableDatiRicezione) Unset

func (v *NullableDatiRicezione) Unset()
type NullableDatiRiepilogo struct {
	// contains filtered or unexported fields
}
func NewNullableDatiRiepilogo(val *DatiRiepilogo) *NullableDatiRiepilogo

func (NullableDatiRiepilogo) Get

func (NullableDatiRiepilogo) IsSet

func (v NullableDatiRiepilogo) IsSet() bool

func (NullableDatiRiepilogo) MarshalJSON

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

func (*NullableDatiRiepilogo) Set

func (v *NullableDatiRiepilogo) Set(val *DatiRiepilogo)

func (*NullableDatiRiepilogo) UnmarshalJSON

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

func (*NullableDatiRiepilogo) Unset

func (v *NullableDatiRiepilogo) Unset()

type NullableDatiRitenuta

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

func NewNullableDatiRitenuta

func NewNullableDatiRitenuta(val *DatiRitenuta) *NullableDatiRitenuta

func (NullableDatiRitenuta) Get

func (NullableDatiRitenuta) IsSet

func (v NullableDatiRitenuta) IsSet() bool

func (NullableDatiRitenuta) MarshalJSON

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

func (*NullableDatiRitenuta) Set

func (v *NullableDatiRitenuta) Set(val *DatiRitenuta)

func (*NullableDatiRitenuta) UnmarshalJSON

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

func (*NullableDatiRitenuta) Unset

func (v *NullableDatiRitenuta) Unset()

type NullableDatiSAL

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

func NewNullableDatiSAL

func NewNullableDatiSAL(val *DatiSAL) *NullableDatiSAL

func (NullableDatiSAL) Get

func (v NullableDatiSAL) Get() *DatiSAL

func (NullableDatiSAL) IsSet

func (v NullableDatiSAL) IsSet() bool

func (NullableDatiSAL) MarshalJSON

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

func (*NullableDatiSAL) Set

func (v *NullableDatiSAL) Set(val *DatiSAL)

func (*NullableDatiSAL) UnmarshalJSON

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

func (*NullableDatiSAL) Unset

func (v *NullableDatiSAL) Unset()

type NullableDatiTrasmissione

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

func NewNullableDatiTrasmissione

func NewNullableDatiTrasmissione(val *DatiTrasmissione) *NullableDatiTrasmissione

func (NullableDatiTrasmissione) Get

func (NullableDatiTrasmissione) IsSet

func (v NullableDatiTrasmissione) IsSet() bool

func (NullableDatiTrasmissione) MarshalJSON

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

func (*NullableDatiTrasmissione) Set

func (*NullableDatiTrasmissione) UnmarshalJSON

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

func (*NullableDatiTrasmissione) Unset

func (v *NullableDatiTrasmissione) Unset()

type NullableDatiTrasporto

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

func NewNullableDatiTrasporto

func NewNullableDatiTrasporto(val *DatiTrasporto) *NullableDatiTrasporto

func (NullableDatiTrasporto) Get

func (NullableDatiTrasporto) IsSet

func (v NullableDatiTrasporto) IsSet() bool

func (NullableDatiTrasporto) MarshalJSON

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

func (*NullableDatiTrasporto) Set

func (v *NullableDatiTrasporto) Set(val *DatiTrasporto)

func (*NullableDatiTrasporto) UnmarshalJSON

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

func (*NullableDatiTrasporto) Unset

func (v *NullableDatiTrasporto) Unset()

type NullableDatiVeicoli

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

func NewNullableDatiVeicoli

func NewNullableDatiVeicoli(val *DatiVeicoli) *NullableDatiVeicoli

func (NullableDatiVeicoli) Get

func (NullableDatiVeicoli) IsSet

func (v NullableDatiVeicoli) IsSet() bool

func (NullableDatiVeicoli) MarshalJSON

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

func (*NullableDatiVeicoli) Set

func (v *NullableDatiVeicoli) Set(val *DatiVeicoli)

func (*NullableDatiVeicoli) UnmarshalJSON

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

func (*NullableDatiVeicoli) Unset

func (v *NullableDatiVeicoli) Unset()

type NullableDettaglioLinee

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

func NewNullableDettaglioLinee

func NewNullableDettaglioLinee(val *DettaglioLinee) *NullableDettaglioLinee

func (NullableDettaglioLinee) Get

func (NullableDettaglioLinee) IsSet

func (v NullableDettaglioLinee) IsSet() bool

func (NullableDettaglioLinee) MarshalJSON

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

func (*NullableDettaglioLinee) Set

func (*NullableDettaglioLinee) UnmarshalJSON

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

func (*NullableDettaglioLinee) Unset

func (v *NullableDettaglioLinee) Unset()

type NullableDettaglioPagamento

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

func NewNullableDettaglioPagamento

func NewNullableDettaglioPagamento(val *DettaglioPagamento) *NullableDettaglioPagamento

func (NullableDettaglioPagamento) Get

func (NullableDettaglioPagamento) IsSet

func (v NullableDettaglioPagamento) IsSet() bool

func (NullableDettaglioPagamento) MarshalJSON

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

func (*NullableDettaglioPagamento) Set

func (*NullableDettaglioPagamento) UnmarshalJSON

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

func (*NullableDettaglioPagamento) Unset

func (v *NullableDettaglioPagamento) Unset()

type NullableDocumentData

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

func NewNullableDocumentData

func NewNullableDocumentData(val *DocumentData) *NullableDocumentData

func (NullableDocumentData) Get

func (NullableDocumentData) IsSet

func (v NullableDocumentData) IsSet() bool

func (NullableDocumentData) MarshalJSON

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

func (*NullableDocumentData) Set

func (v *NullableDocumentData) Set(val *DocumentData)

func (*NullableDocumentData) UnmarshalJSON

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

func (*NullableDocumentData) Unset

func (v *NullableDocumentData) Unset()

type NullableError

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

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

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

func (*NullableError) Set

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

func (*NullableError) UnmarshalJSON

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

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableEvent

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

func NewNullableEvent

func NewNullableEvent(val *Event) *NullableEvent

func (NullableEvent) Get

func (v NullableEvent) Get() *Event

func (NullableEvent) IsSet

func (v NullableEvent) IsSet() bool

func (NullableEvent) MarshalJSON

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

func (*NullableEvent) Set

func (v *NullableEvent) Set(val *Event)

func (*NullableEvent) UnmarshalJSON

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

func (*NullableEvent) Unset

func (v *NullableEvent) Unset()

type NullableFatturaElettronicaBody

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

func (NullableFatturaElettronicaBody) Get

func (NullableFatturaElettronicaBody) IsSet

func (NullableFatturaElettronicaBody) MarshalJSON

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

func (*NullableFatturaElettronicaBody) Set

func (*NullableFatturaElettronicaBody) UnmarshalJSON

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

func (*NullableFatturaElettronicaBody) Unset

func (v *NullableFatturaElettronicaBody) Unset()

type NullableFatturaElettronicaHeader

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

func (NullableFatturaElettronicaHeader) Get

func (NullableFatturaElettronicaHeader) IsSet

func (NullableFatturaElettronicaHeader) MarshalJSON

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

func (*NullableFatturaElettronicaHeader) Set

func (*NullableFatturaElettronicaHeader) UnmarshalJSON

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

func (*NullableFatturaElettronicaHeader) Unset

type NullableFatturaOrdinaria

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

func NewNullableFatturaOrdinaria

func NewNullableFatturaOrdinaria(val *FatturaOrdinaria) *NullableFatturaOrdinaria

func (NullableFatturaOrdinaria) Get

func (NullableFatturaOrdinaria) IsSet

func (v NullableFatturaOrdinaria) IsSet() bool

func (NullableFatturaOrdinaria) MarshalJSON

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

func (*NullableFatturaOrdinaria) Set

func (*NullableFatturaOrdinaria) UnmarshalJSON

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

func (*NullableFatturaOrdinaria) Unset

func (v *NullableFatturaOrdinaria) Unset()

type NullableFatturaPrincipale

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

func NewNullableFatturaPrincipale

func NewNullableFatturaPrincipale(val *FatturaPrincipale) *NullableFatturaPrincipale

func (NullableFatturaPrincipale) Get

func (NullableFatturaPrincipale) IsSet

func (v NullableFatturaPrincipale) IsSet() bool

func (NullableFatturaPrincipale) MarshalJSON

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

func (*NullableFatturaPrincipale) Set

func (*NullableFatturaPrincipale) UnmarshalJSON

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

func (*NullableFatturaPrincipale) Unset

func (v *NullableFatturaPrincipale) 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 NullableIdFiscaleIVA

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

func NewNullableIdFiscaleIVA

func NewNullableIdFiscaleIVA(val *IdFiscaleIVA) *NullableIdFiscaleIVA

func (NullableIdFiscaleIVA) Get

func (NullableIdFiscaleIVA) IsSet

func (v NullableIdFiscaleIVA) IsSet() bool

func (NullableIdFiscaleIVA) MarshalJSON

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

func (*NullableIdFiscaleIVA) Set

func (v *NullableIdFiscaleIVA) Set(val *IdFiscaleIVA)

func (*NullableIdFiscaleIVA) UnmarshalJSON

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

func (*NullableIdFiscaleIVA) Unset

func (v *NullableIdFiscaleIVA) Unset()

type NullableIdTrasmittente

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

func NewNullableIdTrasmittente

func NewNullableIdTrasmittente(val *IdTrasmittente) *NullableIdTrasmittente

func (NullableIdTrasmittente) Get

func (NullableIdTrasmittente) IsSet

func (v NullableIdTrasmittente) IsSet() bool

func (NullableIdTrasmittente) MarshalJSON

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

func (*NullableIdTrasmittente) Set

func (*NullableIdTrasmittente) UnmarshalJSON

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

func (*NullableIdTrasmittente) Unset

func (v *NullableIdTrasmittente) Unset()

type NullableIndirizzoResa

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

func NewNullableIndirizzoResa

func NewNullableIndirizzoResa(val *IndirizzoResa) *NullableIndirizzoResa

func (NullableIndirizzoResa) Get

func (NullableIndirizzoResa) IsSet

func (v NullableIndirizzoResa) IsSet() bool

func (NullableIndirizzoResa) MarshalJSON

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

func (*NullableIndirizzoResa) Set

func (v *NullableIndirizzoResa) Set(val *IndirizzoResa)

func (*NullableIndirizzoResa) UnmarshalJSON

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

func (*NullableIndirizzoResa) Unset

func (v *NullableIndirizzoResa) 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 NullableIscrizioneREA

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

func NewNullableIscrizioneREA

func NewNullableIscrizioneREA(val *IscrizioneREA) *NullableIscrizioneREA

func (NullableIscrizioneREA) Get

func (NullableIscrizioneREA) IsSet

func (v NullableIscrizioneREA) IsSet() bool

func (NullableIscrizioneREA) MarshalJSON

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

func (*NullableIscrizioneREA) Set

func (v *NullableIscrizioneREA) Set(val *IscrizioneREA)

func (*NullableIscrizioneREA) UnmarshalJSON

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

func (*NullableIscrizioneREA) Unset

func (v *NullableIscrizioneREA) Unset()

type NullableProblemDetails

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

func NewNullableProblemDetails

func NewNullableProblemDetails(val *ProblemDetails) *NullableProblemDetails

func (NullableProblemDetails) Get

func (NullableProblemDetails) IsSet

func (v NullableProblemDetails) IsSet() bool

func (NullableProblemDetails) MarshalJSON

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

func (*NullableProblemDetails) Set

func (*NullableProblemDetails) UnmarshalJSON

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

func (*NullableProblemDetails) Unset

func (v *NullableProblemDetails) Unset()

type NullableProblemHttpResult

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

func NewNullableProblemHttpResult

func NewNullableProblemHttpResult(val *ProblemHttpResult) *NullableProblemHttpResult

func (NullableProblemHttpResult) Get

func (NullableProblemHttpResult) IsSet

func (v NullableProblemHttpResult) IsSet() bool

func (NullableProblemHttpResult) MarshalJSON

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

func (*NullableProblemHttpResult) Set

func (*NullableProblemHttpResult) UnmarshalJSON

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

func (*NullableProblemHttpResult) Unset

func (v *NullableProblemHttpResult) Unset()

type NullableRappresentanteFiscale

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

func (NullableRappresentanteFiscale) Get

func (NullableRappresentanteFiscale) IsSet

func (NullableRappresentanteFiscale) MarshalJSON

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

func (*NullableRappresentanteFiscale) Set

func (*NullableRappresentanteFiscale) UnmarshalJSON

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

func (*NullableRappresentanteFiscale) Unset

func (v *NullableRappresentanteFiscale) Unset()

type NullableRappresentanteFiscaleCessionarioCommittente

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

func (NullableRappresentanteFiscaleCessionarioCommittente) Get

func (NullableRappresentanteFiscaleCessionarioCommittente) IsSet

func (NullableRappresentanteFiscaleCessionarioCommittente) MarshalJSON

func (*NullableRappresentanteFiscaleCessionarioCommittente) Set

func (*NullableRappresentanteFiscaleCessionarioCommittente) UnmarshalJSON

func (*NullableRappresentanteFiscaleCessionarioCommittente) Unset

type NullableReceive

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

func NewNullableReceive

func NewNullableReceive(val *Receive) *NullableReceive

func (NullableReceive) Get

func (v NullableReceive) Get() *Receive

func (NullableReceive) IsSet

func (v NullableReceive) IsSet() bool

func (NullableReceive) MarshalJSON

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

func (*NullableReceive) Set

func (v *NullableReceive) Set(val *Receive)

func (*NullableReceive) UnmarshalJSON

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

func (*NullableReceive) Unset

func (v *NullableReceive) Unset()

type NullableScontoMaggiorazione

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

func NewNullableScontoMaggiorazione

func NewNullableScontoMaggiorazione(val *ScontoMaggiorazione) *NullableScontoMaggiorazione

func (NullableScontoMaggiorazione) Get

func (NullableScontoMaggiorazione) IsSet

func (NullableScontoMaggiorazione) MarshalJSON

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

func (*NullableScontoMaggiorazione) Set

func (*NullableScontoMaggiorazione) UnmarshalJSON

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

func (*NullableScontoMaggiorazione) Unset

func (v *NullableScontoMaggiorazione) Unset()

type NullableSedeCedentePrestatore

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

func (NullableSedeCedentePrestatore) Get

func (NullableSedeCedentePrestatore) IsSet

func (NullableSedeCedentePrestatore) MarshalJSON

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

func (*NullableSedeCedentePrestatore) Set

func (*NullableSedeCedentePrestatore) UnmarshalJSON

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

func (*NullableSedeCedentePrestatore) Unset

func (v *NullableSedeCedentePrestatore) Unset()

type NullableSedeCessionarioCommittente

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

func (NullableSedeCessionarioCommittente) Get

func (NullableSedeCessionarioCommittente) IsSet

func (NullableSedeCessionarioCommittente) MarshalJSON

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

func (*NullableSedeCessionarioCommittente) Set

func (*NullableSedeCessionarioCommittente) UnmarshalJSON

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

func (*NullableSedeCessionarioCommittente) Unset

type NullableSend

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

func NewNullableSend

func NewNullableSend(val *Send) *NullableSend

func (NullableSend) Get

func (v NullableSend) Get() *Send

func (NullableSend) IsSet

func (v NullableSend) IsSet() bool

func (NullableSend) MarshalJSON

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

func (*NullableSend) Set

func (v *NullableSend) Set(val *Send)

func (*NullableSend) UnmarshalJSON

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

func (*NullableSend) Unset

func (v *NullableSend) Unset()

type NullableSendReduced

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

func NewNullableSendReduced

func NewNullableSendReduced(val *SendReduced) *NullableSendReduced

func (NullableSendReduced) Get

func (NullableSendReduced) IsSet

func (v NullableSendReduced) IsSet() bool

func (NullableSendReduced) MarshalJSON

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

func (*NullableSendReduced) Set

func (v *NullableSendReduced) Set(val *SendReduced)

func (*NullableSendReduced) UnmarshalJSON

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

func (*NullableSendReduced) Unset

func (v *NullableSendReduced) Unset()

type NullableStabileOrganizzazione

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

func (NullableStabileOrganizzazione) Get

func (NullableStabileOrganizzazione) IsSet

func (NullableStabileOrganizzazione) MarshalJSON

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

func (*NullableStabileOrganizzazione) Set

func (*NullableStabileOrganizzazione) UnmarshalJSON

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

func (*NullableStabileOrganizzazione) Unset

func (v *NullableStabileOrganizzazione) Unset()

type NullableStatus

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

func NewNullableStatus

func NewNullableStatus(val *Status) *NullableStatus

func (NullableStatus) Get

func (v NullableStatus) Get() *Status

func (NullableStatus) IsSet

func (v NullableStatus) IsSet() bool

func (NullableStatus) MarshalJSON

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

func (*NullableStatus) Set

func (v *NullableStatus) Set(val *Status)

func (*NullableStatus) UnmarshalJSON

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

func (*NullableStatus) Unset

func (v *NullableStatus) 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 NullableTerzoIntermediarioOSoggettoEmittente

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

func (NullableTerzoIntermediarioOSoggettoEmittente) Get

func (NullableTerzoIntermediarioOSoggettoEmittente) IsSet

func (NullableTerzoIntermediarioOSoggettoEmittente) MarshalJSON

func (*NullableTerzoIntermediarioOSoggettoEmittente) Set

func (*NullableTerzoIntermediarioOSoggettoEmittente) UnmarshalJSON

func (*NullableTerzoIntermediarioOSoggettoEmittente) 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 NullableUpdate

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

func NewNullableUpdate

func NewNullableUpdate(val *Update) *NullableUpdate

func (NullableUpdate) Get

func (v NullableUpdate) Get() *Update

func (NullableUpdate) IsSet

func (v NullableUpdate) IsSet() bool

func (NullableUpdate) MarshalJSON

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

func (*NullableUpdate) Set

func (v *NullableUpdate) Set(val *Update)

func (*NullableUpdate) UnmarshalJSON

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

func (*NullableUpdate) Unset

func (v *NullableUpdate) Unset()

type NullableWebHook

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

func NewNullableWebHook

func NewNullableWebHook(val *WebHook) *NullableWebHook

func (NullableWebHook) Get

func (v NullableWebHook) Get() *WebHook

func (NullableWebHook) IsSet

func (v NullableWebHook) IsSet() bool

func (NullableWebHook) MarshalJSON

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

func (*NullableWebHook) Set

func (v *NullableWebHook) Set(val *WebHook)

func (*NullableWebHook) UnmarshalJSON

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

func (*NullableWebHook) Unset

func (v *NullableWebHook) Unset()

type NullableWebHookHistory

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

func NewNullableWebHookHistory

func NewNullableWebHookHistory(val *WebHookHistory) *NullableWebHookHistory

func (NullableWebHookHistory) Get

func (NullableWebHookHistory) IsSet

func (v NullableWebHookHistory) IsSet() bool

func (NullableWebHookHistory) MarshalJSON

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

func (*NullableWebHookHistory) Set

func (*NullableWebHookHistory) UnmarshalJSON

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

func (*NullableWebHookHistory) Unset

func (v *NullableWebHookHistory) Unset()

type ProblemDetails

type ProblemDetails struct {
	Type                 NullableString `json:"type,omitempty"`
	Title                NullableString `json:"title,omitempty"`
	Status               NullableInt32  `json:"status,omitempty"`
	Detail               NullableString `json:"detail,omitempty"`
	Instance             NullableString `json:"instance,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProblemDetails struct for ProblemDetails

func NewProblemDetails

func NewProblemDetails() *ProblemDetails

NewProblemDetails instantiates a new ProblemDetails 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 NewProblemDetailsWithDefaults

func NewProblemDetailsWithDefaults() *ProblemDetails

NewProblemDetailsWithDefaults instantiates a new ProblemDetails 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 (*ProblemDetails) GetDetail

func (o *ProblemDetails) GetDetail() string

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

func (*ProblemDetails) GetDetailOk

func (o *ProblemDetails) GetDetailOk() (*string, bool)

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

func (*ProblemDetails) GetInstance

func (o *ProblemDetails) GetInstance() string

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

func (*ProblemDetails) GetInstanceOk

func (o *ProblemDetails) GetInstanceOk() (*string, bool)

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

func (*ProblemDetails) GetStatus

func (o *ProblemDetails) GetStatus() int32

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

func (*ProblemDetails) GetStatusOk

func (o *ProblemDetails) GetStatusOk() (*int32, bool)

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

func (*ProblemDetails) GetTitle

func (o *ProblemDetails) GetTitle() string

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

func (*ProblemDetails) GetTitleOk

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

func (*ProblemDetails) GetType

func (o *ProblemDetails) GetType() string

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

func (*ProblemDetails) GetTypeOk

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

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

func (*ProblemDetails) HasDetail

func (o *ProblemDetails) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ProblemDetails) HasInstance

func (o *ProblemDetails) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (*ProblemDetails) HasStatus

func (o *ProblemDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ProblemDetails) HasTitle

func (o *ProblemDetails) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ProblemDetails) HasType

func (o *ProblemDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (ProblemDetails) MarshalJSON

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

func (*ProblemDetails) SetDetail

func (o *ProblemDetails) SetDetail(v string)

SetDetail gets a reference to the given NullableString and assigns it to the Detail field.

func (*ProblemDetails) SetDetailNil

func (o *ProblemDetails) SetDetailNil()

SetDetailNil sets the value for Detail to be an explicit nil

func (*ProblemDetails) SetInstance

func (o *ProblemDetails) SetInstance(v string)

SetInstance gets a reference to the given NullableString and assigns it to the Instance field.

func (*ProblemDetails) SetInstanceNil

func (o *ProblemDetails) SetInstanceNil()

SetInstanceNil sets the value for Instance to be an explicit nil

func (*ProblemDetails) SetStatus

func (o *ProblemDetails) SetStatus(v int32)

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

func (*ProblemDetails) SetStatusNil

func (o *ProblemDetails) SetStatusNil()

SetStatusNil sets the value for Status to be an explicit nil

func (*ProblemDetails) SetTitle

func (o *ProblemDetails) SetTitle(v string)

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

func (*ProblemDetails) SetTitleNil

func (o *ProblemDetails) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ProblemDetails) SetType

func (o *ProblemDetails) SetType(v string)

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

func (*ProblemDetails) SetTypeNil

func (o *ProblemDetails) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (ProblemDetails) ToMap

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

func (*ProblemDetails) UnmarshalJSON

func (o *ProblemDetails) UnmarshalJSON(data []byte) (err error)

func (*ProblemDetails) UnsetDetail

func (o *ProblemDetails) UnsetDetail()

UnsetDetail ensures that no value is present for Detail, not even an explicit nil

func (*ProblemDetails) UnsetInstance

func (o *ProblemDetails) UnsetInstance()

UnsetInstance ensures that no value is present for Instance, not even an explicit nil

func (*ProblemDetails) UnsetStatus

func (o *ProblemDetails) UnsetStatus()

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

func (*ProblemDetails) UnsetTitle

func (o *ProblemDetails) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

func (*ProblemDetails) UnsetType

func (o *ProblemDetails) UnsetType()

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

type ProblemHttpResult

type ProblemHttpResult struct {
	ProblemDetails *ProblemDetails `json:"problem_details,omitempty"`
	ContentType    NullableString  `json:"content_type,omitempty"`
	StatusCode     *int32          `json:"status_code,omitempty"`
}

ProblemHttpResult struct for ProblemHttpResult

func NewProblemHttpResult

func NewProblemHttpResult() *ProblemHttpResult

NewProblemHttpResult instantiates a new ProblemHttpResult 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 NewProblemHttpResultWithDefaults

func NewProblemHttpResultWithDefaults() *ProblemHttpResult

NewProblemHttpResultWithDefaults instantiates a new ProblemHttpResult 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 (*ProblemHttpResult) GetContentType

func (o *ProblemHttpResult) GetContentType() string

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

func (*ProblemHttpResult) GetContentTypeOk

func (o *ProblemHttpResult) GetContentTypeOk() (*string, bool)

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

func (*ProblemHttpResult) GetProblemDetails

func (o *ProblemHttpResult) GetProblemDetails() ProblemDetails

GetProblemDetails returns the ProblemDetails field value if set, zero value otherwise.

func (*ProblemHttpResult) GetProblemDetailsOk

func (o *ProblemHttpResult) GetProblemDetailsOk() (*ProblemDetails, bool)

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

func (*ProblemHttpResult) GetStatusCode

func (o *ProblemHttpResult) GetStatusCode() int32

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*ProblemHttpResult) GetStatusCodeOk

func (o *ProblemHttpResult) GetStatusCodeOk() (*int32, bool)

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

func (*ProblemHttpResult) HasContentType

func (o *ProblemHttpResult) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*ProblemHttpResult) HasProblemDetails

func (o *ProblemHttpResult) HasProblemDetails() bool

HasProblemDetails returns a boolean if a field has been set.

func (*ProblemHttpResult) HasStatusCode

func (o *ProblemHttpResult) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (ProblemHttpResult) MarshalJSON

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

func (*ProblemHttpResult) SetContentType

func (o *ProblemHttpResult) SetContentType(v string)

SetContentType gets a reference to the given NullableString and assigns it to the ContentType field.

func (*ProblemHttpResult) SetContentTypeNil

func (o *ProblemHttpResult) SetContentTypeNil()

SetContentTypeNil sets the value for ContentType to be an explicit nil

func (*ProblemHttpResult) SetProblemDetails

func (o *ProblemHttpResult) SetProblemDetails(v ProblemDetails)

SetProblemDetails gets a reference to the given ProblemDetails and assigns it to the ProblemDetails field.

func (*ProblemHttpResult) SetStatusCode

func (o *ProblemHttpResult) SetStatusCode(v int32)

SetStatusCode gets a reference to the given int32 and assigns it to the StatusCode field.

func (ProblemHttpResult) ToMap

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

func (*ProblemHttpResult) UnsetContentType

func (o *ProblemHttpResult) UnsetContentType()

UnsetContentType ensures that no value is present for ContentType, not even an explicit nil

type RappresentanteFiscale

type RappresentanteFiscale struct {
	DatiAnagrafici *DatiAnagrafici `json:"dati_anagrafici,omitempty"`
}

RappresentanteFiscale struct for RappresentanteFiscale

func NewRappresentanteFiscale

func NewRappresentanteFiscale() *RappresentanteFiscale

NewRappresentanteFiscale instantiates a new RappresentanteFiscale 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 NewRappresentanteFiscaleWithDefaults

func NewRappresentanteFiscaleWithDefaults() *RappresentanteFiscale

NewRappresentanteFiscaleWithDefaults instantiates a new RappresentanteFiscale 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 (*RappresentanteFiscale) GetDatiAnagrafici

func (o *RappresentanteFiscale) GetDatiAnagrafici() DatiAnagrafici

GetDatiAnagrafici returns the DatiAnagrafici field value if set, zero value otherwise.

func (*RappresentanteFiscale) GetDatiAnagraficiOk

func (o *RappresentanteFiscale) GetDatiAnagraficiOk() (*DatiAnagrafici, bool)

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

func (*RappresentanteFiscale) HasDatiAnagrafici

func (o *RappresentanteFiscale) HasDatiAnagrafici() bool

HasDatiAnagrafici returns a boolean if a field has been set.

func (RappresentanteFiscale) MarshalJSON

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

func (*RappresentanteFiscale) SetDatiAnagrafici

func (o *RappresentanteFiscale) SetDatiAnagrafici(v DatiAnagrafici)

SetDatiAnagrafici gets a reference to the given DatiAnagrafici and assigns it to the DatiAnagrafici field.

func (RappresentanteFiscale) ToMap

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

type RappresentanteFiscaleCessionarioCommittente

type RappresentanteFiscaleCessionarioCommittente struct {
	Denominazione NullableString `json:"denominazione,omitempty"`
	Nome          NullableString `json:"nome,omitempty"`
	Cognome       NullableString `json:"cognome,omitempty"`
	IdFiscaleIva  *IdFiscaleIVA  `json:"id_fiscale_iva,omitempty"`
}

RappresentanteFiscaleCessionarioCommittente struct for RappresentanteFiscaleCessionarioCommittente

func NewRappresentanteFiscaleCessionarioCommittente

func NewRappresentanteFiscaleCessionarioCommittente() *RappresentanteFiscaleCessionarioCommittente

NewRappresentanteFiscaleCessionarioCommittente instantiates a new RappresentanteFiscaleCessionarioCommittente 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 NewRappresentanteFiscaleCessionarioCommittenteWithDefaults

func NewRappresentanteFiscaleCessionarioCommittenteWithDefaults() *RappresentanteFiscaleCessionarioCommittente

NewRappresentanteFiscaleCessionarioCommittenteWithDefaults instantiates a new RappresentanteFiscaleCessionarioCommittente 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 (*RappresentanteFiscaleCessionarioCommittente) GetCognome

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

func (*RappresentanteFiscaleCessionarioCommittente) GetCognomeOk

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

func (*RappresentanteFiscaleCessionarioCommittente) GetDenominazione

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

func (*RappresentanteFiscaleCessionarioCommittente) GetDenominazioneOk

func (o *RappresentanteFiscaleCessionarioCommittente) GetDenominazioneOk() (*string, bool)

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

func (*RappresentanteFiscaleCessionarioCommittente) GetIdFiscaleIva

GetIdFiscaleIva returns the IdFiscaleIva field value if set, zero value otherwise.

func (*RappresentanteFiscaleCessionarioCommittente) GetIdFiscaleIvaOk

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

func (*RappresentanteFiscaleCessionarioCommittente) GetNome

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

func (*RappresentanteFiscaleCessionarioCommittente) GetNomeOk

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

func (*RappresentanteFiscaleCessionarioCommittente) HasCognome

HasCognome returns a boolean if a field has been set.

func (*RappresentanteFiscaleCessionarioCommittente) HasDenominazione

func (o *RappresentanteFiscaleCessionarioCommittente) HasDenominazione() bool

HasDenominazione returns a boolean if a field has been set.

func (*RappresentanteFiscaleCessionarioCommittente) HasIdFiscaleIva

HasIdFiscaleIva returns a boolean if a field has been set.

func (*RappresentanteFiscaleCessionarioCommittente) HasNome

HasNome returns a boolean if a field has been set.

func (RappresentanteFiscaleCessionarioCommittente) MarshalJSON

func (*RappresentanteFiscaleCessionarioCommittente) SetCognome

SetCognome gets a reference to the given NullableString and assigns it to the Cognome field.

func (*RappresentanteFiscaleCessionarioCommittente) SetCognomeNil

SetCognomeNil sets the value for Cognome to be an explicit nil

func (*RappresentanteFiscaleCessionarioCommittente) SetDenominazione

func (o *RappresentanteFiscaleCessionarioCommittente) SetDenominazione(v string)

SetDenominazione gets a reference to the given NullableString and assigns it to the Denominazione field.

func (*RappresentanteFiscaleCessionarioCommittente) SetDenominazioneNil

func (o *RappresentanteFiscaleCessionarioCommittente) SetDenominazioneNil()

SetDenominazioneNil sets the value for Denominazione to be an explicit nil

func (*RappresentanteFiscaleCessionarioCommittente) SetIdFiscaleIva

SetIdFiscaleIva gets a reference to the given IdFiscaleIVA and assigns it to the IdFiscaleIva field.

func (*RappresentanteFiscaleCessionarioCommittente) SetNome

SetNome gets a reference to the given NullableString and assigns it to the Nome field.

func (*RappresentanteFiscaleCessionarioCommittente) SetNomeNil

SetNomeNil sets the value for Nome to be an explicit nil

func (RappresentanteFiscaleCessionarioCommittente) ToMap

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

func (*RappresentanteFiscaleCessionarioCommittente) UnsetCognome

UnsetCognome ensures that no value is present for Cognome, not even an explicit nil

func (*RappresentanteFiscaleCessionarioCommittente) UnsetDenominazione

func (o *RappresentanteFiscaleCessionarioCommittente) UnsetDenominazione()

UnsetDenominazione ensures that no value is present for Denominazione, not even an explicit nil

func (*RappresentanteFiscaleCessionarioCommittente) UnsetNome

UnsetNome ensures that no value is present for Nome, not even an explicit nil

type Receive

type Receive struct {
	// Unique identifier. Leave it at 0 for new records as it will be set automatically.
	Id *int32 `json:"id,omitempty"`
	// Creation date. It is set automatically.
	Created *time.Time `json:"created,omitempty"`
	// Row version, for optimistic concurrency. It is set automatically.
	Version *int32 `json:"version,omitempty"`
	// User id.
	UserId *int32 `json:"user_id,omitempty"`
	// Company id. On send, this is the sender and must be set in advance. On receive, it will be  automatically set based on the recipient's VAT number. If a matching company is not found, the invoice will be rejected until the company is created.
	CompanyId *int32 `json:"company_id,omitempty"`
	// VAT number of the Cessionario/Committente (customer). This is automatically set based on the recipient's VAT number.
	Committente NullableString `json:"committente,omitempty"`
	// VAT number of the Cedente/Prestatore (vendor). This is automatically set based on the sender's VAT number.
	Prestatore NullableString `json:"prestatore,omitempty"`
	// SDI identifier. This is set by the SDI and is guaranted to be unique within the SDI system.
	Identifier NullableString `json:"identifier,omitempty"`
	// Xml file name.
	FileName NullableString `json:"file_name,omitempty"`
	// SDI format (FPA12, FPR12, FSM10, ...)
	Format NullableString `json:"format,omitempty"`
	// Xml payloaad. This is the actual xml content, as string. On send, it can be base64 encoded. If it's not, it will be encoded before sending. It is guaranteed to be cyphered at rest.
	Payload NullableString `json:"payload,omitempty"`
	// Last update from SDI.
	LastUpdate NullableTime `json:"last_update,omitempty"`
	// When the invoice was sent to SDI.
	DateSent NullableTime `json:"date_sent,omitempty"`
	// The invoices included in the payload. This is set by the system, based on the xml content.
	Documents []DocumentData `json:"documents,omitempty"`
	// Whether the payload is Base64 encoded or a plain XML (text).
	Encoding *string `json:"encoding,omitempty"`
	// Wether the invoice has been read at least once.
	IsRead *bool `json:"is_read,omitempty"`
	// SDI message id.
	MessageId NullableString `json:"message_id,omitempty"`
}

Receive struct for Receive

func NewReceive

func NewReceive() *Receive

NewReceive instantiates a new Receive 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 NewReceiveWithDefaults

func NewReceiveWithDefaults() *Receive

NewReceiveWithDefaults instantiates a new Receive 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 (*Receive) GetCommittente

func (o *Receive) GetCommittente() string

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

func (*Receive) GetCommittenteOk

func (o *Receive) GetCommittenteOk() (*string, bool)

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

func (*Receive) GetCompanyId

func (o *Receive) GetCompanyId() int32

GetCompanyId returns the CompanyId field value if set, zero value otherwise.

func (*Receive) GetCompanyIdOk

func (o *Receive) GetCompanyIdOk() (*int32, bool)

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

func (*Receive) GetCreated

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

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

func (*Receive) GetCreatedOk

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

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

func (*Receive) GetDateSent

func (o *Receive) GetDateSent() time.Time

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

func (*Receive) GetDateSentOk

func (o *Receive) GetDateSentOk() (*time.Time, bool)

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

func (*Receive) GetDocuments

func (o *Receive) GetDocuments() []DocumentData

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

func (*Receive) GetDocumentsOk

func (o *Receive) GetDocumentsOk() ([]DocumentData, bool)

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

func (*Receive) GetEncoding

func (o *Receive) GetEncoding() string

GetEncoding returns the Encoding field value if set, zero value otherwise.

func (*Receive) GetEncodingOk

func (o *Receive) GetEncodingOk() (*string, bool)

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

func (*Receive) GetFileName

func (o *Receive) GetFileName() string

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

func (*Receive) GetFileNameOk

func (o *Receive) GetFileNameOk() (*string, bool)

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

func (*Receive) GetFormat

func (o *Receive) GetFormat() string

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

func (*Receive) GetFormatOk

func (o *Receive) GetFormatOk() (*string, bool)

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

func (*Receive) GetId

func (o *Receive) GetId() int32

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

func (*Receive) GetIdOk

func (o *Receive) GetIdOk() (*int32, bool)

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

func (*Receive) GetIdentifier

func (o *Receive) GetIdentifier() string

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

func (*Receive) GetIdentifierOk

func (o *Receive) GetIdentifierOk() (*string, bool)

GetIdentifierOk returns a tuple with the Identifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Receive) GetIsRead

func (o *Receive) GetIsRead() bool

GetIsRead returns the IsRead field value if set, zero value otherwise.

func (*Receive) GetIsReadOk

func (o *Receive) GetIsReadOk() (*bool, bool)

GetIsReadOk returns a tuple with the IsRead field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Receive) GetLastUpdate

func (o *Receive) GetLastUpdate() time.Time

GetLastUpdate returns the LastUpdate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Receive) GetLastUpdateOk

func (o *Receive) GetLastUpdateOk() (*time.Time, bool)

GetLastUpdateOk returns a tuple with the LastUpdate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Receive) GetMessageId

func (o *Receive) GetMessageId() string

GetMessageId returns the MessageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Receive) GetMessageIdOk

func (o *Receive) GetMessageIdOk() (*string, bool)

GetMessageIdOk returns a tuple with the MessageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Receive) GetPayload

func (o *Receive) GetPayload() string

GetPayload returns the Payload field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Receive) GetPayloadOk

func (o *Receive) GetPayloadOk() (*string, bool)

GetPayloadOk returns a tuple with the Payload field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Receive) GetPrestatore

func (o *Receive) GetPrestatore() string

GetPrestatore returns the Prestatore field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Receive) GetPrestatoreOk

func (o *Receive) GetPrestatoreOk() (*string, bool)

GetPrestatoreOk returns a tuple with the Prestatore field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Receive) GetUserId

func (o *Receive) GetUserId() int32

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Receive) GetUserIdOk

func (o *Receive) GetUserIdOk() (*int32, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Receive) GetVersion

func (o *Receive) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*Receive) GetVersionOk

func (o *Receive) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Receive) HasCommittente

func (o *Receive) HasCommittente() bool

HasCommittente returns a boolean if a field has been set.

func (*Receive) HasCompanyId

func (o *Receive) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*Receive) HasCreated

func (o *Receive) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Receive) HasDateSent

func (o *Receive) HasDateSent() bool

HasDateSent returns a boolean if a field has been set.

func (*Receive) HasDocuments

func (o *Receive) HasDocuments() bool

HasDocuments returns a boolean if a field has been set.

func (*Receive) HasEncoding

func (o *Receive) HasEncoding() bool

HasEncoding returns a boolean if a field has been set.

func (*Receive) HasFileName

func (o *Receive) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*Receive) HasFormat

func (o *Receive) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*Receive) HasId

func (o *Receive) HasId() bool

HasId returns a boolean if a field has been set.

func (*Receive) HasIdentifier

func (o *Receive) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

func (*Receive) HasIsRead

func (o *Receive) HasIsRead() bool

HasIsRead returns a boolean if a field has been set.

func (*Receive) HasLastUpdate

func (o *Receive) HasLastUpdate() bool

HasLastUpdate returns a boolean if a field has been set.

func (*Receive) HasMessageId

func (o *Receive) HasMessageId() bool

HasMessageId returns a boolean if a field has been set.

func (*Receive) HasPayload

func (o *Receive) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*Receive) HasPrestatore

func (o *Receive) HasPrestatore() bool

HasPrestatore returns a boolean if a field has been set.

func (*Receive) HasUserId

func (o *Receive) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*Receive) HasVersion

func (o *Receive) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Receive) MarshalJSON

func (o Receive) MarshalJSON() ([]byte, error)

func (*Receive) SetCommittente

func (o *Receive) SetCommittente(v string)

SetCommittente gets a reference to the given NullableString and assigns it to the Committente field.

func (*Receive) SetCommittenteNil

func (o *Receive) SetCommittenteNil()

SetCommittenteNil sets the value for Committente to be an explicit nil

func (*Receive) SetCompanyId

func (o *Receive) SetCompanyId(v int32)

SetCompanyId gets a reference to the given int32 and assigns it to the CompanyId field.

func (*Receive) SetCreated

func (o *Receive) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Receive) SetDateSent

func (o *Receive) SetDateSent(v time.Time)

SetDateSent gets a reference to the given NullableTime and assigns it to the DateSent field.

func (*Receive) SetDateSentNil

func (o *Receive) SetDateSentNil()

SetDateSentNil sets the value for DateSent to be an explicit nil

func (*Receive) SetDocuments

func (o *Receive) SetDocuments(v []DocumentData)

SetDocuments gets a reference to the given []DocumentData and assigns it to the Documents field.

func (*Receive) SetEncoding

func (o *Receive) SetEncoding(v string)

SetEncoding gets a reference to the given string and assigns it to the Encoding field.

func (*Receive) SetFileName

func (o *Receive) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*Receive) SetFileNameNil

func (o *Receive) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (*Receive) SetFormat

func (o *Receive) SetFormat(v string)

SetFormat gets a reference to the given NullableString and assigns it to the Format field.

func (*Receive) SetFormatNil

func (o *Receive) SetFormatNil()

SetFormatNil sets the value for Format to be an explicit nil

func (*Receive) SetId

func (o *Receive) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*Receive) SetIdentifier

func (o *Receive) SetIdentifier(v string)

SetIdentifier gets a reference to the given NullableString and assigns it to the Identifier field.

func (*Receive) SetIdentifierNil

func (o *Receive) SetIdentifierNil()

SetIdentifierNil sets the value for Identifier to be an explicit nil

func (*Receive) SetIsRead

func (o *Receive) SetIsRead(v bool)

SetIsRead gets a reference to the given bool and assigns it to the IsRead field.

func (*Receive) SetLastUpdate

func (o *Receive) SetLastUpdate(v time.Time)

SetLastUpdate gets a reference to the given NullableTime and assigns it to the LastUpdate field.

func (*Receive) SetLastUpdateNil

func (o *Receive) SetLastUpdateNil()

SetLastUpdateNil sets the value for LastUpdate to be an explicit nil

func (*Receive) SetMessageId

func (o *Receive) SetMessageId(v string)

SetMessageId gets a reference to the given NullableString and assigns it to the MessageId field.

func (*Receive) SetMessageIdNil

func (o *Receive) SetMessageIdNil()

SetMessageIdNil sets the value for MessageId to be an explicit nil

func (*Receive) SetPayload

func (o *Receive) SetPayload(v string)

SetPayload gets a reference to the given NullableString and assigns it to the Payload field.

func (*Receive) SetPayloadNil

func (o *Receive) SetPayloadNil()

SetPayloadNil sets the value for Payload to be an explicit nil

func (*Receive) SetPrestatore

func (o *Receive) SetPrestatore(v string)

SetPrestatore gets a reference to the given NullableString and assigns it to the Prestatore field.

func (*Receive) SetPrestatoreNil

func (o *Receive) SetPrestatoreNil()

SetPrestatoreNil sets the value for Prestatore to be an explicit nil

func (*Receive) SetUserId

func (o *Receive) SetUserId(v int32)

SetUserId gets a reference to the given int32 and assigns it to the UserId field.

func (*Receive) SetVersion

func (o *Receive) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (Receive) ToMap

func (o Receive) ToMap() (map[string]interface{}, error)

func (*Receive) UnsetCommittente

func (o *Receive) UnsetCommittente()

UnsetCommittente ensures that no value is present for Committente, not even an explicit nil

func (*Receive) UnsetDateSent

func (o *Receive) UnsetDateSent()

UnsetDateSent ensures that no value is present for DateSent, not even an explicit nil

func (*Receive) UnsetFileName

func (o *Receive) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

func (*Receive) UnsetFormat

func (o *Receive) UnsetFormat()

UnsetFormat ensures that no value is present for Format, not even an explicit nil

func (*Receive) UnsetIdentifier

func (o *Receive) UnsetIdentifier()

UnsetIdentifier ensures that no value is present for Identifier, not even an explicit nil

func (*Receive) UnsetLastUpdate

func (o *Receive) UnsetLastUpdate()

UnsetLastUpdate ensures that no value is present for LastUpdate, not even an explicit nil

func (*Receive) UnsetMessageId

func (o *Receive) UnsetMessageId()

UnsetMessageId ensures that no value is present for MessageId, not even an explicit nil

func (*Receive) UnsetPayload

func (o *Receive) UnsetPayload()

UnsetPayload ensures that no value is present for Payload, not even an explicit nil

func (*Receive) UnsetPrestatore

func (o *Receive) UnsetPrestatore()

UnsetPrestatore ensures that no value is present for Prestatore, not even an explicit nil

type ReceiveAPIService

type ReceiveAPIService service

ReceiveAPIService ReceiveAPI service

func (*ReceiveAPIService) ReceiveGet

ReceiveGet List incoming invoices

Receive invoices are the invoices that are received from other companies. They are preserved for two years in the live environment and 24 hours in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReceiveGetRequest

func (*ReceiveAPIService) ReceiveGetExecute

func (a *ReceiveAPIService) ReceiveGetExecute(r ApiReceiveGetRequest) ([]Receive, *http.Response, error)

Execute executes the request

@return []Receive

func (*ReceiveAPIService) ReceiveIdDelete

func (a *ReceiveAPIService) ReceiveIdDelete(ctx context.Context, id int32) ApiReceiveIdDeleteRequest

ReceiveIdDelete Delete an incoming invoice by id

Receive invoices are the invoices that are received from other companies. They are preserved for two years in the live environment and 24 hours in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Item id
@return ApiReceiveIdDeleteRequest

func (*ReceiveAPIService) ReceiveIdDeleteExecute

func (a *ReceiveAPIService) ReceiveIdDeleteExecute(r ApiReceiveIdDeleteRequest) (*Receive, *http.Response, error)

Execute executes the request

@return Receive

func (*ReceiveAPIService) ReceiveIdGet

ReceiveIdGet Get an incoming invoice by id

Receive invoices are the invoices that are received from other companies. They are preserved for two years in the live environment and 24 hours in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Item id
@return ApiReceiveIdGetRequest

func (*ReceiveAPIService) ReceiveIdGetExecute

func (a *ReceiveAPIService) ReceiveIdGetExecute(r ApiReceiveIdGetRequest) (*Receive, *http.Response, error)

Execute executes the request

@return Receive

type ScontoMaggiorazione

type ScontoMaggiorazione struct {
	Tipo        NullableString  `json:"tipo,omitempty"`
	Percentuale NullableFloat64 `json:"percentuale,omitempty"`
	Importo     NullableFloat64 `json:"importo,omitempty"`
}

ScontoMaggiorazione struct for ScontoMaggiorazione

func NewScontoMaggiorazione

func NewScontoMaggiorazione() *ScontoMaggiorazione

NewScontoMaggiorazione instantiates a new ScontoMaggiorazione 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 NewScontoMaggiorazioneWithDefaults

func NewScontoMaggiorazioneWithDefaults() *ScontoMaggiorazione

NewScontoMaggiorazioneWithDefaults instantiates a new ScontoMaggiorazione 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 (*ScontoMaggiorazione) GetImporto

func (o *ScontoMaggiorazione) GetImporto() float64

GetImporto returns the Importo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScontoMaggiorazione) GetImportoOk

func (o *ScontoMaggiorazione) GetImportoOk() (*float64, bool)

GetImportoOk returns a tuple with the Importo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScontoMaggiorazione) GetPercentuale

func (o *ScontoMaggiorazione) GetPercentuale() float64

GetPercentuale returns the Percentuale field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScontoMaggiorazione) GetPercentualeOk

func (o *ScontoMaggiorazione) GetPercentualeOk() (*float64, bool)

GetPercentualeOk returns a tuple with the Percentuale field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScontoMaggiorazione) GetTipo

func (o *ScontoMaggiorazione) GetTipo() string

GetTipo returns the Tipo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ScontoMaggiorazione) GetTipoOk

func (o *ScontoMaggiorazione) GetTipoOk() (*string, bool)

GetTipoOk returns a tuple with the Tipo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ScontoMaggiorazione) HasImporto

func (o *ScontoMaggiorazione) HasImporto() bool

HasImporto returns a boolean if a field has been set.

func (*ScontoMaggiorazione) HasPercentuale

func (o *ScontoMaggiorazione) HasPercentuale() bool

HasPercentuale returns a boolean if a field has been set.

func (*ScontoMaggiorazione) HasTipo

func (o *ScontoMaggiorazione) HasTipo() bool

HasTipo returns a boolean if a field has been set.

func (ScontoMaggiorazione) MarshalJSON

func (o ScontoMaggiorazione) MarshalJSON() ([]byte, error)

func (*ScontoMaggiorazione) SetImporto

func (o *ScontoMaggiorazione) SetImporto(v float64)

SetImporto gets a reference to the given NullableFloat64 and assigns it to the Importo field.

func (*ScontoMaggiorazione) SetImportoNil

func (o *ScontoMaggiorazione) SetImportoNil()

SetImportoNil sets the value for Importo to be an explicit nil

func (*ScontoMaggiorazione) SetPercentuale

func (o *ScontoMaggiorazione) SetPercentuale(v float64)

SetPercentuale gets a reference to the given NullableFloat64 and assigns it to the Percentuale field.

func (*ScontoMaggiorazione) SetPercentualeNil

func (o *ScontoMaggiorazione) SetPercentualeNil()

SetPercentualeNil sets the value for Percentuale to be an explicit nil

func (*ScontoMaggiorazione) SetTipo

func (o *ScontoMaggiorazione) SetTipo(v string)

SetTipo gets a reference to the given NullableString and assigns it to the Tipo field.

func (*ScontoMaggiorazione) SetTipoNil

func (o *ScontoMaggiorazione) SetTipoNil()

SetTipoNil sets the value for Tipo to be an explicit nil

func (ScontoMaggiorazione) ToMap

func (o ScontoMaggiorazione) ToMap() (map[string]interface{}, error)

func (*ScontoMaggiorazione) UnsetImporto

func (o *ScontoMaggiorazione) UnsetImporto()

UnsetImporto ensures that no value is present for Importo, not even an explicit nil

func (*ScontoMaggiorazione) UnsetPercentuale

func (o *ScontoMaggiorazione) UnsetPercentuale()

UnsetPercentuale ensures that no value is present for Percentuale, not even an explicit nil

func (*ScontoMaggiorazione) UnsetTipo

func (o *ScontoMaggiorazione) UnsetTipo()

UnsetTipo ensures that no value is present for Tipo, not even an explicit nil

type SedeCedentePrestatore

type SedeCedentePrestatore struct {
	Indirizzo    NullableString `json:"indirizzo,omitempty"`
	NumeroCivico NullableString `json:"numero_civico,omitempty"`
	Cap          NullableString `json:"cap,omitempty"`
	Comune       NullableString `json:"comune,omitempty"`
	Provincia    NullableString `json:"provincia,omitempty"`
	Nazione      NullableString `json:"nazione,omitempty"`
}

SedeCedentePrestatore struct for SedeCedentePrestatore

func NewSedeCedentePrestatore

func NewSedeCedentePrestatore() *SedeCedentePrestatore

NewSedeCedentePrestatore instantiates a new SedeCedentePrestatore 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 NewSedeCedentePrestatoreWithDefaults

func NewSedeCedentePrestatoreWithDefaults() *SedeCedentePrestatore

NewSedeCedentePrestatoreWithDefaults instantiates a new SedeCedentePrestatore 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 (*SedeCedentePrestatore) GetCap

func (o *SedeCedentePrestatore) GetCap() string

GetCap returns the Cap field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCedentePrestatore) GetCapOk

func (o *SedeCedentePrestatore) GetCapOk() (*string, bool)

GetCapOk returns a tuple with the Cap field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCedentePrestatore) GetComune

func (o *SedeCedentePrestatore) GetComune() string

GetComune returns the Comune field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCedentePrestatore) GetComuneOk

func (o *SedeCedentePrestatore) GetComuneOk() (*string, bool)

GetComuneOk returns a tuple with the Comune field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCedentePrestatore) GetIndirizzo

func (o *SedeCedentePrestatore) GetIndirizzo() string

GetIndirizzo returns the Indirizzo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCedentePrestatore) GetIndirizzoOk

func (o *SedeCedentePrestatore) GetIndirizzoOk() (*string, bool)

GetIndirizzoOk returns a tuple with the Indirizzo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCedentePrestatore) GetNazione

func (o *SedeCedentePrestatore) GetNazione() string

GetNazione returns the Nazione field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCedentePrestatore) GetNazioneOk

func (o *SedeCedentePrestatore) GetNazioneOk() (*string, bool)

GetNazioneOk returns a tuple with the Nazione field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCedentePrestatore) GetNumeroCivico

func (o *SedeCedentePrestatore) GetNumeroCivico() string

GetNumeroCivico returns the NumeroCivico field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCedentePrestatore) GetNumeroCivicoOk

func (o *SedeCedentePrestatore) GetNumeroCivicoOk() (*string, bool)

GetNumeroCivicoOk returns a tuple with the NumeroCivico field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCedentePrestatore) GetProvincia

func (o *SedeCedentePrestatore) GetProvincia() string

GetProvincia returns the Provincia field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCedentePrestatore) GetProvinciaOk

func (o *SedeCedentePrestatore) GetProvinciaOk() (*string, bool)

GetProvinciaOk returns a tuple with the Provincia field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCedentePrestatore) HasCap

func (o *SedeCedentePrestatore) HasCap() bool

HasCap returns a boolean if a field has been set.

func (*SedeCedentePrestatore) HasComune

func (o *SedeCedentePrestatore) HasComune() bool

HasComune returns a boolean if a field has been set.

func (*SedeCedentePrestatore) HasIndirizzo

func (o *SedeCedentePrestatore) HasIndirizzo() bool

HasIndirizzo returns a boolean if a field has been set.

func (*SedeCedentePrestatore) HasNazione

func (o *SedeCedentePrestatore) HasNazione() bool

HasNazione returns a boolean if a field has been set.

func (*SedeCedentePrestatore) HasNumeroCivico

func (o *SedeCedentePrestatore) HasNumeroCivico() bool

HasNumeroCivico returns a boolean if a field has been set.

func (*SedeCedentePrestatore) HasProvincia

func (o *SedeCedentePrestatore) HasProvincia() bool

HasProvincia returns a boolean if a field has been set.

func (SedeCedentePrestatore) MarshalJSON

func (o SedeCedentePrestatore) MarshalJSON() ([]byte, error)

func (*SedeCedentePrestatore) SetCap

func (o *SedeCedentePrestatore) SetCap(v string)

SetCap gets a reference to the given NullableString and assigns it to the Cap field.

func (*SedeCedentePrestatore) SetCapNil

func (o *SedeCedentePrestatore) SetCapNil()

SetCapNil sets the value for Cap to be an explicit nil

func (*SedeCedentePrestatore) SetComune

func (o *SedeCedentePrestatore) SetComune(v string)

SetComune gets a reference to the given NullableString and assigns it to the Comune field.

func (*SedeCedentePrestatore) SetComuneNil

func (o *SedeCedentePrestatore) SetComuneNil()

SetComuneNil sets the value for Comune to be an explicit nil

func (*SedeCedentePrestatore) SetIndirizzo

func (o *SedeCedentePrestatore) SetIndirizzo(v string)

SetIndirizzo gets a reference to the given NullableString and assigns it to the Indirizzo field.

func (*SedeCedentePrestatore) SetIndirizzoNil

func (o *SedeCedentePrestatore) SetIndirizzoNil()

SetIndirizzoNil sets the value for Indirizzo to be an explicit nil

func (*SedeCedentePrestatore) SetNazione

func (o *SedeCedentePrestatore) SetNazione(v string)

SetNazione gets a reference to the given NullableString and assigns it to the Nazione field.

func (*SedeCedentePrestatore) SetNazioneNil

func (o *SedeCedentePrestatore) SetNazioneNil()

SetNazioneNil sets the value for Nazione to be an explicit nil

func (*SedeCedentePrestatore) SetNumeroCivico

func (o *SedeCedentePrestatore) SetNumeroCivico(v string)

SetNumeroCivico gets a reference to the given NullableString and assigns it to the NumeroCivico field.

func (*SedeCedentePrestatore) SetNumeroCivicoNil

func (o *SedeCedentePrestatore) SetNumeroCivicoNil()

SetNumeroCivicoNil sets the value for NumeroCivico to be an explicit nil

func (*SedeCedentePrestatore) SetProvincia

func (o *SedeCedentePrestatore) SetProvincia(v string)

SetProvincia gets a reference to the given NullableString and assigns it to the Provincia field.

func (*SedeCedentePrestatore) SetProvinciaNil

func (o *SedeCedentePrestatore) SetProvinciaNil()

SetProvinciaNil sets the value for Provincia to be an explicit nil

func (SedeCedentePrestatore) ToMap

func (o SedeCedentePrestatore) ToMap() (map[string]interface{}, error)

func (*SedeCedentePrestatore) UnsetCap

func (o *SedeCedentePrestatore) UnsetCap()

UnsetCap ensures that no value is present for Cap, not even an explicit nil

func (*SedeCedentePrestatore) UnsetComune

func (o *SedeCedentePrestatore) UnsetComune()

UnsetComune ensures that no value is present for Comune, not even an explicit nil

func (*SedeCedentePrestatore) UnsetIndirizzo

func (o *SedeCedentePrestatore) UnsetIndirizzo()

UnsetIndirizzo ensures that no value is present for Indirizzo, not even an explicit nil

func (*SedeCedentePrestatore) UnsetNazione

func (o *SedeCedentePrestatore) UnsetNazione()

UnsetNazione ensures that no value is present for Nazione, not even an explicit nil

func (*SedeCedentePrestatore) UnsetNumeroCivico

func (o *SedeCedentePrestatore) UnsetNumeroCivico()

UnsetNumeroCivico ensures that no value is present for NumeroCivico, not even an explicit nil

func (*SedeCedentePrestatore) UnsetProvincia

func (o *SedeCedentePrestatore) UnsetProvincia()

UnsetProvincia ensures that no value is present for Provincia, not even an explicit nil

type SedeCessionarioCommittente

type SedeCessionarioCommittente struct {
	Indirizzo    NullableString `json:"indirizzo,omitempty"`
	NumeroCivico NullableString `json:"numero_civico,omitempty"`
	Cap          NullableString `json:"cap,omitempty"`
	Comune       NullableString `json:"comune,omitempty"`
	Provincia    NullableString `json:"provincia,omitempty"`
	Nazione      NullableString `json:"nazione,omitempty"`
}

SedeCessionarioCommittente struct for SedeCessionarioCommittente

func NewSedeCessionarioCommittente

func NewSedeCessionarioCommittente() *SedeCessionarioCommittente

NewSedeCessionarioCommittente instantiates a new SedeCessionarioCommittente 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 NewSedeCessionarioCommittenteWithDefaults

func NewSedeCessionarioCommittenteWithDefaults() *SedeCessionarioCommittente

NewSedeCessionarioCommittenteWithDefaults instantiates a new SedeCessionarioCommittente 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 (*SedeCessionarioCommittente) GetCap

func (o *SedeCessionarioCommittente) GetCap() string

GetCap returns the Cap field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCessionarioCommittente) GetCapOk

func (o *SedeCessionarioCommittente) GetCapOk() (*string, bool)

GetCapOk returns a tuple with the Cap field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCessionarioCommittente) GetComune

func (o *SedeCessionarioCommittente) GetComune() string

GetComune returns the Comune field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCessionarioCommittente) GetComuneOk

func (o *SedeCessionarioCommittente) GetComuneOk() (*string, bool)

GetComuneOk returns a tuple with the Comune field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCessionarioCommittente) GetIndirizzo

func (o *SedeCessionarioCommittente) GetIndirizzo() string

GetIndirizzo returns the Indirizzo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCessionarioCommittente) GetIndirizzoOk

func (o *SedeCessionarioCommittente) GetIndirizzoOk() (*string, bool)

GetIndirizzoOk returns a tuple with the Indirizzo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCessionarioCommittente) GetNazione

func (o *SedeCessionarioCommittente) GetNazione() string

GetNazione returns the Nazione field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCessionarioCommittente) GetNazioneOk

func (o *SedeCessionarioCommittente) GetNazioneOk() (*string, bool)

GetNazioneOk returns a tuple with the Nazione field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCessionarioCommittente) GetNumeroCivico

func (o *SedeCessionarioCommittente) GetNumeroCivico() string

GetNumeroCivico returns the NumeroCivico field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCessionarioCommittente) GetNumeroCivicoOk

func (o *SedeCessionarioCommittente) GetNumeroCivicoOk() (*string, bool)

GetNumeroCivicoOk returns a tuple with the NumeroCivico field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCessionarioCommittente) GetProvincia

func (o *SedeCessionarioCommittente) GetProvincia() string

GetProvincia returns the Provincia field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SedeCessionarioCommittente) GetProvinciaOk

func (o *SedeCessionarioCommittente) GetProvinciaOk() (*string, bool)

GetProvinciaOk returns a tuple with the Provincia field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SedeCessionarioCommittente) HasCap

func (o *SedeCessionarioCommittente) HasCap() bool

HasCap returns a boolean if a field has been set.

func (*SedeCessionarioCommittente) HasComune

func (o *SedeCessionarioCommittente) HasComune() bool

HasComune returns a boolean if a field has been set.

func (*SedeCessionarioCommittente) HasIndirizzo

func (o *SedeCessionarioCommittente) HasIndirizzo() bool

HasIndirizzo returns a boolean if a field has been set.

func (*SedeCessionarioCommittente) HasNazione

func (o *SedeCessionarioCommittente) HasNazione() bool

HasNazione returns a boolean if a field has been set.

func (*SedeCessionarioCommittente) HasNumeroCivico

func (o *SedeCessionarioCommittente) HasNumeroCivico() bool

HasNumeroCivico returns a boolean if a field has been set.

func (*SedeCessionarioCommittente) HasProvincia

func (o *SedeCessionarioCommittente) HasProvincia() bool

HasProvincia returns a boolean if a field has been set.

func (SedeCessionarioCommittente) MarshalJSON

func (o SedeCessionarioCommittente) MarshalJSON() ([]byte, error)

func (*SedeCessionarioCommittente) SetCap

func (o *SedeCessionarioCommittente) SetCap(v string)

SetCap gets a reference to the given NullableString and assigns it to the Cap field.

func (*SedeCessionarioCommittente) SetCapNil

func (o *SedeCessionarioCommittente) SetCapNil()

SetCapNil sets the value for Cap to be an explicit nil

func (*SedeCessionarioCommittente) SetComune

func (o *SedeCessionarioCommittente) SetComune(v string)

SetComune gets a reference to the given NullableString and assigns it to the Comune field.

func (*SedeCessionarioCommittente) SetComuneNil

func (o *SedeCessionarioCommittente) SetComuneNil()

SetComuneNil sets the value for Comune to be an explicit nil

func (*SedeCessionarioCommittente) SetIndirizzo

func (o *SedeCessionarioCommittente) SetIndirizzo(v string)

SetIndirizzo gets a reference to the given NullableString and assigns it to the Indirizzo field.

func (*SedeCessionarioCommittente) SetIndirizzoNil

func (o *SedeCessionarioCommittente) SetIndirizzoNil()

SetIndirizzoNil sets the value for Indirizzo to be an explicit nil

func (*SedeCessionarioCommittente) SetNazione

func (o *SedeCessionarioCommittente) SetNazione(v string)

SetNazione gets a reference to the given NullableString and assigns it to the Nazione field.

func (*SedeCessionarioCommittente) SetNazioneNil

func (o *SedeCessionarioCommittente) SetNazioneNil()

SetNazioneNil sets the value for Nazione to be an explicit nil

func (*SedeCessionarioCommittente) SetNumeroCivico

func (o *SedeCessionarioCommittente) SetNumeroCivico(v string)

SetNumeroCivico gets a reference to the given NullableString and assigns it to the NumeroCivico field.

func (*SedeCessionarioCommittente) SetNumeroCivicoNil

func (o *SedeCessionarioCommittente) SetNumeroCivicoNil()

SetNumeroCivicoNil sets the value for NumeroCivico to be an explicit nil

func (*SedeCessionarioCommittente) SetProvincia

func (o *SedeCessionarioCommittente) SetProvincia(v string)

SetProvincia gets a reference to the given NullableString and assigns it to the Provincia field.

func (*SedeCessionarioCommittente) SetProvinciaNil

func (o *SedeCessionarioCommittente) SetProvinciaNil()

SetProvinciaNil sets the value for Provincia to be an explicit nil

func (SedeCessionarioCommittente) ToMap

func (o SedeCessionarioCommittente) ToMap() (map[string]interface{}, error)

func (*SedeCessionarioCommittente) UnsetCap

func (o *SedeCessionarioCommittente) UnsetCap()

UnsetCap ensures that no value is present for Cap, not even an explicit nil

func (*SedeCessionarioCommittente) UnsetComune

func (o *SedeCessionarioCommittente) UnsetComune()

UnsetComune ensures that no value is present for Comune, not even an explicit nil

func (*SedeCessionarioCommittente) UnsetIndirizzo

func (o *SedeCessionarioCommittente) UnsetIndirizzo()

UnsetIndirizzo ensures that no value is present for Indirizzo, not even an explicit nil

func (*SedeCessionarioCommittente) UnsetNazione

func (o *SedeCessionarioCommittente) UnsetNazione()

UnsetNazione ensures that no value is present for Nazione, not even an explicit nil

func (*SedeCessionarioCommittente) UnsetNumeroCivico

func (o *SedeCessionarioCommittente) UnsetNumeroCivico()

UnsetNumeroCivico ensures that no value is present for NumeroCivico, not even an explicit nil

func (*SedeCessionarioCommittente) UnsetProvincia

func (o *SedeCessionarioCommittente) UnsetProvincia()

UnsetProvincia ensures that no value is present for Provincia, not even an explicit nil

type Send

type Send struct {
	// Unique identifier. Leave it at 0 for new records as it will be set automatically.
	Id *int32 `json:"id,omitempty"`
	// Creation date. It is set automatically.
	Created *time.Time `json:"created,omitempty"`
	// Row version, for optimistic concurrency. It is set automatically.
	Version *int32 `json:"version,omitempty"`
	// User id.
	UserId *int32 `json:"user_id,omitempty"`
	// Company id. On send, this is the sender and must be set in advance. On receive, it will be  automatically set based on the recipient's VAT number. If a matching company is not found, the invoice will be rejected until the company is created.
	CompanyId *int32 `json:"company_id,omitempty"`
	// VAT number of the Cessionario/Committente (customer). This is automatically set based on the recipient's VAT number.
	Committente NullableString `json:"committente,omitempty"`
	// VAT number of the Cedente/Prestatore (vendor). This is automatically set based on the sender's VAT number.
	Prestatore NullableString `json:"prestatore,omitempty"`
	// SDI identifier. This is set by the SDI and is guaranted to be unique within the SDI system.
	Identifier NullableString `json:"identifier,omitempty"`
	// Xml file name.
	FileName NullableString `json:"file_name,omitempty"`
	// SDI format (FPA12, FPR12, FSM10, ...)
	Format NullableString `json:"format,omitempty"`
	// Xml payloaad. This is the actual xml content, as string. On send, it can be base64 encoded. If it's not, it will be encoded before sending. It is guaranteed to be cyphered at rest.
	Payload NullableString `json:"payload,omitempty"`
	// Last update from SDI.
	LastUpdate NullableTime `json:"last_update,omitempty"`
	// When the invoice was sent to SDI.
	DateSent NullableTime `json:"date_sent,omitempty"`
	// The invoices included in the payload. This is set by the system, based on the xml content.
	Documents []DocumentData `json:"documents,omitempty"`
	// Whether the payload is Base64 encoded or a plain XML (text).
	Encoding *string `json:"encoding,omitempty"`
	// Optional metadata, as json.
	MetaData map[string]string `json:"meta_data,omitempty"`
	Company  *Company          `json:"company,omitempty"`
}

Send struct for Send

func NewSend

func NewSend() *Send

NewSend instantiates a new Send 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 NewSendWithDefaults

func NewSendWithDefaults() *Send

NewSendWithDefaults instantiates a new Send 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 (*Send) GetCommittente

func (o *Send) GetCommittente() string

GetCommittente returns the Committente field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetCommittenteOk

func (o *Send) GetCommittenteOk() (*string, bool)

GetCommittenteOk returns a tuple with the Committente field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetCompany

func (o *Send) GetCompany() Company

GetCompany returns the Company field value if set, zero value otherwise.

func (*Send) GetCompanyId

func (o *Send) GetCompanyId() int32

GetCompanyId returns the CompanyId field value if set, zero value otherwise.

func (*Send) GetCompanyIdOk

func (o *Send) GetCompanyIdOk() (*int32, bool)

GetCompanyIdOk returns a tuple with the CompanyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Send) GetCompanyOk

func (o *Send) GetCompanyOk() (*Company, bool)

GetCompanyOk returns a tuple with the Company field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Send) GetCreated

func (o *Send) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Send) GetCreatedOk

func (o *Send) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Send) GetDateSent

func (o *Send) GetDateSent() time.Time

GetDateSent returns the DateSent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetDateSentOk

func (o *Send) GetDateSentOk() (*time.Time, bool)

GetDateSentOk returns a tuple with the DateSent field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetDocuments

func (o *Send) GetDocuments() []DocumentData

GetDocuments returns the Documents field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetDocumentsOk

func (o *Send) GetDocumentsOk() ([]DocumentData, bool)

GetDocumentsOk returns a tuple with the Documents field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetEncoding

func (o *Send) GetEncoding() string

GetEncoding returns the Encoding field value if set, zero value otherwise.

func (*Send) GetEncodingOk

func (o *Send) GetEncodingOk() (*string, bool)

GetEncodingOk returns a tuple with the Encoding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Send) GetFileName

func (o *Send) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetFileNameOk

func (o *Send) GetFileNameOk() (*string, bool)

GetFileNameOk returns a tuple with the FileName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetFormat

func (o *Send) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetFormatOk

func (o *Send) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetId

func (o *Send) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*Send) GetIdOk

func (o *Send) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Send) GetIdentifier

func (o *Send) GetIdentifier() string

GetIdentifier returns the Identifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetIdentifierOk

func (o *Send) GetIdentifierOk() (*string, bool)

GetIdentifierOk returns a tuple with the Identifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetLastUpdate

func (o *Send) GetLastUpdate() time.Time

GetLastUpdate returns the LastUpdate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetLastUpdateOk

func (o *Send) GetLastUpdateOk() (*time.Time, bool)

GetLastUpdateOk returns a tuple with the LastUpdate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetMetaData

func (o *Send) GetMetaData() map[string]string

GetMetaData returns the MetaData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetMetaDataOk

func (o *Send) GetMetaDataOk() (*map[string]string, bool)

GetMetaDataOk returns a tuple with the MetaData field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetPayload

func (o *Send) GetPayload() string

GetPayload returns the Payload field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetPayloadOk

func (o *Send) GetPayloadOk() (*string, bool)

GetPayloadOk returns a tuple with the Payload field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetPrestatore

func (o *Send) GetPrestatore() string

GetPrestatore returns the Prestatore field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Send) GetPrestatoreOk

func (o *Send) GetPrestatoreOk() (*string, bool)

GetPrestatoreOk returns a tuple with the Prestatore field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Send) GetUserId

func (o *Send) GetUserId() int32

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Send) GetUserIdOk

func (o *Send) GetUserIdOk() (*int32, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Send) GetVersion

func (o *Send) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*Send) GetVersionOk

func (o *Send) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Send) HasCommittente

func (o *Send) HasCommittente() bool

HasCommittente returns a boolean if a field has been set.

func (*Send) HasCompany

func (o *Send) HasCompany() bool

HasCompany returns a boolean if a field has been set.

func (*Send) HasCompanyId

func (o *Send) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*Send) HasCreated

func (o *Send) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Send) HasDateSent

func (o *Send) HasDateSent() bool

HasDateSent returns a boolean if a field has been set.

func (*Send) HasDocuments

func (o *Send) HasDocuments() bool

HasDocuments returns a boolean if a field has been set.

func (*Send) HasEncoding

func (o *Send) HasEncoding() bool

HasEncoding returns a boolean if a field has been set.

func (*Send) HasFileName

func (o *Send) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*Send) HasFormat

func (o *Send) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*Send) HasId

func (o *Send) HasId() bool

HasId returns a boolean if a field has been set.

func (*Send) HasIdentifier

func (o *Send) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

func (*Send) HasLastUpdate

func (o *Send) HasLastUpdate() bool

HasLastUpdate returns a boolean if a field has been set.

func (*Send) HasMetaData

func (o *Send) HasMetaData() bool

HasMetaData returns a boolean if a field has been set.

func (*Send) HasPayload

func (o *Send) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*Send) HasPrestatore

func (o *Send) HasPrestatore() bool

HasPrestatore returns a boolean if a field has been set.

func (*Send) HasUserId

func (o *Send) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*Send) HasVersion

func (o *Send) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Send) MarshalJSON

func (o Send) MarshalJSON() ([]byte, error)

func (*Send) SetCommittente

func (o *Send) SetCommittente(v string)

SetCommittente gets a reference to the given NullableString and assigns it to the Committente field.

func (*Send) SetCommittenteNil

func (o *Send) SetCommittenteNil()

SetCommittenteNil sets the value for Committente to be an explicit nil

func (*Send) SetCompany

func (o *Send) SetCompany(v Company)

SetCompany gets a reference to the given Company and assigns it to the Company field.

func (*Send) SetCompanyId

func (o *Send) SetCompanyId(v int32)

SetCompanyId gets a reference to the given int32 and assigns it to the CompanyId field.

func (*Send) SetCreated

func (o *Send) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Send) SetDateSent

func (o *Send) SetDateSent(v time.Time)

SetDateSent gets a reference to the given NullableTime and assigns it to the DateSent field.

func (*Send) SetDateSentNil

func (o *Send) SetDateSentNil()

SetDateSentNil sets the value for DateSent to be an explicit nil

func (*Send) SetDocuments

func (o *Send) SetDocuments(v []DocumentData)

SetDocuments gets a reference to the given []DocumentData and assigns it to the Documents field.

func (*Send) SetEncoding

func (o *Send) SetEncoding(v string)

SetEncoding gets a reference to the given string and assigns it to the Encoding field.

func (*Send) SetFileName

func (o *Send) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*Send) SetFileNameNil

func (o *Send) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (*Send) SetFormat

func (o *Send) SetFormat(v string)

SetFormat gets a reference to the given NullableString and assigns it to the Format field.

func (*Send) SetFormatNil

func (o *Send) SetFormatNil()

SetFormatNil sets the value for Format to be an explicit nil

func (*Send) SetId

func (o *Send) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*Send) SetIdentifier

func (o *Send) SetIdentifier(v string)

SetIdentifier gets a reference to the given NullableString and assigns it to the Identifier field.

func (*Send) SetIdentifierNil

func (o *Send) SetIdentifierNil()

SetIdentifierNil sets the value for Identifier to be an explicit nil

func (*Send) SetLastUpdate

func (o *Send) SetLastUpdate(v time.Time)

SetLastUpdate gets a reference to the given NullableTime and assigns it to the LastUpdate field.

func (*Send) SetLastUpdateNil

func (o *Send) SetLastUpdateNil()

SetLastUpdateNil sets the value for LastUpdate to be an explicit nil

func (*Send) SetMetaData

func (o *Send) SetMetaData(v map[string]string)

SetMetaData gets a reference to the given map[string]string and assigns it to the MetaData field.

func (*Send) SetPayload

func (o *Send) SetPayload(v string)

SetPayload gets a reference to the given NullableString and assigns it to the Payload field.

func (*Send) SetPayloadNil

func (o *Send) SetPayloadNil()

SetPayloadNil sets the value for Payload to be an explicit nil

func (*Send) SetPrestatore

func (o *Send) SetPrestatore(v string)

SetPrestatore gets a reference to the given NullableString and assigns it to the Prestatore field.

func (*Send) SetPrestatoreNil

func (o *Send) SetPrestatoreNil()

SetPrestatoreNil sets the value for Prestatore to be an explicit nil

func (*Send) SetUserId

func (o *Send) SetUserId(v int32)

SetUserId gets a reference to the given int32 and assigns it to the UserId field.

func (*Send) SetVersion

func (o *Send) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (Send) ToMap

func (o Send) ToMap() (map[string]interface{}, error)

func (*Send) UnsetCommittente

func (o *Send) UnsetCommittente()

UnsetCommittente ensures that no value is present for Committente, not even an explicit nil

func (*Send) UnsetDateSent

func (o *Send) UnsetDateSent()

UnsetDateSent ensures that no value is present for DateSent, not even an explicit nil

func (*Send) UnsetFileName

func (o *Send) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

func (*Send) UnsetFormat

func (o *Send) UnsetFormat()

UnsetFormat ensures that no value is present for Format, not even an explicit nil

func (*Send) UnsetIdentifier

func (o *Send) UnsetIdentifier()

UnsetIdentifier ensures that no value is present for Identifier, not even an explicit nil

func (*Send) UnsetLastUpdate

func (o *Send) UnsetLastUpdate()

UnsetLastUpdate ensures that no value is present for LastUpdate, not even an explicit nil

func (*Send) UnsetPayload

func (o *Send) UnsetPayload()

UnsetPayload ensures that no value is present for Payload, not even an explicit nil

func (*Send) UnsetPrestatore

func (o *Send) UnsetPrestatore()

UnsetPrestatore ensures that no value is present for Prestatore, not even an explicit nil

type SendAPIService

type SendAPIService service

SendAPIService SendAPI service

func (*SendAPIService) SendFilePost

SendFilePost Add an invoice by file

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendFilePostRequest

func (*SendAPIService) SendFilePostExecute

func (a *SendAPIService) SendFilePostExecute(r ApiSendFilePostRequest) (*Send, *http.Response, error)

Execute executes the request

@return Send

func (*SendAPIService) SendGet

SendGet List invoices

test **markdown**.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendGetRequest

func (*SendAPIService) SendGetExecute

func (a *SendAPIService) SendGetExecute(r ApiSendGetRequest) ([]Send, *http.Response, error)

Execute executes the request

@return []Send

func (*SendAPIService) SendIdGet

func (a *SendAPIService) SendIdGet(ctx context.Context, id int32) ApiSendIdGetRequest

SendIdGet Get a invoice by id

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Item id
@return ApiSendIdGetRequest

func (*SendAPIService) SendIdGetExecute

func (a *SendAPIService) SendIdGetExecute(r ApiSendIdGetRequest) (*Send, *http.Response, error)

Execute executes the request

@return Send

func (*SendAPIService) SendIdentifierGet

func (a *SendAPIService) SendIdentifierGet(ctx context.Context, identifier string) ApiSendIdentifierGetRequest

SendIdentifierGet Get a invoice by identifier

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identifier
@return ApiSendIdentifierGetRequest

func (*SendAPIService) SendIdentifierGetExecute

func (a *SendAPIService) SendIdentifierGetExecute(r ApiSendIdentifierGetRequest) (*Send, *http.Response, error)

Execute executes the request

@return Send

func (*SendAPIService) SendJsonPost

SendJsonPost Add an invoice by json

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendJsonPostRequest

func (*SendAPIService) SendJsonPostExecute

func (a *SendAPIService) SendJsonPostExecute(r ApiSendJsonPostRequest) (*Send, *http.Response, error)

Execute executes the request

@return Send

func (*SendAPIService) SendPost

SendPost Add an invoice

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendPostRequest

func (*SendAPIService) SendPostExecute

func (a *SendAPIService) SendPostExecute(r ApiSendPostRequest) (*Send, *http.Response, error)

Execute executes the request

@return Send

func (*SendAPIService) SendValidateFilePost

func (a *SendAPIService) SendValidateFilePost(ctx context.Context) ApiSendValidateFilePostRequest

SendValidateFilePost Validate an invoice file

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendValidateFilePostRequest

func (*SendAPIService) SendValidateFilePostExecute

func (a *SendAPIService) SendValidateFilePostExecute(r ApiSendValidateFilePostRequest) (*http.Response, error)

Execute executes the request

func (*SendAPIService) SendValidateJsonPost

func (a *SendAPIService) SendValidateJsonPost(ctx context.Context) ApiSendValidateJsonPostRequest

SendValidateJsonPost Validate an invoice by json

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendValidateJsonPostRequest

func (*SendAPIService) SendValidateJsonPostExecute

func (a *SendAPIService) SendValidateJsonPostExecute(r ApiSendValidateJsonPostRequest) (*http.Response, error)

Execute executes the request

func (*SendAPIService) SendValidatePost

func (a *SendAPIService) SendValidatePost(ctx context.Context) ApiSendValidatePostRequest

SendValidatePost Validate an invoice

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendValidatePostRequest

func (*SendAPIService) SendValidatePostExecute

func (a *SendAPIService) SendValidatePostExecute(r ApiSendValidatePostRequest) (*http.Response, error)

Execute executes the request

func (*SendAPIService) SendValidateXmlPost

func (a *SendAPIService) SendValidateXmlPost(ctx context.Context) ApiSendValidateXmlPostRequest

SendValidateXmlPost Validate an invoice by xml

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendValidateXmlPostRequest

func (*SendAPIService) SendValidateXmlPostExecute

func (a *SendAPIService) SendValidateXmlPostExecute(r ApiSendValidateXmlPostRequest) (*http.Response, error)

Execute executes the request

func (*SendAPIService) SendXmlPost

SendXmlPost Add an invoice by xml

Send invoices are the invoices that are sent to the SDI. They are preserved for two years in the live environment and 15 days in the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendXmlPostRequest

func (*SendAPIService) SendXmlPostExecute

func (a *SendAPIService) SendXmlPostExecute(r ApiSendXmlPostRequest) (*Send, *http.Response, error)

Execute executes the request

@return Send

type SendReduced

type SendReduced struct {
	// SDI identifier.
	Identifier NullableString `json:"identifier,omitempty"`
	// VAT number of the Cedente/Prestatore (vendor).
	Prestatore NullableString `json:"prestatore,omitempty"`
	// Optional metadata, as json.
	MetaData map[string]string `json:"meta_data,omitempty"`
	// The invoices included in the payload.
	Documents []DocumentData `json:"documents,omitempty"`
	// When the invoice was sent to SDI.
	DateSent NullableTime `json:"date_sent,omitempty"`
}

SendReduced Reduced Send data for Update responses, containing only the essential fields.

func NewSendReduced

func NewSendReduced() *SendReduced

NewSendReduced instantiates a new SendReduced 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 NewSendReducedWithDefaults

func NewSendReducedWithDefaults() *SendReduced

NewSendReducedWithDefaults instantiates a new SendReduced 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 (*SendReduced) GetDateSent

func (o *SendReduced) GetDateSent() time.Time

GetDateSent returns the DateSent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SendReduced) GetDateSentOk

func (o *SendReduced) GetDateSentOk() (*time.Time, bool)

GetDateSentOk returns a tuple with the DateSent field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SendReduced) GetDocuments

func (o *SendReduced) GetDocuments() []DocumentData

GetDocuments returns the Documents field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SendReduced) GetDocumentsOk

func (o *SendReduced) GetDocumentsOk() ([]DocumentData, bool)

GetDocumentsOk returns a tuple with the Documents field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SendReduced) GetIdentifier

func (o *SendReduced) GetIdentifier() string

GetIdentifier returns the Identifier field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SendReduced) GetIdentifierOk

func (o *SendReduced) GetIdentifierOk() (*string, bool)

GetIdentifierOk returns a tuple with the Identifier field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SendReduced) GetMetaData

func (o *SendReduced) GetMetaData() map[string]string

GetMetaData returns the MetaData field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SendReduced) GetMetaDataOk

func (o *SendReduced) GetMetaDataOk() (*map[string]string, bool)

GetMetaDataOk returns a tuple with the MetaData field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SendReduced) GetPrestatore

func (o *SendReduced) GetPrestatore() string

GetPrestatore returns the Prestatore field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SendReduced) GetPrestatoreOk

func (o *SendReduced) GetPrestatoreOk() (*string, bool)

GetPrestatoreOk returns a tuple with the Prestatore field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SendReduced) HasDateSent

func (o *SendReduced) HasDateSent() bool

HasDateSent returns a boolean if a field has been set.

func (*SendReduced) HasDocuments

func (o *SendReduced) HasDocuments() bool

HasDocuments returns a boolean if a field has been set.

func (*SendReduced) HasIdentifier

func (o *SendReduced) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

func (*SendReduced) HasMetaData

func (o *SendReduced) HasMetaData() bool

HasMetaData returns a boolean if a field has been set.

func (*SendReduced) HasPrestatore

func (o *SendReduced) HasPrestatore() bool

HasPrestatore returns a boolean if a field has been set.

func (SendReduced) MarshalJSON

func (o SendReduced) MarshalJSON() ([]byte, error)

func (*SendReduced) SetDateSent

func (o *SendReduced) SetDateSent(v time.Time)

SetDateSent gets a reference to the given NullableTime and assigns it to the DateSent field.

func (*SendReduced) SetDateSentNil

func (o *SendReduced) SetDateSentNil()

SetDateSentNil sets the value for DateSent to be an explicit nil

func (*SendReduced) SetDocuments

func (o *SendReduced) SetDocuments(v []DocumentData)

SetDocuments gets a reference to the given []DocumentData and assigns it to the Documents field.

func (*SendReduced) SetIdentifier

func (o *SendReduced) SetIdentifier(v string)

SetIdentifier gets a reference to the given NullableString and assigns it to the Identifier field.

func (*SendReduced) SetIdentifierNil

func (o *SendReduced) SetIdentifierNil()

SetIdentifierNil sets the value for Identifier to be an explicit nil

func (*SendReduced) SetMetaData

func (o *SendReduced) SetMetaData(v map[string]string)

SetMetaData gets a reference to the given map[string]string and assigns it to the MetaData field.

func (*SendReduced) SetPrestatore

func (o *SendReduced) SetPrestatore(v string)

SetPrestatore gets a reference to the given NullableString and assigns it to the Prestatore field.

func (*SendReduced) SetPrestatoreNil

func (o *SendReduced) SetPrestatoreNil()

SetPrestatoreNil sets the value for Prestatore to be an explicit nil

func (SendReduced) ToMap

func (o SendReduced) ToMap() (map[string]interface{}, error)

func (*SendReduced) UnsetDateSent

func (o *SendReduced) UnsetDateSent()

UnsetDateSent ensures that no value is present for DateSent, not even an explicit nil

func (*SendReduced) UnsetIdentifier

func (o *SendReduced) UnsetIdentifier()

UnsetIdentifier ensures that no value is present for Identifier, not even an explicit nil

func (*SendReduced) UnsetPrestatore

func (o *SendReduced) UnsetPrestatore()

UnsetPrestatore ensures that no value is present for Prestatore, not even an explicit nil

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type StabileOrganizzazione

type StabileOrganizzazione struct {
	Indirizzo    NullableString `json:"indirizzo,omitempty"`
	NumeroCivico NullableString `json:"numero_civico,omitempty"`
	Cap          NullableString `json:"cap,omitempty"`
	Comune       NullableString `json:"comune,omitempty"`
	Provincia    NullableString `json:"provincia,omitempty"`
	Nazione      NullableString `json:"nazione,omitempty"`
}

StabileOrganizzazione struct for StabileOrganizzazione

func NewStabileOrganizzazione

func NewStabileOrganizzazione() *StabileOrganizzazione

NewStabileOrganizzazione instantiates a new StabileOrganizzazione 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 NewStabileOrganizzazioneWithDefaults

func NewStabileOrganizzazioneWithDefaults() *StabileOrganizzazione

NewStabileOrganizzazioneWithDefaults instantiates a new StabileOrganizzazione 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 (*StabileOrganizzazione) GetCap

func (o *StabileOrganizzazione) GetCap() string

GetCap returns the Cap field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StabileOrganizzazione) GetCapOk

func (o *StabileOrganizzazione) GetCapOk() (*string, bool)

GetCapOk returns a tuple with the Cap field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StabileOrganizzazione) GetComune

func (o *StabileOrganizzazione) GetComune() string

GetComune returns the Comune field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StabileOrganizzazione) GetComuneOk

func (o *StabileOrganizzazione) GetComuneOk() (*string, bool)

GetComuneOk returns a tuple with the Comune field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StabileOrganizzazione) GetIndirizzo

func (o *StabileOrganizzazione) GetIndirizzo() string

GetIndirizzo returns the Indirizzo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StabileOrganizzazione) GetIndirizzoOk

func (o *StabileOrganizzazione) GetIndirizzoOk() (*string, bool)

GetIndirizzoOk returns a tuple with the Indirizzo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StabileOrganizzazione) GetNazione

func (o *StabileOrganizzazione) GetNazione() string

GetNazione returns the Nazione field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StabileOrganizzazione) GetNazioneOk

func (o *StabileOrganizzazione) GetNazioneOk() (*string, bool)

GetNazioneOk returns a tuple with the Nazione field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StabileOrganizzazione) GetNumeroCivico

func (o *StabileOrganizzazione) GetNumeroCivico() string

GetNumeroCivico returns the NumeroCivico field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StabileOrganizzazione) GetNumeroCivicoOk

func (o *StabileOrganizzazione) GetNumeroCivicoOk() (*string, bool)

GetNumeroCivicoOk returns a tuple with the NumeroCivico field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StabileOrganizzazione) GetProvincia

func (o *StabileOrganizzazione) GetProvincia() string

GetProvincia returns the Provincia field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StabileOrganizzazione) GetProvinciaOk

func (o *StabileOrganizzazione) GetProvinciaOk() (*string, bool)

GetProvinciaOk returns a tuple with the Provincia field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StabileOrganizzazione) HasCap

func (o *StabileOrganizzazione) HasCap() bool

HasCap returns a boolean if a field has been set.

func (*StabileOrganizzazione) HasComune

func (o *StabileOrganizzazione) HasComune() bool

HasComune returns a boolean if a field has been set.

func (*StabileOrganizzazione) HasIndirizzo

func (o *StabileOrganizzazione) HasIndirizzo() bool

HasIndirizzo returns a boolean if a field has been set.

func (*StabileOrganizzazione) HasNazione

func (o *StabileOrganizzazione) HasNazione() bool

HasNazione returns a boolean if a field has been set.

func (*StabileOrganizzazione) HasNumeroCivico

func (o *StabileOrganizzazione) HasNumeroCivico() bool

HasNumeroCivico returns a boolean if a field has been set.

func (*StabileOrganizzazione) HasProvincia

func (o *StabileOrganizzazione) HasProvincia() bool

HasProvincia returns a boolean if a field has been set.

func (StabileOrganizzazione) MarshalJSON

func (o StabileOrganizzazione) MarshalJSON() ([]byte, error)

func (*StabileOrganizzazione) SetCap

func (o *StabileOrganizzazione) SetCap(v string)

SetCap gets a reference to the given NullableString and assigns it to the Cap field.

func (*StabileOrganizzazione) SetCapNil

func (o *StabileOrganizzazione) SetCapNil()

SetCapNil sets the value for Cap to be an explicit nil

func (*StabileOrganizzazione) SetComune

func (o *StabileOrganizzazione) SetComune(v string)

SetComune gets a reference to the given NullableString and assigns it to the Comune field.

func (*StabileOrganizzazione) SetComuneNil

func (o *StabileOrganizzazione) SetComuneNil()

SetComuneNil sets the value for Comune to be an explicit nil

func (*StabileOrganizzazione) SetIndirizzo

func (o *StabileOrganizzazione) SetIndirizzo(v string)

SetIndirizzo gets a reference to the given NullableString and assigns it to the Indirizzo field.

func (*StabileOrganizzazione) SetIndirizzoNil

func (o *StabileOrganizzazione) SetIndirizzoNil()

SetIndirizzoNil sets the value for Indirizzo to be an explicit nil

func (*StabileOrganizzazione) SetNazione

func (o *StabileOrganizzazione) SetNazione(v string)

SetNazione gets a reference to the given NullableString and assigns it to the Nazione field.

func (*StabileOrganizzazione) SetNazioneNil

func (o *StabileOrganizzazione) SetNazioneNil()

SetNazioneNil sets the value for Nazione to be an explicit nil

func (*StabileOrganizzazione) SetNumeroCivico

func (o *StabileOrganizzazione) SetNumeroCivico(v string)

SetNumeroCivico gets a reference to the given NullableString and assigns it to the NumeroCivico field.

func (*StabileOrganizzazione) SetNumeroCivicoNil

func (o *StabileOrganizzazione) SetNumeroCivicoNil()

SetNumeroCivicoNil sets the value for NumeroCivico to be an explicit nil

func (*StabileOrganizzazione) SetProvincia

func (o *StabileOrganizzazione) SetProvincia(v string)

SetProvincia gets a reference to the given NullableString and assigns it to the Provincia field.

func (*StabileOrganizzazione) SetProvinciaNil

func (o *StabileOrganizzazione) SetProvinciaNil()

SetProvinciaNil sets the value for Provincia to be an explicit nil

func (StabileOrganizzazione) ToMap

func (o StabileOrganizzazione) ToMap() (map[string]interface{}, error)

func (*StabileOrganizzazione) UnsetCap

func (o *StabileOrganizzazione) UnsetCap()

UnsetCap ensures that no value is present for Cap, not even an explicit nil

func (*StabileOrganizzazione) UnsetComune

func (o *StabileOrganizzazione) UnsetComune()

UnsetComune ensures that no value is present for Comune, not even an explicit nil

func (*StabileOrganizzazione) UnsetIndirizzo

func (o *StabileOrganizzazione) UnsetIndirizzo()

UnsetIndirizzo ensures that no value is present for Indirizzo, not even an explicit nil

func (*StabileOrganizzazione) UnsetNazione

func (o *StabileOrganizzazione) UnsetNazione()

UnsetNazione ensures that no value is present for Nazione, not even an explicit nil

func (*StabileOrganizzazione) UnsetNumeroCivico

func (o *StabileOrganizzazione) UnsetNumeroCivico()

UnsetNumeroCivico ensures that no value is present for NumeroCivico, not even an explicit nil

func (*StabileOrganizzazione) UnsetProvincia

func (o *StabileOrganizzazione) UnsetProvincia()

UnsetProvincia ensures that no value is present for Provincia, not even an explicit nil

type Status

type Status struct {
	// Operations (invoices and validations) left.
	OperationLeft *int32 `json:"operation_left,omitempty"`
	// Signatures left.
	SignatureLeft *int32 `json:"signature_left,omitempty"`
}

Status struct for Status

func NewStatus

func NewStatus() *Status

NewStatus instantiates a new Status 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 NewStatusWithDefaults

func NewStatusWithDefaults() *Status

NewStatusWithDefaults instantiates a new Status 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 (*Status) GetOperationLeft

func (o *Status) GetOperationLeft() int32

GetOperationLeft returns the OperationLeft field value if set, zero value otherwise.

func (*Status) GetOperationLeftOk

func (o *Status) GetOperationLeftOk() (*int32, bool)

GetOperationLeftOk returns a tuple with the OperationLeft field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Status) GetSignatureLeft

func (o *Status) GetSignatureLeft() int32

GetSignatureLeft returns the SignatureLeft field value if set, zero value otherwise.

func (*Status) GetSignatureLeftOk

func (o *Status) GetSignatureLeftOk() (*int32, bool)

GetSignatureLeftOk returns a tuple with the SignatureLeft field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Status) HasOperationLeft

func (o *Status) HasOperationLeft() bool

HasOperationLeft returns a boolean if a field has been set.

func (*Status) HasSignatureLeft

func (o *Status) HasSignatureLeft() bool

HasSignatureLeft returns a boolean if a field has been set.

func (Status) MarshalJSON

func (o Status) MarshalJSON() ([]byte, error)

func (*Status) SetOperationLeft

func (o *Status) SetOperationLeft(v int32)

SetOperationLeft gets a reference to the given int32 and assigns it to the OperationLeft field.

func (*Status) SetSignatureLeft

func (o *Status) SetSignatureLeft(v int32)

SetSignatureLeft gets a reference to the given int32 and assigns it to the SignatureLeft field.

func (Status) ToMap

func (o Status) ToMap() (map[string]interface{}, error)

type StatusAPIService

type StatusAPIService service

StatusAPIService StatusAPI service

func (*StatusAPIService) StatusGet

StatusGet Account status

This endpoint is used to know how many operations (invoices + validations) and signatures are left on your account.

When `signature_left` is 0, you will receive a `403 Forbidden` response if you try to sign an invoice. Likewise, if `operation_left` is 0, you will receive a `403 Forbidden` response when storing or validating an invoice.

You can raise the limits by purchasing operations and/or signatures from the [Dashboard](https://dashboard.invoicetronic.com).

__Please note__ that these values are not enforced if you are on the Sandbox. See the [API Keys & Sandbox](https://invoicetronic.com/apikeys/) documentation section to learn more about the Sandbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatusGetRequest

func (*StatusAPIService) StatusGetExecute

func (a *StatusAPIService) StatusGetExecute(r ApiStatusGetRequest) (*Status, *http.Response, error)

Execute executes the request

@return Status

type TerzoIntermediarioOSoggettoEmittente

type TerzoIntermediarioOSoggettoEmittente struct {
	DatiAnagrafici *DatiAnagrafici `json:"dati_anagrafici,omitempty"`
}

TerzoIntermediarioOSoggettoEmittente struct for TerzoIntermediarioOSoggettoEmittente

func NewTerzoIntermediarioOSoggettoEmittente

func NewTerzoIntermediarioOSoggettoEmittente() *TerzoIntermediarioOSoggettoEmittente

NewTerzoIntermediarioOSoggettoEmittente instantiates a new TerzoIntermediarioOSoggettoEmittente 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 NewTerzoIntermediarioOSoggettoEmittenteWithDefaults

func NewTerzoIntermediarioOSoggettoEmittenteWithDefaults() *TerzoIntermediarioOSoggettoEmittente

NewTerzoIntermediarioOSoggettoEmittenteWithDefaults instantiates a new TerzoIntermediarioOSoggettoEmittente 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 (*TerzoIntermediarioOSoggettoEmittente) GetDatiAnagrafici

GetDatiAnagrafici returns the DatiAnagrafici field value if set, zero value otherwise.

func (*TerzoIntermediarioOSoggettoEmittente) GetDatiAnagraficiOk

func (o *TerzoIntermediarioOSoggettoEmittente) GetDatiAnagraficiOk() (*DatiAnagrafici, bool)

GetDatiAnagraficiOk returns a tuple with the DatiAnagrafici field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TerzoIntermediarioOSoggettoEmittente) HasDatiAnagrafici

func (o *TerzoIntermediarioOSoggettoEmittente) HasDatiAnagrafici() bool

HasDatiAnagrafici returns a boolean if a field has been set.

func (TerzoIntermediarioOSoggettoEmittente) MarshalJSON

func (o TerzoIntermediarioOSoggettoEmittente) MarshalJSON() ([]byte, error)

func (*TerzoIntermediarioOSoggettoEmittente) SetDatiAnagrafici

func (o *TerzoIntermediarioOSoggettoEmittente) SetDatiAnagrafici(v DatiAnagrafici)

SetDatiAnagrafici gets a reference to the given DatiAnagrafici and assigns it to the DatiAnagrafici field.

func (TerzoIntermediarioOSoggettoEmittente) ToMap

func (o TerzoIntermediarioOSoggettoEmittente) ToMap() (map[string]interface{}, error)

type Update

type Update struct {
	// Unique identifier. Leave it at 0 for new records as it will be set automatically.
	Id *int32 `json:"id,omitempty"`
	// Creation date. It is set automatically.
	Created *time.Time `json:"created,omitempty"`
	// Row version, for optimistic concurrency. It is set automatically.
	Version *int32 `json:"version,omitempty"`
	// User id.
	UserId *int32 `json:"user_id,omitempty"`
	// Company id.
	CompanyId *int32 `json:"company_id,omitempty"`
	// Send id. This is the id of the sent invoice to which this update refers to.
	SendId *int32 `json:"send_id,omitempty"`
	// Last update from SDI.
	LastUpdate *time.Time `json:"last_update,omitempty"`
	// State of the document. Theses are the possible values, as per the SDI documentation:
	State *string `json:"state,omitempty"`
	// Description for the state.
	Description NullableString `json:"description,omitempty"`
	// SDI message id.
	MessageId NullableString `json:"message_id,omitempty"`
	// SDI errors, if any.
	Errors []Error `json:"errors,omitempty"`
	// Wether the item has been read at least once.
	IsRead *bool        `json:"is_read,omitempty"`
	Send   *SendReduced `json:"send,omitempty"`
}

Update struct for Update

func NewUpdate

func NewUpdate() *Update

NewUpdate instantiates a new Update 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 NewUpdateWithDefaults

func NewUpdateWithDefaults() *Update

NewUpdateWithDefaults instantiates a new Update 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 (*Update) GetCompanyId

func (o *Update) GetCompanyId() int32

GetCompanyId returns the CompanyId field value if set, zero value otherwise.

func (*Update) GetCompanyIdOk

func (o *Update) GetCompanyIdOk() (*int32, bool)

GetCompanyIdOk returns a tuple with the CompanyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetCreated

func (o *Update) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Update) GetCreatedOk

func (o *Update) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetDescription

func (o *Update) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Update) GetDescriptionOk

func (o *Update) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Update) GetErrors

func (o *Update) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Update) GetErrorsOk

func (o *Update) GetErrorsOk() ([]Error, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Update) GetId

func (o *Update) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*Update) GetIdOk

func (o *Update) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetIsRead

func (o *Update) GetIsRead() bool

GetIsRead returns the IsRead field value if set, zero value otherwise.

func (*Update) GetIsReadOk

func (o *Update) GetIsReadOk() (*bool, bool)

GetIsReadOk returns a tuple with the IsRead field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetLastUpdate

func (o *Update) GetLastUpdate() time.Time

GetLastUpdate returns the LastUpdate field value if set, zero value otherwise.

func (*Update) GetLastUpdateOk

func (o *Update) GetLastUpdateOk() (*time.Time, bool)

GetLastUpdateOk returns a tuple with the LastUpdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetMessageId

func (o *Update) GetMessageId() string

GetMessageId returns the MessageId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Update) GetMessageIdOk

func (o *Update) GetMessageIdOk() (*string, bool)

GetMessageIdOk returns a tuple with the MessageId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Update) GetSend

func (o *Update) GetSend() SendReduced

GetSend returns the Send field value if set, zero value otherwise.

func (*Update) GetSendId

func (o *Update) GetSendId() int32

GetSendId returns the SendId field value if set, zero value otherwise.

func (*Update) GetSendIdOk

func (o *Update) GetSendIdOk() (*int32, bool)

GetSendIdOk returns a tuple with the SendId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetSendOk

func (o *Update) GetSendOk() (*SendReduced, bool)

GetSendOk returns a tuple with the Send field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetState

func (o *Update) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*Update) GetStateOk

func (o *Update) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetUserId

func (o *Update) GetUserId() int32

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Update) GetUserIdOk

func (o *Update) GetUserIdOk() (*int32, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) GetVersion

func (o *Update) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*Update) GetVersionOk

func (o *Update) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Update) HasCompanyId

func (o *Update) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*Update) HasCreated

func (o *Update) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Update) HasDescription

func (o *Update) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Update) HasErrors

func (o *Update) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*Update) HasId

func (o *Update) HasId() bool

HasId returns a boolean if a field has been set.

func (*Update) HasIsRead

func (o *Update) HasIsRead() bool

HasIsRead returns a boolean if a field has been set.

func (*Update) HasLastUpdate

func (o *Update) HasLastUpdate() bool

HasLastUpdate returns a boolean if a field has been set.

func (*Update) HasMessageId

func (o *Update) HasMessageId() bool

HasMessageId returns a boolean if a field has been set.

func (*Update) HasSend

func (o *Update) HasSend() bool

HasSend returns a boolean if a field has been set.

func (*Update) HasSendId

func (o *Update) HasSendId() bool

HasSendId returns a boolean if a field has been set.

func (*Update) HasState

func (o *Update) HasState() bool

HasState returns a boolean if a field has been set.

func (*Update) HasUserId

func (o *Update) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*Update) HasVersion

func (o *Update) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Update) MarshalJSON

func (o Update) MarshalJSON() ([]byte, error)

func (*Update) SetCompanyId

func (o *Update) SetCompanyId(v int32)

SetCompanyId gets a reference to the given int32 and assigns it to the CompanyId field.

func (*Update) SetCreated

func (o *Update) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Update) SetDescription

func (o *Update) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*Update) SetDescriptionNil

func (o *Update) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Update) SetErrors

func (o *Update) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (*Update) SetId

func (o *Update) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*Update) SetIsRead

func (o *Update) SetIsRead(v bool)

SetIsRead gets a reference to the given bool and assigns it to the IsRead field.

func (*Update) SetLastUpdate

func (o *Update) SetLastUpdate(v time.Time)

SetLastUpdate gets a reference to the given time.Time and assigns it to the LastUpdate field.

func (*Update) SetMessageId

func (o *Update) SetMessageId(v string)

SetMessageId gets a reference to the given NullableString and assigns it to the MessageId field.

func (*Update) SetMessageIdNil

func (o *Update) SetMessageIdNil()

SetMessageIdNil sets the value for MessageId to be an explicit nil

func (*Update) SetSend

func (o *Update) SetSend(v SendReduced)

SetSend gets a reference to the given SendReduced and assigns it to the Send field.

func (*Update) SetSendId

func (o *Update) SetSendId(v int32)

SetSendId gets a reference to the given int32 and assigns it to the SendId field.

func (*Update) SetState

func (o *Update) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*Update) SetUserId

func (o *Update) SetUserId(v int32)

SetUserId gets a reference to the given int32 and assigns it to the UserId field.

func (*Update) SetVersion

func (o *Update) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (Update) ToMap

func (o Update) ToMap() (map[string]interface{}, error)

func (*Update) UnsetDescription

func (o *Update) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*Update) UnsetMessageId

func (o *Update) UnsetMessageId()

UnsetMessageId ensures that no value is present for MessageId, not even an explicit nil

type UpdateAPIService

type UpdateAPIService service

UpdateAPIService UpdateAPI service

func (*UpdateAPIService) UpdateGet

UpdateGet List updates

Updates are notifications sent by the SDI about the status of invoices you sent.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateGetRequest

func (*UpdateAPIService) UpdateGetExecute

func (a *UpdateAPIService) UpdateGetExecute(r ApiUpdateGetRequest) ([]Update, *http.Response, error)

Execute executes the request

@return []Update

func (*UpdateAPIService) UpdateIdGet

UpdateIdGet Get an update by id

Updates are notifications sent by the SDI about the status of invoices you sent.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Item id
@return ApiUpdateIdGetRequest

func (*UpdateAPIService) UpdateIdGetExecute

func (a *UpdateAPIService) UpdateIdGetExecute(r ApiUpdateIdGetRequest) (*Update, *http.Response, error)

Execute executes the request

@return Update

type WebHook

type WebHook struct {
	// Unique identifier. Leave it at 0 for new records as it will be set automatically.
	Id *int32 `json:"id,omitempty"`
	// Creation date. It is set automatically.
	Created *time.Time `json:"created,omitempty"`
	// Row version, for optimistic concurrency. It is set automatically.
	Version *int32 `json:"version,omitempty"`
	// User id.
	UserId *int32 `json:"user_id,omitempty"`
	// Company id.
	CompanyId NullableInt32 `json:"company_id,omitempty"`
	// The url of your application's endpoint that will receive a POST request when the webhook is fired.
	Url NullableString `json:"url,omitempty"`
	// Wether the webhook is enabled. On creation, this is set to `true`.
	Enabled *bool `json:"enabled,omitempty"`
	// The secret used to generate webhook signatures, only returned on creation. You should store this value securely and validate it on every call, to ensure that the caller is InvoicetronicApi.
	Secret NullableString `json:"secret,omitempty"`
	// An optional description.
	Description NullableString `json:"description,omitempty"`
	// List of events to that trigger the webhook.  See Invoicetronic.SupportedEvents.Available for a list of valid event names.
	Events []string `json:"events,omitempty"`
}

WebHook struct for WebHook

func NewWebHook

func NewWebHook() *WebHook

NewWebHook instantiates a new WebHook 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 NewWebHookWithDefaults

func NewWebHookWithDefaults() *WebHook

NewWebHookWithDefaults instantiates a new WebHook 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 (*WebHook) GetCompanyId

func (o *WebHook) GetCompanyId() int32

GetCompanyId returns the CompanyId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebHook) GetCompanyIdOk

func (o *WebHook) GetCompanyIdOk() (*int32, bool)

GetCompanyIdOk returns a tuple with the CompanyId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebHook) GetCreated

func (o *WebHook) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*WebHook) GetCreatedOk

func (o *WebHook) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHook) GetDescription

func (o *WebHook) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebHook) GetDescriptionOk

func (o *WebHook) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebHook) GetEnabled

func (o *WebHook) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*WebHook) GetEnabledOk

func (o *WebHook) GetEnabledOk() (*bool, bool)

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 (*WebHook) GetEvents

func (o *WebHook) GetEvents() []string

GetEvents returns the Events field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebHook) GetEventsOk

func (o *WebHook) GetEventsOk() ([]string, bool)

GetEventsOk returns a tuple with the Events field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebHook) GetId

func (o *WebHook) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*WebHook) GetIdOk

func (o *WebHook) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHook) GetSecret

func (o *WebHook) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebHook) GetSecretOk

func (o *WebHook) GetSecretOk() (*string, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebHook) GetUrl

func (o *WebHook) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebHook) GetUrlOk

func (o *WebHook) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebHook) GetUserId

func (o *WebHook) GetUserId() int32

GetUserId returns the UserId field value if set, zero value otherwise.

func (*WebHook) GetUserIdOk

func (o *WebHook) GetUserIdOk() (*int32, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHook) GetVersion

func (o *WebHook) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*WebHook) GetVersionOk

func (o *WebHook) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHook) HasCompanyId

func (o *WebHook) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*WebHook) HasCreated

func (o *WebHook) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*WebHook) HasDescription

func (o *WebHook) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WebHook) HasEnabled

func (o *WebHook) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*WebHook) HasEvents

func (o *WebHook) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*WebHook) HasId

func (o *WebHook) HasId() bool

HasId returns a boolean if a field has been set.

func (*WebHook) HasSecret

func (o *WebHook) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*WebHook) HasUrl

func (o *WebHook) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*WebHook) HasUserId

func (o *WebHook) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*WebHook) HasVersion

func (o *WebHook) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (WebHook) MarshalJSON

func (o WebHook) MarshalJSON() ([]byte, error)

func (*WebHook) SetCompanyId

func (o *WebHook) SetCompanyId(v int32)

SetCompanyId gets a reference to the given NullableInt32 and assigns it to the CompanyId field.

func (*WebHook) SetCompanyIdNil

func (o *WebHook) SetCompanyIdNil()

SetCompanyIdNil sets the value for CompanyId to be an explicit nil

func (*WebHook) SetCreated

func (o *WebHook) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*WebHook) SetDescription

func (o *WebHook) SetDescription(v string)

SetDescription gets a reference to the given NullableString and assigns it to the Description field.

func (*WebHook) SetDescriptionNil

func (o *WebHook) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*WebHook) SetEnabled

func (o *WebHook) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*WebHook) SetEvents

func (o *WebHook) SetEvents(v []string)

SetEvents gets a reference to the given []string and assigns it to the Events field.

func (*WebHook) SetId

func (o *WebHook) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*WebHook) SetSecret

func (o *WebHook) SetSecret(v string)

SetSecret gets a reference to the given NullableString and assigns it to the Secret field.

func (*WebHook) SetSecretNil

func (o *WebHook) SetSecretNil()

SetSecretNil sets the value for Secret to be an explicit nil

func (*WebHook) SetUrl

func (o *WebHook) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*WebHook) SetUrlNil

func (o *WebHook) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*WebHook) SetUserId

func (o *WebHook) SetUserId(v int32)

SetUserId gets a reference to the given int32 and assigns it to the UserId field.

func (*WebHook) SetVersion

func (o *WebHook) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (WebHook) ToMap

func (o WebHook) ToMap() (map[string]interface{}, error)

func (*WebHook) UnsetCompanyId

func (o *WebHook) UnsetCompanyId()

UnsetCompanyId ensures that no value is present for CompanyId, not even an explicit nil

func (*WebHook) UnsetDescription

func (o *WebHook) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*WebHook) UnsetSecret

func (o *WebHook) UnsetSecret()

UnsetSecret ensures that no value is present for Secret, not even an explicit nil

func (*WebHook) UnsetUrl

func (o *WebHook) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type WebHookHistory

type WebHookHistory struct {
	// Unique identifier. Leave it at 0 for new records as it will be set automatically.
	Id *int32 `json:"id,omitempty"`
	// Creation date. It is set automatically.
	Created *time.Time `json:"created,omitempty"`
	// Row version, for optimistic concurrency. It is set automatically.
	Version *int32 `json:"version,omitempty"`
	// Webhook id.
	WebHookId *int32 `json:"web_hook_id,omitempty"`
	// User id.
	UserId *int32 `json:"user_id,omitempty"`
	// Event name.
	Event NullableString `json:"event,omitempty"`
	// Status code.
	StatusCode *int32 `json:"status_code,omitempty"`
	// Date and time of the request.
	DateTime *time.Time `json:"date_time,omitempty"`
	// Wether the request was successful.
	Success *bool `json:"success,omitempty"`
}

WebHookHistory Webhook history.

func NewWebHookHistory

func NewWebHookHistory() *WebHookHistory

NewWebHookHistory instantiates a new WebHookHistory 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 NewWebHookHistoryWithDefaults

func NewWebHookHistoryWithDefaults() *WebHookHistory

NewWebHookHistoryWithDefaults instantiates a new WebHookHistory 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 (*WebHookHistory) GetCreated

func (o *WebHookHistory) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*WebHookHistory) GetCreatedOk

func (o *WebHookHistory) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookHistory) GetDateTime

func (o *WebHookHistory) GetDateTime() time.Time

GetDateTime returns the DateTime field value if set, zero value otherwise.

func (*WebHookHistory) GetDateTimeOk

func (o *WebHookHistory) GetDateTimeOk() (*time.Time, bool)

GetDateTimeOk returns a tuple with the DateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookHistory) GetEvent

func (o *WebHookHistory) GetEvent() string

GetEvent returns the Event field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebHookHistory) GetEventOk

func (o *WebHookHistory) GetEventOk() (*string, bool)

GetEventOk returns a tuple with the Event field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebHookHistory) GetId

func (o *WebHookHistory) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*WebHookHistory) GetIdOk

func (o *WebHookHistory) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookHistory) GetStatusCode

func (o *WebHookHistory) GetStatusCode() int32

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*WebHookHistory) GetStatusCodeOk

func (o *WebHookHistory) GetStatusCodeOk() (*int32, bool)

GetStatusCodeOk returns a tuple with the StatusCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookHistory) GetSuccess

func (o *WebHookHistory) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*WebHookHistory) GetSuccessOk

func (o *WebHookHistory) 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 (*WebHookHistory) GetUserId

func (o *WebHookHistory) GetUserId() int32

GetUserId returns the UserId field value if set, zero value otherwise.

func (*WebHookHistory) GetUserIdOk

func (o *WebHookHistory) GetUserIdOk() (*int32, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookHistory) GetVersion

func (o *WebHookHistory) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*WebHookHistory) GetVersionOk

func (o *WebHookHistory) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookHistory) GetWebHookId

func (o *WebHookHistory) GetWebHookId() int32

GetWebHookId returns the WebHookId field value if set, zero value otherwise.

func (*WebHookHistory) GetWebHookIdOk

func (o *WebHookHistory) GetWebHookIdOk() (*int32, bool)

GetWebHookIdOk returns a tuple with the WebHookId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookHistory) HasCreated

func (o *WebHookHistory) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*WebHookHistory) HasDateTime

func (o *WebHookHistory) HasDateTime() bool

HasDateTime returns a boolean if a field has been set.

func (*WebHookHistory) HasEvent

func (o *WebHookHistory) HasEvent() bool

HasEvent returns a boolean if a field has been set.

func (*WebHookHistory) HasId

func (o *WebHookHistory) HasId() bool

HasId returns a boolean if a field has been set.

func (*WebHookHistory) HasStatusCode

func (o *WebHookHistory) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (*WebHookHistory) HasSuccess

func (o *WebHookHistory) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (*WebHookHistory) HasUserId

func (o *WebHookHistory) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*WebHookHistory) HasVersion

func (o *WebHookHistory) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*WebHookHistory) HasWebHookId

func (o *WebHookHistory) HasWebHookId() bool

HasWebHookId returns a boolean if a field has been set.

func (WebHookHistory) MarshalJSON

func (o WebHookHistory) MarshalJSON() ([]byte, error)

func (*WebHookHistory) SetCreated

func (o *WebHookHistory) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*WebHookHistory) SetDateTime

func (o *WebHookHistory) SetDateTime(v time.Time)

SetDateTime gets a reference to the given time.Time and assigns it to the DateTime field.

func (*WebHookHistory) SetEvent

func (o *WebHookHistory) SetEvent(v string)

SetEvent gets a reference to the given NullableString and assigns it to the Event field.

func (*WebHookHistory) SetEventNil

func (o *WebHookHistory) SetEventNil()

SetEventNil sets the value for Event to be an explicit nil

func (*WebHookHistory) SetId

func (o *WebHookHistory) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*WebHookHistory) SetStatusCode

func (o *WebHookHistory) SetStatusCode(v int32)

SetStatusCode gets a reference to the given int32 and assigns it to the StatusCode field.

func (*WebHookHistory) SetSuccess

func (o *WebHookHistory) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*WebHookHistory) SetUserId

func (o *WebHookHistory) SetUserId(v int32)

SetUserId gets a reference to the given int32 and assigns it to the UserId field.

func (*WebHookHistory) SetVersion

func (o *WebHookHistory) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (*WebHookHistory) SetWebHookId

func (o *WebHookHistory) SetWebHookId(v int32)

SetWebHookId gets a reference to the given int32 and assigns it to the WebHookId field.

func (WebHookHistory) ToMap

func (o WebHookHistory) ToMap() (map[string]interface{}, error)

func (*WebHookHistory) UnsetEvent

func (o *WebHookHistory) UnsetEvent()

UnsetEvent ensures that no value is present for Event, not even an explicit nil

type WebhookAPIService

type WebhookAPIService service

WebhookAPIService WebhookAPI service

func (*WebhookAPIService) WebhookGet

WebhookGet List webhooks

Webhooks are used to notify external services about write events that occur in the API. You can subscribe to specific events and receive a notification when they occur.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebhookGetRequest

func (*WebhookAPIService) WebhookGetExecute

func (a *WebhookAPIService) WebhookGetExecute(r ApiWebhookGetRequest) ([]WebHook, *http.Response, error)

Execute executes the request

@return []WebHook

func (*WebhookAPIService) WebhookIdDelete

func (a *WebhookAPIService) WebhookIdDelete(ctx context.Context, id int32) ApiWebhookIdDeleteRequest

WebhookIdDelete Delete a webhook by id

Webhooks are used to notify external services about write events that occur in the API. You can subscribe to specific events and receive a notification when they occur.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Item id
@return ApiWebhookIdDeleteRequest

func (*WebhookAPIService) WebhookIdDeleteExecute

func (a *WebhookAPIService) WebhookIdDeleteExecute(r ApiWebhookIdDeleteRequest) (*WebHook, *http.Response, error)

Execute executes the request

@return WebHook

func (*WebhookAPIService) WebhookIdGet

WebhookIdGet Get a webhook by id

Webhooks are used to notify external services about write events that occur in the API. You can subscribe to specific events and receive a notification when they occur.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Item id
@return ApiWebhookIdGetRequest

func (*WebhookAPIService) WebhookIdGetExecute

func (a *WebhookAPIService) WebhookIdGetExecute(r ApiWebhookIdGetRequest) (*WebHook, *http.Response, error)

Execute executes the request

@return WebHook

func (*WebhookAPIService) WebhookPost

WebhookPost Add a webhook

Webhooks are used to notify external services about write events that occur in the API. You can subscribe to specific events and receive a notification when they occur.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebhookPostRequest

func (*WebhookAPIService) WebhookPostExecute

func (a *WebhookAPIService) WebhookPostExecute(r ApiWebhookPostRequest) (*WebHook, *http.Response, error)

Execute executes the request

@return WebHook

func (*WebhookAPIService) WebhookPut

WebhookPut Update a webhook

Webhooks are used to notify external services about write events that occur in the API. You can subscribe to specific events and receive a notification when they occur.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebhookPutRequest

func (*WebhookAPIService) WebhookPutExecute

func (a *WebhookAPIService) WebhookPutExecute(r ApiWebhookPutRequest) (*WebHook, *http.Response, error)

Execute executes the request

@return WebHook

func (*WebhookAPIService) WebhookhistoryGet

WebhookhistoryGet List webhook history items

Webhook history items are stored in the database and can be accessed via the API. They are preserved for 15 in both the live and sandbox environments.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebhookhistoryGetRequest

func (*WebhookAPIService) WebhookhistoryGetExecute

func (a *WebhookAPIService) WebhookhistoryGetExecute(r ApiWebhookhistoryGetRequest) ([]WebHookHistory, *http.Response, error)

Execute executes the request

@return []WebHookHistory

func (*WebhookAPIService) WebhookhistoryIdGet

func (a *WebhookAPIService) WebhookhistoryIdGet(ctx context.Context, id int32) ApiWebhookhistoryIdGetRequest

WebhookhistoryIdGet Get a webhook history item by id

Webhook history items are stored in the database and can be accessed via the API. They are preserved for 15 in both the live and sandbox environments.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Item id
@return ApiWebhookhistoryIdGetRequest

func (*WebhookAPIService) WebhookhistoryIdGetExecute

func (a *WebhookAPIService) WebhookhistoryIdGetExecute(r ApiWebhookhistoryIdGetRequest) (*WebHookHistory, *http.Response, error)

Execute executes the request

@return WebHookHistory

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL