ecf

package module
v0.0.21 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2026 License: MIT Imports: 23 Imported by: 0

README

Go API client for ecf

Descripción general

API de nivel productivo para emitir Comprobantes Fiscales Electrónicos (e-CF) en la República Dominicana a través de la plataforma Pronesoft.

Autenticación — OAuth 2.0 Client Credentials

Pasos
  1. Obtén tus credenciales desde el portal:
  2. Solicita un token via POST /oauth/token — válido por 24 horas (86400s).
  3. Usa: Authorization: Bearer en cada request.
  4. Renueva al recibir HTTP 401. Buena práctica: renovar 5 minutos antes del vencimiento.
Delegación multi-empresa

Para actuar en nombre de una empresa asociada (sucursal), agrega: x-tenant-id: NO envíes x-tenant-id cuando actúes como la empresa principal.

Detalles del Sandbox
  • Usa cualquier RNC que comience con SBX (ej. SBX123456) — no se requiere certificado real.
  • Las secuencias son automáticas — no es necesario crearlas manualmente.
  • El campo environment en el cuerpo del documento DEBE ser TesteCF.
Scopes disponibles

business:read, business:create, business:update, members:read, members:invite, members:revoke, certificates:read, certificates:upload, certificates:update, documents:read, documents:create, documents:send, documents:receive, documents:update, approvals:read, approvals:commercial, sequences:read, sequences:create, sequences:update, sequences:cancel, business_info:read, certification:read, certification:write, reports:read

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

Installation

Import the package in a go file in your project and run go mod tidy:

import ecf "github.com/ProneSoftSRL/pronesoft-ecf-sdks/ecf"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

ctx := context.WithValue(context.Background(), ecf.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://api.ecf.sandbox.pronesoft.com/api/v1

Class Method HTTP request Description
AssociatedCompaniesAPI CreateAssociatedCompany Post /associated-companies Crear empresa asociada / sucursal
AssociatedCompaniesAPI DeleteAssociatedCompany Delete /associated-companies/{companyId} Eliminar empresa asociada
AssociatedCompaniesAPI GetCompanyDocumentMetrics Get /associated-companies/{companyId}/documents-metrics Métricas de documentos de la empresa
AssociatedCompaniesAPI GetCompanyMetrics Get /associated-companies/{companyId}/metrics Métricas de la empresa
AssociatedCompaniesAPI ListAssociatedCompanies Get /associated-companies Listar empresas asociadas / sucursales
AssociatedCompaniesAPI UpdateAssociatedCompany Put /associated-companies/{companyId} Actualizar empresa asociada
AuthenticationAPI GetAccessToken Post /oauth/token Obtener token de acceso (OAuth 2.0)
AutomatedCertificationAPI DownloadCertification Get /dgii-ecf/automated-certification/{id}/download Descargar ZIP de certificación
AutomatedCertificationAPI GetCertificationStatus Get /dgii-ecf/automated-certification/{id}/status Estado del proceso de certificación
AutomatedCertificationAPI ListCertificationNiches Get /dgii-ecf/automated-certification/niches Listar nichos de certificación
AutomatedCertificationAPI StartCertification Post /dgii-ecf/automated-certification/start Iniciar proceso de certificación
CommercialApprovalsAPI GetCommercialApprovalById Get /documents/approvals/{id} Obtener aprobación comercial por ID
CommercialApprovalsAPI ListCommercialApprovals Get /documents/approvals Listar aprobaciones comerciales
DigitalCertificatesAPI UploadCertificate Post /{rnc}/certificates Subir certificado digital (P12/PFX)
DocumentsReceivedAPI GetReceivedDocumentById Get /documents/received/{id} Obtener documento recibido por ID
DocumentsReceivedAPI GetReceivedDocumentStatsBySupplier Get /documents/received/stats/by-supplier Top 10 proveedores por volumen de documentos recibidos
DocumentsReceivedAPI GetReceivedDocumentStatsSummary Get /documents/received/stats/summary Estadísticas de documentos recibidos
DocumentsReceivedAPI ListReceivedDocuments Get /documents/received Listar documentos recibidos
DocumentsSentAPI DownloadSentDocumentXml Get /documents/download Descargar XML del documento
DocumentsSentAPI GetSentDocumentById Get /documents/{id} Obtener detalle del documento
DocumentsSentAPI GetSentDocumentLogs Get /documents/logs/{id} Logs de procesamiento del documento
DocumentsSentAPI GetSentDocumentStats Get /documents/stats/summary Estadísticas de documentos enviados
DocumentsSentAPI GetSentDocumentStatsByEnvironment Get /documents/stats/by-environment Estadísticas agrupadas por ambiente y estado
DocumentsSentAPI GetSentDocumentStatusOptions Get /documents/status-options Opciones de filtro de estado disponibles
DocumentsSentAPI GetSentDocumentXml Get /documents/sent/{id}/xml Descargar XML del documento por ID
DocumentsSentAPI ListSentDocuments Get /documents/sent Listar documentos enviados
ECFSubmissionAPI GetEcfStats Get /{environment}/ecf/responses/stats Obtener estadísticas de envíos (últimos 30 días)
ECFSubmissionAPI GetEcfStatus Get /{environment}/ecf/status/{id} Consultar estado del documento por ID interno
ECFSubmissionAPI GetEcfSubmissionHistory Get /{environment}/ecf/responses/history Historial de envíos (paginado)
ECFSubmissionAPI SubmitEcf Post /{environment}/ecf/submit Enviar documento e-CF a la DGII
ReportsAPI Export606 Get /dgii/606/export Exportar Formato 606 (Compras)
ReportsAPI ExportSentDocuments Get /dgii/sent/export Exportar reporte de documentos enviados
TaxSequencesAPI CreateTaxSequence Post /tax-sequences/create Crear nueva secuencia de NCF
TaxSequencesAPI GetNextNumber Get /tax-sequences/next Obtener siguiente número fiscal disponible
TaxSequencesAPI ListTaxSequences Get /tax-sequences Listar secuencias de NCF
TaxSequencesAPI UpdateTaxSequence Patch /tax-sequences/update Actualizar secuencia de NCF
TaxSequencesAPI VoidTaxSequence Post /tax-sequences/void Anular rango de números fiscales
WebhookConfigurationAPI GetWebhook Get /{rnc}/webhooks/{webhookId} Detalle de un webhook
WebhookConfigurationAPI GetWebhookStats Get /{rnc}/webhooks/{webhookId}/stats Estadísticas de entregas del webhook
WebhookConfigurationAPI ListWebhooks Get /{rnc}/webhooks Listar configuraciones de webhooks

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

bearerAuth
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), ecf.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)
oauth2
  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • business:read: Consultar datos de la empresa.
  • business:create: Crear una nueva empresa.
  • business:update: Actualizar datos de la empresa.
  • members:read: Ver miembros del equipo.
  • members:invite: Invitar nuevos miembros.
  • members:revoke: Revocar acceso de miembros.
  • certificates:read: Ver certificados digitales.
  • certificates:upload: Subir nuevos certificados.
  • certificates:update: Actualizar certificados existentes.
  • documents:read: Listar y consultar detalles de documentos.
  • documents:create: Crear borradores o documentos internos.
  • documents:send: Enviar e-CF a la DGII.
  • documents:receive: Recibir e-CF de terceros.
  • documents:update: Modificar metadatos de documentos.
  • approvals:read: Ver estados de aprobación.
  • approvals:commercial: Realizar aprobaciones o rechazos comerciales.
  • sequences:read: Ver rangos de NCF/e-NCF.
  • sequences:create: Solicitar o agregar nuevas secuencias.
  • sequences:update: Modificar configuraciones de secuencias.
  • sequences:cancel: Cancelar secuencias no utilizadas.
  • business_info:read: Acceder a estadísticas y métricas del dashboard.
  • certification:read: Ver progreso de certificación DGII.
  • certification:write: Ejecutar pruebas de certificación automática DGII.
  • reports:read: Generar y exportar reportes (ej. formato 606).

Example

auth := context.WithValue(context.Background(), ecf.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

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

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, ecf.ContextOAuth2, tokenSource)
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

support@pronesoft.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 (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// 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")
)
View Source
var AllowedAccountTypeEnumValues = []AccountType{
	"CT",
	"AH",
	"OT",
}

All allowed values of AccountType enum

View Source
var AllowedBillingIndicatorEnumValues = []BillingIndicator{
	"0",
	"1",
	"2",
	"3",
	"4",
}

All allowed values of BillingIndicator enum

View Source
var AllowedDocumentStatusEnumValues = []DocumentStatus{
	"IN_PROCESS",
	"APPROVED",
	"CONDITIONALLY_APPROVED",
	"REJECTED",
	"ERROR",
	"ERROR_COMUNICATION",
}

All allowed values of DocumentStatus enum

View Source
var AllowedEnvironmentEnumValues = []Environment{
	"TesteCF",
	"CerteCF",
	"eCF",
}

All allowed values of Environment enum

View Source
var AllowedInvoiceTypeEnumValues = []InvoiceType{
	"31",
	"32",
	"33",
	"34",
	"41",
	"43",
	"44",
	"45",
	"46",
	"47",
}

All allowed values of InvoiceType enum

View Source
var AllowedInvoiceTypeSequenceEnumValues = []InvoiceTypeSequence{
	"E31",
	"E32",
	"E33",
	"E34",
	"E41",
	"E43",
	"E44",
	"E45",
	"E46",
	"E47",
}

All allowed values of InvoiceTypeSequence enum

View Source
var AllowedLegalStatusEnumValues = []LegalStatus{
	"ACCEPTED",
	"ACCEPTED_WITH_OBSERVATIONS",
	"REJECTED",
	"ERROR",
}

All allowed values of LegalStatus enum

View Source
var AllowedPaymentMethodEnumValues = []PaymentMethod{
	"1",
	"2",
	"3",
	"4",
	"5",
	"6",
	"7",
	"8",
}

All allowed values of PaymentMethod enum

View Source
var AllowedPrintFormatEnumValues = []PrintFormat{
	"A4",
	"thermal_80",
	"thermal_58",
}

All allowed values of PrintFormat enum

View Source
var AllowedPublicDocumentStatusEnumValues = []PublicDocumentStatus{
	"REGISTERED",
	"TO_SEND",
	"WAITING_RESPONSE",
	"FINISHED",
}

All allowed values of PublicDocumentStatus enum

View Source
var AllowedWebhookEventTypeEnumValues = []WebhookEventType{
	"document.received",
	"document.status_changed",
	"document.validation_error",
	"document.contingency_activated",
	"commercial.approval",
	"certificate.expiring",
	"security.new_login",
	"security.api_key_rotated",
	"plan.usage_alert",
	"plan.payment_failed",
	"billing.invoice_ready",
	"sequence.depleted",
	"sequence.voided",
	"branch.created",
	"branch.status_changed",
	"member.invited",
	"member.joined",
	"member.removed",
	"certification.completed",
}

All allowed values of WebhookEventType enum

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 {
	AssociatedCompaniesAPI *AssociatedCompaniesAPIService

	AuthenticationAPI *AuthenticationAPIService

	AutomatedCertificationAPI *AutomatedCertificationAPIService

	CommercialApprovalsAPI *CommercialApprovalsAPIService

	DigitalCertificatesAPI *DigitalCertificatesAPIService

	DocumentsReceivedAPI *DocumentsReceivedAPIService

	DocumentsSentAPI *DocumentsSentAPIService

	ECFSubmissionAPI *ECFSubmissionAPIService

	ReportsAPI *ReportsAPIService

	TaxSequencesAPI *TaxSequencesAPIService

	WebhookConfigurationAPI *WebhookConfigurationAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the eCF-Pronesoft Integration API API v1.2.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AccountType

type AccountType string

AccountType CT=Current account, AH=Savings, OT=Other

const (
	ACCOUNTTYPE_CT AccountType = "CT"
	ACCOUNTTYPE_AH AccountType = "AH"
	ACCOUNTTYPE_OT AccountType = "OT"
)

List of AccountType

func NewAccountTypeFromValue

func NewAccountTypeFromValue(v string) (*AccountType, error)

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

func (AccountType) IsValid

func (v AccountType) IsValid() bool

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

func (AccountType) Ptr

func (v AccountType) Ptr() *AccountType

Ptr returns reference to AccountType value

func (*AccountType) UnmarshalJSON

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

type AdditionalInfo

type AdditionalInfo struct {
	ShipmentDate    *string  `json:"shipmentDate,omitempty"`
	ShipmentNumber  *string  `json:"shipmentNumber,omitempty"`
	ContainerNumber *string  `json:"containerNumber,omitempty"`
	ReferenceNumber *string  `json:"referenceNumber,omitempty"`
	GrossWeight     *float32 `json:"grossWeight,omitempty"`
	NetWeight       *float32 `json:"netWeight,omitempty"`
	GrossWeightUnit *int32   `json:"grossWeightUnit,omitempty"`
	NetWeightUnit   *int32   `json:"netWeightUnit,omitempty"`
	PackageQuantity *float32 `json:"packageQuantity,omitempty"`
	PackageUnit     *int32   `json:"packageUnit,omitempty"`
	PackageVolume   *float32 `json:"packageVolume,omitempty"`
	VolumeUnit      *int32   `json:"volumeUnit,omitempty"`
}

AdditionalInfo struct for AdditionalInfo

func NewAdditionalInfo

func NewAdditionalInfo() *AdditionalInfo

NewAdditionalInfo instantiates a new AdditionalInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAdditionalInfoWithDefaults

func NewAdditionalInfoWithDefaults() *AdditionalInfo

NewAdditionalInfoWithDefaults instantiates a new AdditionalInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AdditionalInfo) GetContainerNumber added in v0.0.7

func (o *AdditionalInfo) GetContainerNumber() string

GetContainerNumber returns the ContainerNumber field value if set, zero value otherwise.

func (*AdditionalInfo) GetContainerNumberOk added in v0.0.7

func (o *AdditionalInfo) GetContainerNumberOk() (*string, bool)

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

func (*AdditionalInfo) GetGrossWeight

func (o *AdditionalInfo) GetGrossWeight() float32

GetGrossWeight returns the GrossWeight field value if set, zero value otherwise.

func (*AdditionalInfo) GetGrossWeightOk

func (o *AdditionalInfo) GetGrossWeightOk() (*float32, bool)

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

func (*AdditionalInfo) GetGrossWeightUnit added in v0.0.7

func (o *AdditionalInfo) GetGrossWeightUnit() int32

GetGrossWeightUnit returns the GrossWeightUnit field value if set, zero value otherwise.

func (*AdditionalInfo) GetGrossWeightUnitOk added in v0.0.7

func (o *AdditionalInfo) GetGrossWeightUnitOk() (*int32, bool)

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

func (*AdditionalInfo) GetNetWeight added in v0.0.7

func (o *AdditionalInfo) GetNetWeight() float32

GetNetWeight returns the NetWeight field value if set, zero value otherwise.

func (*AdditionalInfo) GetNetWeightOk added in v0.0.7

func (o *AdditionalInfo) GetNetWeightOk() (*float32, bool)

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

func (*AdditionalInfo) GetNetWeightUnit added in v0.0.7

func (o *AdditionalInfo) GetNetWeightUnit() int32

GetNetWeightUnit returns the NetWeightUnit field value if set, zero value otherwise.

func (*AdditionalInfo) GetNetWeightUnitOk added in v0.0.7

func (o *AdditionalInfo) GetNetWeightUnitOk() (*int32, bool)

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

func (*AdditionalInfo) GetPackageQuantity

func (o *AdditionalInfo) GetPackageQuantity() float32

GetPackageQuantity returns the PackageQuantity field value if set, zero value otherwise.

func (*AdditionalInfo) GetPackageQuantityOk

func (o *AdditionalInfo) GetPackageQuantityOk() (*float32, bool)

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

func (*AdditionalInfo) GetPackageUnit added in v0.0.7

func (o *AdditionalInfo) GetPackageUnit() int32

GetPackageUnit returns the PackageUnit field value if set, zero value otherwise.

func (*AdditionalInfo) GetPackageUnitOk added in v0.0.7

func (o *AdditionalInfo) GetPackageUnitOk() (*int32, bool)

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

func (*AdditionalInfo) GetPackageVolume added in v0.0.7

func (o *AdditionalInfo) GetPackageVolume() float32

GetPackageVolume returns the PackageVolume field value if set, zero value otherwise.

func (*AdditionalInfo) GetPackageVolumeOk added in v0.0.7

func (o *AdditionalInfo) GetPackageVolumeOk() (*float32, bool)

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

func (*AdditionalInfo) GetReferenceNumber added in v0.0.7

func (o *AdditionalInfo) GetReferenceNumber() string

GetReferenceNumber returns the ReferenceNumber field value if set, zero value otherwise.

func (*AdditionalInfo) GetReferenceNumberOk added in v0.0.7

func (o *AdditionalInfo) GetReferenceNumberOk() (*string, bool)

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

func (*AdditionalInfo) GetShipmentDate added in v0.0.7

func (o *AdditionalInfo) GetShipmentDate() string

GetShipmentDate returns the ShipmentDate field value if set, zero value otherwise.

func (*AdditionalInfo) GetShipmentDateOk added in v0.0.7

func (o *AdditionalInfo) GetShipmentDateOk() (*string, bool)

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

func (*AdditionalInfo) GetShipmentNumber added in v0.0.7

func (o *AdditionalInfo) GetShipmentNumber() string

GetShipmentNumber returns the ShipmentNumber field value if set, zero value otherwise.

func (*AdditionalInfo) GetShipmentNumberOk added in v0.0.7

func (o *AdditionalInfo) GetShipmentNumberOk() (*string, bool)

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

func (*AdditionalInfo) GetVolumeUnit added in v0.0.7

func (o *AdditionalInfo) GetVolumeUnit() int32

GetVolumeUnit returns the VolumeUnit field value if set, zero value otherwise.

func (*AdditionalInfo) GetVolumeUnitOk added in v0.0.7

func (o *AdditionalInfo) GetVolumeUnitOk() (*int32, bool)

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

func (*AdditionalInfo) HasContainerNumber added in v0.0.7

func (o *AdditionalInfo) HasContainerNumber() bool

HasContainerNumber returns a boolean if a field has been set.

func (*AdditionalInfo) HasGrossWeight

func (o *AdditionalInfo) HasGrossWeight() bool

HasGrossWeight returns a boolean if a field has been set.

func (*AdditionalInfo) HasGrossWeightUnit added in v0.0.7

func (o *AdditionalInfo) HasGrossWeightUnit() bool

HasGrossWeightUnit returns a boolean if a field has been set.

func (*AdditionalInfo) HasNetWeight added in v0.0.7

func (o *AdditionalInfo) HasNetWeight() bool

HasNetWeight returns a boolean if a field has been set.

func (*AdditionalInfo) HasNetWeightUnit added in v0.0.7

func (o *AdditionalInfo) HasNetWeightUnit() bool

HasNetWeightUnit returns a boolean if a field has been set.

func (*AdditionalInfo) HasPackageQuantity

func (o *AdditionalInfo) HasPackageQuantity() bool

HasPackageQuantity returns a boolean if a field has been set.

func (*AdditionalInfo) HasPackageUnit added in v0.0.7

func (o *AdditionalInfo) HasPackageUnit() bool

HasPackageUnit returns a boolean if a field has been set.

func (*AdditionalInfo) HasPackageVolume added in v0.0.7

func (o *AdditionalInfo) HasPackageVolume() bool

HasPackageVolume returns a boolean if a field has been set.

func (*AdditionalInfo) HasReferenceNumber added in v0.0.7

func (o *AdditionalInfo) HasReferenceNumber() bool

HasReferenceNumber returns a boolean if a field has been set.

func (*AdditionalInfo) HasShipmentDate added in v0.0.7

func (o *AdditionalInfo) HasShipmentDate() bool

HasShipmentDate returns a boolean if a field has been set.

func (*AdditionalInfo) HasShipmentNumber added in v0.0.7

func (o *AdditionalInfo) HasShipmentNumber() bool

HasShipmentNumber returns a boolean if a field has been set.

func (*AdditionalInfo) HasVolumeUnit added in v0.0.7

func (o *AdditionalInfo) HasVolumeUnit() bool

HasVolumeUnit returns a boolean if a field has been set.

func (AdditionalInfo) MarshalJSON

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

func (*AdditionalInfo) SetContainerNumber added in v0.0.7

func (o *AdditionalInfo) SetContainerNumber(v string)

SetContainerNumber gets a reference to the given string and assigns it to the ContainerNumber field.

func (*AdditionalInfo) SetGrossWeight

func (o *AdditionalInfo) SetGrossWeight(v float32)

SetGrossWeight gets a reference to the given float32 and assigns it to the GrossWeight field.

func (*AdditionalInfo) SetGrossWeightUnit added in v0.0.7

func (o *AdditionalInfo) SetGrossWeightUnit(v int32)

SetGrossWeightUnit gets a reference to the given int32 and assigns it to the GrossWeightUnit field.

func (*AdditionalInfo) SetNetWeight added in v0.0.7

func (o *AdditionalInfo) SetNetWeight(v float32)

SetNetWeight gets a reference to the given float32 and assigns it to the NetWeight field.

func (*AdditionalInfo) SetNetWeightUnit added in v0.0.7

func (o *AdditionalInfo) SetNetWeightUnit(v int32)

SetNetWeightUnit gets a reference to the given int32 and assigns it to the NetWeightUnit field.

func (*AdditionalInfo) SetPackageQuantity

func (o *AdditionalInfo) SetPackageQuantity(v float32)

SetPackageQuantity gets a reference to the given float32 and assigns it to the PackageQuantity field.

func (*AdditionalInfo) SetPackageUnit added in v0.0.7

func (o *AdditionalInfo) SetPackageUnit(v int32)

SetPackageUnit gets a reference to the given int32 and assigns it to the PackageUnit field.

func (*AdditionalInfo) SetPackageVolume added in v0.0.7

func (o *AdditionalInfo) SetPackageVolume(v float32)

SetPackageVolume gets a reference to the given float32 and assigns it to the PackageVolume field.

func (*AdditionalInfo) SetReferenceNumber added in v0.0.7

func (o *AdditionalInfo) SetReferenceNumber(v string)

SetReferenceNumber gets a reference to the given string and assigns it to the ReferenceNumber field.

func (*AdditionalInfo) SetShipmentDate added in v0.0.7

func (o *AdditionalInfo) SetShipmentDate(v string)

SetShipmentDate gets a reference to the given string and assigns it to the ShipmentDate field.

func (*AdditionalInfo) SetShipmentNumber added in v0.0.7

func (o *AdditionalInfo) SetShipmentNumber(v string)

SetShipmentNumber gets a reference to the given string and assigns it to the ShipmentNumber field.

func (*AdditionalInfo) SetVolumeUnit added in v0.0.7

func (o *AdditionalInfo) SetVolumeUnit(v int32)

SetVolumeUnit gets a reference to the given int32 and assigns it to the VolumeUnit field.

func (AdditionalInfo) ToMap

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

type AdditionalTax added in v0.0.10

type AdditionalTax struct {
	Code                          string   `json:"code"`
	Rate                          float32  `json:"rate"`
	SpecificConsumptionTaxAmount  *float32 `json:"specificConsumptionTaxAmount,omitempty"`
	AdValoremConsumptionTaxAmount *float32 `json:"adValoremConsumptionTaxAmount,omitempty"`
	OtherAdditionalTaxesAmount    *float32 `json:"otherAdditionalTaxesAmount,omitempty"`
}

AdditionalTax struct for AdditionalTax

func NewAdditionalTax added in v0.0.10

func NewAdditionalTax(code string, rate float32) *AdditionalTax

NewAdditionalTax instantiates a new AdditionalTax object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAdditionalTaxWithDefaults added in v0.0.10

func NewAdditionalTaxWithDefaults() *AdditionalTax

NewAdditionalTaxWithDefaults instantiates a new AdditionalTax object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AdditionalTax) GetAdValoremConsumptionTaxAmount added in v0.0.10

func (o *AdditionalTax) GetAdValoremConsumptionTaxAmount() float32

GetAdValoremConsumptionTaxAmount returns the AdValoremConsumptionTaxAmount field value if set, zero value otherwise.

func (*AdditionalTax) GetAdValoremConsumptionTaxAmountOk added in v0.0.10

func (o *AdditionalTax) GetAdValoremConsumptionTaxAmountOk() (*float32, bool)

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

func (*AdditionalTax) GetCode added in v0.0.10

func (o *AdditionalTax) GetCode() string

GetCode returns the Code field value

func (*AdditionalTax) GetCodeOk added in v0.0.10

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

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

func (*AdditionalTax) GetOtherAdditionalTaxesAmount added in v0.0.10

func (o *AdditionalTax) GetOtherAdditionalTaxesAmount() float32

GetOtherAdditionalTaxesAmount returns the OtherAdditionalTaxesAmount field value if set, zero value otherwise.

func (*AdditionalTax) GetOtherAdditionalTaxesAmountOk added in v0.0.10

func (o *AdditionalTax) GetOtherAdditionalTaxesAmountOk() (*float32, bool)

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

func (*AdditionalTax) GetRate added in v0.0.10

func (o *AdditionalTax) GetRate() float32

GetRate returns the Rate field value

func (*AdditionalTax) GetRateOk added in v0.0.10

func (o *AdditionalTax) GetRateOk() (*float32, bool)

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

func (*AdditionalTax) GetSpecificConsumptionTaxAmount added in v0.0.10

func (o *AdditionalTax) GetSpecificConsumptionTaxAmount() float32

GetSpecificConsumptionTaxAmount returns the SpecificConsumptionTaxAmount field value if set, zero value otherwise.

func (*AdditionalTax) GetSpecificConsumptionTaxAmountOk added in v0.0.10

func (o *AdditionalTax) GetSpecificConsumptionTaxAmountOk() (*float32, bool)

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

func (*AdditionalTax) HasAdValoremConsumptionTaxAmount added in v0.0.10

func (o *AdditionalTax) HasAdValoremConsumptionTaxAmount() bool

HasAdValoremConsumptionTaxAmount returns a boolean if a field has been set.

func (*AdditionalTax) HasOtherAdditionalTaxesAmount added in v0.0.10

func (o *AdditionalTax) HasOtherAdditionalTaxesAmount() bool

HasOtherAdditionalTaxesAmount returns a boolean if a field has been set.

func (*AdditionalTax) HasSpecificConsumptionTaxAmount added in v0.0.10

func (o *AdditionalTax) HasSpecificConsumptionTaxAmount() bool

HasSpecificConsumptionTaxAmount returns a boolean if a field has been set.

func (AdditionalTax) MarshalJSON added in v0.0.10

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

func (*AdditionalTax) SetAdValoremConsumptionTaxAmount added in v0.0.10

func (o *AdditionalTax) SetAdValoremConsumptionTaxAmount(v float32)

SetAdValoremConsumptionTaxAmount gets a reference to the given float32 and assigns it to the AdValoremConsumptionTaxAmount field.

func (*AdditionalTax) SetCode added in v0.0.10

func (o *AdditionalTax) SetCode(v string)

SetCode sets field value

func (*AdditionalTax) SetOtherAdditionalTaxesAmount added in v0.0.10

func (o *AdditionalTax) SetOtherAdditionalTaxesAmount(v float32)

SetOtherAdditionalTaxesAmount gets a reference to the given float32 and assigns it to the OtherAdditionalTaxesAmount field.

func (*AdditionalTax) SetRate added in v0.0.10

func (o *AdditionalTax) SetRate(v float32)

SetRate sets field value

func (*AdditionalTax) SetSpecificConsumptionTaxAmount added in v0.0.10

func (o *AdditionalTax) SetSpecificConsumptionTaxAmount(v float32)

SetSpecificConsumptionTaxAmount gets a reference to the given float32 and assigns it to the SpecificConsumptionTaxAmount field.

func (AdditionalTax) ToMap added in v0.0.10

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

func (*AdditionalTax) UnmarshalJSON added in v0.0.10

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

type AlternativeCurrency

type AlternativeCurrency struct {
	Code                string   `json:"code"`
	ExchangeRate        float32  `json:"exchangeRate"`
	TaxableAmount       *float32 `json:"taxableAmount,omitempty"`
	TaxableAmount1      *float32 `json:"taxableAmount1,omitempty"`
	TaxableAmount2      *float32 `json:"taxableAmount2,omitempty"`
	TaxableAmount3      *float32 `json:"taxableAmount3,omitempty"`
	ExemptAmount        *float32 `json:"exemptAmount,omitempty"`
	TotalITBIS          *float32 `json:"totalITBIS,omitempty"`
	Itbis1              *float32 `json:"itbis1,omitempty"`
	Itbis2              *float32 `json:"itbis2,omitempty"`
	Itbis3              *float32 `json:"itbis3,omitempty"`
	AdditionalTaxAmount *float32 `json:"additionalTaxAmount,omitempty"`
	AdditionalTaxes     []string `json:"additionalTaxes,omitempty"`
	NonBillableAmount   *float32 `json:"nonBillableAmount,omitempty"`
	TotalAmount         *float32 `json:"totalAmount,omitempty"`
}

AlternativeCurrency struct for AlternativeCurrency

func NewAlternativeCurrency

func NewAlternativeCurrency(code string, exchangeRate float32) *AlternativeCurrency

NewAlternativeCurrency instantiates a new AlternativeCurrency object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAlternativeCurrencyWithDefaults

func NewAlternativeCurrencyWithDefaults() *AlternativeCurrency

NewAlternativeCurrencyWithDefaults instantiates a new AlternativeCurrency object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AlternativeCurrency) GetAdditionalTaxAmount added in v0.0.7

func (o *AlternativeCurrency) GetAdditionalTaxAmount() float32

GetAdditionalTaxAmount returns the AdditionalTaxAmount field value if set, zero value otherwise.

func (*AlternativeCurrency) GetAdditionalTaxAmountOk added in v0.0.7

func (o *AlternativeCurrency) GetAdditionalTaxAmountOk() (*float32, bool)

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

func (*AlternativeCurrency) GetAdditionalTaxes added in v0.0.7

func (o *AlternativeCurrency) GetAdditionalTaxes() []string

GetAdditionalTaxes returns the AdditionalTaxes field value if set, zero value otherwise.

func (*AlternativeCurrency) GetAdditionalTaxesOk added in v0.0.7

func (o *AlternativeCurrency) GetAdditionalTaxesOk() ([]string, bool)

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

func (*AlternativeCurrency) GetCode

func (o *AlternativeCurrency) GetCode() string

GetCode returns the Code field value

func (*AlternativeCurrency) GetCodeOk

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

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

func (*AlternativeCurrency) GetExchangeRate

func (o *AlternativeCurrency) GetExchangeRate() float32

GetExchangeRate returns the ExchangeRate field value

func (*AlternativeCurrency) GetExchangeRateOk

func (o *AlternativeCurrency) GetExchangeRateOk() (*float32, bool)

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

func (*AlternativeCurrency) GetExemptAmount added in v0.0.7

func (o *AlternativeCurrency) GetExemptAmount() float32

GetExemptAmount returns the ExemptAmount field value if set, zero value otherwise.

func (*AlternativeCurrency) GetExemptAmountOk added in v0.0.7

func (o *AlternativeCurrency) GetExemptAmountOk() (*float32, bool)

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

func (*AlternativeCurrency) GetItbis1 added in v0.0.7

func (o *AlternativeCurrency) GetItbis1() float32

GetItbis1 returns the Itbis1 field value if set, zero value otherwise.

func (*AlternativeCurrency) GetItbis1Ok added in v0.0.7

func (o *AlternativeCurrency) GetItbis1Ok() (*float32, bool)

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

func (*AlternativeCurrency) GetItbis2 added in v0.0.7

func (o *AlternativeCurrency) GetItbis2() float32

GetItbis2 returns the Itbis2 field value if set, zero value otherwise.

func (*AlternativeCurrency) GetItbis2Ok added in v0.0.7

func (o *AlternativeCurrency) GetItbis2Ok() (*float32, bool)

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

func (*AlternativeCurrency) GetItbis3 added in v0.0.7

func (o *AlternativeCurrency) GetItbis3() float32

GetItbis3 returns the Itbis3 field value if set, zero value otherwise.

func (*AlternativeCurrency) GetItbis3Ok added in v0.0.7

func (o *AlternativeCurrency) GetItbis3Ok() (*float32, bool)

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

func (*AlternativeCurrency) GetNonBillableAmount added in v0.0.7

func (o *AlternativeCurrency) GetNonBillableAmount() float32

GetNonBillableAmount returns the NonBillableAmount field value if set, zero value otherwise.

func (*AlternativeCurrency) GetNonBillableAmountOk added in v0.0.7

func (o *AlternativeCurrency) GetNonBillableAmountOk() (*float32, bool)

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

func (*AlternativeCurrency) GetTaxableAmount added in v0.0.7

func (o *AlternativeCurrency) GetTaxableAmount() float32

GetTaxableAmount returns the TaxableAmount field value if set, zero value otherwise.

func (*AlternativeCurrency) GetTaxableAmount1 added in v0.0.7

func (o *AlternativeCurrency) GetTaxableAmount1() float32

GetTaxableAmount1 returns the TaxableAmount1 field value if set, zero value otherwise.

func (*AlternativeCurrency) GetTaxableAmount1Ok added in v0.0.7

func (o *AlternativeCurrency) GetTaxableAmount1Ok() (*float32, bool)

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

func (*AlternativeCurrency) GetTaxableAmount2 added in v0.0.7

func (o *AlternativeCurrency) GetTaxableAmount2() float32

GetTaxableAmount2 returns the TaxableAmount2 field value if set, zero value otherwise.

func (*AlternativeCurrency) GetTaxableAmount2Ok added in v0.0.7

func (o *AlternativeCurrency) GetTaxableAmount2Ok() (*float32, bool)

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

func (*AlternativeCurrency) GetTaxableAmount3 added in v0.0.7

func (o *AlternativeCurrency) GetTaxableAmount3() float32

GetTaxableAmount3 returns the TaxableAmount3 field value if set, zero value otherwise.

func (*AlternativeCurrency) GetTaxableAmount3Ok added in v0.0.7

func (o *AlternativeCurrency) GetTaxableAmount3Ok() (*float32, bool)

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

func (*AlternativeCurrency) GetTaxableAmountOk added in v0.0.7

func (o *AlternativeCurrency) GetTaxableAmountOk() (*float32, bool)

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

func (*AlternativeCurrency) GetTotalAmount

func (o *AlternativeCurrency) GetTotalAmount() float32

GetTotalAmount returns the TotalAmount field value if set, zero value otherwise.

func (*AlternativeCurrency) GetTotalAmountOk

func (o *AlternativeCurrency) GetTotalAmountOk() (*float32, bool)

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

func (*AlternativeCurrency) GetTotalITBIS added in v0.0.7

func (o *AlternativeCurrency) GetTotalITBIS() float32

GetTotalITBIS returns the TotalITBIS field value if set, zero value otherwise.

func (*AlternativeCurrency) GetTotalITBISOk added in v0.0.7

func (o *AlternativeCurrency) GetTotalITBISOk() (*float32, bool)

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

func (*AlternativeCurrency) HasAdditionalTaxAmount added in v0.0.7

func (o *AlternativeCurrency) HasAdditionalTaxAmount() bool

HasAdditionalTaxAmount returns a boolean if a field has been set.

func (*AlternativeCurrency) HasAdditionalTaxes added in v0.0.7

func (o *AlternativeCurrency) HasAdditionalTaxes() bool

HasAdditionalTaxes returns a boolean if a field has been set.

func (*AlternativeCurrency) HasExemptAmount added in v0.0.7

func (o *AlternativeCurrency) HasExemptAmount() bool

HasExemptAmount returns a boolean if a field has been set.

func (*AlternativeCurrency) HasItbis1 added in v0.0.7

func (o *AlternativeCurrency) HasItbis1() bool

HasItbis1 returns a boolean if a field has been set.

func (*AlternativeCurrency) HasItbis2 added in v0.0.7

func (o *AlternativeCurrency) HasItbis2() bool

HasItbis2 returns a boolean if a field has been set.

func (*AlternativeCurrency) HasItbis3 added in v0.0.7

func (o *AlternativeCurrency) HasItbis3() bool

HasItbis3 returns a boolean if a field has been set.

func (*AlternativeCurrency) HasNonBillableAmount added in v0.0.7

func (o *AlternativeCurrency) HasNonBillableAmount() bool

HasNonBillableAmount returns a boolean if a field has been set.

func (*AlternativeCurrency) HasTaxableAmount added in v0.0.7

func (o *AlternativeCurrency) HasTaxableAmount() bool

HasTaxableAmount returns a boolean if a field has been set.

func (*AlternativeCurrency) HasTaxableAmount1 added in v0.0.7

func (o *AlternativeCurrency) HasTaxableAmount1() bool

HasTaxableAmount1 returns a boolean if a field has been set.

func (*AlternativeCurrency) HasTaxableAmount2 added in v0.0.7

func (o *AlternativeCurrency) HasTaxableAmount2() bool

HasTaxableAmount2 returns a boolean if a field has been set.

func (*AlternativeCurrency) HasTaxableAmount3 added in v0.0.7

func (o *AlternativeCurrency) HasTaxableAmount3() bool

HasTaxableAmount3 returns a boolean if a field has been set.

func (*AlternativeCurrency) HasTotalAmount

func (o *AlternativeCurrency) HasTotalAmount() bool

HasTotalAmount returns a boolean if a field has been set.

func (*AlternativeCurrency) HasTotalITBIS added in v0.0.7

func (o *AlternativeCurrency) HasTotalITBIS() bool

HasTotalITBIS returns a boolean if a field has been set.

func (AlternativeCurrency) MarshalJSON

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

func (*AlternativeCurrency) SetAdditionalTaxAmount added in v0.0.7

func (o *AlternativeCurrency) SetAdditionalTaxAmount(v float32)

SetAdditionalTaxAmount gets a reference to the given float32 and assigns it to the AdditionalTaxAmount field.

func (*AlternativeCurrency) SetAdditionalTaxes added in v0.0.7

func (o *AlternativeCurrency) SetAdditionalTaxes(v []string)

SetAdditionalTaxes gets a reference to the given []string and assigns it to the AdditionalTaxes field.

func (*AlternativeCurrency) SetCode

func (o *AlternativeCurrency) SetCode(v string)

SetCode sets field value

func (*AlternativeCurrency) SetExchangeRate

func (o *AlternativeCurrency) SetExchangeRate(v float32)

SetExchangeRate sets field value

func (*AlternativeCurrency) SetExemptAmount added in v0.0.7

func (o *AlternativeCurrency) SetExemptAmount(v float32)

SetExemptAmount gets a reference to the given float32 and assigns it to the ExemptAmount field.

func (*AlternativeCurrency) SetItbis1 added in v0.0.7

func (o *AlternativeCurrency) SetItbis1(v float32)

SetItbis1 gets a reference to the given float32 and assigns it to the Itbis1 field.

func (*AlternativeCurrency) SetItbis2 added in v0.0.7

func (o *AlternativeCurrency) SetItbis2(v float32)

SetItbis2 gets a reference to the given float32 and assigns it to the Itbis2 field.

func (*AlternativeCurrency) SetItbis3 added in v0.0.7

func (o *AlternativeCurrency) SetItbis3(v float32)

SetItbis3 gets a reference to the given float32 and assigns it to the Itbis3 field.

func (*AlternativeCurrency) SetNonBillableAmount added in v0.0.7

func (o *AlternativeCurrency) SetNonBillableAmount(v float32)

SetNonBillableAmount gets a reference to the given float32 and assigns it to the NonBillableAmount field.

func (*AlternativeCurrency) SetTaxableAmount added in v0.0.7

func (o *AlternativeCurrency) SetTaxableAmount(v float32)

SetTaxableAmount gets a reference to the given float32 and assigns it to the TaxableAmount field.

func (*AlternativeCurrency) SetTaxableAmount1 added in v0.0.7

func (o *AlternativeCurrency) SetTaxableAmount1(v float32)

SetTaxableAmount1 gets a reference to the given float32 and assigns it to the TaxableAmount1 field.

func (*AlternativeCurrency) SetTaxableAmount2 added in v0.0.7

func (o *AlternativeCurrency) SetTaxableAmount2(v float32)

SetTaxableAmount2 gets a reference to the given float32 and assigns it to the TaxableAmount2 field.

func (*AlternativeCurrency) SetTaxableAmount3 added in v0.0.7

func (o *AlternativeCurrency) SetTaxableAmount3(v float32)

SetTaxableAmount3 gets a reference to the given float32 and assigns it to the TaxableAmount3 field.

func (*AlternativeCurrency) SetTotalAmount

func (o *AlternativeCurrency) SetTotalAmount(v float32)

SetTotalAmount gets a reference to the given float32 and assigns it to the TotalAmount field.

func (*AlternativeCurrency) SetTotalITBIS added in v0.0.7

func (o *AlternativeCurrency) SetTotalITBIS(v float32)

SetTotalITBIS gets a reference to the given float32 and assigns it to the TotalITBIS field.

func (AlternativeCurrency) ToMap

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

func (*AlternativeCurrency) UnmarshalJSON

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

type ApiCreateAssociatedCompanyRequest

type ApiCreateAssociatedCompanyRequest struct {
	ApiService *AssociatedCompaniesAPIService
	// contains filtered or unexported fields
}

func (ApiCreateAssociatedCompanyRequest) Address

func (ApiCreateAssociatedCompanyRequest) Category

func (ApiCreateAssociatedCompanyRequest) City

func (ApiCreateAssociatedCompanyRequest) Country

func (ApiCreateAssociatedCompanyRequest) Email

func (ApiCreateAssociatedCompanyRequest) Execute

func (ApiCreateAssociatedCompanyRequest) FirstName

func (ApiCreateAssociatedCompanyRequest) JobTitle

func (ApiCreateAssociatedCompanyRequest) LastName

func (ApiCreateAssociatedCompanyRequest) MonthlySalesRange

func (r ApiCreateAssociatedCompanyRequest) MonthlySalesRange(monthlySalesRange string) ApiCreateAssociatedCompanyRequest

func (ApiCreateAssociatedCompanyRequest) Name

func (ApiCreateAssociatedCompanyRequest) Password

func (ApiCreateAssociatedCompanyRequest) Phone

func (ApiCreateAssociatedCompanyRequest) PrinterType

func (ApiCreateAssociatedCompanyRequest) Rnc

func (ApiCreateAssociatedCompanyRequest) Website

type ApiCreateTaxSequenceRequest

type ApiCreateTaxSequenceRequest struct {
	ApiService *TaxSequencesAPIService
	// contains filtered or unexported fields
}

func (ApiCreateTaxSequenceRequest) CreateTaxSequenceRequest

func (r ApiCreateTaxSequenceRequest) CreateTaxSequenceRequest(createTaxSequenceRequest CreateTaxSequenceRequest) ApiCreateTaxSequenceRequest

func (ApiCreateTaxSequenceRequest) Execute

func (ApiCreateTaxSequenceRequest) XTenantId

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiDeleteAssociatedCompanyRequest added in v0.0.7

type ApiDeleteAssociatedCompanyRequest struct {
	ApiService *AssociatedCompaniesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteAssociatedCompanyRequest) Execute added in v0.0.7

type ApiDownloadCertificationRequest added in v0.0.7

type ApiDownloadCertificationRequest struct {
	ApiService *AutomatedCertificationAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadCertificationRequest) Execute added in v0.0.7

type ApiDownloadSentDocumentXmlRequest added in v0.0.19

type ApiDownloadSentDocumentXmlRequest struct {
	ApiService *DocumentsSentAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadSentDocumentXmlRequest) Execute added in v0.0.19

func (ApiDownloadSentDocumentXmlRequest) FileUrl added in v0.0.19

func (ApiDownloadSentDocumentXmlRequest) Id added in v0.0.19

ID interno del documento

func (ApiDownloadSentDocumentXmlRequest) Inline added in v0.0.19

true para ver en el navegador, false para descargar

type ApiExport606Request added in v0.0.7

type ApiExport606Request struct {
	ApiService *ReportsAPIService
	// contains filtered or unexported fields
}

func (ApiExport606Request) Encf added in v0.0.8

func (ApiExport606Request) Execute added in v0.0.7

func (r ApiExport606Request) Execute() (string, *http.Response, error)

func (ApiExport606Request) Format added in v0.0.7

func (ApiExport606Request) From added in v0.0.7

func (ApiExport606Request) Status added in v0.0.8

func (ApiExport606Request) To added in v0.0.7

func (ApiExport606Request) Type_ added in v0.0.8

type ApiExportSentDocumentsRequest added in v0.0.7

type ApiExportSentDocumentsRequest struct {
	ApiService *ReportsAPIService
	// contains filtered or unexported fields
}

func (ApiExportSentDocumentsRequest) Encf added in v0.0.7

func (ApiExportSentDocumentsRequest) Env added in v0.0.7

func (ApiExportSentDocumentsRequest) Execute added in v0.0.7

func (ApiExportSentDocumentsRequest) From added in v0.0.7

func (ApiExportSentDocumentsRequest) Status added in v0.0.7

func (ApiExportSentDocumentsRequest) To added in v0.0.7

func (ApiExportSentDocumentsRequest) TrackId added in v0.0.7

func (ApiExportSentDocumentsRequest) Type_ added in v0.0.7

type ApiGetAccessTokenRequest

type ApiGetAccessTokenRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccessTokenRequest) Execute

func (ApiGetAccessTokenRequest) OAuthTokenRequest

func (r ApiGetAccessTokenRequest) OAuthTokenRequest(oAuthTokenRequest OAuthTokenRequest) ApiGetAccessTokenRequest

type ApiGetCertificationStatusRequest added in v0.0.7

type ApiGetCertificationStatusRequest struct {
	ApiService *AutomatedCertificationAPIService
	// contains filtered or unexported fields
}

func (ApiGetCertificationStatusRequest) Execute added in v0.0.7

type ApiGetCommercialApprovalByIdRequest added in v0.0.19

type ApiGetCommercialApprovalByIdRequest struct {
	ApiService *CommercialApprovalsAPIService
	// contains filtered or unexported fields
}

func (ApiGetCommercialApprovalByIdRequest) Execute added in v0.0.19

func (ApiGetCommercialApprovalByIdRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetCompanyDocumentMetricsRequest added in v0.0.7

type ApiGetCompanyDocumentMetricsRequest struct {
	ApiService *AssociatedCompaniesAPIService
	// contains filtered or unexported fields
}

func (ApiGetCompanyDocumentMetricsRequest) Execute added in v0.0.7

type ApiGetCompanyMetricsRequest added in v0.0.7

type ApiGetCompanyMetricsRequest struct {
	ApiService *AssociatedCompaniesAPIService
	// contains filtered or unexported fields
}

func (ApiGetCompanyMetricsRequest) Execute added in v0.0.7

type ApiGetEcfStatsRequest added in v0.0.7

type ApiGetEcfStatsRequest struct {
	ApiService *ECFSubmissionAPIService
	// contains filtered or unexported fields
}

func (ApiGetEcfStatsRequest) Execute added in v0.0.7

func (ApiGetEcfStatsRequest) XTenantId added in v0.0.7

func (r ApiGetEcfStatsRequest) XTenantId(xTenantId string) ApiGetEcfStatsRequest

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetEcfStatusRequest added in v0.0.7

type ApiGetEcfStatusRequest struct {
	ApiService *ECFSubmissionAPIService
	// contains filtered or unexported fields
}

func (ApiGetEcfStatusRequest) Execute added in v0.0.7

func (ApiGetEcfStatusRequest) XTenantId added in v0.0.7

func (r ApiGetEcfStatusRequest) XTenantId(xTenantId string) ApiGetEcfStatusRequest

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetEcfSubmissionHistoryRequest added in v0.0.19

type ApiGetEcfSubmissionHistoryRequest struct {
	ApiService *ECFSubmissionAPIService
	// contains filtered or unexported fields
}

func (ApiGetEcfSubmissionHistoryRequest) Execute added in v0.0.19

func (ApiGetEcfSubmissionHistoryRequest) Limit added in v0.0.19

func (ApiGetEcfSubmissionHistoryRequest) Page added in v0.0.19

func (ApiGetEcfSubmissionHistoryRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetNextNumberRequest

type ApiGetNextNumberRequest struct {
	ApiService *TaxSequencesAPIService
	// contains filtered or unexported fields
}

func (ApiGetNextNumberRequest) Environment

func (r ApiGetNextNumberRequest) Environment(environment Environment) ApiGetNextNumberRequest

func (ApiGetNextNumberRequest) Execute

func (ApiGetNextNumberRequest) Type_

func (ApiGetNextNumberRequest) XTenantId

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetReceivedDocumentByIdRequest added in v0.0.19

type ApiGetReceivedDocumentByIdRequest struct {
	ApiService *DocumentsReceivedAPIService
	// contains filtered or unexported fields
}

func (ApiGetReceivedDocumentByIdRequest) Execute added in v0.0.19

func (ApiGetReceivedDocumentByIdRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetReceivedDocumentStatsBySupplierRequest added in v0.0.19

type ApiGetReceivedDocumentStatsBySupplierRequest struct {
	ApiService *DocumentsReceivedAPIService
	// contains filtered or unexported fields
}

func (ApiGetReceivedDocumentStatsBySupplierRequest) Execute added in v0.0.19

func (ApiGetReceivedDocumentStatsBySupplierRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetReceivedDocumentStatsSummaryRequest added in v0.0.19

type ApiGetReceivedDocumentStatsSummaryRequest struct {
	ApiService *DocumentsReceivedAPIService
	// contains filtered or unexported fields
}

func (ApiGetReceivedDocumentStatsSummaryRequest) Execute added in v0.0.19

func (ApiGetReceivedDocumentStatsSummaryRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetSentDocumentByIdRequest added in v0.0.19

type ApiGetSentDocumentByIdRequest struct {
	ApiService *DocumentsSentAPIService
	// contains filtered or unexported fields
}

func (ApiGetSentDocumentByIdRequest) Execute added in v0.0.19

func (ApiGetSentDocumentByIdRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetSentDocumentLogsRequest added in v0.0.19

type ApiGetSentDocumentLogsRequest struct {
	ApiService *DocumentsSentAPIService
	// contains filtered or unexported fields
}

func (ApiGetSentDocumentLogsRequest) Execute added in v0.0.19

func (ApiGetSentDocumentLogsRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetSentDocumentStatsByEnvironmentRequest added in v0.0.19

type ApiGetSentDocumentStatsByEnvironmentRequest struct {
	ApiService *DocumentsSentAPIService
	// contains filtered or unexported fields
}

func (ApiGetSentDocumentStatsByEnvironmentRequest) Execute added in v0.0.19

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

func (ApiGetSentDocumentStatsByEnvironmentRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetSentDocumentStatsRequest added in v0.0.19

type ApiGetSentDocumentStatsRequest struct {
	ApiService *DocumentsSentAPIService
	// contains filtered or unexported fields
}

func (ApiGetSentDocumentStatsRequest) Execute added in v0.0.19

func (ApiGetSentDocumentStatsRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiGetSentDocumentStatusOptionsRequest added in v0.0.19

type ApiGetSentDocumentStatusOptionsRequest struct {
	ApiService *DocumentsSentAPIService
	// contains filtered or unexported fields
}

func (ApiGetSentDocumentStatusOptionsRequest) Execute added in v0.0.19

type ApiGetSentDocumentXmlRequest added in v0.0.20

type ApiGetSentDocumentXmlRequest struct {
	ApiService *DocumentsSentAPIService
	// contains filtered or unexported fields
}

func (ApiGetSentDocumentXmlRequest) Execute added in v0.0.20

func (ApiGetSentDocumentXmlRequest) Inline added in v0.0.20

true para ver en el navegador, false para descargar

type ApiGetWebhookRequest added in v0.0.7

type ApiGetWebhookRequest struct {
	ApiService *WebhookConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiGetWebhookRequest) Execute added in v0.0.7

type ApiGetWebhookStatsRequest added in v0.0.7

type ApiGetWebhookStatsRequest struct {
	ApiService *WebhookConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiGetWebhookStatsRequest) Execute added in v0.0.7

func (ApiGetWebhookStatsRequest) Period added in v0.0.7

type ApiListAssociatedCompaniesRequest

type ApiListAssociatedCompaniesRequest struct {
	ApiService *AssociatedCompaniesAPIService
	// contains filtered or unexported fields
}

func (ApiListAssociatedCompaniesRequest) Execute

func (ApiListAssociatedCompaniesRequest) Limit added in v0.0.7

func (ApiListAssociatedCompaniesRequest) Page added in v0.0.7

type ApiListCertificationNichesRequest added in v0.0.7

type ApiListCertificationNichesRequest struct {
	ApiService *AutomatedCertificationAPIService
	// contains filtered or unexported fields
}

func (ApiListCertificationNichesRequest) Execute added in v0.0.7

type ApiListCommercialApprovalsRequest added in v0.0.19

type ApiListCommercialApprovalsRequest struct {
	ApiService *CommercialApprovalsAPIService
	// contains filtered or unexported fields
}

func (ApiListCommercialApprovalsRequest) DateFrom added in v0.0.19

func (ApiListCommercialApprovalsRequest) DateTo added in v0.0.19

func (ApiListCommercialApprovalsRequest) Ecf added in v0.0.19

func (ApiListCommercialApprovalsRequest) Execute added in v0.0.19

func (ApiListCommercialApprovalsRequest) Limit added in v0.0.19

func (ApiListCommercialApprovalsRequest) Page added in v0.0.19

func (ApiListCommercialApprovalsRequest) Status added in v0.0.19

func (ApiListCommercialApprovalsRequest) Type_ added in v0.0.19

Tipo de documento

func (ApiListCommercialApprovalsRequest) XTenantId added in v0.0.19

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiListReceivedDocumentsRequest added in v0.0.7

type ApiListReceivedDocumentsRequest struct {
	ApiService *DocumentsReceivedAPIService
	// contains filtered or unexported fields
}

func (ApiListReceivedDocumentsRequest) AmountFrom added in v0.0.19

func (ApiListReceivedDocumentsRequest) AmountTo added in v0.0.19

func (ApiListReceivedDocumentsRequest) DateFrom added in v0.0.7

func (ApiListReceivedDocumentsRequest) DateTo added in v0.0.7

func (ApiListReceivedDocumentsRequest) Ecf added in v0.0.8

func (ApiListReceivedDocumentsRequest) Execute added in v0.0.7

func (ApiListReceivedDocumentsRequest) Limit added in v0.0.7

func (ApiListReceivedDocumentsRequest) Page added in v0.0.7

func (ApiListReceivedDocumentsRequest) Processed added in v0.0.19

func (ApiListReceivedDocumentsRequest) Status added in v0.0.7

func (ApiListReceivedDocumentsRequest) SupplierRnc added in v0.0.19

RNC del emisor/proveedor

func (ApiListReceivedDocumentsRequest) Type_ added in v0.0.7

Tipo de documento (31, 32, 33, etc.)

func (ApiListReceivedDocumentsRequest) XTenantId added in v0.0.7

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiListSentDocumentsRequest added in v0.0.7

type ApiListSentDocumentsRequest struct {
	ApiService *DocumentsSentAPIService
	// contains filtered or unexported fields
}

func (ApiListSentDocumentsRequest) DateFrom added in v0.0.7

func (ApiListSentDocumentsRequest) DateTo added in v0.0.7

func (ApiListSentDocumentsRequest) Ecf added in v0.0.7

func (ApiListSentDocumentsRequest) Env added in v0.0.7

func (ApiListSentDocumentsRequest) Execute added in v0.0.7

func (ApiListSentDocumentsRequest) Limit added in v0.0.7

func (ApiListSentDocumentsRequest) Page added in v0.0.7

func (ApiListSentDocumentsRequest) Status added in v0.0.7

func (ApiListSentDocumentsRequest) Type_ added in v0.0.7

func (ApiListSentDocumentsRequest) XTenantId added in v0.0.7

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiListTaxSequencesRequest

type ApiListTaxSequencesRequest struct {
	ApiService *TaxSequencesAPIService
	// contains filtered or unexported fields
}

func (ApiListTaxSequencesRequest) Environment added in v0.0.8

func (ApiListTaxSequencesRequest) Execute

func (ApiListTaxSequencesRequest) Limit added in v0.0.7

func (ApiListTaxSequencesRequest) Page added in v0.0.7

func (ApiListTaxSequencesRequest) Type_

func (ApiListTaxSequencesRequest) XTenantId

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiListWebhooksRequest

type ApiListWebhooksRequest struct {
	ApiService *WebhookConfigurationAPIService
	// contains filtered or unexported fields
}

func (ApiListWebhooksRequest) Execute

type ApiStartCertificationRequest added in v0.0.7

type ApiStartCertificationRequest struct {
	ApiService *AutomatedCertificationAPIService
	// contains filtered or unexported fields
}

func (ApiStartCertificationRequest) Execute added in v0.0.7

func (ApiStartCertificationRequest) StartCertificationRequest added in v0.0.7

func (r ApiStartCertificationRequest) StartCertificationRequest(startCertificationRequest StartCertificationRequest) ApiStartCertificationRequest

type ApiSubmitEcfRequest

type ApiSubmitEcfRequest struct {
	ApiService *ECFSubmissionAPIService
	// contains filtered or unexported fields
}

func (ApiSubmitEcfRequest) ElectronicDocument

func (r ApiSubmitEcfRequest) ElectronicDocument(electronicDocument ElectronicDocument) ApiSubmitEcfRequest

func (ApiSubmitEcfRequest) Execute

func (ApiSubmitEcfRequest) XTenantId

func (r ApiSubmitEcfRequest) XTenantId(xTenantId string) ApiSubmitEcfRequest

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiUpdateAssociatedCompanyRequest added in v0.0.7

type ApiUpdateAssociatedCompanyRequest struct {
	ApiService *AssociatedCompaniesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateAssociatedCompanyRequest) City added in v0.0.7

func (ApiUpdateAssociatedCompanyRequest) Country added in v0.0.7

func (ApiUpdateAssociatedCompanyRequest) Execute added in v0.0.7

func (ApiUpdateAssociatedCompanyRequest) Name added in v0.0.7

func (ApiUpdateAssociatedCompanyRequest) Phone added in v0.0.7

func (ApiUpdateAssociatedCompanyRequest) Website added in v0.0.7

type ApiUpdateTaxSequenceRequest added in v0.0.7

type ApiUpdateTaxSequenceRequest struct {
	ApiService *TaxSequencesAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTaxSequenceRequest) Execute added in v0.0.7

func (ApiUpdateTaxSequenceRequest) Id added in v0.0.8

func (ApiUpdateTaxSequenceRequest) UpdateTaxSequenceRequest added in v0.0.7

func (r ApiUpdateTaxSequenceRequest) UpdateTaxSequenceRequest(updateTaxSequenceRequest UpdateTaxSequenceRequest) ApiUpdateTaxSequenceRequest

func (ApiUpdateTaxSequenceRequest) XTenantId added in v0.0.7

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApiUploadCertificateRequest

type ApiUploadCertificateRequest struct {
	ApiService *DigitalCertificatesAPIService
	// contains filtered or unexported fields
}

func (ApiUploadCertificateRequest) Execute

func (ApiUploadCertificateRequest) File

Archivo del certificado en formato .p12 o .pfx.

func (ApiUploadCertificateRequest) Password

Contraseña para desbloquear el certificado.

type ApiVoidTaxSequenceRequest added in v0.0.7

type ApiVoidTaxSequenceRequest struct {
	ApiService *TaxSequencesAPIService
	// contains filtered or unexported fields
}

func (ApiVoidTaxSequenceRequest) Execute added in v0.0.7

func (ApiVoidTaxSequenceRequest) VoidTaxSequenceRequest added in v0.0.7

func (r ApiVoidTaxSequenceRequest) VoidTaxSequenceRequest(voidTaxSequenceRequest VoidTaxSequenceRequest) ApiVoidTaxSequenceRequest

func (ApiVoidTaxSequenceRequest) XTenantId added in v0.0.7

UUID de la empresa asociada (sucursal). Incluir SOLO cuando se actúa en nombre de una sucursal. Omitir cuando se actúa como empresa principal.

type ApprovalItem added in v0.0.7

type ApprovalItem struct {
	Id             *string  `json:"id,omitempty"`
	Encf           *string  `json:"encf,omitempty"`
	Type           *string  `json:"type,omitempty"`
	IssuerRnc      *string  `json:"issuerRnc,omitempty"`
	BuyerRnc       *string  `json:"buyerRnc,omitempty"`
	TotalAmount    *float32 `json:"totalAmount,omitempty"`
	ApprovalStatus *string  `json:"approvalStatus,omitempty"`
	// 1=Approved, 2=Rejected, 3=Pending, 4=Under Review
	Status               *int32                       `json:"status,omitempty"`
	StatusLabel          *string                      `json:"statusLabel,omitempty"`
	IssueDate            *time.Time                   `json:"issueDate,omitempty"`
	ReceivedAt           *time.Time                   `json:"receivedAt,omitempty"`
	CreatedAt            *time.Time                   `json:"createdAt,omitempty"`
	RejectionDescription NullableString               `json:"rejectionDescription,omitempty"`
	Business             *SentDocumentSummaryBusiness `json:"business,omitempty"`
}

ApprovalItem struct for ApprovalItem

func NewApprovalItem added in v0.0.7

func NewApprovalItem() *ApprovalItem

NewApprovalItem instantiates a new ApprovalItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApprovalItemWithDefaults added in v0.0.7

func NewApprovalItemWithDefaults() *ApprovalItem

NewApprovalItemWithDefaults instantiates a new ApprovalItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApprovalItem) GetApprovalStatus added in v0.0.19

func (o *ApprovalItem) GetApprovalStatus() string

GetApprovalStatus returns the ApprovalStatus field value if set, zero value otherwise.

func (*ApprovalItem) GetApprovalStatusOk added in v0.0.19

func (o *ApprovalItem) GetApprovalStatusOk() (*string, bool)

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

func (*ApprovalItem) GetBusiness added in v0.0.19

func (o *ApprovalItem) GetBusiness() SentDocumentSummaryBusiness

GetBusiness returns the Business field value if set, zero value otherwise.

func (*ApprovalItem) GetBusinessOk added in v0.0.19

func (o *ApprovalItem) GetBusinessOk() (*SentDocumentSummaryBusiness, bool)

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

func (*ApprovalItem) GetBuyerRnc added in v0.0.19

func (o *ApprovalItem) GetBuyerRnc() string

GetBuyerRnc returns the BuyerRnc field value if set, zero value otherwise.

func (*ApprovalItem) GetBuyerRncOk added in v0.0.19

func (o *ApprovalItem) GetBuyerRncOk() (*string, bool)

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

func (*ApprovalItem) GetCreatedAt added in v0.0.19

func (o *ApprovalItem) GetCreatedAt() time.Time

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

func (*ApprovalItem) GetCreatedAtOk added in v0.0.19

func (o *ApprovalItem) GetCreatedAtOk() (*time.Time, bool)

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

func (*ApprovalItem) GetEncf added in v0.0.7

func (o *ApprovalItem) GetEncf() string

GetEncf returns the Encf field value if set, zero value otherwise.

func (*ApprovalItem) GetEncfOk added in v0.0.7

func (o *ApprovalItem) GetEncfOk() (*string, bool)

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

func (*ApprovalItem) GetId added in v0.0.7

func (o *ApprovalItem) GetId() string

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

func (*ApprovalItem) GetIdOk added in v0.0.7

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

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

func (*ApprovalItem) GetIssueDate added in v0.0.7

func (o *ApprovalItem) GetIssueDate() time.Time

GetIssueDate returns the IssueDate field value if set, zero value otherwise.

func (*ApprovalItem) GetIssueDateOk added in v0.0.7

func (o *ApprovalItem) GetIssueDateOk() (*time.Time, bool)

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

func (*ApprovalItem) GetIssuerRnc added in v0.0.19

func (o *ApprovalItem) GetIssuerRnc() string

GetIssuerRnc returns the IssuerRnc field value if set, zero value otherwise.

func (*ApprovalItem) GetIssuerRncOk added in v0.0.19

func (o *ApprovalItem) GetIssuerRncOk() (*string, bool)

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

func (*ApprovalItem) GetReceivedAt added in v0.0.19

func (o *ApprovalItem) GetReceivedAt() time.Time

GetReceivedAt returns the ReceivedAt field value if set, zero value otherwise.

func (*ApprovalItem) GetReceivedAtOk added in v0.0.19

func (o *ApprovalItem) GetReceivedAtOk() (*time.Time, bool)

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

func (*ApprovalItem) GetRejectionDescription added in v0.0.19

func (o *ApprovalItem) GetRejectionDescription() string

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

func (*ApprovalItem) GetRejectionDescriptionOk added in v0.0.19

func (o *ApprovalItem) GetRejectionDescriptionOk() (*string, bool)

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

func (*ApprovalItem) GetStatus added in v0.0.7

func (o *ApprovalItem) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ApprovalItem) GetStatusLabel added in v0.0.19

func (o *ApprovalItem) GetStatusLabel() string

GetStatusLabel returns the StatusLabel field value if set, zero value otherwise.

func (*ApprovalItem) GetStatusLabelOk added in v0.0.19

func (o *ApprovalItem) GetStatusLabelOk() (*string, bool)

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

func (*ApprovalItem) GetStatusOk added in v0.0.7

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

func (*ApprovalItem) GetTotalAmount added in v0.0.19

func (o *ApprovalItem) GetTotalAmount() float32

GetTotalAmount returns the TotalAmount field value if set, zero value otherwise.

func (*ApprovalItem) GetTotalAmountOk added in v0.0.19

func (o *ApprovalItem) GetTotalAmountOk() (*float32, bool)

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

func (*ApprovalItem) GetType added in v0.0.19

func (o *ApprovalItem) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ApprovalItem) GetTypeOk added in v0.0.19

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

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

func (*ApprovalItem) HasApprovalStatus added in v0.0.19

func (o *ApprovalItem) HasApprovalStatus() bool

HasApprovalStatus returns a boolean if a field has been set.

func (*ApprovalItem) HasBusiness added in v0.0.19

func (o *ApprovalItem) HasBusiness() bool

HasBusiness returns a boolean if a field has been set.

func (*ApprovalItem) HasBuyerRnc added in v0.0.19

func (o *ApprovalItem) HasBuyerRnc() bool

HasBuyerRnc returns a boolean if a field has been set.

func (*ApprovalItem) HasCreatedAt added in v0.0.19

func (o *ApprovalItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ApprovalItem) HasEncf added in v0.0.7

func (o *ApprovalItem) HasEncf() bool

HasEncf returns a boolean if a field has been set.

func (*ApprovalItem) HasId added in v0.0.7

func (o *ApprovalItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*ApprovalItem) HasIssueDate added in v0.0.7

func (o *ApprovalItem) HasIssueDate() bool

HasIssueDate returns a boolean if a field has been set.

func (*ApprovalItem) HasIssuerRnc added in v0.0.19

func (o *ApprovalItem) HasIssuerRnc() bool

HasIssuerRnc returns a boolean if a field has been set.

func (*ApprovalItem) HasReceivedAt added in v0.0.19

func (o *ApprovalItem) HasReceivedAt() bool

HasReceivedAt returns a boolean if a field has been set.

func (*ApprovalItem) HasRejectionDescription added in v0.0.19

func (o *ApprovalItem) HasRejectionDescription() bool

HasRejectionDescription returns a boolean if a field has been set.

func (*ApprovalItem) HasStatus added in v0.0.7

func (o *ApprovalItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ApprovalItem) HasStatusLabel added in v0.0.19

func (o *ApprovalItem) HasStatusLabel() bool

HasStatusLabel returns a boolean if a field has been set.

func (*ApprovalItem) HasTotalAmount added in v0.0.19

func (o *ApprovalItem) HasTotalAmount() bool

HasTotalAmount returns a boolean if a field has been set.

func (*ApprovalItem) HasType added in v0.0.19

func (o *ApprovalItem) HasType() bool

HasType returns a boolean if a field has been set.

func (ApprovalItem) MarshalJSON added in v0.0.7

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

func (*ApprovalItem) SetApprovalStatus added in v0.0.19

func (o *ApprovalItem) SetApprovalStatus(v string)

SetApprovalStatus gets a reference to the given string and assigns it to the ApprovalStatus field.

func (*ApprovalItem) SetBusiness added in v0.0.19

func (o *ApprovalItem) SetBusiness(v SentDocumentSummaryBusiness)

SetBusiness gets a reference to the given SentDocumentSummaryBusiness and assigns it to the Business field.

func (*ApprovalItem) SetBuyerRnc added in v0.0.19

func (o *ApprovalItem) SetBuyerRnc(v string)

SetBuyerRnc gets a reference to the given string and assigns it to the BuyerRnc field.

func (*ApprovalItem) SetCreatedAt added in v0.0.19

func (o *ApprovalItem) SetCreatedAt(v time.Time)

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

func (*ApprovalItem) SetEncf added in v0.0.7

func (o *ApprovalItem) SetEncf(v string)

SetEncf gets a reference to the given string and assigns it to the Encf field.

func (*ApprovalItem) SetId added in v0.0.7

func (o *ApprovalItem) SetId(v string)

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

func (*ApprovalItem) SetIssueDate added in v0.0.7

func (o *ApprovalItem) SetIssueDate(v time.Time)

SetIssueDate gets a reference to the given time.Time and assigns it to the IssueDate field.

func (*ApprovalItem) SetIssuerRnc added in v0.0.19

func (o *ApprovalItem) SetIssuerRnc(v string)

SetIssuerRnc gets a reference to the given string and assigns it to the IssuerRnc field.

func (*ApprovalItem) SetReceivedAt added in v0.0.19

func (o *ApprovalItem) SetReceivedAt(v time.Time)

SetReceivedAt gets a reference to the given time.Time and assigns it to the ReceivedAt field.

func (*ApprovalItem) SetRejectionDescription added in v0.0.19

func (o *ApprovalItem) SetRejectionDescription(v string)

SetRejectionDescription gets a reference to the given NullableString and assigns it to the RejectionDescription field.

func (*ApprovalItem) SetRejectionDescriptionNil added in v0.0.19

func (o *ApprovalItem) SetRejectionDescriptionNil()

SetRejectionDescriptionNil sets the value for RejectionDescription to be an explicit nil

func (*ApprovalItem) SetStatus added in v0.0.7

func (o *ApprovalItem) SetStatus(v int32)

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

func (*ApprovalItem) SetStatusLabel added in v0.0.19

func (o *ApprovalItem) SetStatusLabel(v string)

SetStatusLabel gets a reference to the given string and assigns it to the StatusLabel field.

func (*ApprovalItem) SetTotalAmount added in v0.0.19

func (o *ApprovalItem) SetTotalAmount(v float32)

SetTotalAmount gets a reference to the given float32 and assigns it to the TotalAmount field.

func (*ApprovalItem) SetType added in v0.0.19

func (o *ApprovalItem) SetType(v string)

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

func (ApprovalItem) ToMap added in v0.0.7

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

func (*ApprovalItem) UnsetRejectionDescription added in v0.0.19

func (o *ApprovalItem) UnsetRejectionDescription()

UnsetRejectionDescription ensures that no value is present for RejectionDescription, not even an explicit nil

type ApprovalListResponse added in v0.0.7

type ApprovalListResponse struct {
	Data []ApprovalItem  `json:"data,omitempty"`
	Meta *PaginationMeta `json:"meta,omitempty"`
}

ApprovalListResponse struct for ApprovalListResponse

func NewApprovalListResponse added in v0.0.7

func NewApprovalListResponse() *ApprovalListResponse

NewApprovalListResponse instantiates a new ApprovalListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApprovalListResponseWithDefaults added in v0.0.7

func NewApprovalListResponseWithDefaults() *ApprovalListResponse

NewApprovalListResponseWithDefaults instantiates a new ApprovalListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApprovalListResponse) GetData added in v0.0.7

func (o *ApprovalListResponse) GetData() []ApprovalItem

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

func (*ApprovalListResponse) GetDataOk added in v0.0.7

func (o *ApprovalListResponse) GetDataOk() ([]ApprovalItem, 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 (*ApprovalListResponse) GetMeta added in v0.0.7

func (o *ApprovalListResponse) GetMeta() PaginationMeta

GetMeta returns the Meta field value if set, zero value otherwise.

func (*ApprovalListResponse) GetMetaOk added in v0.0.7

func (o *ApprovalListResponse) GetMetaOk() (*PaginationMeta, bool)

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

func (*ApprovalListResponse) HasData added in v0.0.7

func (o *ApprovalListResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*ApprovalListResponse) HasMeta added in v0.0.7

func (o *ApprovalListResponse) HasMeta() bool

HasMeta returns a boolean if a field has been set.

func (ApprovalListResponse) MarshalJSON added in v0.0.7

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

func (*ApprovalListResponse) SetData added in v0.0.7

func (o *ApprovalListResponse) SetData(v []ApprovalItem)

SetData gets a reference to the given []ApprovalItem and assigns it to the Data field.

func (*ApprovalListResponse) SetMeta added in v0.0.7

func (o *ApprovalListResponse) SetMeta(v PaginationMeta)

SetMeta gets a reference to the given PaginationMeta and assigns it to the Meta field.

func (ApprovalListResponse) ToMap added in v0.0.7

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

type AssociatedCompaniesAPIService

type AssociatedCompaniesAPIService service

AssociatedCompaniesAPIService AssociatedCompaniesAPI service

func (*AssociatedCompaniesAPIService) CreateAssociatedCompany

CreateAssociatedCompany Crear empresa asociada / sucursal

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

func (*AssociatedCompaniesAPIService) CreateAssociatedCompanyExecute

Execute executes the request

@return CreateAssociatedCompany201Response

func (*AssociatedCompaniesAPIService) DeleteAssociatedCompany added in v0.0.7

func (a *AssociatedCompaniesAPIService) DeleteAssociatedCompany(ctx context.Context, companyId string) ApiDeleteAssociatedCompanyRequest

DeleteAssociatedCompany Eliminar empresa asociada

Elimina permanentemente una empresa asociada. Esta acción es irreversible.

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

func (*AssociatedCompaniesAPIService) DeleteAssociatedCompanyExecute added in v0.0.7

Execute executes the request

@return DeleteAssociatedCompany200Response

func (*AssociatedCompaniesAPIService) GetCompanyDocumentMetrics added in v0.0.7

func (a *AssociatedCompaniesAPIService) GetCompanyDocumentMetrics(ctx context.Context, companyId string) ApiGetCompanyDocumentMetricsRequest

GetCompanyDocumentMetrics Métricas de documentos de la empresa

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

func (*AssociatedCompaniesAPIService) GetCompanyDocumentMetricsExecute added in v0.0.7

Execute executes the request

@return CompanyDocumentMetrics

func (*AssociatedCompaniesAPIService) GetCompanyMetrics added in v0.0.7

GetCompanyMetrics Métricas de la empresa

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

func (*AssociatedCompaniesAPIService) GetCompanyMetricsExecute added in v0.0.7

Execute executes the request

@return CompanyMetrics

func (*AssociatedCompaniesAPIService) ListAssociatedCompanies

ListAssociatedCompanies Listar empresas asociadas / sucursales

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

func (*AssociatedCompaniesAPIService) ListAssociatedCompaniesExecute

Execute executes the request

@return []AssociatedCompany

func (*AssociatedCompaniesAPIService) UpdateAssociatedCompany added in v0.0.7

func (a *AssociatedCompaniesAPIService) UpdateAssociatedCompany(ctx context.Context, companyId string) ApiUpdateAssociatedCompanyRequest

UpdateAssociatedCompany Actualizar empresa asociada

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

func (*AssociatedCompaniesAPIService) UpdateAssociatedCompanyExecute added in v0.0.7

Execute executes the request

@return CreateAssociatedCompany201Response

type AssociatedCompany

type AssociatedCompany struct {
	Id                             *string                               `json:"id,omitempty"`
	Name                           *string                               `json:"name,omitempty"`
	Rnc                            *string                               `json:"rnc,omitempty"`
	LogoPath                       NullableString                        `json:"logoPath,omitempty"`
	Type                           *string                               `json:"type,omitempty"`
	City                           *string                               `json:"city,omitempty"`
	Country                        *string                               `json:"country,omitempty"`
	Phone                          *string                               `json:"phone,omitempty"`
	Address                        *string                               `json:"address,omitempty"`
	Website                        NullableString                        `json:"website,omitempty"`
	Category                       NullableString                        `json:"category,omitempty"`
	MonthlySalesRange              NullableString                        `json:"monthlySalesRange,omitempty"`
	PrinterType                    *PrintFormat                          `json:"printerType,omitempty"`
	CreatedAt                      *time.Time                            `json:"createdAt,omitempty"`
	DocsIssuedThisMonth            *int32                                `json:"docsIssuedThisMonth,omitempty"`
	PurchasedDocsConsumedThisMonth *int32                                `json:"purchasedDocsConsumedThisMonth,omitempty"`
	OwnerEmail                     *string                               `json:"ownerEmail,omitempty"`
	Subscription                   NullableAssociatedCompanySubscription `json:"subscription,omitempty"`
}

AssociatedCompany struct for AssociatedCompany

func NewAssociatedCompany

func NewAssociatedCompany() *AssociatedCompany

NewAssociatedCompany instantiates a new AssociatedCompany object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAssociatedCompanyWithDefaults

func NewAssociatedCompanyWithDefaults() *AssociatedCompany

NewAssociatedCompanyWithDefaults instantiates a new AssociatedCompany object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AssociatedCompany) GetAddress

func (o *AssociatedCompany) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*AssociatedCompany) GetAddressOk

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

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

func (*AssociatedCompany) GetCategory added in v0.0.7

func (o *AssociatedCompany) GetCategory() string

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

func (*AssociatedCompany) GetCategoryOk added in v0.0.7

func (o *AssociatedCompany) GetCategoryOk() (*string, bool)

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

func (*AssociatedCompany) GetCity

func (o *AssociatedCompany) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*AssociatedCompany) GetCityOk

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

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

func (*AssociatedCompany) GetCountry

func (o *AssociatedCompany) GetCountry() string

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

func (*AssociatedCompany) GetCountryOk

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

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

func (*AssociatedCompany) GetCreatedAt

func (o *AssociatedCompany) GetCreatedAt() time.Time

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

func (*AssociatedCompany) GetCreatedAtOk

func (o *AssociatedCompany) GetCreatedAtOk() (*time.Time, bool)

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

func (*AssociatedCompany) GetDocsIssuedThisMonth

func (o *AssociatedCompany) GetDocsIssuedThisMonth() int32

GetDocsIssuedThisMonth returns the DocsIssuedThisMonth field value if set, zero value otherwise.

func (*AssociatedCompany) GetDocsIssuedThisMonthOk

func (o *AssociatedCompany) GetDocsIssuedThisMonthOk() (*int32, bool)

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

func (*AssociatedCompany) GetId

func (o *AssociatedCompany) GetId() string

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

func (*AssociatedCompany) GetIdOk

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

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

func (*AssociatedCompany) GetLogoPath

func (o *AssociatedCompany) GetLogoPath() string

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

func (*AssociatedCompany) GetLogoPathOk

func (o *AssociatedCompany) GetLogoPathOk() (*string, bool)

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

func (*AssociatedCompany) GetMonthlySalesRange added in v0.0.7

func (o *AssociatedCompany) GetMonthlySalesRange() string

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

func (*AssociatedCompany) GetMonthlySalesRangeOk added in v0.0.7

func (o *AssociatedCompany) GetMonthlySalesRangeOk() (*string, bool)

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

func (*AssociatedCompany) GetName

func (o *AssociatedCompany) GetName() string

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

func (*AssociatedCompany) GetNameOk

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

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

func (*AssociatedCompany) GetOwnerEmail

func (o *AssociatedCompany) GetOwnerEmail() string

GetOwnerEmail returns the OwnerEmail field value if set, zero value otherwise.

func (*AssociatedCompany) GetOwnerEmailOk

func (o *AssociatedCompany) GetOwnerEmailOk() (*string, bool)

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

func (*AssociatedCompany) GetPhone

func (o *AssociatedCompany) GetPhone() string

GetPhone returns the Phone field value if set, zero value otherwise.

func (*AssociatedCompany) GetPhoneOk

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

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

func (*AssociatedCompany) GetPrinterType added in v0.0.7

func (o *AssociatedCompany) GetPrinterType() PrintFormat

GetPrinterType returns the PrinterType field value if set, zero value otherwise.

func (*AssociatedCompany) GetPrinterTypeOk added in v0.0.7

func (o *AssociatedCompany) GetPrinterTypeOk() (*PrintFormat, bool)

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

func (*AssociatedCompany) GetPurchasedDocsConsumedThisMonth

func (o *AssociatedCompany) GetPurchasedDocsConsumedThisMonth() int32

GetPurchasedDocsConsumedThisMonth returns the PurchasedDocsConsumedThisMonth field value if set, zero value otherwise.

func (*AssociatedCompany) GetPurchasedDocsConsumedThisMonthOk

func (o *AssociatedCompany) GetPurchasedDocsConsumedThisMonthOk() (*int32, bool)

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

func (*AssociatedCompany) GetRnc

func (o *AssociatedCompany) GetRnc() string

GetRnc returns the Rnc field value if set, zero value otherwise.

func (*AssociatedCompany) GetRncOk

func (o *AssociatedCompany) GetRncOk() (*string, bool)

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

func (*AssociatedCompany) GetSubscription

func (o *AssociatedCompany) GetSubscription() AssociatedCompanySubscription

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

func (*AssociatedCompany) GetSubscriptionOk

func (o *AssociatedCompany) GetSubscriptionOk() (*AssociatedCompanySubscription, bool)

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

func (*AssociatedCompany) GetType

func (o *AssociatedCompany) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AssociatedCompany) GetTypeOk

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

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

func (*AssociatedCompany) GetWebsite

func (o *AssociatedCompany) GetWebsite() string

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

func (*AssociatedCompany) GetWebsiteOk

func (o *AssociatedCompany) GetWebsiteOk() (*string, bool)

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

func (*AssociatedCompany) HasAddress

func (o *AssociatedCompany) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*AssociatedCompany) HasCategory added in v0.0.7

func (o *AssociatedCompany) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*AssociatedCompany) HasCity

func (o *AssociatedCompany) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*AssociatedCompany) HasCountry

func (o *AssociatedCompany) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*AssociatedCompany) HasCreatedAt

func (o *AssociatedCompany) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*AssociatedCompany) HasDocsIssuedThisMonth

func (o *AssociatedCompany) HasDocsIssuedThisMonth() bool

HasDocsIssuedThisMonth returns a boolean if a field has been set.

func (*AssociatedCompany) HasId

func (o *AssociatedCompany) HasId() bool

HasId returns a boolean if a field has been set.

func (*AssociatedCompany) HasLogoPath

func (o *AssociatedCompany) HasLogoPath() bool

HasLogoPath returns a boolean if a field has been set.

func (*AssociatedCompany) HasMonthlySalesRange added in v0.0.7

func (o *AssociatedCompany) HasMonthlySalesRange() bool

HasMonthlySalesRange returns a boolean if a field has been set.

func (*AssociatedCompany) HasName

func (o *AssociatedCompany) HasName() bool

HasName returns a boolean if a field has been set.

func (*AssociatedCompany) HasOwnerEmail

func (o *AssociatedCompany) HasOwnerEmail() bool

HasOwnerEmail returns a boolean if a field has been set.

func (*AssociatedCompany) HasPhone

func (o *AssociatedCompany) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (*AssociatedCompany) HasPrinterType added in v0.0.7

func (o *AssociatedCompany) HasPrinterType() bool

HasPrinterType returns a boolean if a field has been set.

func (*AssociatedCompany) HasPurchasedDocsConsumedThisMonth

func (o *AssociatedCompany) HasPurchasedDocsConsumedThisMonth() bool

HasPurchasedDocsConsumedThisMonth returns a boolean if a field has been set.

func (*AssociatedCompany) HasRnc

func (o *AssociatedCompany) HasRnc() bool

HasRnc returns a boolean if a field has been set.

func (*AssociatedCompany) HasSubscription

func (o *AssociatedCompany) HasSubscription() bool

HasSubscription returns a boolean if a field has been set.

func (*AssociatedCompany) HasType

func (o *AssociatedCompany) HasType() bool

HasType returns a boolean if a field has been set.

func (*AssociatedCompany) HasWebsite

func (o *AssociatedCompany) HasWebsite() bool

HasWebsite returns a boolean if a field has been set.

func (AssociatedCompany) MarshalJSON

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

func (*AssociatedCompany) SetAddress

func (o *AssociatedCompany) SetAddress(v string)

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

func (*AssociatedCompany) SetCategory added in v0.0.7

func (o *AssociatedCompany) SetCategory(v string)

SetCategory gets a reference to the given NullableString and assigns it to the Category field.

func (*AssociatedCompany) SetCategoryNil added in v0.0.7

func (o *AssociatedCompany) SetCategoryNil()

SetCategoryNil sets the value for Category to be an explicit nil

func (*AssociatedCompany) SetCity

func (o *AssociatedCompany) SetCity(v string)

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

func (*AssociatedCompany) SetCountry

func (o *AssociatedCompany) SetCountry(v string)

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

func (*AssociatedCompany) SetCreatedAt

func (o *AssociatedCompany) SetCreatedAt(v time.Time)

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

func (*AssociatedCompany) SetDocsIssuedThisMonth

func (o *AssociatedCompany) SetDocsIssuedThisMonth(v int32)

SetDocsIssuedThisMonth gets a reference to the given int32 and assigns it to the DocsIssuedThisMonth field.

func (*AssociatedCompany) SetId

func (o *AssociatedCompany) SetId(v string)

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

func (*AssociatedCompany) SetLogoPath

func (o *AssociatedCompany) SetLogoPath(v string)

SetLogoPath gets a reference to the given NullableString and assigns it to the LogoPath field.

func (*AssociatedCompany) SetLogoPathNil

func (o *AssociatedCompany) SetLogoPathNil()

SetLogoPathNil sets the value for LogoPath to be an explicit nil

func (*AssociatedCompany) SetMonthlySalesRange added in v0.0.7

func (o *AssociatedCompany) SetMonthlySalesRange(v string)

SetMonthlySalesRange gets a reference to the given NullableString and assigns it to the MonthlySalesRange field.

func (*AssociatedCompany) SetMonthlySalesRangeNil added in v0.0.7

func (o *AssociatedCompany) SetMonthlySalesRangeNil()

SetMonthlySalesRangeNil sets the value for MonthlySalesRange to be an explicit nil

func (*AssociatedCompany) SetName

func (o *AssociatedCompany) SetName(v string)

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

func (*AssociatedCompany) SetOwnerEmail

func (o *AssociatedCompany) SetOwnerEmail(v string)

SetOwnerEmail gets a reference to the given string and assigns it to the OwnerEmail field.

func (*AssociatedCompany) SetPhone

func (o *AssociatedCompany) SetPhone(v string)

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

func (*AssociatedCompany) SetPrinterType added in v0.0.7

func (o *AssociatedCompany) SetPrinterType(v PrintFormat)

SetPrinterType gets a reference to the given PrintFormat and assigns it to the PrinterType field.

func (*AssociatedCompany) SetPurchasedDocsConsumedThisMonth

func (o *AssociatedCompany) SetPurchasedDocsConsumedThisMonth(v int32)

SetPurchasedDocsConsumedThisMonth gets a reference to the given int32 and assigns it to the PurchasedDocsConsumedThisMonth field.

func (*AssociatedCompany) SetRnc

func (o *AssociatedCompany) SetRnc(v string)

SetRnc gets a reference to the given string and assigns it to the Rnc field.

func (*AssociatedCompany) SetSubscription

func (o *AssociatedCompany) SetSubscription(v AssociatedCompanySubscription)

SetSubscription gets a reference to the given NullableAssociatedCompanySubscription and assigns it to the Subscription field.

func (*AssociatedCompany) SetSubscriptionNil added in v0.0.7

func (o *AssociatedCompany) SetSubscriptionNil()

SetSubscriptionNil sets the value for Subscription to be an explicit nil

func (*AssociatedCompany) SetType

func (o *AssociatedCompany) SetType(v string)

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

func (*AssociatedCompany) SetWebsite

func (o *AssociatedCompany) SetWebsite(v string)

SetWebsite gets a reference to the given NullableString and assigns it to the Website field.

func (*AssociatedCompany) SetWebsiteNil

func (o *AssociatedCompany) SetWebsiteNil()

SetWebsiteNil sets the value for Website to be an explicit nil

func (AssociatedCompany) ToMap

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

func (*AssociatedCompany) UnsetCategory added in v0.0.7

func (o *AssociatedCompany) UnsetCategory()

UnsetCategory ensures that no value is present for Category, not even an explicit nil

func (*AssociatedCompany) UnsetLogoPath

func (o *AssociatedCompany) UnsetLogoPath()

UnsetLogoPath ensures that no value is present for LogoPath, not even an explicit nil

func (*AssociatedCompany) UnsetMonthlySalesRange added in v0.0.7

func (o *AssociatedCompany) UnsetMonthlySalesRange()

UnsetMonthlySalesRange ensures that no value is present for MonthlySalesRange, not even an explicit nil

func (*AssociatedCompany) UnsetSubscription added in v0.0.7

func (o *AssociatedCompany) UnsetSubscription()

UnsetSubscription ensures that no value is present for Subscription, not even an explicit nil

func (*AssociatedCompany) UnsetWebsite

func (o *AssociatedCompany) UnsetWebsite()

UnsetWebsite ensures that no value is present for Website, not even an explicit nil

type AssociatedCompanySubscription

type AssociatedCompanySubscription struct {
	Status         *string                            `json:"status,omitempty"`
	ExpirationDate NullableTime                       `json:"expirationDate,omitempty"`
	Plan           *AssociatedCompanySubscriptionPlan `json:"plan,omitempty"`
}

AssociatedCompanySubscription struct for AssociatedCompanySubscription

func NewAssociatedCompanySubscription

func NewAssociatedCompanySubscription() *AssociatedCompanySubscription

NewAssociatedCompanySubscription instantiates a new AssociatedCompanySubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAssociatedCompanySubscriptionWithDefaults

func NewAssociatedCompanySubscriptionWithDefaults() *AssociatedCompanySubscription

NewAssociatedCompanySubscriptionWithDefaults instantiates a new AssociatedCompanySubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AssociatedCompanySubscription) GetExpirationDate

func (o *AssociatedCompanySubscription) GetExpirationDate() time.Time

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

func (*AssociatedCompanySubscription) GetExpirationDateOk

func (o *AssociatedCompanySubscription) GetExpirationDateOk() (*time.Time, bool)

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

func (*AssociatedCompanySubscription) GetPlan

GetPlan returns the Plan field value if set, zero value otherwise.

func (*AssociatedCompanySubscription) GetPlanOk

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

func (*AssociatedCompanySubscription) GetStatus

func (o *AssociatedCompanySubscription) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*AssociatedCompanySubscription) GetStatusOk

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

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

func (*AssociatedCompanySubscription) HasExpirationDate

func (o *AssociatedCompanySubscription) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*AssociatedCompanySubscription) HasPlan

func (o *AssociatedCompanySubscription) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (*AssociatedCompanySubscription) HasStatus

func (o *AssociatedCompanySubscription) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AssociatedCompanySubscription) MarshalJSON

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

func (*AssociatedCompanySubscription) SetExpirationDate

func (o *AssociatedCompanySubscription) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given NullableTime and assigns it to the ExpirationDate field.

func (*AssociatedCompanySubscription) SetExpirationDateNil added in v0.0.7

func (o *AssociatedCompanySubscription) SetExpirationDateNil()

SetExpirationDateNil sets the value for ExpirationDate to be an explicit nil

func (*AssociatedCompanySubscription) SetPlan

SetPlan gets a reference to the given AssociatedCompanySubscriptionPlan and assigns it to the Plan field.

func (*AssociatedCompanySubscription) SetStatus

func (o *AssociatedCompanySubscription) SetStatus(v string)

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

func (AssociatedCompanySubscription) ToMap

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

func (*AssociatedCompanySubscription) UnsetExpirationDate added in v0.0.7

func (o *AssociatedCompanySubscription) UnsetExpirationDate()

UnsetExpirationDate ensures that no value is present for ExpirationDate, not even an explicit nil

type AssociatedCompanySubscriptionPlan

type AssociatedCompanySubscriptionPlan struct {
	Name            *string `json:"name,omitempty"`
	MaxDocsPerMonth *int32  `json:"maxDocsPerMonth,omitempty"`
}

AssociatedCompanySubscriptionPlan struct for AssociatedCompanySubscriptionPlan

func NewAssociatedCompanySubscriptionPlan

func NewAssociatedCompanySubscriptionPlan() *AssociatedCompanySubscriptionPlan

NewAssociatedCompanySubscriptionPlan instantiates a new AssociatedCompanySubscriptionPlan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAssociatedCompanySubscriptionPlanWithDefaults

func NewAssociatedCompanySubscriptionPlanWithDefaults() *AssociatedCompanySubscriptionPlan

NewAssociatedCompanySubscriptionPlanWithDefaults instantiates a new AssociatedCompanySubscriptionPlan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AssociatedCompanySubscriptionPlan) GetMaxDocsPerMonth

func (o *AssociatedCompanySubscriptionPlan) GetMaxDocsPerMonth() int32

GetMaxDocsPerMonth returns the MaxDocsPerMonth field value if set, zero value otherwise.

func (*AssociatedCompanySubscriptionPlan) GetMaxDocsPerMonthOk

func (o *AssociatedCompanySubscriptionPlan) GetMaxDocsPerMonthOk() (*int32, bool)

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

func (*AssociatedCompanySubscriptionPlan) GetName

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

func (*AssociatedCompanySubscriptionPlan) GetNameOk

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

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

func (*AssociatedCompanySubscriptionPlan) HasMaxDocsPerMonth

func (o *AssociatedCompanySubscriptionPlan) HasMaxDocsPerMonth() bool

HasMaxDocsPerMonth returns a boolean if a field has been set.

func (*AssociatedCompanySubscriptionPlan) HasName

HasName returns a boolean if a field has been set.

func (AssociatedCompanySubscriptionPlan) MarshalJSON

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

func (*AssociatedCompanySubscriptionPlan) SetMaxDocsPerMonth

func (o *AssociatedCompanySubscriptionPlan) SetMaxDocsPerMonth(v int32)

SetMaxDocsPerMonth gets a reference to the given int32 and assigns it to the MaxDocsPerMonth field.

func (*AssociatedCompanySubscriptionPlan) SetName

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

func (AssociatedCompanySubscriptionPlan) ToMap

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

type AuthenticationAPIService

type AuthenticationAPIService service

AuthenticationAPIService AuthenticationAPI service

func (*AuthenticationAPIService) GetAccessToken

GetAccessToken Obtener token de acceso (OAuth 2.0)

Autenticación mediante el flujo OAuth 2.0 Client Credentials. Retorna un token Bearer válido por 24 horas (86400 segundos). Este endpoint es público — no requiere cabecera de Authorization.

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

func (*AuthenticationAPIService) GetAccessTokenExecute

Execute executes the request

@return OAuthTokenResponse

type AutomatedCertificationAPIService added in v0.0.7

type AutomatedCertificationAPIService service

AutomatedCertificationAPIService AutomatedCertificationAPI service

func (*AutomatedCertificationAPIService) DownloadCertification added in v0.0.7

DownloadCertification Descargar ZIP de certificación

Descarga un ZIP con PDFs y XMLs. Solo disponible cuando el estado es COMPLETED.

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

func (*AutomatedCertificationAPIService) DownloadCertificationExecute added in v0.0.7

Execute executes the request

@return *os.File

func (*AutomatedCertificationAPIService) GetCertificationStatus added in v0.0.7

GetCertificationStatus Estado del proceso de certificación

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

func (*AutomatedCertificationAPIService) GetCertificationStatusExecute added in v0.0.7

Execute executes the request

@return CertificationStatus

func (*AutomatedCertificationAPIService) ListCertificationNiches added in v0.0.7

ListCertificationNiches Listar nichos de certificación

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

func (*AutomatedCertificationAPIService) ListCertificationNichesExecute added in v0.0.7

Execute executes the request

@return []CertificationNiche

func (*AutomatedCertificationAPIService) StartCertification added in v0.0.7

StartCertification Iniciar proceso de certificación

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

func (*AutomatedCertificationAPIService) StartCertificationExecute added in v0.0.7

Execute executes the request

@return StartCertification200Response

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 BillingIndicator

type BillingIndicator string

BillingIndicator 0=Non-billable, 1=18% ITBIS, 2=16% ITBIS, 3=0% ITBIS, 4=Exempt

const (
	BILLINGINDICATOR__0 BillingIndicator = "0"
	BILLINGINDICATOR__1 BillingIndicator = "1"
	BILLINGINDICATOR__2 BillingIndicator = "2"
	BILLINGINDICATOR__3 BillingIndicator = "3"
	BILLINGINDICATOR__4 BillingIndicator = "4"
)

List of BillingIndicator

func NewBillingIndicatorFromValue

func NewBillingIndicatorFromValue(v string) (*BillingIndicator, error)

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

func (BillingIndicator) IsValid

func (v BillingIndicator) IsValid() bool

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

func (BillingIndicator) Ptr

Ptr returns reference to BillingIndicator value

func (*BillingIndicator) UnmarshalJSON

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

type BillingInvoiceReadyPayload added in v0.0.19

type BillingInvoiceReadyPayload struct {
	InvoiceId string  `json:"invoiceId"`
	Amount    float32 `json:"amount"`
	// URL de descarga del PDF de la factura.
	PdfUrl string `json:"pdfUrl"`
}

BillingInvoiceReadyPayload Payload del evento `billing.invoice_ready`. Una factura mensual está disponible para descarga.

func NewBillingInvoiceReadyPayload added in v0.0.19

func NewBillingInvoiceReadyPayload(invoiceId string, amount float32, pdfUrl string) *BillingInvoiceReadyPayload

NewBillingInvoiceReadyPayload instantiates a new BillingInvoiceReadyPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBillingInvoiceReadyPayloadWithDefaults added in v0.0.19

func NewBillingInvoiceReadyPayloadWithDefaults() *BillingInvoiceReadyPayload

NewBillingInvoiceReadyPayloadWithDefaults instantiates a new BillingInvoiceReadyPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BillingInvoiceReadyPayload) GetAmount added in v0.0.19

func (o *BillingInvoiceReadyPayload) GetAmount() float32

GetAmount returns the Amount field value

func (*BillingInvoiceReadyPayload) GetAmountOk added in v0.0.19

func (o *BillingInvoiceReadyPayload) GetAmountOk() (*float32, bool)

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

func (*BillingInvoiceReadyPayload) GetInvoiceId added in v0.0.19

func (o *BillingInvoiceReadyPayload) GetInvoiceId() string

GetInvoiceId returns the InvoiceId field value

func (*BillingInvoiceReadyPayload) GetInvoiceIdOk added in v0.0.19

func (o *BillingInvoiceReadyPayload) GetInvoiceIdOk() (*string, bool)

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

func (*BillingInvoiceReadyPayload) GetPdfUrl added in v0.0.19

func (o *BillingInvoiceReadyPayload) GetPdfUrl() string

GetPdfUrl returns the PdfUrl field value

func (*BillingInvoiceReadyPayload) GetPdfUrlOk added in v0.0.19

func (o *BillingInvoiceReadyPayload) GetPdfUrlOk() (*string, bool)

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

func (BillingInvoiceReadyPayload) MarshalJSON added in v0.0.19

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

func (*BillingInvoiceReadyPayload) SetAmount added in v0.0.19

func (o *BillingInvoiceReadyPayload) SetAmount(v float32)

SetAmount sets field value

func (*BillingInvoiceReadyPayload) SetInvoiceId added in v0.0.19

func (o *BillingInvoiceReadyPayload) SetInvoiceId(v string)

SetInvoiceId sets field value

func (*BillingInvoiceReadyPayload) SetPdfUrl added in v0.0.19

func (o *BillingInvoiceReadyPayload) SetPdfUrl(v string)

SetPdfUrl sets field value

func (BillingInvoiceReadyPayload) ToMap added in v0.0.19

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

func (*BillingInvoiceReadyPayload) UnmarshalJSON added in v0.0.19

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

type BranchCreatedPayload added in v0.0.19

type BranchCreatedPayload struct {
	BranchId string `json:"branchId"`
	// RNC de la empresa asociada creada.
	Rnc string `json:"rnc"`
	// Nombre de la empresa asociada.
	Name string `json:"name"`
}

BranchCreatedPayload Payload del evento `branch.created`. Se creó una nueva empresa asociada.

func NewBranchCreatedPayload added in v0.0.19

func NewBranchCreatedPayload(branchId string, rnc string, name string) *BranchCreatedPayload

NewBranchCreatedPayload instantiates a new BranchCreatedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBranchCreatedPayloadWithDefaults added in v0.0.19

func NewBranchCreatedPayloadWithDefaults() *BranchCreatedPayload

NewBranchCreatedPayloadWithDefaults instantiates a new BranchCreatedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BranchCreatedPayload) GetBranchId added in v0.0.19

func (o *BranchCreatedPayload) GetBranchId() string

GetBranchId returns the BranchId field value

func (*BranchCreatedPayload) GetBranchIdOk added in v0.0.19

func (o *BranchCreatedPayload) GetBranchIdOk() (*string, bool)

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

func (*BranchCreatedPayload) GetName added in v0.0.19

func (o *BranchCreatedPayload) GetName() string

GetName returns the Name field value

func (*BranchCreatedPayload) GetNameOk added in v0.0.19

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

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

func (*BranchCreatedPayload) GetRnc added in v0.0.19

func (o *BranchCreatedPayload) GetRnc() string

GetRnc returns the Rnc field value

func (*BranchCreatedPayload) GetRncOk added in v0.0.19

func (o *BranchCreatedPayload) GetRncOk() (*string, bool)

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

func (BranchCreatedPayload) MarshalJSON added in v0.0.19

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

func (*BranchCreatedPayload) SetBranchId added in v0.0.19

func (o *BranchCreatedPayload) SetBranchId(v string)

SetBranchId sets field value

func (*BranchCreatedPayload) SetName added in v0.0.19

func (o *BranchCreatedPayload) SetName(v string)

SetName sets field value

func (*BranchCreatedPayload) SetRnc added in v0.0.19

func (o *BranchCreatedPayload) SetRnc(v string)

SetRnc sets field value

func (BranchCreatedPayload) ToMap added in v0.0.19

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

func (*BranchCreatedPayload) UnmarshalJSON added in v0.0.19

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

type BranchStatusChangedPayload added in v0.0.19

type BranchStatusChangedPayload struct {
	BranchId string `json:"branchId"`
	// Nuevo estado de la sucursal.
	NewStatus string `json:"newStatus"`
}

BranchStatusChangedPayload Payload del evento `branch.status_changed`. Una empresa asociada cambió de estado.

func NewBranchStatusChangedPayload added in v0.0.19

func NewBranchStatusChangedPayload(branchId string, newStatus string) *BranchStatusChangedPayload

NewBranchStatusChangedPayload instantiates a new BranchStatusChangedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBranchStatusChangedPayloadWithDefaults added in v0.0.19

func NewBranchStatusChangedPayloadWithDefaults() *BranchStatusChangedPayload

NewBranchStatusChangedPayloadWithDefaults instantiates a new BranchStatusChangedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BranchStatusChangedPayload) GetBranchId added in v0.0.19

func (o *BranchStatusChangedPayload) GetBranchId() string

GetBranchId returns the BranchId field value

func (*BranchStatusChangedPayload) GetBranchIdOk added in v0.0.19

func (o *BranchStatusChangedPayload) GetBranchIdOk() (*string, bool)

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

func (*BranchStatusChangedPayload) GetNewStatus added in v0.0.19

func (o *BranchStatusChangedPayload) GetNewStatus() string

GetNewStatus returns the NewStatus field value

func (*BranchStatusChangedPayload) GetNewStatusOk added in v0.0.19

func (o *BranchStatusChangedPayload) GetNewStatusOk() (*string, bool)

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

func (BranchStatusChangedPayload) MarshalJSON added in v0.0.19

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

func (*BranchStatusChangedPayload) SetBranchId added in v0.0.19

func (o *BranchStatusChangedPayload) SetBranchId(v string)

SetBranchId sets field value

func (*BranchStatusChangedPayload) SetNewStatus added in v0.0.19

func (o *BranchStatusChangedPayload) SetNewStatus(v string)

SetNewStatus sets field value

func (BranchStatusChangedPayload) ToMap added in v0.0.19

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

func (*BranchStatusChangedPayload) UnmarshalJSON added in v0.0.19

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

type Buyer

type Buyer struct {
	// RNC (9 digits) or cedula (11 digits). Required for type 31.
	TaxId               *string    `json:"taxId,omitempty"`
	ForeignId           *string    `json:"foreignId,omitempty"`
	Name                string     `json:"name"`
	Contact             *string    `json:"contact,omitempty"`
	Email               *string    `json:"email,omitempty"`
	Address             *string    `json:"address,omitempty"`
	MunicipalityCode    *string    `json:"municipalityCode,omitempty"`
	ProvinceCode        *string    `json:"provinceCode,omitempty"`
	DeliveryDate        *time.Time `json:"deliveryDate,omitempty"`
	DeliveryContact     *string    `json:"deliveryContact,omitempty"`
	DeliveryAddress     *string    `json:"deliveryAddress,omitempty"`
	AdditionalPhone     *string    `json:"additionalPhone,omitempty"`
	PurchaseOrderDate   *time.Time `json:"purchaseOrderDate,omitempty"`
	PurchaseOrderNumber *string    `json:"purchaseOrderNumber,omitempty"`
	InternalCode        *string    `json:"internalCode,omitempty"`
	PaymentResponsible  *string    `json:"paymentResponsible,omitempty"`
	AdditionalInfo      *string    `json:"additionalInfo,omitempty"`
}

Buyer struct for Buyer

func NewBuyer

func NewBuyer(name string) *Buyer

NewBuyer instantiates a new Buyer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBuyerWithDefaults

func NewBuyerWithDefaults() *Buyer

NewBuyerWithDefaults instantiates a new Buyer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Buyer) GetAdditionalInfo added in v0.0.7

func (o *Buyer) GetAdditionalInfo() string

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

func (*Buyer) GetAdditionalInfoOk added in v0.0.7

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

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

func (*Buyer) GetAdditionalPhone added in v0.0.7

func (o *Buyer) GetAdditionalPhone() string

GetAdditionalPhone returns the AdditionalPhone field value if set, zero value otherwise.

func (*Buyer) GetAdditionalPhoneOk added in v0.0.7

func (o *Buyer) GetAdditionalPhoneOk() (*string, bool)

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

func (*Buyer) GetAddress

func (o *Buyer) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*Buyer) GetAddressOk

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

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

func (*Buyer) GetContact added in v0.0.7

func (o *Buyer) GetContact() string

GetContact returns the Contact field value if set, zero value otherwise.

func (*Buyer) GetContactOk added in v0.0.7

func (o *Buyer) GetContactOk() (*string, bool)

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

func (*Buyer) GetDeliveryAddress

func (o *Buyer) GetDeliveryAddress() string

GetDeliveryAddress returns the DeliveryAddress field value if set, zero value otherwise.

func (*Buyer) GetDeliveryAddressOk

func (o *Buyer) GetDeliveryAddressOk() (*string, bool)

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

func (*Buyer) GetDeliveryContact added in v0.0.7

func (o *Buyer) GetDeliveryContact() string

GetDeliveryContact returns the DeliveryContact field value if set, zero value otherwise.

func (*Buyer) GetDeliveryContactOk added in v0.0.7

func (o *Buyer) GetDeliveryContactOk() (*string, bool)

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

func (*Buyer) GetDeliveryDate added in v0.0.7

func (o *Buyer) GetDeliveryDate() time.Time

GetDeliveryDate returns the DeliveryDate field value if set, zero value otherwise.

func (*Buyer) GetDeliveryDateOk added in v0.0.7

func (o *Buyer) GetDeliveryDateOk() (*time.Time, bool)

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

func (*Buyer) GetEmail

func (o *Buyer) GetEmail() string

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

func (*Buyer) GetEmailOk

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

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

func (*Buyer) GetForeignId added in v0.0.7

func (o *Buyer) GetForeignId() string

GetForeignId returns the ForeignId field value if set, zero value otherwise.

func (*Buyer) GetForeignIdOk added in v0.0.7

func (o *Buyer) GetForeignIdOk() (*string, bool)

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

func (*Buyer) GetInternalCode added in v0.0.7

func (o *Buyer) GetInternalCode() string

GetInternalCode returns the InternalCode field value if set, zero value otherwise.

func (*Buyer) GetInternalCodeOk added in v0.0.7

func (o *Buyer) GetInternalCodeOk() (*string, bool)

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

func (*Buyer) GetMunicipalityCode

func (o *Buyer) GetMunicipalityCode() string

GetMunicipalityCode returns the MunicipalityCode field value if set, zero value otherwise.

func (*Buyer) GetMunicipalityCodeOk

func (o *Buyer) GetMunicipalityCodeOk() (*string, bool)

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

func (*Buyer) GetName

func (o *Buyer) GetName() string

GetName returns the Name field value

func (*Buyer) GetNameOk

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

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

func (*Buyer) GetPaymentResponsible added in v0.0.7

func (o *Buyer) GetPaymentResponsible() string

GetPaymentResponsible returns the PaymentResponsible field value if set, zero value otherwise.

func (*Buyer) GetPaymentResponsibleOk added in v0.0.7

func (o *Buyer) GetPaymentResponsibleOk() (*string, bool)

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

func (*Buyer) GetProvinceCode

func (o *Buyer) GetProvinceCode() string

GetProvinceCode returns the ProvinceCode field value if set, zero value otherwise.

func (*Buyer) GetProvinceCodeOk

func (o *Buyer) GetProvinceCodeOk() (*string, bool)

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

func (*Buyer) GetPurchaseOrderDate added in v0.0.7

func (o *Buyer) GetPurchaseOrderDate() time.Time

GetPurchaseOrderDate returns the PurchaseOrderDate field value if set, zero value otherwise.

func (*Buyer) GetPurchaseOrderDateOk added in v0.0.7

func (o *Buyer) GetPurchaseOrderDateOk() (*time.Time, bool)

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

func (*Buyer) GetPurchaseOrderNumber added in v0.0.7

func (o *Buyer) GetPurchaseOrderNumber() string

GetPurchaseOrderNumber returns the PurchaseOrderNumber field value if set, zero value otherwise.

func (*Buyer) GetPurchaseOrderNumberOk added in v0.0.7

func (o *Buyer) GetPurchaseOrderNumberOk() (*string, bool)

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

func (*Buyer) GetTaxId

func (o *Buyer) GetTaxId() string

GetTaxId returns the TaxId field value if set, zero value otherwise.

func (*Buyer) GetTaxIdOk

func (o *Buyer) GetTaxIdOk() (*string, bool)

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

func (*Buyer) HasAdditionalInfo added in v0.0.7

func (o *Buyer) HasAdditionalInfo() bool

HasAdditionalInfo returns a boolean if a field has been set.

func (*Buyer) HasAdditionalPhone added in v0.0.7

func (o *Buyer) HasAdditionalPhone() bool

HasAdditionalPhone returns a boolean if a field has been set.

func (*Buyer) HasAddress

func (o *Buyer) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*Buyer) HasContact added in v0.0.7

func (o *Buyer) HasContact() bool

HasContact returns a boolean if a field has been set.

func (*Buyer) HasDeliveryAddress

func (o *Buyer) HasDeliveryAddress() bool

HasDeliveryAddress returns a boolean if a field has been set.

func (*Buyer) HasDeliveryContact added in v0.0.7

func (o *Buyer) HasDeliveryContact() bool

HasDeliveryContact returns a boolean if a field has been set.

func (*Buyer) HasDeliveryDate added in v0.0.7

func (o *Buyer) HasDeliveryDate() bool

HasDeliveryDate returns a boolean if a field has been set.

func (*Buyer) HasEmail

func (o *Buyer) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Buyer) HasForeignId added in v0.0.7

func (o *Buyer) HasForeignId() bool

HasForeignId returns a boolean if a field has been set.

func (*Buyer) HasInternalCode added in v0.0.7

func (o *Buyer) HasInternalCode() bool

HasInternalCode returns a boolean if a field has been set.

func (*Buyer) HasMunicipalityCode

func (o *Buyer) HasMunicipalityCode() bool

HasMunicipalityCode returns a boolean if a field has been set.

func (*Buyer) HasPaymentResponsible added in v0.0.7

func (o *Buyer) HasPaymentResponsible() bool

HasPaymentResponsible returns a boolean if a field has been set.

func (*Buyer) HasProvinceCode

func (o *Buyer) HasProvinceCode() bool

HasProvinceCode returns a boolean if a field has been set.

func (*Buyer) HasPurchaseOrderDate added in v0.0.7

func (o *Buyer) HasPurchaseOrderDate() bool

HasPurchaseOrderDate returns a boolean if a field has been set.

func (*Buyer) HasPurchaseOrderNumber added in v0.0.7

func (o *Buyer) HasPurchaseOrderNumber() bool

HasPurchaseOrderNumber returns a boolean if a field has been set.

func (*Buyer) HasTaxId

func (o *Buyer) HasTaxId() bool

HasTaxId returns a boolean if a field has been set.

func (Buyer) MarshalJSON

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

func (*Buyer) SetAdditionalInfo added in v0.0.7

func (o *Buyer) SetAdditionalInfo(v string)

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

func (*Buyer) SetAdditionalPhone added in v0.0.7

func (o *Buyer) SetAdditionalPhone(v string)

SetAdditionalPhone gets a reference to the given string and assigns it to the AdditionalPhone field.

func (*Buyer) SetAddress

func (o *Buyer) SetAddress(v string)

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

func (*Buyer) SetContact added in v0.0.7

func (o *Buyer) SetContact(v string)

SetContact gets a reference to the given string and assigns it to the Contact field.

func (*Buyer) SetDeliveryAddress

func (o *Buyer) SetDeliveryAddress(v string)

SetDeliveryAddress gets a reference to the given string and assigns it to the DeliveryAddress field.

func (*Buyer) SetDeliveryContact added in v0.0.7

func (o *Buyer) SetDeliveryContact(v string)

SetDeliveryContact gets a reference to the given string and assigns it to the DeliveryContact field.

func (*Buyer) SetDeliveryDate added in v0.0.7

func (o *Buyer) SetDeliveryDate(v time.Time)

SetDeliveryDate gets a reference to the given time.Time and assigns it to the DeliveryDate field.

func (*Buyer) SetEmail

func (o *Buyer) SetEmail(v string)

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

func (*Buyer) SetForeignId added in v0.0.7

func (o *Buyer) SetForeignId(v string)

SetForeignId gets a reference to the given string and assigns it to the ForeignId field.

func (*Buyer) SetInternalCode added in v0.0.7

func (o *Buyer) SetInternalCode(v string)

SetInternalCode gets a reference to the given string and assigns it to the InternalCode field.

func (*Buyer) SetMunicipalityCode

func (o *Buyer) SetMunicipalityCode(v string)

SetMunicipalityCode gets a reference to the given string and assigns it to the MunicipalityCode field.

func (*Buyer) SetName

func (o *Buyer) SetName(v string)

SetName sets field value

func (*Buyer) SetPaymentResponsible added in v0.0.7

func (o *Buyer) SetPaymentResponsible(v string)

SetPaymentResponsible gets a reference to the given string and assigns it to the PaymentResponsible field.

func (*Buyer) SetProvinceCode

func (o *Buyer) SetProvinceCode(v string)

SetProvinceCode gets a reference to the given string and assigns it to the ProvinceCode field.

func (*Buyer) SetPurchaseOrderDate added in v0.0.7

func (o *Buyer) SetPurchaseOrderDate(v time.Time)

SetPurchaseOrderDate gets a reference to the given time.Time and assigns it to the PurchaseOrderDate field.

func (*Buyer) SetPurchaseOrderNumber added in v0.0.7

func (o *Buyer) SetPurchaseOrderNumber(v string)

SetPurchaseOrderNumber gets a reference to the given string and assigns it to the PurchaseOrderNumber field.

func (*Buyer) SetTaxId

func (o *Buyer) SetTaxId(v string)

SetTaxId gets a reference to the given string and assigns it to the TaxId field.

func (Buyer) ToMap

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

func (*Buyer) UnmarshalJSON

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

type CertificateExpiringPayload added in v0.0.19

type CertificateExpiringPayload struct {
	ExpirationDate time.Time `json:"expirationDate"`
	// Días restantes hasta el vencimiento.
	DaysLeft int32 `json:"daysLeft"`
}

CertificateExpiringPayload Payload del evento `certificate.expiring`. Tu certificado P12 vence en menos de 30 días.

func NewCertificateExpiringPayload added in v0.0.19

func NewCertificateExpiringPayload(expirationDate time.Time, daysLeft int32) *CertificateExpiringPayload

NewCertificateExpiringPayload instantiates a new CertificateExpiringPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificateExpiringPayloadWithDefaults added in v0.0.19

func NewCertificateExpiringPayloadWithDefaults() *CertificateExpiringPayload

NewCertificateExpiringPayloadWithDefaults instantiates a new CertificateExpiringPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificateExpiringPayload) GetDaysLeft added in v0.0.19

func (o *CertificateExpiringPayload) GetDaysLeft() int32

GetDaysLeft returns the DaysLeft field value

func (*CertificateExpiringPayload) GetDaysLeftOk added in v0.0.19

func (o *CertificateExpiringPayload) GetDaysLeftOk() (*int32, bool)

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

func (*CertificateExpiringPayload) GetExpirationDate added in v0.0.19

func (o *CertificateExpiringPayload) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value

func (*CertificateExpiringPayload) GetExpirationDateOk added in v0.0.19

func (o *CertificateExpiringPayload) GetExpirationDateOk() (*time.Time, bool)

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

func (CertificateExpiringPayload) MarshalJSON added in v0.0.19

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

func (*CertificateExpiringPayload) SetDaysLeft added in v0.0.19

func (o *CertificateExpiringPayload) SetDaysLeft(v int32)

SetDaysLeft sets field value

func (*CertificateExpiringPayload) SetExpirationDate added in v0.0.19

func (o *CertificateExpiringPayload) SetExpirationDate(v time.Time)

SetExpirationDate sets field value

func (CertificateExpiringPayload) ToMap added in v0.0.19

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

func (*CertificateExpiringPayload) UnmarshalJSON added in v0.0.19

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

type CertificationCompletedPayload added in v0.0.19

type CertificationCompletedPayload struct {
	ProcessId    string `json:"processId"`
	Rnc          string `json:"rnc"`
	BusinessName string `json:"businessName"`
	// Estado final del proceso.
	Status string `json:"status"`
	// URL de descarga del certificado (si aplica).
	DownloadUrl NullableString `json:"downloadUrl,omitempty"`
	CompletedAt time.Time      `json:"completedAt"`
}

CertificationCompletedPayload Payload del evento `certification.completed`. El proceso de certificación automática con DGII fue completado.

func NewCertificationCompletedPayload added in v0.0.19

func NewCertificationCompletedPayload(processId string, rnc string, businessName string, status string, completedAt time.Time) *CertificationCompletedPayload

NewCertificationCompletedPayload instantiates a new CertificationCompletedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificationCompletedPayloadWithDefaults added in v0.0.19

func NewCertificationCompletedPayloadWithDefaults() *CertificationCompletedPayload

NewCertificationCompletedPayloadWithDefaults instantiates a new CertificationCompletedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificationCompletedPayload) GetBusinessName added in v0.0.19

func (o *CertificationCompletedPayload) GetBusinessName() string

GetBusinessName returns the BusinessName field value

func (*CertificationCompletedPayload) GetBusinessNameOk added in v0.0.19

func (o *CertificationCompletedPayload) GetBusinessNameOk() (*string, bool)

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

func (*CertificationCompletedPayload) GetCompletedAt added in v0.0.19

func (o *CertificationCompletedPayload) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value

func (*CertificationCompletedPayload) GetCompletedAtOk added in v0.0.19

func (o *CertificationCompletedPayload) GetCompletedAtOk() (*time.Time, bool)

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

func (*CertificationCompletedPayload) GetDownloadUrl added in v0.0.19

func (o *CertificationCompletedPayload) GetDownloadUrl() string

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

func (*CertificationCompletedPayload) GetDownloadUrlOk added in v0.0.19

func (o *CertificationCompletedPayload) GetDownloadUrlOk() (*string, bool)

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

func (*CertificationCompletedPayload) GetProcessId added in v0.0.19

func (o *CertificationCompletedPayload) GetProcessId() string

GetProcessId returns the ProcessId field value

func (*CertificationCompletedPayload) GetProcessIdOk added in v0.0.19

func (o *CertificationCompletedPayload) GetProcessIdOk() (*string, bool)

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

func (*CertificationCompletedPayload) GetRnc added in v0.0.19

GetRnc returns the Rnc field value

func (*CertificationCompletedPayload) GetRncOk added in v0.0.19

func (o *CertificationCompletedPayload) GetRncOk() (*string, bool)

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

func (*CertificationCompletedPayload) GetStatus added in v0.0.19

func (o *CertificationCompletedPayload) GetStatus() string

GetStatus returns the Status field value

func (*CertificationCompletedPayload) GetStatusOk added in v0.0.19

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

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

func (*CertificationCompletedPayload) HasDownloadUrl added in v0.0.19

func (o *CertificationCompletedPayload) HasDownloadUrl() bool

HasDownloadUrl returns a boolean if a field has been set.

func (CertificationCompletedPayload) MarshalJSON added in v0.0.19

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

func (*CertificationCompletedPayload) SetBusinessName added in v0.0.19

func (o *CertificationCompletedPayload) SetBusinessName(v string)

SetBusinessName sets field value

func (*CertificationCompletedPayload) SetCompletedAt added in v0.0.19

func (o *CertificationCompletedPayload) SetCompletedAt(v time.Time)

SetCompletedAt sets field value

func (*CertificationCompletedPayload) SetDownloadUrl added in v0.0.19

func (o *CertificationCompletedPayload) SetDownloadUrl(v string)

SetDownloadUrl gets a reference to the given NullableString and assigns it to the DownloadUrl field.

func (*CertificationCompletedPayload) SetDownloadUrlNil added in v0.0.19

func (o *CertificationCompletedPayload) SetDownloadUrlNil()

SetDownloadUrlNil sets the value for DownloadUrl to be an explicit nil

func (*CertificationCompletedPayload) SetProcessId added in v0.0.19

func (o *CertificationCompletedPayload) SetProcessId(v string)

SetProcessId sets field value

func (*CertificationCompletedPayload) SetRnc added in v0.0.19

SetRnc sets field value

func (*CertificationCompletedPayload) SetStatus added in v0.0.19

func (o *CertificationCompletedPayload) SetStatus(v string)

SetStatus sets field value

func (CertificationCompletedPayload) ToMap added in v0.0.19

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

func (*CertificationCompletedPayload) UnmarshalJSON added in v0.0.19

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

func (*CertificationCompletedPayload) UnsetDownloadUrl added in v0.0.19

func (o *CertificationCompletedPayload) UnsetDownloadUrl()

UnsetDownloadUrl ensures that no value is present for DownloadUrl, not even an explicit nil

type CertificationNiche added in v0.0.7

type CertificationNiche struct {
	Id          *string                             `json:"id,omitempty"`
	Name        *string                             `json:"name,omitempty"`
	Description *string                             `json:"description,omitempty"`
	NicheItems  []CertificationNicheNicheItemsInner `json:"nicheItems,omitempty"`
}

CertificationNiche struct for CertificationNiche

func NewCertificationNiche added in v0.0.7

func NewCertificationNiche() *CertificationNiche

NewCertificationNiche instantiates a new CertificationNiche object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificationNicheWithDefaults added in v0.0.7

func NewCertificationNicheWithDefaults() *CertificationNiche

NewCertificationNicheWithDefaults instantiates a new CertificationNiche object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificationNiche) GetDescription added in v0.0.7

func (o *CertificationNiche) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CertificationNiche) GetDescriptionOk added in v0.0.7

func (o *CertificationNiche) GetDescriptionOk() (*string, bool)

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

func (*CertificationNiche) GetId added in v0.0.7

func (o *CertificationNiche) GetId() string

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

func (*CertificationNiche) GetIdOk added in v0.0.7

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

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

func (*CertificationNiche) GetName added in v0.0.7

func (o *CertificationNiche) GetName() string

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

func (*CertificationNiche) GetNameOk added in v0.0.7

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

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

func (*CertificationNiche) GetNicheItems added in v0.0.7

GetNicheItems returns the NicheItems field value if set, zero value otherwise.

func (*CertificationNiche) GetNicheItemsOk added in v0.0.7

func (o *CertificationNiche) GetNicheItemsOk() ([]CertificationNicheNicheItemsInner, bool)

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

func (*CertificationNiche) HasDescription added in v0.0.7

func (o *CertificationNiche) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CertificationNiche) HasId added in v0.0.7

func (o *CertificationNiche) HasId() bool

HasId returns a boolean if a field has been set.

func (*CertificationNiche) HasName added in v0.0.7

func (o *CertificationNiche) HasName() bool

HasName returns a boolean if a field has been set.

func (*CertificationNiche) HasNicheItems added in v0.0.7

func (o *CertificationNiche) HasNicheItems() bool

HasNicheItems returns a boolean if a field has been set.

func (CertificationNiche) MarshalJSON added in v0.0.7

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

func (*CertificationNiche) SetDescription added in v0.0.7

func (o *CertificationNiche) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CertificationNiche) SetId added in v0.0.7

func (o *CertificationNiche) SetId(v string)

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

func (*CertificationNiche) SetName added in v0.0.7

func (o *CertificationNiche) SetName(v string)

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

func (*CertificationNiche) SetNicheItems added in v0.0.7

SetNicheItems gets a reference to the given []CertificationNicheNicheItemsInner and assigns it to the NicheItems field.

func (CertificationNiche) ToMap added in v0.0.7

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

type CertificationNicheNicheItemsInner added in v0.0.7

type CertificationNicheNicheItemsInner struct {
	DocumentType *string `json:"documentType,omitempty"`
	Count        *int32  `json:"count,omitempty"`
}

CertificationNicheNicheItemsInner struct for CertificationNicheNicheItemsInner

func NewCertificationNicheNicheItemsInner added in v0.0.7

func NewCertificationNicheNicheItemsInner() *CertificationNicheNicheItemsInner

NewCertificationNicheNicheItemsInner instantiates a new CertificationNicheNicheItemsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificationNicheNicheItemsInnerWithDefaults added in v0.0.7

func NewCertificationNicheNicheItemsInnerWithDefaults() *CertificationNicheNicheItemsInner

NewCertificationNicheNicheItemsInnerWithDefaults instantiates a new CertificationNicheNicheItemsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificationNicheNicheItemsInner) GetCount added in v0.0.7

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

func (*CertificationNicheNicheItemsInner) GetCountOk added in v0.0.7

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

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

func (*CertificationNicheNicheItemsInner) GetDocumentType added in v0.0.7

func (o *CertificationNicheNicheItemsInner) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise.

func (*CertificationNicheNicheItemsInner) GetDocumentTypeOk added in v0.0.7

func (o *CertificationNicheNicheItemsInner) GetDocumentTypeOk() (*string, bool)

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

func (*CertificationNicheNicheItemsInner) HasCount added in v0.0.7

HasCount returns a boolean if a field has been set.

func (*CertificationNicheNicheItemsInner) HasDocumentType added in v0.0.7

func (o *CertificationNicheNicheItemsInner) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (CertificationNicheNicheItemsInner) MarshalJSON added in v0.0.7

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

func (*CertificationNicheNicheItemsInner) SetCount added in v0.0.7

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

func (*CertificationNicheNicheItemsInner) SetDocumentType added in v0.0.7

func (o *CertificationNicheNicheItemsInner) SetDocumentType(v string)

SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.

func (CertificationNicheNicheItemsInner) ToMap added in v0.0.7

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

type CertificationStatus added in v0.0.7

type CertificationStatus struct {
	Status    *string        `json:"status,omitempty"`
	CreatedAt *time.Time     `json:"createdAt,omitempty"`
	ErrorLog  NullableString `json:"errorLog,omitempty"`
}

CertificationStatus struct for CertificationStatus

func NewCertificationStatus added in v0.0.7

func NewCertificationStatus() *CertificationStatus

NewCertificationStatus instantiates a new CertificationStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificationStatusWithDefaults added in v0.0.7

func NewCertificationStatusWithDefaults() *CertificationStatus

NewCertificationStatusWithDefaults instantiates a new CertificationStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificationStatus) GetCreatedAt added in v0.0.7

func (o *CertificationStatus) GetCreatedAt() time.Time

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

func (*CertificationStatus) GetCreatedAtOk added in v0.0.7

func (o *CertificationStatus) GetCreatedAtOk() (*time.Time, bool)

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

func (*CertificationStatus) GetErrorLog added in v0.0.7

func (o *CertificationStatus) GetErrorLog() string

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

func (*CertificationStatus) GetErrorLogOk added in v0.0.7

func (o *CertificationStatus) GetErrorLogOk() (*string, bool)

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

func (*CertificationStatus) GetStatus added in v0.0.7

func (o *CertificationStatus) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CertificationStatus) GetStatusOk added in v0.0.7

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

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

func (*CertificationStatus) HasCreatedAt added in v0.0.7

func (o *CertificationStatus) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CertificationStatus) HasErrorLog added in v0.0.7

func (o *CertificationStatus) HasErrorLog() bool

HasErrorLog returns a boolean if a field has been set.

func (*CertificationStatus) HasStatus added in v0.0.7

func (o *CertificationStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CertificationStatus) MarshalJSON added in v0.0.7

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

func (*CertificationStatus) SetCreatedAt added in v0.0.7

func (o *CertificationStatus) SetCreatedAt(v time.Time)

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

func (*CertificationStatus) SetErrorLog added in v0.0.7

func (o *CertificationStatus) SetErrorLog(v string)

SetErrorLog gets a reference to the given NullableString and assigns it to the ErrorLog field.

func (*CertificationStatus) SetErrorLogNil added in v0.0.7

func (o *CertificationStatus) SetErrorLogNil()

SetErrorLogNil sets the value for ErrorLog to be an explicit nil

func (*CertificationStatus) SetStatus added in v0.0.7

func (o *CertificationStatus) SetStatus(v string)

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

func (CertificationStatus) ToMap added in v0.0.7

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

func (*CertificationStatus) UnsetErrorLog added in v0.0.7

func (o *CertificationStatus) UnsetErrorLog()

UnsetErrorLog ensures that no value is present for ErrorLog, not even an explicit nil

type CommercialApprovalPayload added in v0.0.19

type CommercialApprovalPayload struct {
	Encf           string    `json:"encf"`
	SenderRnc      string    `json:"senderRnc"`
	ReceiverRnc    string    `json:"receiverRnc"`
	TotalAmount    float32   `json:"totalAmount"`
	IssueDate      time.Time `json:"issueDate"`
	ApprovalStatus string    `json:"approvalStatus"`
	ApprovalDate   time.Time `json:"approvalDate"`
	// Código de rechazo (solo si approvalStatus es 'rejected').
	RejectionCode NullableString `json:"rejectionCode,omitempty"`
	// Descripción del rechazo (solo si approvalStatus es 'rejected').
	RejectionDescription NullableString `json:"rejectionDescription,omitempty"`
}

CommercialApprovalPayload Payload del evento `commercial.approval`. Se dispara cuando una aprobación comercial es actualizada.

func NewCommercialApprovalPayload added in v0.0.19

func NewCommercialApprovalPayload(encf string, senderRnc string, receiverRnc string, totalAmount float32, issueDate time.Time, approvalStatus string, approvalDate time.Time) *CommercialApprovalPayload

NewCommercialApprovalPayload instantiates a new CommercialApprovalPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCommercialApprovalPayloadWithDefaults added in v0.0.19

func NewCommercialApprovalPayloadWithDefaults() *CommercialApprovalPayload

NewCommercialApprovalPayloadWithDefaults instantiates a new CommercialApprovalPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CommercialApprovalPayload) GetApprovalDate added in v0.0.19

func (o *CommercialApprovalPayload) GetApprovalDate() time.Time

GetApprovalDate returns the ApprovalDate field value

func (*CommercialApprovalPayload) GetApprovalDateOk added in v0.0.19

func (o *CommercialApprovalPayload) GetApprovalDateOk() (*time.Time, bool)

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

func (*CommercialApprovalPayload) GetApprovalStatus added in v0.0.19

func (o *CommercialApprovalPayload) GetApprovalStatus() string

GetApprovalStatus returns the ApprovalStatus field value

func (*CommercialApprovalPayload) GetApprovalStatusOk added in v0.0.19

func (o *CommercialApprovalPayload) GetApprovalStatusOk() (*string, bool)

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

func (*CommercialApprovalPayload) GetEncf added in v0.0.19

func (o *CommercialApprovalPayload) GetEncf() string

GetEncf returns the Encf field value

func (*CommercialApprovalPayload) GetEncfOk added in v0.0.19

func (o *CommercialApprovalPayload) GetEncfOk() (*string, bool)

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

func (*CommercialApprovalPayload) GetIssueDate added in v0.0.19

func (o *CommercialApprovalPayload) GetIssueDate() time.Time

GetIssueDate returns the IssueDate field value

func (*CommercialApprovalPayload) GetIssueDateOk added in v0.0.19

func (o *CommercialApprovalPayload) GetIssueDateOk() (*time.Time, bool)

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

func (*CommercialApprovalPayload) GetReceiverRnc added in v0.0.19

func (o *CommercialApprovalPayload) GetReceiverRnc() string

GetReceiverRnc returns the ReceiverRnc field value

func (*CommercialApprovalPayload) GetReceiverRncOk added in v0.0.19

func (o *CommercialApprovalPayload) GetReceiverRncOk() (*string, bool)

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

func (*CommercialApprovalPayload) GetRejectionCode added in v0.0.19

func (o *CommercialApprovalPayload) GetRejectionCode() string

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

func (*CommercialApprovalPayload) GetRejectionCodeOk added in v0.0.19

func (o *CommercialApprovalPayload) GetRejectionCodeOk() (*string, bool)

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

func (*CommercialApprovalPayload) GetRejectionDescription added in v0.0.19

func (o *CommercialApprovalPayload) GetRejectionDescription() string

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

func (*CommercialApprovalPayload) GetRejectionDescriptionOk added in v0.0.19

func (o *CommercialApprovalPayload) GetRejectionDescriptionOk() (*string, bool)

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

func (*CommercialApprovalPayload) GetSenderRnc added in v0.0.19

func (o *CommercialApprovalPayload) GetSenderRnc() string

GetSenderRnc returns the SenderRnc field value

func (*CommercialApprovalPayload) GetSenderRncOk added in v0.0.19

func (o *CommercialApprovalPayload) GetSenderRncOk() (*string, bool)

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

func (*CommercialApprovalPayload) GetTotalAmount added in v0.0.19

func (o *CommercialApprovalPayload) GetTotalAmount() float32

GetTotalAmount returns the TotalAmount field value

func (*CommercialApprovalPayload) GetTotalAmountOk added in v0.0.19

func (o *CommercialApprovalPayload) GetTotalAmountOk() (*float32, bool)

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

func (*CommercialApprovalPayload) HasRejectionCode added in v0.0.19

func (o *CommercialApprovalPayload) HasRejectionCode() bool

HasRejectionCode returns a boolean if a field has been set.

func (*CommercialApprovalPayload) HasRejectionDescription added in v0.0.19

func (o *CommercialApprovalPayload) HasRejectionDescription() bool

HasRejectionDescription returns a boolean if a field has been set.

func (CommercialApprovalPayload) MarshalJSON added in v0.0.19

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

func (*CommercialApprovalPayload) SetApprovalDate added in v0.0.19

func (o *CommercialApprovalPayload) SetApprovalDate(v time.Time)

SetApprovalDate sets field value

func (*CommercialApprovalPayload) SetApprovalStatus added in v0.0.19

func (o *CommercialApprovalPayload) SetApprovalStatus(v string)

SetApprovalStatus sets field value

func (*CommercialApprovalPayload) SetEncf added in v0.0.19

func (o *CommercialApprovalPayload) SetEncf(v string)

SetEncf sets field value

func (*CommercialApprovalPayload) SetIssueDate added in v0.0.19

func (o *CommercialApprovalPayload) SetIssueDate(v time.Time)

SetIssueDate sets field value

func (*CommercialApprovalPayload) SetReceiverRnc added in v0.0.19

func (o *CommercialApprovalPayload) SetReceiverRnc(v string)

SetReceiverRnc sets field value

func (*CommercialApprovalPayload) SetRejectionCode added in v0.0.19

func (o *CommercialApprovalPayload) SetRejectionCode(v string)

SetRejectionCode gets a reference to the given NullableString and assigns it to the RejectionCode field.

func (*CommercialApprovalPayload) SetRejectionCodeNil added in v0.0.19

func (o *CommercialApprovalPayload) SetRejectionCodeNil()

SetRejectionCodeNil sets the value for RejectionCode to be an explicit nil

func (*CommercialApprovalPayload) SetRejectionDescription added in v0.0.19

func (o *CommercialApprovalPayload) SetRejectionDescription(v string)

SetRejectionDescription gets a reference to the given NullableString and assigns it to the RejectionDescription field.

func (*CommercialApprovalPayload) SetRejectionDescriptionNil added in v0.0.19

func (o *CommercialApprovalPayload) SetRejectionDescriptionNil()

SetRejectionDescriptionNil sets the value for RejectionDescription to be an explicit nil

func (*CommercialApprovalPayload) SetSenderRnc added in v0.0.19

func (o *CommercialApprovalPayload) SetSenderRnc(v string)

SetSenderRnc sets field value

func (*CommercialApprovalPayload) SetTotalAmount added in v0.0.19

func (o *CommercialApprovalPayload) SetTotalAmount(v float32)

SetTotalAmount sets field value

func (CommercialApprovalPayload) ToMap added in v0.0.19

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

func (*CommercialApprovalPayload) UnmarshalJSON added in v0.0.19

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

func (*CommercialApprovalPayload) UnsetRejectionCode added in v0.0.19

func (o *CommercialApprovalPayload) UnsetRejectionCode()

UnsetRejectionCode ensures that no value is present for RejectionCode, not even an explicit nil

func (*CommercialApprovalPayload) UnsetRejectionDescription added in v0.0.19

func (o *CommercialApprovalPayload) UnsetRejectionDescription()

UnsetRejectionDescription ensures that no value is present for RejectionDescription, not even an explicit nil

type CommercialApprovalsAPIService added in v0.0.7

type CommercialApprovalsAPIService service

CommercialApprovalsAPIService CommercialApprovalsAPI service

func (*CommercialApprovalsAPIService) GetCommercialApprovalById added in v0.0.19

GetCommercialApprovalById Obtener aprobación comercial por ID

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

func (*CommercialApprovalsAPIService) GetCommercialApprovalByIdExecute added in v0.0.19

Execute executes the request

@return ApprovalItem

func (*CommercialApprovalsAPIService) ListCommercialApprovals added in v0.0.19

ListCommercialApprovals Listar aprobaciones comerciales

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

func (*CommercialApprovalsAPIService) ListCommercialApprovalsExecute added in v0.0.19

Execute executes the request

@return ApprovalListResponse

type CompanyDocumentMetrics added in v0.0.7

type CompanyDocumentMetrics struct {
	MainBusiness       *CompanyDocumentMetricsMainBusiness        `json:"mainBusiness,omitempty"`
	AssociatedBusiness *CompanyDocumentMetricsMainBusiness        `json:"associatedBusiness,omitempty"`
	Totals             *CompanyDocumentMetricsTotals              `json:"totals,omitempty"`
	GroupByStatus      []CompanyDocumentMetricsGroupByStatusInner `json:"groupByStatus,omitempty"`
}

CompanyDocumentMetrics struct for CompanyDocumentMetrics

func NewCompanyDocumentMetrics added in v0.0.7

func NewCompanyDocumentMetrics() *CompanyDocumentMetrics

NewCompanyDocumentMetrics instantiates a new CompanyDocumentMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCompanyDocumentMetricsWithDefaults added in v0.0.7

func NewCompanyDocumentMetricsWithDefaults() *CompanyDocumentMetrics

NewCompanyDocumentMetricsWithDefaults instantiates a new CompanyDocumentMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CompanyDocumentMetrics) GetAssociatedBusiness added in v0.0.7

GetAssociatedBusiness returns the AssociatedBusiness field value if set, zero value otherwise.

func (*CompanyDocumentMetrics) GetAssociatedBusinessOk added in v0.0.7

func (o *CompanyDocumentMetrics) GetAssociatedBusinessOk() (*CompanyDocumentMetricsMainBusiness, bool)

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

func (*CompanyDocumentMetrics) GetGroupByStatus added in v0.0.7

GetGroupByStatus returns the GroupByStatus field value if set, zero value otherwise.

func (*CompanyDocumentMetrics) GetGroupByStatusOk added in v0.0.7

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

func (*CompanyDocumentMetrics) GetMainBusiness added in v0.0.7

GetMainBusiness returns the MainBusiness field value if set, zero value otherwise.

func (*CompanyDocumentMetrics) GetMainBusinessOk added in v0.0.7

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

func (*CompanyDocumentMetrics) GetTotals added in v0.0.7

GetTotals returns the Totals field value if set, zero value otherwise.

func (*CompanyDocumentMetrics) GetTotalsOk added in v0.0.7

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

func (*CompanyDocumentMetrics) HasAssociatedBusiness added in v0.0.7

func (o *CompanyDocumentMetrics) HasAssociatedBusiness() bool

HasAssociatedBusiness returns a boolean if a field has been set.

func (*CompanyDocumentMetrics) HasGroupByStatus added in v0.0.7

func (o *CompanyDocumentMetrics) HasGroupByStatus() bool

HasGroupByStatus returns a boolean if a field has been set.

func (*CompanyDocumentMetrics) HasMainBusiness added in v0.0.7

func (o *CompanyDocumentMetrics) HasMainBusiness() bool

HasMainBusiness returns a boolean if a field has been set.

func (*CompanyDocumentMetrics) HasTotals added in v0.0.7

func (o *CompanyDocumentMetrics) HasTotals() bool

HasTotals returns a boolean if a field has been set.

func (CompanyDocumentMetrics) MarshalJSON added in v0.0.7

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

func (*CompanyDocumentMetrics) SetAssociatedBusiness added in v0.0.7

func (o *CompanyDocumentMetrics) SetAssociatedBusiness(v CompanyDocumentMetricsMainBusiness)

SetAssociatedBusiness gets a reference to the given CompanyDocumentMetricsMainBusiness and assigns it to the AssociatedBusiness field.

func (*CompanyDocumentMetrics) SetGroupByStatus added in v0.0.7

SetGroupByStatus gets a reference to the given []CompanyDocumentMetricsGroupByStatusInner and assigns it to the GroupByStatus field.

func (*CompanyDocumentMetrics) SetMainBusiness added in v0.0.7

SetMainBusiness gets a reference to the given CompanyDocumentMetricsMainBusiness and assigns it to the MainBusiness field.

func (*CompanyDocumentMetrics) SetTotals added in v0.0.7

SetTotals gets a reference to the given CompanyDocumentMetricsTotals and assigns it to the Totals field.

func (CompanyDocumentMetrics) ToMap added in v0.0.7

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

type CompanyDocumentMetricsGroupByStatusInner added in v0.0.7

type CompanyDocumentMetricsGroupByStatusInner struct {
	Status *string                                        `json:"status,omitempty"`
	Count  *CompanyDocumentMetricsGroupByStatusInnerCount `json:"_count,omitempty"`
}

CompanyDocumentMetricsGroupByStatusInner struct for CompanyDocumentMetricsGroupByStatusInner

func NewCompanyDocumentMetricsGroupByStatusInner added in v0.0.7

func NewCompanyDocumentMetricsGroupByStatusInner() *CompanyDocumentMetricsGroupByStatusInner

NewCompanyDocumentMetricsGroupByStatusInner instantiates a new CompanyDocumentMetricsGroupByStatusInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCompanyDocumentMetricsGroupByStatusInnerWithDefaults added in v0.0.7

func NewCompanyDocumentMetricsGroupByStatusInnerWithDefaults() *CompanyDocumentMetricsGroupByStatusInner

NewCompanyDocumentMetricsGroupByStatusInnerWithDefaults instantiates a new CompanyDocumentMetricsGroupByStatusInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CompanyDocumentMetricsGroupByStatusInner) GetCount added in v0.0.7

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

func (*CompanyDocumentMetricsGroupByStatusInner) GetCountOk added in v0.0.7

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

func (*CompanyDocumentMetricsGroupByStatusInner) GetStatus added in v0.0.7

GetStatus returns the Status field value if set, zero value otherwise.

func (*CompanyDocumentMetricsGroupByStatusInner) GetStatusOk added in v0.0.7

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

func (*CompanyDocumentMetricsGroupByStatusInner) HasCount added in v0.0.7

HasCount returns a boolean if a field has been set.

func (*CompanyDocumentMetricsGroupByStatusInner) HasStatus added in v0.0.7

HasStatus returns a boolean if a field has been set.

func (CompanyDocumentMetricsGroupByStatusInner) MarshalJSON added in v0.0.7

func (*CompanyDocumentMetricsGroupByStatusInner) SetCount added in v0.0.7

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

func (*CompanyDocumentMetricsGroupByStatusInner) SetStatus added in v0.0.7

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

func (CompanyDocumentMetricsGroupByStatusInner) ToMap added in v0.0.7

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

type CompanyDocumentMetricsGroupByStatusInnerCount added in v0.0.7

type CompanyDocumentMetricsGroupByStatusInnerCount struct {
	Status *int32 `json:"status,omitempty"`
}

CompanyDocumentMetricsGroupByStatusInnerCount struct for CompanyDocumentMetricsGroupByStatusInnerCount

func NewCompanyDocumentMetricsGroupByStatusInnerCount added in v0.0.7

func NewCompanyDocumentMetricsGroupByStatusInnerCount() *CompanyDocumentMetricsGroupByStatusInnerCount

NewCompanyDocumentMetricsGroupByStatusInnerCount instantiates a new CompanyDocumentMetricsGroupByStatusInnerCount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCompanyDocumentMetricsGroupByStatusInnerCountWithDefaults added in v0.0.7

func NewCompanyDocumentMetricsGroupByStatusInnerCountWithDefaults() *CompanyDocumentMetricsGroupByStatusInnerCount

NewCompanyDocumentMetricsGroupByStatusInnerCountWithDefaults instantiates a new CompanyDocumentMetricsGroupByStatusInnerCount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CompanyDocumentMetricsGroupByStatusInnerCount) GetStatus added in v0.0.7

GetStatus returns the Status field value if set, zero value otherwise.

func (*CompanyDocumentMetricsGroupByStatusInnerCount) GetStatusOk added in v0.0.7

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

func (*CompanyDocumentMetricsGroupByStatusInnerCount) HasStatus added in v0.0.7

HasStatus returns a boolean if a field has been set.

func (CompanyDocumentMetricsGroupByStatusInnerCount) MarshalJSON added in v0.0.7

func (*CompanyDocumentMetricsGroupByStatusInnerCount) SetStatus added in v0.0.7

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

func (CompanyDocumentMetricsGroupByStatusInnerCount) ToMap added in v0.0.7

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

type CompanyDocumentMetricsMainBusiness added in v0.0.7

type CompanyDocumentMetricsMainBusiness struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
	Rnc  *string `json:"rnc,omitempty"`
}

CompanyDocumentMetricsMainBusiness struct for CompanyDocumentMetricsMainBusiness

func NewCompanyDocumentMetricsMainBusiness added in v0.0.7

func NewCompanyDocumentMetricsMainBusiness() *CompanyDocumentMetricsMainBusiness

NewCompanyDocumentMetricsMainBusiness instantiates a new CompanyDocumentMetricsMainBusiness object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCompanyDocumentMetricsMainBusinessWithDefaults added in v0.0.7

func NewCompanyDocumentMetricsMainBusinessWithDefaults() *CompanyDocumentMetricsMainBusiness

NewCompanyDocumentMetricsMainBusinessWithDefaults instantiates a new CompanyDocumentMetricsMainBusiness object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CompanyDocumentMetricsMainBusiness) GetId added in v0.0.7

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

func (*CompanyDocumentMetricsMainBusiness) GetIdOk added in v0.0.7

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 (*CompanyDocumentMetricsMainBusiness) GetName added in v0.0.7

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

func (*CompanyDocumentMetricsMainBusiness) GetNameOk added in v0.0.7

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

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

func (*CompanyDocumentMetricsMainBusiness) GetRnc added in v0.0.7

GetRnc returns the Rnc field value if set, zero value otherwise.

func (*CompanyDocumentMetricsMainBusiness) GetRncOk added in v0.0.7

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

func (*CompanyDocumentMetricsMainBusiness) HasId added in v0.0.7

HasId returns a boolean if a field has been set.

func (*CompanyDocumentMetricsMainBusiness) HasName added in v0.0.7

HasName returns a boolean if a field has been set.

func (*CompanyDocumentMetricsMainBusiness) HasRnc added in v0.0.7

HasRnc returns a boolean if a field has been set.

func (CompanyDocumentMetricsMainBusiness) MarshalJSON added in v0.0.7

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

func (*CompanyDocumentMetricsMainBusiness) SetId added in v0.0.7

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

func (*CompanyDocumentMetricsMainBusiness) SetName added in v0.0.7

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

func (*CompanyDocumentMetricsMainBusiness) SetRnc added in v0.0.7

SetRnc gets a reference to the given string and assigns it to the Rnc field.

func (CompanyDocumentMetricsMainBusiness) ToMap added in v0.0.7

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

type CompanyDocumentMetricsTotals added in v0.0.7

type CompanyDocumentMetricsTotals struct {
	Total      *int32 `json:"total,omitempty"`
	Last30Days *int32 `json:"last30Days,omitempty"`
}

CompanyDocumentMetricsTotals struct for CompanyDocumentMetricsTotals

func NewCompanyDocumentMetricsTotals added in v0.0.7

func NewCompanyDocumentMetricsTotals() *CompanyDocumentMetricsTotals

NewCompanyDocumentMetricsTotals instantiates a new CompanyDocumentMetricsTotals object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCompanyDocumentMetricsTotalsWithDefaults added in v0.0.7

func NewCompanyDocumentMetricsTotalsWithDefaults() *CompanyDocumentMetricsTotals

NewCompanyDocumentMetricsTotalsWithDefaults instantiates a new CompanyDocumentMetricsTotals object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CompanyDocumentMetricsTotals) GetLast30Days added in v0.0.7

func (o *CompanyDocumentMetricsTotals) GetLast30Days() int32

GetLast30Days returns the Last30Days field value if set, zero value otherwise.

func (*CompanyDocumentMetricsTotals) GetLast30DaysOk added in v0.0.7

func (o *CompanyDocumentMetricsTotals) GetLast30DaysOk() (*int32, bool)

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

func (*CompanyDocumentMetricsTotals) GetTotal added in v0.0.7

func (o *CompanyDocumentMetricsTotals) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*CompanyDocumentMetricsTotals) GetTotalOk added in v0.0.7

func (o *CompanyDocumentMetricsTotals) GetTotalOk() (*int32, bool)

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

func (*CompanyDocumentMetricsTotals) HasLast30Days added in v0.0.7

func (o *CompanyDocumentMetricsTotals) HasLast30Days() bool

HasLast30Days returns a boolean if a field has been set.

func (*CompanyDocumentMetricsTotals) HasTotal added in v0.0.7

func (o *CompanyDocumentMetricsTotals) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (CompanyDocumentMetricsTotals) MarshalJSON added in v0.0.7

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

func (*CompanyDocumentMetricsTotals) SetLast30Days added in v0.0.7

func (o *CompanyDocumentMetricsTotals) SetLast30Days(v int32)

SetLast30Days gets a reference to the given int32 and assigns it to the Last30Days field.

func (*CompanyDocumentMetricsTotals) SetTotal added in v0.0.7

func (o *CompanyDocumentMetricsTotals) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (CompanyDocumentMetricsTotals) ToMap added in v0.0.7

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

type CompanyMetrics added in v0.0.7

type CompanyMetrics struct {
	BusinessId            *string                        `json:"businessId,omitempty"`
	BusinessName          *string                        `json:"businessName,omitempty"`
	Rnc                   *string                        `json:"rnc,omitempty"`
	TotalDocumentsIssued  *int32                         `json:"totalDocumentsIssued,omitempty"`
	DocumentsThisMonth    *int32                         `json:"documentsThisMonth,omitempty"`
	DocumentsStatus       *CompanyMetricsDocumentsStatus `json:"documentsStatus,omitempty"`
	ConsumptionPercentage *float32                       `json:"consumptionPercentage,omitempty"`
	SubscriptionStatus    *string                        `json:"subscriptionStatus,omitempty"`
	ExpirationDate        *time.Time                     `json:"expirationDate,omitempty"`
}

CompanyMetrics struct for CompanyMetrics

func NewCompanyMetrics added in v0.0.7

func NewCompanyMetrics() *CompanyMetrics

NewCompanyMetrics instantiates a new CompanyMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCompanyMetricsWithDefaults added in v0.0.7

func NewCompanyMetricsWithDefaults() *CompanyMetrics

NewCompanyMetricsWithDefaults instantiates a new CompanyMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CompanyMetrics) GetBusinessId added in v0.0.7

func (o *CompanyMetrics) GetBusinessId() string

GetBusinessId returns the BusinessId field value if set, zero value otherwise.

func (*CompanyMetrics) GetBusinessIdOk added in v0.0.7

func (o *CompanyMetrics) GetBusinessIdOk() (*string, bool)

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

func (*CompanyMetrics) GetBusinessName added in v0.0.7

func (o *CompanyMetrics) GetBusinessName() string

GetBusinessName returns the BusinessName field value if set, zero value otherwise.

func (*CompanyMetrics) GetBusinessNameOk added in v0.0.7

func (o *CompanyMetrics) GetBusinessNameOk() (*string, bool)

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

func (*CompanyMetrics) GetConsumptionPercentage added in v0.0.7

func (o *CompanyMetrics) GetConsumptionPercentage() float32

GetConsumptionPercentage returns the ConsumptionPercentage field value if set, zero value otherwise.

func (*CompanyMetrics) GetConsumptionPercentageOk added in v0.0.7

func (o *CompanyMetrics) GetConsumptionPercentageOk() (*float32, bool)

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

func (*CompanyMetrics) GetDocumentsStatus added in v0.0.7

func (o *CompanyMetrics) GetDocumentsStatus() CompanyMetricsDocumentsStatus

GetDocumentsStatus returns the DocumentsStatus field value if set, zero value otherwise.

func (*CompanyMetrics) GetDocumentsStatusOk added in v0.0.7

func (o *CompanyMetrics) GetDocumentsStatusOk() (*CompanyMetricsDocumentsStatus, bool)

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

func (*CompanyMetrics) GetDocumentsThisMonth added in v0.0.7

func (o *CompanyMetrics) GetDocumentsThisMonth() int32

GetDocumentsThisMonth returns the DocumentsThisMonth field value if set, zero value otherwise.

func (*CompanyMetrics) GetDocumentsThisMonthOk added in v0.0.7

func (o *CompanyMetrics) GetDocumentsThisMonthOk() (*int32, bool)

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

func (*CompanyMetrics) GetExpirationDate added in v0.0.7

func (o *CompanyMetrics) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*CompanyMetrics) GetExpirationDateOk added in v0.0.7

func (o *CompanyMetrics) GetExpirationDateOk() (*time.Time, bool)

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

func (*CompanyMetrics) GetRnc added in v0.0.7

func (o *CompanyMetrics) GetRnc() string

GetRnc returns the Rnc field value if set, zero value otherwise.

func (*CompanyMetrics) GetRncOk added in v0.0.7

func (o *CompanyMetrics) GetRncOk() (*string, bool)

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

func (*CompanyMetrics) GetSubscriptionStatus added in v0.0.7

func (o *CompanyMetrics) GetSubscriptionStatus() string

GetSubscriptionStatus returns the SubscriptionStatus field value if set, zero value otherwise.

func (*CompanyMetrics) GetSubscriptionStatusOk added in v0.0.7

func (o *CompanyMetrics) GetSubscriptionStatusOk() (*string, bool)

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

func (*CompanyMetrics) GetTotalDocumentsIssued added in v0.0.7

func (o *CompanyMetrics) GetTotalDocumentsIssued() int32

GetTotalDocumentsIssued returns the TotalDocumentsIssued field value if set, zero value otherwise.

func (*CompanyMetrics) GetTotalDocumentsIssuedOk added in v0.0.7

func (o *CompanyMetrics) GetTotalDocumentsIssuedOk() (*int32, bool)

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

func (*CompanyMetrics) HasBusinessId added in v0.0.7

func (o *CompanyMetrics) HasBusinessId() bool

HasBusinessId returns a boolean if a field has been set.

func (*CompanyMetrics) HasBusinessName added in v0.0.7

func (o *CompanyMetrics) HasBusinessName() bool

HasBusinessName returns a boolean if a field has been set.

func (*CompanyMetrics) HasConsumptionPercentage added in v0.0.7

func (o *CompanyMetrics) HasConsumptionPercentage() bool

HasConsumptionPercentage returns a boolean if a field has been set.

func (*CompanyMetrics) HasDocumentsStatus added in v0.0.7

func (o *CompanyMetrics) HasDocumentsStatus() bool

HasDocumentsStatus returns a boolean if a field has been set.

func (*CompanyMetrics) HasDocumentsThisMonth added in v0.0.7

func (o *CompanyMetrics) HasDocumentsThisMonth() bool

HasDocumentsThisMonth returns a boolean if a field has been set.

func (*CompanyMetrics) HasExpirationDate added in v0.0.7

func (o *CompanyMetrics) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*CompanyMetrics) HasRnc added in v0.0.7

func (o *CompanyMetrics) HasRnc() bool

HasRnc returns a boolean if a field has been set.

func (*CompanyMetrics) HasSubscriptionStatus added in v0.0.7

func (o *CompanyMetrics) HasSubscriptionStatus() bool

HasSubscriptionStatus returns a boolean if a field has been set.

func (*CompanyMetrics) HasTotalDocumentsIssued added in v0.0.7

func (o *CompanyMetrics) HasTotalDocumentsIssued() bool

HasTotalDocumentsIssued returns a boolean if a field has been set.

func (CompanyMetrics) MarshalJSON added in v0.0.7

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

func (*CompanyMetrics) SetBusinessId added in v0.0.7

func (o *CompanyMetrics) SetBusinessId(v string)

SetBusinessId gets a reference to the given string and assigns it to the BusinessId field.

func (*CompanyMetrics) SetBusinessName added in v0.0.7

func (o *CompanyMetrics) SetBusinessName(v string)

SetBusinessName gets a reference to the given string and assigns it to the BusinessName field.

func (*CompanyMetrics) SetConsumptionPercentage added in v0.0.7

func (o *CompanyMetrics) SetConsumptionPercentage(v float32)

SetConsumptionPercentage gets a reference to the given float32 and assigns it to the ConsumptionPercentage field.

func (*CompanyMetrics) SetDocumentsStatus added in v0.0.7

func (o *CompanyMetrics) SetDocumentsStatus(v CompanyMetricsDocumentsStatus)

SetDocumentsStatus gets a reference to the given CompanyMetricsDocumentsStatus and assigns it to the DocumentsStatus field.

func (*CompanyMetrics) SetDocumentsThisMonth added in v0.0.7

func (o *CompanyMetrics) SetDocumentsThisMonth(v int32)

SetDocumentsThisMonth gets a reference to the given int32 and assigns it to the DocumentsThisMonth field.

func (*CompanyMetrics) SetExpirationDate added in v0.0.7

func (o *CompanyMetrics) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*CompanyMetrics) SetRnc added in v0.0.7

func (o *CompanyMetrics) SetRnc(v string)

SetRnc gets a reference to the given string and assigns it to the Rnc field.

func (*CompanyMetrics) SetSubscriptionStatus added in v0.0.7

func (o *CompanyMetrics) SetSubscriptionStatus(v string)

SetSubscriptionStatus gets a reference to the given string and assigns it to the SubscriptionStatus field.

func (*CompanyMetrics) SetTotalDocumentsIssued added in v0.0.7

func (o *CompanyMetrics) SetTotalDocumentsIssued(v int32)

SetTotalDocumentsIssued gets a reference to the given int32 and assigns it to the TotalDocumentsIssued field.

func (CompanyMetrics) ToMap added in v0.0.7

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

type CompanyMetricsDocumentsStatus added in v0.0.7

type CompanyMetricsDocumentsStatus struct {
	APPROVED *int32 `json:"APPROVED,omitempty"`
	REJECTED *int32 `json:"REJECTED,omitempty"`
	PENDING  *int32 `json:"PENDING,omitempty"`
}

CompanyMetricsDocumentsStatus struct for CompanyMetricsDocumentsStatus

func NewCompanyMetricsDocumentsStatus added in v0.0.7

func NewCompanyMetricsDocumentsStatus() *CompanyMetricsDocumentsStatus

NewCompanyMetricsDocumentsStatus instantiates a new CompanyMetricsDocumentsStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCompanyMetricsDocumentsStatusWithDefaults added in v0.0.7

func NewCompanyMetricsDocumentsStatusWithDefaults() *CompanyMetricsDocumentsStatus

NewCompanyMetricsDocumentsStatusWithDefaults instantiates a new CompanyMetricsDocumentsStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CompanyMetricsDocumentsStatus) GetAPPROVED added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) GetAPPROVED() int32

GetAPPROVED returns the APPROVED field value if set, zero value otherwise.

func (*CompanyMetricsDocumentsStatus) GetAPPROVEDOk added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) GetAPPROVEDOk() (*int32, bool)

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

func (*CompanyMetricsDocumentsStatus) GetPENDING added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) GetPENDING() int32

GetPENDING returns the PENDING field value if set, zero value otherwise.

func (*CompanyMetricsDocumentsStatus) GetPENDINGOk added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) GetPENDINGOk() (*int32, bool)

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

func (*CompanyMetricsDocumentsStatus) GetREJECTED added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) GetREJECTED() int32

GetREJECTED returns the REJECTED field value if set, zero value otherwise.

func (*CompanyMetricsDocumentsStatus) GetREJECTEDOk added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) GetREJECTEDOk() (*int32, bool)

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

func (*CompanyMetricsDocumentsStatus) HasAPPROVED added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) HasAPPROVED() bool

HasAPPROVED returns a boolean if a field has been set.

func (*CompanyMetricsDocumentsStatus) HasPENDING added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) HasPENDING() bool

HasPENDING returns a boolean if a field has been set.

func (*CompanyMetricsDocumentsStatus) HasREJECTED added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) HasREJECTED() bool

HasREJECTED returns a boolean if a field has been set.

func (CompanyMetricsDocumentsStatus) MarshalJSON added in v0.0.7

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

func (*CompanyMetricsDocumentsStatus) SetAPPROVED added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) SetAPPROVED(v int32)

SetAPPROVED gets a reference to the given int32 and assigns it to the APPROVED field.

func (*CompanyMetricsDocumentsStatus) SetPENDING added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) SetPENDING(v int32)

SetPENDING gets a reference to the given int32 and assigns it to the PENDING field.

func (*CompanyMetricsDocumentsStatus) SetREJECTED added in v0.0.7

func (o *CompanyMetricsDocumentsStatus) SetREJECTED(v int32)

SetREJECTED gets a reference to the given int32 and assigns it to the REJECTED field.

func (CompanyMetricsDocumentsStatus) ToMap added in v0.0.7

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type ContingencyActivatedPayload added in v0.0.19

type ContingencyActivatedPayload struct {
	Encf string `json:"encf"`
	// Motivo de la activación de contingencia.
	Reason string `json:"reason"`
	// Fecha estimada de reintento de envío.
	RetryAt NullableTime `json:"retryAt,omitempty"`
}

ContingencyActivatedPayload Payload del evento `document.contingency_activated`. Un documento fue emitido en modo contingencia porque la DGII no estaba disponible.

func NewContingencyActivatedPayload added in v0.0.19

func NewContingencyActivatedPayload(encf string, reason string) *ContingencyActivatedPayload

NewContingencyActivatedPayload instantiates a new ContingencyActivatedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewContingencyActivatedPayloadWithDefaults added in v0.0.19

func NewContingencyActivatedPayloadWithDefaults() *ContingencyActivatedPayload

NewContingencyActivatedPayloadWithDefaults instantiates a new ContingencyActivatedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ContingencyActivatedPayload) GetEncf added in v0.0.19

func (o *ContingencyActivatedPayload) GetEncf() string

GetEncf returns the Encf field value

func (*ContingencyActivatedPayload) GetEncfOk added in v0.0.19

func (o *ContingencyActivatedPayload) GetEncfOk() (*string, bool)

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

func (*ContingencyActivatedPayload) GetReason added in v0.0.19

func (o *ContingencyActivatedPayload) GetReason() string

GetReason returns the Reason field value

func (*ContingencyActivatedPayload) GetReasonOk added in v0.0.19

func (o *ContingencyActivatedPayload) GetReasonOk() (*string, bool)

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

func (*ContingencyActivatedPayload) GetRetryAt added in v0.0.19

func (o *ContingencyActivatedPayload) GetRetryAt() time.Time

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

func (*ContingencyActivatedPayload) GetRetryAtOk added in v0.0.19

func (o *ContingencyActivatedPayload) GetRetryAtOk() (*time.Time, bool)

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

func (*ContingencyActivatedPayload) HasRetryAt added in v0.0.19

func (o *ContingencyActivatedPayload) HasRetryAt() bool

HasRetryAt returns a boolean if a field has been set.

func (ContingencyActivatedPayload) MarshalJSON added in v0.0.19

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

func (*ContingencyActivatedPayload) SetEncf added in v0.0.19

func (o *ContingencyActivatedPayload) SetEncf(v string)

SetEncf sets field value

func (*ContingencyActivatedPayload) SetReason added in v0.0.19

func (o *ContingencyActivatedPayload) SetReason(v string)

SetReason sets field value

func (*ContingencyActivatedPayload) SetRetryAt added in v0.0.19

func (o *ContingencyActivatedPayload) SetRetryAt(v time.Time)

SetRetryAt gets a reference to the given NullableTime and assigns it to the RetryAt field.

func (*ContingencyActivatedPayload) SetRetryAtNil added in v0.0.19

func (o *ContingencyActivatedPayload) SetRetryAtNil()

SetRetryAtNil sets the value for RetryAt to be an explicit nil

func (ContingencyActivatedPayload) ToMap added in v0.0.19

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

func (*ContingencyActivatedPayload) UnmarshalJSON added in v0.0.19

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

func (*ContingencyActivatedPayload) UnsetRetryAt added in v0.0.19

func (o *ContingencyActivatedPayload) UnsetRetryAt()

UnsetRetryAt ensures that no value is present for RetryAt, not even an explicit nil

type CreateAssociatedCompany201Response

type CreateAssociatedCompany201Response struct {
	Message  *string            `json:"message,omitempty"`
	Business *AssociatedCompany `json:"business,omitempty"`
}

CreateAssociatedCompany201Response struct for CreateAssociatedCompany201Response

func NewCreateAssociatedCompany201Response

func NewCreateAssociatedCompany201Response() *CreateAssociatedCompany201Response

NewCreateAssociatedCompany201Response instantiates a new CreateAssociatedCompany201Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateAssociatedCompany201ResponseWithDefaults

func NewCreateAssociatedCompany201ResponseWithDefaults() *CreateAssociatedCompany201Response

NewCreateAssociatedCompany201ResponseWithDefaults instantiates a new CreateAssociatedCompany201Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateAssociatedCompany201Response) GetBusiness

GetBusiness returns the Business field value if set, zero value otherwise.

func (*CreateAssociatedCompany201Response) GetBusinessOk

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

func (*CreateAssociatedCompany201Response) GetMessage

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

func (*CreateAssociatedCompany201Response) GetMessageOk

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

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

func (*CreateAssociatedCompany201Response) HasBusiness

func (o *CreateAssociatedCompany201Response) HasBusiness() bool

HasBusiness returns a boolean if a field has been set.

func (*CreateAssociatedCompany201Response) HasMessage

func (o *CreateAssociatedCompany201Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (CreateAssociatedCompany201Response) MarshalJSON

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

func (*CreateAssociatedCompany201Response) SetBusiness

SetBusiness gets a reference to the given AssociatedCompany and assigns it to the Business field.

func (*CreateAssociatedCompany201Response) SetMessage

func (o *CreateAssociatedCompany201Response) SetMessage(v string)

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

func (CreateAssociatedCompany201Response) ToMap

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

type CreateTaxSequence201Response added in v0.0.7

type CreateTaxSequence201Response struct {
	Success *bool               `json:"success,omitempty"`
	Data    *TaxSequenceCreated `json:"data,omitempty"`
}

CreateTaxSequence201Response struct for CreateTaxSequence201Response

func NewCreateTaxSequence201Response added in v0.0.7

func NewCreateTaxSequence201Response() *CreateTaxSequence201Response

NewCreateTaxSequence201Response instantiates a new CreateTaxSequence201Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateTaxSequence201ResponseWithDefaults added in v0.0.7

func NewCreateTaxSequence201ResponseWithDefaults() *CreateTaxSequence201Response

NewCreateTaxSequence201ResponseWithDefaults instantiates a new CreateTaxSequence201Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateTaxSequence201Response) GetData added in v0.0.7

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

func (*CreateTaxSequence201Response) GetDataOk added in v0.0.7

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 (*CreateTaxSequence201Response) GetSuccess added in v0.0.7

func (o *CreateTaxSequence201Response) GetSuccess() bool

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

func (*CreateTaxSequence201Response) GetSuccessOk added in v0.0.7

func (o *CreateTaxSequence201Response) 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 (*CreateTaxSequence201Response) HasData added in v0.0.7

func (o *CreateTaxSequence201Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*CreateTaxSequence201Response) HasSuccess added in v0.0.7

func (o *CreateTaxSequence201Response) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (CreateTaxSequence201Response) MarshalJSON added in v0.0.7

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

func (*CreateTaxSequence201Response) SetData added in v0.0.7

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

func (*CreateTaxSequence201Response) SetSuccess added in v0.0.7

func (o *CreateTaxSequence201Response) SetSuccess(v bool)

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

func (CreateTaxSequence201Response) ToMap added in v0.0.7

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

type CreateTaxSequenceRequest

type CreateTaxSequenceRequest struct {
	Type        InvoiceTypeSequence `json:"type"`
	From        int32               `json:"from"`
	To          int32               `json:"to"`
	Quantity    *int32              `json:"quantity,omitempty"`
	Expiration  *string             `json:"expiration,omitempty"`
	Environment *Environment        `json:"environment,omitempty"`
}

CreateTaxSequenceRequest struct for CreateTaxSequenceRequest

func NewCreateTaxSequenceRequest

func NewCreateTaxSequenceRequest(type_ InvoiceTypeSequence, from int32, to int32) *CreateTaxSequenceRequest

NewCreateTaxSequenceRequest instantiates a new CreateTaxSequenceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateTaxSequenceRequestWithDefaults

func NewCreateTaxSequenceRequestWithDefaults() *CreateTaxSequenceRequest

NewCreateTaxSequenceRequestWithDefaults instantiates a new CreateTaxSequenceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateTaxSequenceRequest) GetEnvironment added in v0.0.7

func (o *CreateTaxSequenceRequest) GetEnvironment() Environment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*CreateTaxSequenceRequest) GetEnvironmentOk added in v0.0.7

func (o *CreateTaxSequenceRequest) GetEnvironmentOk() (*Environment, bool)

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

func (*CreateTaxSequenceRequest) GetExpiration added in v0.0.7

func (o *CreateTaxSequenceRequest) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*CreateTaxSequenceRequest) GetExpirationOk added in v0.0.7

func (o *CreateTaxSequenceRequest) GetExpirationOk() (*string, bool)

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

func (*CreateTaxSequenceRequest) GetFrom

func (o *CreateTaxSequenceRequest) GetFrom() int32

GetFrom returns the From field value

func (*CreateTaxSequenceRequest) GetFromOk

func (o *CreateTaxSequenceRequest) GetFromOk() (*int32, bool)

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

func (*CreateTaxSequenceRequest) GetQuantity added in v0.0.7

func (o *CreateTaxSequenceRequest) GetQuantity() int32

GetQuantity returns the Quantity field value if set, zero value otherwise.

func (*CreateTaxSequenceRequest) GetQuantityOk added in v0.0.7

func (o *CreateTaxSequenceRequest) GetQuantityOk() (*int32, bool)

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

func (*CreateTaxSequenceRequest) GetTo

func (o *CreateTaxSequenceRequest) GetTo() int32

GetTo returns the To field value

func (*CreateTaxSequenceRequest) GetToOk

func (o *CreateTaxSequenceRequest) GetToOk() (*int32, bool)

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

func (*CreateTaxSequenceRequest) GetType

GetType returns the Type field value

func (*CreateTaxSequenceRequest) GetTypeOk

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

func (*CreateTaxSequenceRequest) HasEnvironment added in v0.0.7

func (o *CreateTaxSequenceRequest) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*CreateTaxSequenceRequest) HasExpiration added in v0.0.7

func (o *CreateTaxSequenceRequest) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*CreateTaxSequenceRequest) HasQuantity added in v0.0.7

func (o *CreateTaxSequenceRequest) HasQuantity() bool

HasQuantity returns a boolean if a field has been set.

func (CreateTaxSequenceRequest) MarshalJSON

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

func (*CreateTaxSequenceRequest) SetEnvironment added in v0.0.7

func (o *CreateTaxSequenceRequest) SetEnvironment(v Environment)

SetEnvironment gets a reference to the given Environment and assigns it to the Environment field.

func (*CreateTaxSequenceRequest) SetExpiration added in v0.0.7

func (o *CreateTaxSequenceRequest) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*CreateTaxSequenceRequest) SetFrom

func (o *CreateTaxSequenceRequest) SetFrom(v int32)

SetFrom sets field value

func (*CreateTaxSequenceRequest) SetQuantity added in v0.0.7

func (o *CreateTaxSequenceRequest) SetQuantity(v int32)

SetQuantity gets a reference to the given int32 and assigns it to the Quantity field.

func (*CreateTaxSequenceRequest) SetTo

func (o *CreateTaxSequenceRequest) SetTo(v int32)

SetTo sets field value

func (*CreateTaxSequenceRequest) SetType

SetType sets field value

func (CreateTaxSequenceRequest) ToMap

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

func (*CreateTaxSequenceRequest) UnmarshalJSON

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

type CreateWebhookConfig

type CreateWebhookConfig struct {
	// Your HTTPS endpoint that will receive POST notifications.
	Url string `json:"url"`
	// List of events to subscribe to.
	EventTypes []WebhookEventType `json:"eventTypes"`
	// Optional label for this webhook (for your reference).
	Description *string `json:"description,omitempty"`
	// Optional HMAC signing secret (min 16 characters). Pronesoft will sign payloads so you can verify they are authentic.
	Secret *string `json:"secret,omitempty"`
}

CreateWebhookConfig Request body for registering a new webhook.

func NewCreateWebhookConfig

func NewCreateWebhookConfig(url string, eventTypes []WebhookEventType) *CreateWebhookConfig

NewCreateWebhookConfig instantiates a new CreateWebhookConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateWebhookConfigWithDefaults

func NewCreateWebhookConfigWithDefaults() *CreateWebhookConfig

NewCreateWebhookConfigWithDefaults instantiates a new CreateWebhookConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateWebhookConfig) GetDescription

func (o *CreateWebhookConfig) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CreateWebhookConfig) GetDescriptionOk

func (o *CreateWebhookConfig) GetDescriptionOk() (*string, bool)

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

func (*CreateWebhookConfig) GetEventTypes

func (o *CreateWebhookConfig) GetEventTypes() []WebhookEventType

GetEventTypes returns the EventTypes field value

func (*CreateWebhookConfig) GetEventTypesOk

func (o *CreateWebhookConfig) GetEventTypesOk() ([]WebhookEventType, bool)

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

func (*CreateWebhookConfig) GetSecret

func (o *CreateWebhookConfig) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise.

func (*CreateWebhookConfig) GetSecretOk

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

func (*CreateWebhookConfig) GetUrl

func (o *CreateWebhookConfig) GetUrl() string

GetUrl returns the Url field value

func (*CreateWebhookConfig) GetUrlOk

func (o *CreateWebhookConfig) GetUrlOk() (*string, bool)

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

func (*CreateWebhookConfig) HasDescription

func (o *CreateWebhookConfig) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateWebhookConfig) HasSecret

func (o *CreateWebhookConfig) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (CreateWebhookConfig) MarshalJSON

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

func (*CreateWebhookConfig) SetDescription

func (o *CreateWebhookConfig) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CreateWebhookConfig) SetEventTypes

func (o *CreateWebhookConfig) SetEventTypes(v []WebhookEventType)

SetEventTypes sets field value

func (*CreateWebhookConfig) SetSecret

func (o *CreateWebhookConfig) SetSecret(v string)

SetSecret gets a reference to the given string and assigns it to the Secret field.

func (*CreateWebhookConfig) SetUrl

func (o *CreateWebhookConfig) SetUrl(v string)

SetUrl sets field value

func (CreateWebhookConfig) ToMap

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

func (*CreateWebhookConfig) UnmarshalJSON

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

type DeleteAssociatedCompany200Response added in v0.0.7

type DeleteAssociatedCompany200Response struct {
	Message *string `json:"message,omitempty"`
}

DeleteAssociatedCompany200Response struct for DeleteAssociatedCompany200Response

func NewDeleteAssociatedCompany200Response added in v0.0.7

func NewDeleteAssociatedCompany200Response() *DeleteAssociatedCompany200Response

NewDeleteAssociatedCompany200Response instantiates a new DeleteAssociatedCompany200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteAssociatedCompany200ResponseWithDefaults added in v0.0.7

func NewDeleteAssociatedCompany200ResponseWithDefaults() *DeleteAssociatedCompany200Response

NewDeleteAssociatedCompany200ResponseWithDefaults instantiates a new DeleteAssociatedCompany200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteAssociatedCompany200Response) GetMessage added in v0.0.7

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

func (*DeleteAssociatedCompany200Response) GetMessageOk added in v0.0.7

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

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

func (*DeleteAssociatedCompany200Response) HasMessage added in v0.0.7

func (o *DeleteAssociatedCompany200Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (DeleteAssociatedCompany200Response) MarshalJSON added in v0.0.7

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

func (*DeleteAssociatedCompany200Response) SetMessage added in v0.0.7

func (o *DeleteAssociatedCompany200Response) SetMessage(v string)

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

func (DeleteAssociatedCompany200Response) ToMap added in v0.0.7

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

type DgiiMessage added in v0.0.10

type DgiiMessage struct {
	Codigo *float32 `json:"codigo,omitempty"`
	Valor  *string  `json:"valor,omitempty"`
}

DgiiMessage struct for DgiiMessage

func NewDgiiMessage added in v0.0.10

func NewDgiiMessage() *DgiiMessage

NewDgiiMessage instantiates a new DgiiMessage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDgiiMessageWithDefaults added in v0.0.10

func NewDgiiMessageWithDefaults() *DgiiMessage

NewDgiiMessageWithDefaults instantiates a new DgiiMessage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DgiiMessage) GetCodigo added in v0.0.10

func (o *DgiiMessage) GetCodigo() float32

GetCodigo returns the Codigo field value if set, zero value otherwise.

func (*DgiiMessage) GetCodigoOk added in v0.0.10

func (o *DgiiMessage) GetCodigoOk() (*float32, bool)

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

func (*DgiiMessage) GetValor added in v0.0.10

func (o *DgiiMessage) GetValor() string

GetValor returns the Valor field value if set, zero value otherwise.

func (*DgiiMessage) GetValorOk added in v0.0.10

func (o *DgiiMessage) GetValorOk() (*string, bool)

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

func (*DgiiMessage) HasCodigo added in v0.0.10

func (o *DgiiMessage) HasCodigo() bool

HasCodigo returns a boolean if a field has been set.

func (*DgiiMessage) HasValor added in v0.0.10

func (o *DgiiMessage) HasValor() bool

HasValor returns a boolean if a field has been set.

func (DgiiMessage) MarshalJSON added in v0.0.10

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

func (*DgiiMessage) SetCodigo added in v0.0.10

func (o *DgiiMessage) SetCodigo(v float32)

SetCodigo gets a reference to the given float32 and assigns it to the Codigo field.

func (*DgiiMessage) SetValor added in v0.0.10

func (o *DgiiMessage) SetValor(v string)

SetValor gets a reference to the given string and assigns it to the Valor field.

func (DgiiMessage) ToMap added in v0.0.10

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

type DigitalCertificatesAPIService

type DigitalCertificatesAPIService service

DigitalCertificatesAPIService DigitalCertificatesAPI service

func (*DigitalCertificatesAPIService) UploadCertificate

UploadCertificate Subir certificado digital (P12/PFX)

Sube el certificado de firma digital emitido por DGII para una empresa. Se almacena cifrado con AES-256-CBC. No existe endpoint de descarga. Tip Sandbox: Los RNC con prefijo SBX no requieren certificado.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param rnc RNC de la empresa (9 u 11 dígitos). En Sandbox usar valores con prefijo SBX.
@return ApiUploadCertificateRequest

func (*DigitalCertificatesAPIService) UploadCertificateExecute

Execute executes the request

@return UploadCertificateResponse

type DiscountOrSurcharge

type DiscountOrSurcharge struct {
	LineNumber int32 `json:"lineNumber"`
	// D=Discount, R=Surcharge
	Type                      string            `json:"type"`
	Norm1007Indicator         *string           `json:"norm1007Indicator,omitempty"`
	Description               *string           `json:"description,omitempty"`
	ValueType                 string            `json:"valueType"`
	PercentageValue           *float32          `json:"percentageValue,omitempty"`
	Amount                    float32           `json:"amount"`
	AlternativeCurrencyAmount *float32          `json:"alternativeCurrencyAmount,omitempty"`
	BillingIndicator          *BillingIndicator `json:"billingIndicator,omitempty"`
}

DiscountOrSurcharge struct for DiscountOrSurcharge

func NewDiscountOrSurcharge

func NewDiscountOrSurcharge(lineNumber int32, type_ string, valueType string, amount float32) *DiscountOrSurcharge

NewDiscountOrSurcharge instantiates a new DiscountOrSurcharge object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDiscountOrSurchargeWithDefaults

func NewDiscountOrSurchargeWithDefaults() *DiscountOrSurcharge

NewDiscountOrSurchargeWithDefaults instantiates a new DiscountOrSurcharge object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DiscountOrSurcharge) GetAlternativeCurrencyAmount

func (o *DiscountOrSurcharge) GetAlternativeCurrencyAmount() float32

GetAlternativeCurrencyAmount returns the AlternativeCurrencyAmount field value if set, zero value otherwise.

func (*DiscountOrSurcharge) GetAlternativeCurrencyAmountOk

func (o *DiscountOrSurcharge) GetAlternativeCurrencyAmountOk() (*float32, bool)

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

func (*DiscountOrSurcharge) GetAmount

func (o *DiscountOrSurcharge) GetAmount() float32

GetAmount returns the Amount field value

func (*DiscountOrSurcharge) GetAmountOk

func (o *DiscountOrSurcharge) GetAmountOk() (*float32, bool)

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

func (*DiscountOrSurcharge) GetBillingIndicator

func (o *DiscountOrSurcharge) GetBillingIndicator() BillingIndicator

GetBillingIndicator returns the BillingIndicator field value if set, zero value otherwise.

func (*DiscountOrSurcharge) GetBillingIndicatorOk

func (o *DiscountOrSurcharge) GetBillingIndicatorOk() (*BillingIndicator, bool)

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

func (*DiscountOrSurcharge) GetDescription

func (o *DiscountOrSurcharge) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DiscountOrSurcharge) GetDescriptionOk

func (o *DiscountOrSurcharge) GetDescriptionOk() (*string, bool)

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

func (*DiscountOrSurcharge) GetLineNumber

func (o *DiscountOrSurcharge) GetLineNumber() int32

GetLineNumber returns the LineNumber field value

func (*DiscountOrSurcharge) GetLineNumberOk

func (o *DiscountOrSurcharge) GetLineNumberOk() (*int32, bool)

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

func (*DiscountOrSurcharge) GetNorm1007Indicator added in v0.0.7

func (o *DiscountOrSurcharge) GetNorm1007Indicator() string

GetNorm1007Indicator returns the Norm1007Indicator field value if set, zero value otherwise.

func (*DiscountOrSurcharge) GetNorm1007IndicatorOk added in v0.0.7

func (o *DiscountOrSurcharge) GetNorm1007IndicatorOk() (*string, bool)

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

func (*DiscountOrSurcharge) GetPercentageValue

func (o *DiscountOrSurcharge) GetPercentageValue() float32

GetPercentageValue returns the PercentageValue field value if set, zero value otherwise.

func (*DiscountOrSurcharge) GetPercentageValueOk

func (o *DiscountOrSurcharge) GetPercentageValueOk() (*float32, bool)

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

func (*DiscountOrSurcharge) GetType

func (o *DiscountOrSurcharge) GetType() string

GetType returns the Type field value

func (*DiscountOrSurcharge) GetTypeOk

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

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

func (*DiscountOrSurcharge) GetValueType

func (o *DiscountOrSurcharge) GetValueType() string

GetValueType returns the ValueType field value

func (*DiscountOrSurcharge) GetValueTypeOk

func (o *DiscountOrSurcharge) GetValueTypeOk() (*string, bool)

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

func (*DiscountOrSurcharge) HasAlternativeCurrencyAmount

func (o *DiscountOrSurcharge) HasAlternativeCurrencyAmount() bool

HasAlternativeCurrencyAmount returns a boolean if a field has been set.

func (*DiscountOrSurcharge) HasBillingIndicator

func (o *DiscountOrSurcharge) HasBillingIndicator() bool

HasBillingIndicator returns a boolean if a field has been set.

func (*DiscountOrSurcharge) HasDescription

func (o *DiscountOrSurcharge) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DiscountOrSurcharge) HasNorm1007Indicator added in v0.0.7

func (o *DiscountOrSurcharge) HasNorm1007Indicator() bool

HasNorm1007Indicator returns a boolean if a field has been set.

func (*DiscountOrSurcharge) HasPercentageValue

func (o *DiscountOrSurcharge) HasPercentageValue() bool

HasPercentageValue returns a boolean if a field has been set.

func (DiscountOrSurcharge) MarshalJSON

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

func (*DiscountOrSurcharge) SetAlternativeCurrencyAmount

func (o *DiscountOrSurcharge) SetAlternativeCurrencyAmount(v float32)

SetAlternativeCurrencyAmount gets a reference to the given float32 and assigns it to the AlternativeCurrencyAmount field.

func (*DiscountOrSurcharge) SetAmount

func (o *DiscountOrSurcharge) SetAmount(v float32)

SetAmount sets field value

func (*DiscountOrSurcharge) SetBillingIndicator

func (o *DiscountOrSurcharge) SetBillingIndicator(v BillingIndicator)

SetBillingIndicator gets a reference to the given BillingIndicator and assigns it to the BillingIndicator field.

func (*DiscountOrSurcharge) SetDescription

func (o *DiscountOrSurcharge) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DiscountOrSurcharge) SetLineNumber

func (o *DiscountOrSurcharge) SetLineNumber(v int32)

SetLineNumber sets field value

func (*DiscountOrSurcharge) SetNorm1007Indicator added in v0.0.7

func (o *DiscountOrSurcharge) SetNorm1007Indicator(v string)

SetNorm1007Indicator gets a reference to the given string and assigns it to the Norm1007Indicator field.

func (*DiscountOrSurcharge) SetPercentageValue

func (o *DiscountOrSurcharge) SetPercentageValue(v float32)

SetPercentageValue gets a reference to the given float32 and assigns it to the PercentageValue field.

func (*DiscountOrSurcharge) SetType

func (o *DiscountOrSurcharge) SetType(v string)

SetType sets field value

func (*DiscountOrSurcharge) SetValueType

func (o *DiscountOrSurcharge) SetValueType(v string)

SetValueType sets field value

func (DiscountOrSurcharge) ToMap

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

func (*DiscountOrSurcharge) UnmarshalJSON

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

type DocumentReceivedPayload added in v0.0.19

type DocumentReceivedPayload struct {
	// Número de comprobante fiscal electrónico.
	Encf string `json:"encf"`
	// RNC del emisor del documento.
	SenderRnc string `json:"senderRnc"`
	// RNC del receptor del documento.
	ReceiverRnc string `json:"receiverRnc"`
	// Monto total del documento.
	TotalAmount float32 `json:"totalAmount"`
	// Fecha de emisión del documento.
	IssueDate time.Time `json:"issueDate"`
	// Fecha de recepción del documento.
	ReceivedAt time.Time `json:"receivedAt"`
	// Estado del documento recibido.
	Status string `json:"status"`
	// Razón del rechazo (solo si status es 'rejected').
	RejectionReason NullableString `json:"rejectionReason,omitempty"`
}

DocumentReceivedPayload Payload del evento `document.received`. Se dispara cuando tu empresa recibe un e-CF de un proveedor.

func NewDocumentReceivedPayload added in v0.0.19

func NewDocumentReceivedPayload(encf string, senderRnc string, receiverRnc string, totalAmount float32, issueDate time.Time, receivedAt time.Time, status string) *DocumentReceivedPayload

NewDocumentReceivedPayload instantiates a new DocumentReceivedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDocumentReceivedPayloadWithDefaults added in v0.0.19

func NewDocumentReceivedPayloadWithDefaults() *DocumentReceivedPayload

NewDocumentReceivedPayloadWithDefaults instantiates a new DocumentReceivedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DocumentReceivedPayload) GetEncf added in v0.0.19

func (o *DocumentReceivedPayload) GetEncf() string

GetEncf returns the Encf field value

func (*DocumentReceivedPayload) GetEncfOk added in v0.0.19

func (o *DocumentReceivedPayload) GetEncfOk() (*string, bool)

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

func (*DocumentReceivedPayload) GetIssueDate added in v0.0.19

func (o *DocumentReceivedPayload) GetIssueDate() time.Time

GetIssueDate returns the IssueDate field value

func (*DocumentReceivedPayload) GetIssueDateOk added in v0.0.19

func (o *DocumentReceivedPayload) GetIssueDateOk() (*time.Time, bool)

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

func (*DocumentReceivedPayload) GetReceivedAt added in v0.0.19

func (o *DocumentReceivedPayload) GetReceivedAt() time.Time

GetReceivedAt returns the ReceivedAt field value

func (*DocumentReceivedPayload) GetReceivedAtOk added in v0.0.19

func (o *DocumentReceivedPayload) GetReceivedAtOk() (*time.Time, bool)

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

func (*DocumentReceivedPayload) GetReceiverRnc added in v0.0.19

func (o *DocumentReceivedPayload) GetReceiverRnc() string

GetReceiverRnc returns the ReceiverRnc field value

func (*DocumentReceivedPayload) GetReceiverRncOk added in v0.0.19

func (o *DocumentReceivedPayload) GetReceiverRncOk() (*string, bool)

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

func (*DocumentReceivedPayload) GetRejectionReason added in v0.0.19

func (o *DocumentReceivedPayload) GetRejectionReason() string

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

func (*DocumentReceivedPayload) GetRejectionReasonOk added in v0.0.19

func (o *DocumentReceivedPayload) GetRejectionReasonOk() (*string, bool)

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

func (*DocumentReceivedPayload) GetSenderRnc added in v0.0.19

func (o *DocumentReceivedPayload) GetSenderRnc() string

GetSenderRnc returns the SenderRnc field value

func (*DocumentReceivedPayload) GetSenderRncOk added in v0.0.19

func (o *DocumentReceivedPayload) GetSenderRncOk() (*string, bool)

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

func (*DocumentReceivedPayload) GetStatus added in v0.0.19

func (o *DocumentReceivedPayload) GetStatus() string

GetStatus returns the Status field value

func (*DocumentReceivedPayload) GetStatusOk added in v0.0.19

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

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

func (*DocumentReceivedPayload) GetTotalAmount added in v0.0.19

func (o *DocumentReceivedPayload) GetTotalAmount() float32

GetTotalAmount returns the TotalAmount field value

func (*DocumentReceivedPayload) GetTotalAmountOk added in v0.0.19

func (o *DocumentReceivedPayload) GetTotalAmountOk() (*float32, bool)

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

func (*DocumentReceivedPayload) HasRejectionReason added in v0.0.19

func (o *DocumentReceivedPayload) HasRejectionReason() bool

HasRejectionReason returns a boolean if a field has been set.

func (DocumentReceivedPayload) MarshalJSON added in v0.0.19

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

func (*DocumentReceivedPayload) SetEncf added in v0.0.19

func (o *DocumentReceivedPayload) SetEncf(v string)

SetEncf sets field value

func (*DocumentReceivedPayload) SetIssueDate added in v0.0.19

func (o *DocumentReceivedPayload) SetIssueDate(v time.Time)

SetIssueDate sets field value

func (*DocumentReceivedPayload) SetReceivedAt added in v0.0.19

func (o *DocumentReceivedPayload) SetReceivedAt(v time.Time)

SetReceivedAt sets field value

func (*DocumentReceivedPayload) SetReceiverRnc added in v0.0.19

func (o *DocumentReceivedPayload) SetReceiverRnc(v string)

SetReceiverRnc sets field value

func (*DocumentReceivedPayload) SetRejectionReason added in v0.0.19

func (o *DocumentReceivedPayload) SetRejectionReason(v string)

SetRejectionReason gets a reference to the given NullableString and assigns it to the RejectionReason field.

func (*DocumentReceivedPayload) SetRejectionReasonNil added in v0.0.19

func (o *DocumentReceivedPayload) SetRejectionReasonNil()

SetRejectionReasonNil sets the value for RejectionReason to be an explicit nil

func (*DocumentReceivedPayload) SetSenderRnc added in v0.0.19

func (o *DocumentReceivedPayload) SetSenderRnc(v string)

SetSenderRnc sets field value

func (*DocumentReceivedPayload) SetStatus added in v0.0.19

func (o *DocumentReceivedPayload) SetStatus(v string)

SetStatus sets field value

func (*DocumentReceivedPayload) SetTotalAmount added in v0.0.19

func (o *DocumentReceivedPayload) SetTotalAmount(v float32)

SetTotalAmount sets field value

func (DocumentReceivedPayload) ToMap added in v0.0.19

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

func (*DocumentReceivedPayload) UnmarshalJSON added in v0.0.19

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

func (*DocumentReceivedPayload) UnsetRejectionReason added in v0.0.19

func (o *DocumentReceivedPayload) UnsetRejectionReason()

UnsetRejectionReason ensures that no value is present for RejectionReason, not even an explicit nil

type DocumentStatsResponse added in v0.0.7

type DocumentStatsResponse struct {
	Total          *int32                                         `json:"total,omitempty"`
	RecentActivity *int32                                         `json:"recentActivity,omitempty"`
	ByStatus       *map[string]DocumentStatsResponseByStatusValue `json:"byStatus,omitempty"`
	ByEnvironment  *map[string]int32                              `json:"byEnvironment,omitempty"`
}

DocumentStatsResponse struct for DocumentStatsResponse

func NewDocumentStatsResponse added in v0.0.7

func NewDocumentStatsResponse() *DocumentStatsResponse

NewDocumentStatsResponse instantiates a new DocumentStatsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDocumentStatsResponseWithDefaults added in v0.0.7

func NewDocumentStatsResponseWithDefaults() *DocumentStatsResponse

NewDocumentStatsResponseWithDefaults instantiates a new DocumentStatsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DocumentStatsResponse) GetByEnvironment added in v0.0.7

func (o *DocumentStatsResponse) GetByEnvironment() map[string]int32

GetByEnvironment returns the ByEnvironment field value if set, zero value otherwise.

func (*DocumentStatsResponse) GetByEnvironmentOk added in v0.0.7

func (o *DocumentStatsResponse) GetByEnvironmentOk() (*map[string]int32, bool)

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

func (*DocumentStatsResponse) GetByStatus added in v0.0.7

GetByStatus returns the ByStatus field value if set, zero value otherwise.

func (*DocumentStatsResponse) GetByStatusOk added in v0.0.7

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

func (*DocumentStatsResponse) GetRecentActivity added in v0.0.7

func (o *DocumentStatsResponse) GetRecentActivity() int32

GetRecentActivity returns the RecentActivity field value if set, zero value otherwise.

func (*DocumentStatsResponse) GetRecentActivityOk added in v0.0.7

func (o *DocumentStatsResponse) GetRecentActivityOk() (*int32, bool)

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

func (*DocumentStatsResponse) GetTotal added in v0.0.7

func (o *DocumentStatsResponse) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*DocumentStatsResponse) GetTotalOk added in v0.0.7

func (o *DocumentStatsResponse) GetTotalOk() (*int32, bool)

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

func (*DocumentStatsResponse) HasByEnvironment added in v0.0.7

func (o *DocumentStatsResponse) HasByEnvironment() bool

HasByEnvironment returns a boolean if a field has been set.

func (*DocumentStatsResponse) HasByStatus added in v0.0.7

func (o *DocumentStatsResponse) HasByStatus() bool

HasByStatus returns a boolean if a field has been set.

func (*DocumentStatsResponse) HasRecentActivity added in v0.0.7

func (o *DocumentStatsResponse) HasRecentActivity() bool

HasRecentActivity returns a boolean if a field has been set.

func (*DocumentStatsResponse) HasTotal added in v0.0.7

func (o *DocumentStatsResponse) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (DocumentStatsResponse) MarshalJSON added in v0.0.7

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

func (*DocumentStatsResponse) SetByEnvironment added in v0.0.7

func (o *DocumentStatsResponse) SetByEnvironment(v map[string]int32)

SetByEnvironment gets a reference to the given map[string]int32 and assigns it to the ByEnvironment field.

func (*DocumentStatsResponse) SetByStatus added in v0.0.7

SetByStatus gets a reference to the given map[string]DocumentStatsResponseByStatusValue and assigns it to the ByStatus field.

func (*DocumentStatsResponse) SetRecentActivity added in v0.0.7

func (o *DocumentStatsResponse) SetRecentActivity(v int32)

SetRecentActivity gets a reference to the given int32 and assigns it to the RecentActivity field.

func (*DocumentStatsResponse) SetTotal added in v0.0.7

func (o *DocumentStatsResponse) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (DocumentStatsResponse) ToMap added in v0.0.7

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

type DocumentStatsResponseByStatusValue added in v0.0.19

type DocumentStatsResponseByStatusValue struct {
	Count *int32  `json:"count,omitempty"`
	Label *string `json:"label,omitempty"`
}

DocumentStatsResponseByStatusValue struct for DocumentStatsResponseByStatusValue

func NewDocumentStatsResponseByStatusValue added in v0.0.19

func NewDocumentStatsResponseByStatusValue() *DocumentStatsResponseByStatusValue

NewDocumentStatsResponseByStatusValue instantiates a new DocumentStatsResponseByStatusValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDocumentStatsResponseByStatusValueWithDefaults added in v0.0.19

func NewDocumentStatsResponseByStatusValueWithDefaults() *DocumentStatsResponseByStatusValue

NewDocumentStatsResponseByStatusValueWithDefaults instantiates a new DocumentStatsResponseByStatusValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DocumentStatsResponseByStatusValue) GetCount added in v0.0.19

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

func (*DocumentStatsResponseByStatusValue) GetCountOk added in v0.0.19

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

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

func (*DocumentStatsResponseByStatusValue) GetLabel added in v0.0.19

GetLabel returns the Label field value if set, zero value otherwise.

func (*DocumentStatsResponseByStatusValue) GetLabelOk added in v0.0.19

func (o *DocumentStatsResponseByStatusValue) GetLabelOk() (*string, bool)

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

func (*DocumentStatsResponseByStatusValue) HasCount added in v0.0.19

HasCount returns a boolean if a field has been set.

func (*DocumentStatsResponseByStatusValue) HasLabel added in v0.0.19

HasLabel returns a boolean if a field has been set.

func (DocumentStatsResponseByStatusValue) MarshalJSON added in v0.0.19

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

func (*DocumentStatsResponseByStatusValue) SetCount added in v0.0.19

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

func (*DocumentStatsResponseByStatusValue) SetLabel added in v0.0.19

SetLabel gets a reference to the given string and assigns it to the Label field.

func (DocumentStatsResponseByStatusValue) ToMap added in v0.0.19

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

type DocumentStatus added in v0.0.7

type DocumentStatus string

DocumentStatus the model 'DocumentStatus'

const (
	DOCUMENTSTATUS_IN_PROCESS             DocumentStatus = "IN_PROCESS"
	DOCUMENTSTATUS_APPROVED               DocumentStatus = "APPROVED"
	DOCUMENTSTATUS_CONDITIONALLY_APPROVED DocumentStatus = "CONDITIONALLY_APPROVED"
	DOCUMENTSTATUS_REJECTED               DocumentStatus = "REJECTED"
	DOCUMENTSTATUS_ERROR                  DocumentStatus = "ERROR"
	DOCUMENTSTATUS_ERROR_COMUNICATION     DocumentStatus = "ERROR_COMUNICATION"
)

List of DocumentStatus

func NewDocumentStatusFromValue added in v0.0.7

func NewDocumentStatusFromValue(v string) (*DocumentStatus, error)

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

func (DocumentStatus) IsValid added in v0.0.7

func (v DocumentStatus) IsValid() bool

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

func (DocumentStatus) Ptr added in v0.0.7

func (v DocumentStatus) Ptr() *DocumentStatus

Ptr returns reference to DocumentStatus value

func (*DocumentStatus) UnmarshalJSON added in v0.0.7

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

type DocumentStatusChangedPayload added in v0.0.19

type DocumentStatusChangedPayload struct {
	// Internal document ID for polling.
	DocumentId string `json:"documentId"`
	// e-NCF fiscal number.
	Encf string `json:"encf"`
	// RNC of the issuing company (associated or main).
	IssuerRnc string `json:"issuerRnc"`
	// Public lifecycle status.
	Status string `json:"status"`
	// Fiscal result from DGII. Only present when status=FINISHED.
	LegalStatus NullableString `json:"legalStatus,omitempty"`
	// Tipo de documento code (31=Invoice, 32=Credit Note, etc.)
	DocumentType NullableString `json:"documentType,omitempty"`
	// DGII tracking ID.
	TrackId NullableString `json:"trackId,omitempty"`
	// Human-readable DGII response message.
	DgiiMessage NullableString `json:"dgiiMessage,omitempty"`
}

DocumentStatusChangedPayload Payload inside `data` when event is `document.status_changed`. Use `documentId` to poll GET /{environment}/ecf/status/{id} if needed. `issuerRnc` identifies the company that issued the document (useful in multi-company setups where an associated company sent it).

func NewDocumentStatusChangedPayload added in v0.0.19

func NewDocumentStatusChangedPayload(documentId string, encf string, issuerRnc string, status string) *DocumentStatusChangedPayload

NewDocumentStatusChangedPayload instantiates a new DocumentStatusChangedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDocumentStatusChangedPayloadWithDefaults added in v0.0.19

func NewDocumentStatusChangedPayloadWithDefaults() *DocumentStatusChangedPayload

NewDocumentStatusChangedPayloadWithDefaults instantiates a new DocumentStatusChangedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DocumentStatusChangedPayload) GetDgiiMessage added in v0.0.19

func (o *DocumentStatusChangedPayload) GetDgiiMessage() string

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

func (*DocumentStatusChangedPayload) GetDgiiMessageOk added in v0.0.19

func (o *DocumentStatusChangedPayload) GetDgiiMessageOk() (*string, bool)

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

func (*DocumentStatusChangedPayload) GetDocumentId added in v0.0.19

func (o *DocumentStatusChangedPayload) GetDocumentId() string

GetDocumentId returns the DocumentId field value

func (*DocumentStatusChangedPayload) GetDocumentIdOk added in v0.0.19

func (o *DocumentStatusChangedPayload) GetDocumentIdOk() (*string, bool)

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

func (*DocumentStatusChangedPayload) GetDocumentType added in v0.0.19

func (o *DocumentStatusChangedPayload) GetDocumentType() string

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

func (*DocumentStatusChangedPayload) GetDocumentTypeOk added in v0.0.19

func (o *DocumentStatusChangedPayload) GetDocumentTypeOk() (*string, bool)

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

func (*DocumentStatusChangedPayload) GetEncf added in v0.0.19

func (o *DocumentStatusChangedPayload) GetEncf() string

GetEncf returns the Encf field value

func (*DocumentStatusChangedPayload) GetEncfOk added in v0.0.19

func (o *DocumentStatusChangedPayload) GetEncfOk() (*string, bool)

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

func (*DocumentStatusChangedPayload) GetIssuerRnc added in v0.0.19

func (o *DocumentStatusChangedPayload) GetIssuerRnc() string

GetIssuerRnc returns the IssuerRnc field value

func (*DocumentStatusChangedPayload) GetIssuerRncOk added in v0.0.19

func (o *DocumentStatusChangedPayload) GetIssuerRncOk() (*string, bool)

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

func (*DocumentStatusChangedPayload) GetLegalStatus added in v0.0.19

func (o *DocumentStatusChangedPayload) GetLegalStatus() string

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

func (*DocumentStatusChangedPayload) GetLegalStatusOk added in v0.0.19

func (o *DocumentStatusChangedPayload) GetLegalStatusOk() (*string, bool)

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

func (*DocumentStatusChangedPayload) GetStatus added in v0.0.19

func (o *DocumentStatusChangedPayload) GetStatus() string

GetStatus returns the Status field value

func (*DocumentStatusChangedPayload) GetStatusOk added in v0.0.19

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

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

func (*DocumentStatusChangedPayload) GetTrackId added in v0.0.19

func (o *DocumentStatusChangedPayload) GetTrackId() string

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

func (*DocumentStatusChangedPayload) GetTrackIdOk added in v0.0.19

func (o *DocumentStatusChangedPayload) GetTrackIdOk() (*string, bool)

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

func (*DocumentStatusChangedPayload) HasDgiiMessage added in v0.0.19

func (o *DocumentStatusChangedPayload) HasDgiiMessage() bool

HasDgiiMessage returns a boolean if a field has been set.

func (*DocumentStatusChangedPayload) HasDocumentType added in v0.0.19

func (o *DocumentStatusChangedPayload) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*DocumentStatusChangedPayload) HasLegalStatus added in v0.0.19

func (o *DocumentStatusChangedPayload) HasLegalStatus() bool

HasLegalStatus returns a boolean if a field has been set.

func (*DocumentStatusChangedPayload) HasTrackId added in v0.0.19

func (o *DocumentStatusChangedPayload) HasTrackId() bool

HasTrackId returns a boolean if a field has been set.

func (DocumentStatusChangedPayload) MarshalJSON added in v0.0.19

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

func (*DocumentStatusChangedPayload) SetDgiiMessage added in v0.0.19

func (o *DocumentStatusChangedPayload) SetDgiiMessage(v string)

SetDgiiMessage gets a reference to the given NullableString and assigns it to the DgiiMessage field.

func (*DocumentStatusChangedPayload) SetDgiiMessageNil added in v0.0.19

func (o *DocumentStatusChangedPayload) SetDgiiMessageNil()

SetDgiiMessageNil sets the value for DgiiMessage to be an explicit nil

func (*DocumentStatusChangedPayload) SetDocumentId added in v0.0.19

func (o *DocumentStatusChangedPayload) SetDocumentId(v string)

SetDocumentId sets field value

func (*DocumentStatusChangedPayload) SetDocumentType added in v0.0.19

func (o *DocumentStatusChangedPayload) SetDocumentType(v string)

SetDocumentType gets a reference to the given NullableString and assigns it to the DocumentType field.

func (*DocumentStatusChangedPayload) SetDocumentTypeNil added in v0.0.19

func (o *DocumentStatusChangedPayload) SetDocumentTypeNil()

SetDocumentTypeNil sets the value for DocumentType to be an explicit nil

func (*DocumentStatusChangedPayload) SetEncf added in v0.0.19

func (o *DocumentStatusChangedPayload) SetEncf(v string)

SetEncf sets field value

func (*DocumentStatusChangedPayload) SetIssuerRnc added in v0.0.19

func (o *DocumentStatusChangedPayload) SetIssuerRnc(v string)

SetIssuerRnc sets field value

func (*DocumentStatusChangedPayload) SetLegalStatus added in v0.0.19

func (o *DocumentStatusChangedPayload) SetLegalStatus(v string)

SetLegalStatus gets a reference to the given NullableString and assigns it to the LegalStatus field.

func (*DocumentStatusChangedPayload) SetLegalStatusNil added in v0.0.19

func (o *DocumentStatusChangedPayload) SetLegalStatusNil()

SetLegalStatusNil sets the value for LegalStatus to be an explicit nil

func (*DocumentStatusChangedPayload) SetStatus added in v0.0.19

func (o *DocumentStatusChangedPayload) SetStatus(v string)

SetStatus sets field value

func (*DocumentStatusChangedPayload) SetTrackId added in v0.0.19

func (o *DocumentStatusChangedPayload) SetTrackId(v string)

SetTrackId gets a reference to the given NullableString and assigns it to the TrackId field.

func (*DocumentStatusChangedPayload) SetTrackIdNil added in v0.0.19

func (o *DocumentStatusChangedPayload) SetTrackIdNil()

SetTrackIdNil sets the value for TrackId to be an explicit nil

func (DocumentStatusChangedPayload) ToMap added in v0.0.19

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

func (*DocumentStatusChangedPayload) UnmarshalJSON added in v0.0.19

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

func (*DocumentStatusChangedPayload) UnsetDgiiMessage added in v0.0.19

func (o *DocumentStatusChangedPayload) UnsetDgiiMessage()

UnsetDgiiMessage ensures that no value is present for DgiiMessage, not even an explicit nil

func (*DocumentStatusChangedPayload) UnsetDocumentType added in v0.0.19

func (o *DocumentStatusChangedPayload) UnsetDocumentType()

UnsetDocumentType ensures that no value is present for DocumentType, not even an explicit nil

func (*DocumentStatusChangedPayload) UnsetLegalStatus added in v0.0.19

func (o *DocumentStatusChangedPayload) UnsetLegalStatus()

UnsetLegalStatus ensures that no value is present for LegalStatus, not even an explicit nil

func (*DocumentStatusChangedPayload) UnsetTrackId added in v0.0.19

func (o *DocumentStatusChangedPayload) UnsetTrackId()

UnsetTrackId ensures that no value is present for TrackId, not even an explicit nil

type DocumentValidationErrorPayload added in v0.0.19

type DocumentValidationErrorPayload struct {
	Encf string `json:"encf"`
	// Código de error de validación.
	ErrorCode string `json:"errorCode"`
	// Descripción del error.
	Message string `json:"message"`
}

DocumentValidationErrorPayload Payload del evento `document.validation_error`. El documento fue rechazado por validación local antes de enviarse a la DGII.

func NewDocumentValidationErrorPayload added in v0.0.19

func NewDocumentValidationErrorPayload(encf string, errorCode string, message string) *DocumentValidationErrorPayload

NewDocumentValidationErrorPayload instantiates a new DocumentValidationErrorPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDocumentValidationErrorPayloadWithDefaults added in v0.0.19

func NewDocumentValidationErrorPayloadWithDefaults() *DocumentValidationErrorPayload

NewDocumentValidationErrorPayloadWithDefaults instantiates a new DocumentValidationErrorPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DocumentValidationErrorPayload) GetEncf added in v0.0.19

GetEncf returns the Encf field value

func (*DocumentValidationErrorPayload) GetEncfOk added in v0.0.19

func (o *DocumentValidationErrorPayload) GetEncfOk() (*string, bool)

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

func (*DocumentValidationErrorPayload) GetErrorCode added in v0.0.19

func (o *DocumentValidationErrorPayload) GetErrorCode() string

GetErrorCode returns the ErrorCode field value

func (*DocumentValidationErrorPayload) GetErrorCodeOk added in v0.0.19

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

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

func (*DocumentValidationErrorPayload) GetMessage added in v0.0.19

func (o *DocumentValidationErrorPayload) GetMessage() string

GetMessage returns the Message field value

func (*DocumentValidationErrorPayload) GetMessageOk added in v0.0.19

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

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

func (DocumentValidationErrorPayload) MarshalJSON added in v0.0.19

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

func (*DocumentValidationErrorPayload) SetEncf added in v0.0.19

func (o *DocumentValidationErrorPayload) SetEncf(v string)

SetEncf sets field value

func (*DocumentValidationErrorPayload) SetErrorCode added in v0.0.19

func (o *DocumentValidationErrorPayload) SetErrorCode(v string)

SetErrorCode sets field value

func (*DocumentValidationErrorPayload) SetMessage added in v0.0.19

func (o *DocumentValidationErrorPayload) SetMessage(v string)

SetMessage sets field value

func (DocumentValidationErrorPayload) ToMap added in v0.0.19

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

func (*DocumentValidationErrorPayload) UnmarshalJSON added in v0.0.19

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

type DocumentsReceivedAPIService added in v0.0.7

type DocumentsReceivedAPIService service

DocumentsReceivedAPIService DocumentsReceivedAPI service

func (*DocumentsReceivedAPIService) GetReceivedDocumentById added in v0.0.19

GetReceivedDocumentById Obtener documento recibido por ID

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

func (*DocumentsReceivedAPIService) GetReceivedDocumentByIdExecute added in v0.0.19

Execute executes the request

@return ReceivedDocument

func (*DocumentsReceivedAPIService) GetReceivedDocumentStatsBySupplier added in v0.0.19

GetReceivedDocumentStatsBySupplier Top 10 proveedores por volumen de documentos recibidos

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

func (*DocumentsReceivedAPIService) GetReceivedDocumentStatsBySupplierExecute added in v0.0.19

Execute executes the request

@return []GetReceivedDocumentStatsBySupplier200ResponseInner

func (*DocumentsReceivedAPIService) GetReceivedDocumentStatsSummary added in v0.0.19

GetReceivedDocumentStatsSummary Estadísticas de documentos recibidos

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

func (*DocumentsReceivedAPIService) GetReceivedDocumentStatsSummaryExecute added in v0.0.19

Execute executes the request

@return ReceivedDocumentStatsResponse

func (*DocumentsReceivedAPIService) ListReceivedDocuments added in v0.0.7

ListReceivedDocuments Listar documentos recibidos

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

func (*DocumentsReceivedAPIService) ListReceivedDocumentsExecute added in v0.0.7

Execute executes the request

@return ReceivedDocumentListResponse

type DocumentsSentAPIService added in v0.0.7

type DocumentsSentAPIService service

DocumentsSentAPIService DocumentsSentAPI service

func (*DocumentsSentAPIService) DownloadSentDocumentXml added in v0.0.19

DownloadSentDocumentXml Descargar XML del documento

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

func (*DocumentsSentAPIService) DownloadSentDocumentXmlExecute added in v0.0.19

func (a *DocumentsSentAPIService) DownloadSentDocumentXmlExecute(r ApiDownloadSentDocumentXmlRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*DocumentsSentAPIService) GetSentDocumentById added in v0.0.19

GetSentDocumentById Obtener detalle del documento

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

func (*DocumentsSentAPIService) GetSentDocumentByIdExecute added in v0.0.19

Execute executes the request

@return SentDocumentDetail

func (*DocumentsSentAPIService) GetSentDocumentLogs added in v0.0.19

GetSentDocumentLogs Logs de procesamiento del documento

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

func (*DocumentsSentAPIService) GetSentDocumentLogsExecute added in v0.0.19

Execute executes the request

@return []GetSentDocumentLogs200ResponseInner

func (*DocumentsSentAPIService) GetSentDocumentStats added in v0.0.19

GetSentDocumentStats Estadísticas de documentos enviados

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

func (*DocumentsSentAPIService) GetSentDocumentStatsByEnvironment added in v0.0.19

func (a *DocumentsSentAPIService) GetSentDocumentStatsByEnvironment(ctx context.Context) ApiGetSentDocumentStatsByEnvironmentRequest

GetSentDocumentStatsByEnvironment Estadísticas agrupadas por ambiente y estado

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

func (*DocumentsSentAPIService) GetSentDocumentStatsByEnvironmentExecute added in v0.0.19

func (a *DocumentsSentAPIService) GetSentDocumentStatsByEnvironmentExecute(r ApiGetSentDocumentStatsByEnvironmentRequest) (map[string]map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]map[string]interface{}

func (*DocumentsSentAPIService) GetSentDocumentStatsExecute added in v0.0.19

Execute executes the request

@return DocumentStatsResponse

func (*DocumentsSentAPIService) GetSentDocumentStatusOptions added in v0.0.19

GetSentDocumentStatusOptions Opciones de filtro de estado disponibles

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

func (*DocumentsSentAPIService) GetSentDocumentStatusOptionsExecute added in v0.0.19

Execute executes the request

@return []GetSentDocumentStatusOptions200ResponseInner

func (*DocumentsSentAPIService) GetSentDocumentXml added in v0.0.20

GetSentDocumentXml Descargar XML del documento por ID

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

func (*DocumentsSentAPIService) GetSentDocumentXmlExecute added in v0.0.20

func (a *DocumentsSentAPIService) GetSentDocumentXmlExecute(r ApiGetSentDocumentXmlRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*DocumentsSentAPIService) ListSentDocuments added in v0.0.7

ListSentDocuments Listar documentos enviados

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

func (*DocumentsSentAPIService) ListSentDocumentsExecute added in v0.0.7

Execute executes the request

@return SentDocumentListResponse

type ECFSubmissionAPIService

type ECFSubmissionAPIService service

ECFSubmissionAPIService ECFSubmissionAPI service

func (*ECFSubmissionAPIService) GetEcfStats added in v0.0.7

func (a *ECFSubmissionAPIService) GetEcfStats(ctx context.Context, environment Environment) ApiGetEcfStatsRequest

GetEcfStats Obtener estadísticas de envíos (últimos 30 días)

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

func (*ECFSubmissionAPIService) GetEcfStatsExecute added in v0.0.7

Execute executes the request

@return EcfStatsResponse

func (*ECFSubmissionAPIService) GetEcfStatus added in v0.0.7

func (a *ECFSubmissionAPIService) GetEcfStatus(ctx context.Context, environment Environment, id string) ApiGetEcfStatusRequest

GetEcfStatus Consultar estado del documento por ID interno

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

func (*ECFSubmissionAPIService) GetEcfStatusExecute added in v0.0.7

Execute executes the request

@return EcfStatusResponse

func (*ECFSubmissionAPIService) GetEcfSubmissionHistory added in v0.0.19

func (a *ECFSubmissionAPIService) GetEcfSubmissionHistory(ctx context.Context, environment Environment) ApiGetEcfSubmissionHistoryRequest

GetEcfSubmissionHistory Historial de envíos (paginado)

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

func (*ECFSubmissionAPIService) GetEcfSubmissionHistoryExecute added in v0.0.19

Execute executes the request

@return GetEcfSubmissionHistory200Response

func (*ECFSubmissionAPIService) SubmitEcf

SubmitEcf Enviar documento e-CF a la DGII

Envía un comprobante fiscal electrónico. Maneja automáticamente la firma XML, la cola de envío, el modo contingencia y la comunicación con la DGII. IMPORTANTE: En Sandbox el campo environment en el cuerpo DEBE ser TesteCF.

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

func (*ECFSubmissionAPIService) SubmitEcfExecute

Execute executes the request

@return EcfSubmitResponse

type EcfHistoryItem added in v0.0.7

type EcfHistoryItem struct {
	Id           *string        `json:"id,omitempty"`
	TrackId      NullableString `json:"trackId,omitempty"`
	Encf         NullableString `json:"encf,omitempty"`
	DocumentType *string        `json:"documentType,omitempty"`
	Status       *string        `json:"status,omitempty"`
	LegalStatus  NullableString `json:"legalStatus,omitempty"`
	IssuerRnc    *string        `json:"issuerRnc,omitempty"`
	Environment  *Environment   `json:"environment,omitempty"`
	ReceivedAt   NullableTime   `json:"receivedAt,omitempty"`
	CreatedAt    *time.Time     `json:"createdAt,omitempty"`
}

EcfHistoryItem struct for EcfHistoryItem

func NewEcfHistoryItem added in v0.0.7

func NewEcfHistoryItem() *EcfHistoryItem

NewEcfHistoryItem instantiates a new EcfHistoryItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEcfHistoryItemWithDefaults added in v0.0.7

func NewEcfHistoryItemWithDefaults() *EcfHistoryItem

NewEcfHistoryItemWithDefaults instantiates a new EcfHistoryItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EcfHistoryItem) GetCreatedAt added in v0.0.7

func (o *EcfHistoryItem) GetCreatedAt() time.Time

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

func (*EcfHistoryItem) GetCreatedAtOk added in v0.0.7

func (o *EcfHistoryItem) GetCreatedAtOk() (*time.Time, bool)

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

func (*EcfHistoryItem) GetDocumentType added in v0.0.7

func (o *EcfHistoryItem) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise.

func (*EcfHistoryItem) GetDocumentTypeOk added in v0.0.7

func (o *EcfHistoryItem) GetDocumentTypeOk() (*string, bool)

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

func (*EcfHistoryItem) GetEncf added in v0.0.7

func (o *EcfHistoryItem) GetEncf() string

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

func (*EcfHistoryItem) GetEncfOk added in v0.0.7

func (o *EcfHistoryItem) GetEncfOk() (*string, bool)

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

func (*EcfHistoryItem) GetEnvironment added in v0.0.7

func (o *EcfHistoryItem) GetEnvironment() Environment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*EcfHistoryItem) GetEnvironmentOk added in v0.0.7

func (o *EcfHistoryItem) GetEnvironmentOk() (*Environment, bool)

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

func (*EcfHistoryItem) GetId added in v0.0.7

func (o *EcfHistoryItem) GetId() string

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

func (*EcfHistoryItem) GetIdOk added in v0.0.7

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

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

func (*EcfHistoryItem) GetIssuerRnc added in v0.0.19

func (o *EcfHistoryItem) GetIssuerRnc() string

GetIssuerRnc returns the IssuerRnc field value if set, zero value otherwise.

func (*EcfHistoryItem) GetIssuerRncOk added in v0.0.19

func (o *EcfHistoryItem) GetIssuerRncOk() (*string, bool)

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

func (*EcfHistoryItem) GetLegalStatus added in v0.0.19

func (o *EcfHistoryItem) GetLegalStatus() string

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

func (*EcfHistoryItem) GetLegalStatusOk added in v0.0.19

func (o *EcfHistoryItem) GetLegalStatusOk() (*string, bool)

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

func (*EcfHistoryItem) GetReceivedAt added in v0.0.19

func (o *EcfHistoryItem) GetReceivedAt() time.Time

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

func (*EcfHistoryItem) GetReceivedAtOk added in v0.0.19

func (o *EcfHistoryItem) GetReceivedAtOk() (*time.Time, bool)

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

func (*EcfHistoryItem) GetStatus added in v0.0.7

func (o *EcfHistoryItem) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*EcfHistoryItem) GetStatusOk added in v0.0.7

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

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

func (*EcfHistoryItem) GetTrackId added in v0.0.7

func (o *EcfHistoryItem) GetTrackId() string

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

func (*EcfHistoryItem) GetTrackIdOk added in v0.0.7

func (o *EcfHistoryItem) GetTrackIdOk() (*string, bool)

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

func (*EcfHistoryItem) HasCreatedAt added in v0.0.7

func (o *EcfHistoryItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*EcfHistoryItem) HasDocumentType added in v0.0.7

func (o *EcfHistoryItem) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*EcfHistoryItem) HasEncf added in v0.0.7

func (o *EcfHistoryItem) HasEncf() bool

HasEncf returns a boolean if a field has been set.

func (*EcfHistoryItem) HasEnvironment added in v0.0.7

func (o *EcfHistoryItem) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*EcfHistoryItem) HasId added in v0.0.7

func (o *EcfHistoryItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*EcfHistoryItem) HasIssuerRnc added in v0.0.19

func (o *EcfHistoryItem) HasIssuerRnc() bool

HasIssuerRnc returns a boolean if a field has been set.

func (*EcfHistoryItem) HasLegalStatus added in v0.0.19

func (o *EcfHistoryItem) HasLegalStatus() bool

HasLegalStatus returns a boolean if a field has been set.

func (*EcfHistoryItem) HasReceivedAt added in v0.0.19

func (o *EcfHistoryItem) HasReceivedAt() bool

HasReceivedAt returns a boolean if a field has been set.

func (*EcfHistoryItem) HasStatus added in v0.0.7

func (o *EcfHistoryItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*EcfHistoryItem) HasTrackId added in v0.0.7

func (o *EcfHistoryItem) HasTrackId() bool

HasTrackId returns a boolean if a field has been set.

func (EcfHistoryItem) MarshalJSON added in v0.0.7

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

func (*EcfHistoryItem) SetCreatedAt added in v0.0.7

func (o *EcfHistoryItem) SetCreatedAt(v time.Time)

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

func (*EcfHistoryItem) SetDocumentType added in v0.0.7

func (o *EcfHistoryItem) SetDocumentType(v string)

SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.

func (*EcfHistoryItem) SetEncf added in v0.0.7

func (o *EcfHistoryItem) SetEncf(v string)

SetEncf gets a reference to the given NullableString and assigns it to the Encf field.

func (*EcfHistoryItem) SetEncfNil added in v0.0.19

func (o *EcfHistoryItem) SetEncfNil()

SetEncfNil sets the value for Encf to be an explicit nil

func (*EcfHistoryItem) SetEnvironment added in v0.0.7

func (o *EcfHistoryItem) SetEnvironment(v Environment)

SetEnvironment gets a reference to the given Environment and assigns it to the Environment field.

func (*EcfHistoryItem) SetId added in v0.0.7

func (o *EcfHistoryItem) SetId(v string)

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

func (*EcfHistoryItem) SetIssuerRnc added in v0.0.19

func (o *EcfHistoryItem) SetIssuerRnc(v string)

SetIssuerRnc gets a reference to the given string and assigns it to the IssuerRnc field.

func (*EcfHistoryItem) SetLegalStatus added in v0.0.19

func (o *EcfHistoryItem) SetLegalStatus(v string)

SetLegalStatus gets a reference to the given NullableString and assigns it to the LegalStatus field.

func (*EcfHistoryItem) SetLegalStatusNil added in v0.0.19

func (o *EcfHistoryItem) SetLegalStatusNil()

SetLegalStatusNil sets the value for LegalStatus to be an explicit nil

func (*EcfHistoryItem) SetReceivedAt added in v0.0.19

func (o *EcfHistoryItem) SetReceivedAt(v time.Time)

SetReceivedAt gets a reference to the given NullableTime and assigns it to the ReceivedAt field.

func (*EcfHistoryItem) SetReceivedAtNil added in v0.0.19

func (o *EcfHistoryItem) SetReceivedAtNil()

SetReceivedAtNil sets the value for ReceivedAt to be an explicit nil

func (*EcfHistoryItem) SetStatus added in v0.0.7

func (o *EcfHistoryItem) SetStatus(v string)

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

func (*EcfHistoryItem) SetTrackId added in v0.0.7

func (o *EcfHistoryItem) SetTrackId(v string)

SetTrackId gets a reference to the given NullableString and assigns it to the TrackId field.

func (*EcfHistoryItem) SetTrackIdNil added in v0.0.19

func (o *EcfHistoryItem) SetTrackIdNil()

SetTrackIdNil sets the value for TrackId to be an explicit nil

func (EcfHistoryItem) ToMap added in v0.0.7

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

func (*EcfHistoryItem) UnsetEncf added in v0.0.19

func (o *EcfHistoryItem) UnsetEncf()

UnsetEncf ensures that no value is present for Encf, not even an explicit nil

func (*EcfHistoryItem) UnsetLegalStatus added in v0.0.19

func (o *EcfHistoryItem) UnsetLegalStatus()

UnsetLegalStatus ensures that no value is present for LegalStatus, not even an explicit nil

func (*EcfHistoryItem) UnsetReceivedAt added in v0.0.19

func (o *EcfHistoryItem) UnsetReceivedAt()

UnsetReceivedAt ensures that no value is present for ReceivedAt, not even an explicit nil

func (*EcfHistoryItem) UnsetTrackId added in v0.0.19

func (o *EcfHistoryItem) UnsetTrackId()

UnsetTrackId ensures that no value is present for TrackId, not even an explicit nil

type EcfStatsResponse added in v0.0.7

type EcfStatsResponse struct {
	Total       *int32     `json:"total,omitempty"`
	Accepted    *int32     `json:"accepted,omitempty"`
	Rejected    *int32     `json:"rejected,omitempty"`
	Processing  *int32     `json:"processing,omitempty"`
	Error       *int32     `json:"error,omitempty"`
	SuccessRate *string    `json:"successRate,omitempty"`
	Period      *string    `json:"period,omitempty"`
	DateFrom    *time.Time `json:"dateFrom,omitempty"`
	DateTo      *time.Time `json:"dateTo,omitempty"`
}

EcfStatsResponse struct for EcfStatsResponse

func NewEcfStatsResponse added in v0.0.7

func NewEcfStatsResponse() *EcfStatsResponse

NewEcfStatsResponse instantiates a new EcfStatsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEcfStatsResponseWithDefaults added in v0.0.7

func NewEcfStatsResponseWithDefaults() *EcfStatsResponse

NewEcfStatsResponseWithDefaults instantiates a new EcfStatsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EcfStatsResponse) GetAccepted added in v0.0.7

func (o *EcfStatsResponse) GetAccepted() int32

GetAccepted returns the Accepted field value if set, zero value otherwise.

func (*EcfStatsResponse) GetAcceptedOk added in v0.0.7

func (o *EcfStatsResponse) GetAcceptedOk() (*int32, bool)

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

func (*EcfStatsResponse) GetDateFrom added in v0.0.7

func (o *EcfStatsResponse) GetDateFrom() time.Time

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

func (*EcfStatsResponse) GetDateFromOk added in v0.0.7

func (o *EcfStatsResponse) GetDateFromOk() (*time.Time, bool)

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

func (*EcfStatsResponse) GetDateTo added in v0.0.7

func (o *EcfStatsResponse) GetDateTo() time.Time

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

func (*EcfStatsResponse) GetDateToOk added in v0.0.7

func (o *EcfStatsResponse) GetDateToOk() (*time.Time, bool)

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

func (*EcfStatsResponse) GetError added in v0.0.7

func (o *EcfStatsResponse) GetError() int32

GetError returns the Error field value if set, zero value otherwise.

func (*EcfStatsResponse) GetErrorOk added in v0.0.7

func (o *EcfStatsResponse) GetErrorOk() (*int32, 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.

func (*EcfStatsResponse) GetPeriod added in v0.0.7

func (o *EcfStatsResponse) GetPeriod() string

GetPeriod returns the Period field value if set, zero value otherwise.

func (*EcfStatsResponse) GetPeriodOk added in v0.0.7

func (o *EcfStatsResponse) GetPeriodOk() (*string, bool)

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

func (*EcfStatsResponse) GetProcessing added in v0.0.7

func (o *EcfStatsResponse) GetProcessing() int32

GetProcessing returns the Processing field value if set, zero value otherwise.

func (*EcfStatsResponse) GetProcessingOk added in v0.0.7

func (o *EcfStatsResponse) GetProcessingOk() (*int32, bool)

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

func (*EcfStatsResponse) GetRejected added in v0.0.7

func (o *EcfStatsResponse) GetRejected() int32

GetRejected returns the Rejected field value if set, zero value otherwise.

func (*EcfStatsResponse) GetRejectedOk added in v0.0.7

func (o *EcfStatsResponse) GetRejectedOk() (*int32, bool)

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

func (*EcfStatsResponse) GetSuccessRate added in v0.0.7

func (o *EcfStatsResponse) GetSuccessRate() string

GetSuccessRate returns the SuccessRate field value if set, zero value otherwise.

func (*EcfStatsResponse) GetSuccessRateOk added in v0.0.7

func (o *EcfStatsResponse) GetSuccessRateOk() (*string, bool)

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

func (*EcfStatsResponse) GetTotal added in v0.0.7

func (o *EcfStatsResponse) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*EcfStatsResponse) GetTotalOk added in v0.0.7

func (o *EcfStatsResponse) GetTotalOk() (*int32, bool)

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

func (*EcfStatsResponse) HasAccepted added in v0.0.7

func (o *EcfStatsResponse) HasAccepted() bool

HasAccepted returns a boolean if a field has been set.

func (*EcfStatsResponse) HasDateFrom added in v0.0.7

func (o *EcfStatsResponse) HasDateFrom() bool

HasDateFrom returns a boolean if a field has been set.

func (*EcfStatsResponse) HasDateTo added in v0.0.7

func (o *EcfStatsResponse) HasDateTo() bool

HasDateTo returns a boolean if a field has been set.

func (*EcfStatsResponse) HasError added in v0.0.7

func (o *EcfStatsResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*EcfStatsResponse) HasPeriod added in v0.0.7

func (o *EcfStatsResponse) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*EcfStatsResponse) HasProcessing added in v0.0.7

func (o *EcfStatsResponse) HasProcessing() bool

HasProcessing returns a boolean if a field has been set.

func (*EcfStatsResponse) HasRejected added in v0.0.7

func (o *EcfStatsResponse) HasRejected() bool

HasRejected returns a boolean if a field has been set.

func (*EcfStatsResponse) HasSuccessRate added in v0.0.7

func (o *EcfStatsResponse) HasSuccessRate() bool

HasSuccessRate returns a boolean if a field has been set.

func (*EcfStatsResponse) HasTotal added in v0.0.7

func (o *EcfStatsResponse) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (EcfStatsResponse) MarshalJSON added in v0.0.7

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

func (*EcfStatsResponse) SetAccepted added in v0.0.7

func (o *EcfStatsResponse) SetAccepted(v int32)

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

func (*EcfStatsResponse) SetDateFrom added in v0.0.7

func (o *EcfStatsResponse) SetDateFrom(v time.Time)

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

func (*EcfStatsResponse) SetDateTo added in v0.0.7

func (o *EcfStatsResponse) SetDateTo(v time.Time)

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

func (*EcfStatsResponse) SetError added in v0.0.7

func (o *EcfStatsResponse) SetError(v int32)

SetError gets a reference to the given int32 and assigns it to the Error field.

func (*EcfStatsResponse) SetPeriod added in v0.0.7

func (o *EcfStatsResponse) SetPeriod(v string)

SetPeriod gets a reference to the given string and assigns it to the Period field.

func (*EcfStatsResponse) SetProcessing added in v0.0.7

func (o *EcfStatsResponse) SetProcessing(v int32)

SetProcessing gets a reference to the given int32 and assigns it to the Processing field.

func (*EcfStatsResponse) SetRejected added in v0.0.7

func (o *EcfStatsResponse) SetRejected(v int32)

SetRejected gets a reference to the given int32 and assigns it to the Rejected field.

func (*EcfStatsResponse) SetSuccessRate added in v0.0.7

func (o *EcfStatsResponse) SetSuccessRate(v string)

SetSuccessRate gets a reference to the given string and assigns it to the SuccessRate field.

func (*EcfStatsResponse) SetTotal added in v0.0.7

func (o *EcfStatsResponse) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (EcfStatsResponse) ToMap added in v0.0.7

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

type EcfStatusResponse added in v0.0.7

type EcfStatusResponse struct {
	// ID interno del documento.
	Id string `json:"id"`
	// Fecha de emisión del documento (YYYY-MM-DD).
	StampDate NullableString `json:"stampDate,omitempty"`
	// Estado del proceso de envío a DGII.
	Status string `json:"status"`
	// Estado fiscal según la respuesta de DGII. null mientras no hay respuesta.
	LegalStatus           NullableString                         `json:"legalStatus,omitempty"`
	CompanyIdentification EcfSubmitResponseCompanyIdentification `json:"companyIdentification"`
	// ID de seguimiento asignado por DGII.
	TrackId NullableString `json:"trackId,omitempty"`
	// Número de control electrónico (e-NCF).
	DocumentNumber NullableString `json:"documentNumber,omitempty"`
	// Número e-NCF del documento.
	Encf NullableString `json:"encf,omitempty"`
	// true si fue emitido en modo contingencia.
	ContingencyMode *bool `json:"contingencyMode,omitempty"`
	// Mensaje oficial DGII cuando contingencyMode es true.
	ContingencyMessage *string `json:"contingencyMessage,omitempty"`
	// URL del código QR del documento.
	DocumentStampUrl NullableString `json:"documentStampUrl,omitempty"`
	// URL pre-firmada del PDF (expira en 1 hora).
	Pdf NullableString `json:"pdf,omitempty"`
	// URL pre-firmada del XML firmado (expira en 1 hora).
	XmlUrl NullableString `json:"xmlUrl,omitempty"`
	// Fecha y hora de la firma digital.
	SignatureDate NullableTime `json:"signatureDate,omitempty"`
	// Código de seguridad del documento.
	SecurityCode NullableString `json:"securityCode,omitempty"`
	// true si DGII confirmó el consumo de la secuencia.
	SequenceConsumed bool `json:"sequenceConsumed"`
	// Respuesta completa de DGII (disponible cuando status es FINISHED).
	GovernmentResponse map[string]interface{} `json:"governmentResponse,omitempty"`
}

EcfStatusResponse Respuesta del endpoint GET /ecf/status/{id}. Incluye el estado fiscal completo de DGII.

func NewEcfStatusResponse added in v0.0.7

func NewEcfStatusResponse(id string, status string, companyIdentification EcfSubmitResponseCompanyIdentification, sequenceConsumed bool) *EcfStatusResponse

NewEcfStatusResponse instantiates a new EcfStatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEcfStatusResponseWithDefaults added in v0.0.7

func NewEcfStatusResponseWithDefaults() *EcfStatusResponse

NewEcfStatusResponseWithDefaults instantiates a new EcfStatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EcfStatusResponse) GetCompanyIdentification added in v0.0.19

func (o *EcfStatusResponse) GetCompanyIdentification() EcfSubmitResponseCompanyIdentification

GetCompanyIdentification returns the CompanyIdentification field value

func (*EcfStatusResponse) GetCompanyIdentificationOk added in v0.0.19

func (o *EcfStatusResponse) GetCompanyIdentificationOk() (*EcfSubmitResponseCompanyIdentification, bool)

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

func (*EcfStatusResponse) GetContingencyMessage added in v0.0.19

func (o *EcfStatusResponse) GetContingencyMessage() string

GetContingencyMessage returns the ContingencyMessage field value if set, zero value otherwise.

func (*EcfStatusResponse) GetContingencyMessageOk added in v0.0.19

func (o *EcfStatusResponse) GetContingencyMessageOk() (*string, bool)

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

func (*EcfStatusResponse) GetContingencyMode added in v0.0.19

func (o *EcfStatusResponse) GetContingencyMode() bool

GetContingencyMode returns the ContingencyMode field value if set, zero value otherwise.

func (*EcfStatusResponse) GetContingencyModeOk added in v0.0.19

func (o *EcfStatusResponse) GetContingencyModeOk() (*bool, bool)

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

func (*EcfStatusResponse) GetDocumentNumber added in v0.0.19

func (o *EcfStatusResponse) GetDocumentNumber() string

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

func (*EcfStatusResponse) GetDocumentNumberOk added in v0.0.19

func (o *EcfStatusResponse) GetDocumentNumberOk() (*string, bool)

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

func (*EcfStatusResponse) GetDocumentStampUrl added in v0.0.19

func (o *EcfStatusResponse) GetDocumentStampUrl() string

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

func (*EcfStatusResponse) GetDocumentStampUrlOk added in v0.0.19

func (o *EcfStatusResponse) GetDocumentStampUrlOk() (*string, bool)

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

func (*EcfStatusResponse) GetEncf added in v0.0.7

func (o *EcfStatusResponse) GetEncf() string

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

func (*EcfStatusResponse) GetEncfOk added in v0.0.7

func (o *EcfStatusResponse) GetEncfOk() (*string, bool)

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

func (*EcfStatusResponse) GetGovernmentResponse added in v0.0.19

func (o *EcfStatusResponse) GetGovernmentResponse() map[string]interface{}

GetGovernmentResponse returns the GovernmentResponse field value if set, zero value otherwise.

func (*EcfStatusResponse) GetGovernmentResponseOk added in v0.0.19

func (o *EcfStatusResponse) GetGovernmentResponseOk() (map[string]interface{}, bool)

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

func (*EcfStatusResponse) GetId added in v0.0.19

func (o *EcfStatusResponse) GetId() string

GetId returns the Id field value

func (*EcfStatusResponse) GetIdOk added in v0.0.19

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

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

func (*EcfStatusResponse) GetLegalStatus added in v0.0.19

func (o *EcfStatusResponse) GetLegalStatus() string

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

func (*EcfStatusResponse) GetLegalStatusOk added in v0.0.19

func (o *EcfStatusResponse) GetLegalStatusOk() (*string, bool)

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

func (*EcfStatusResponse) GetPdf added in v0.0.19

func (o *EcfStatusResponse) GetPdf() string

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

func (*EcfStatusResponse) GetPdfOk added in v0.0.19

func (o *EcfStatusResponse) GetPdfOk() (*string, bool)

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

func (*EcfStatusResponse) GetSecurityCode added in v0.0.19

func (o *EcfStatusResponse) GetSecurityCode() string

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

func (*EcfStatusResponse) GetSecurityCodeOk added in v0.0.19

func (o *EcfStatusResponse) GetSecurityCodeOk() (*string, bool)

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

func (*EcfStatusResponse) GetSequenceConsumed added in v0.0.19

func (o *EcfStatusResponse) GetSequenceConsumed() bool

GetSequenceConsumed returns the SequenceConsumed field value

func (*EcfStatusResponse) GetSequenceConsumedOk added in v0.0.19

func (o *EcfStatusResponse) GetSequenceConsumedOk() (*bool, bool)

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

func (*EcfStatusResponse) GetSignatureDate added in v0.0.19

func (o *EcfStatusResponse) GetSignatureDate() time.Time

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

func (*EcfStatusResponse) GetSignatureDateOk added in v0.0.19

func (o *EcfStatusResponse) GetSignatureDateOk() (*time.Time, bool)

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

func (*EcfStatusResponse) GetStampDate added in v0.0.19

func (o *EcfStatusResponse) GetStampDate() string

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

func (*EcfStatusResponse) GetStampDateOk added in v0.0.19

func (o *EcfStatusResponse) GetStampDateOk() (*string, bool)

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

func (*EcfStatusResponse) GetStatus added in v0.0.7

func (o *EcfStatusResponse) GetStatus() string

GetStatus returns the Status field value

func (*EcfStatusResponse) GetStatusOk added in v0.0.7

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

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

func (*EcfStatusResponse) GetTrackId added in v0.0.7

func (o *EcfStatusResponse) GetTrackId() string

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

func (*EcfStatusResponse) GetTrackIdOk added in v0.0.7

func (o *EcfStatusResponse) GetTrackIdOk() (*string, bool)

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

func (*EcfStatusResponse) GetXmlUrl added in v0.0.19

func (o *EcfStatusResponse) GetXmlUrl() string

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

func (*EcfStatusResponse) GetXmlUrlOk added in v0.0.19

func (o *EcfStatusResponse) GetXmlUrlOk() (*string, bool)

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

func (*EcfStatusResponse) HasContingencyMessage added in v0.0.19

func (o *EcfStatusResponse) HasContingencyMessage() bool

HasContingencyMessage returns a boolean if a field has been set.

func (*EcfStatusResponse) HasContingencyMode added in v0.0.19

func (o *EcfStatusResponse) HasContingencyMode() bool

HasContingencyMode returns a boolean if a field has been set.

func (*EcfStatusResponse) HasDocumentNumber added in v0.0.19

func (o *EcfStatusResponse) HasDocumentNumber() bool

HasDocumentNumber returns a boolean if a field has been set.

func (*EcfStatusResponse) HasDocumentStampUrl added in v0.0.19

func (o *EcfStatusResponse) HasDocumentStampUrl() bool

HasDocumentStampUrl returns a boolean if a field has been set.

func (*EcfStatusResponse) HasEncf added in v0.0.7

func (o *EcfStatusResponse) HasEncf() bool

HasEncf returns a boolean if a field has been set.

func (*EcfStatusResponse) HasGovernmentResponse added in v0.0.19

func (o *EcfStatusResponse) HasGovernmentResponse() bool

HasGovernmentResponse returns a boolean if a field has been set.

func (*EcfStatusResponse) HasLegalStatus added in v0.0.19

func (o *EcfStatusResponse) HasLegalStatus() bool

HasLegalStatus returns a boolean if a field has been set.

func (*EcfStatusResponse) HasPdf added in v0.0.19

func (o *EcfStatusResponse) HasPdf() bool

HasPdf returns a boolean if a field has been set.

func (*EcfStatusResponse) HasSecurityCode added in v0.0.19

func (o *EcfStatusResponse) HasSecurityCode() bool

HasSecurityCode returns a boolean if a field has been set.

func (*EcfStatusResponse) HasSignatureDate added in v0.0.19

func (o *EcfStatusResponse) HasSignatureDate() bool

HasSignatureDate returns a boolean if a field has been set.

func (*EcfStatusResponse) HasStampDate added in v0.0.19

func (o *EcfStatusResponse) HasStampDate() bool

HasStampDate returns a boolean if a field has been set.

func (*EcfStatusResponse) HasTrackId added in v0.0.7

func (o *EcfStatusResponse) HasTrackId() bool

HasTrackId returns a boolean if a field has been set.

func (*EcfStatusResponse) HasXmlUrl added in v0.0.19

func (o *EcfStatusResponse) HasXmlUrl() bool

HasXmlUrl returns a boolean if a field has been set.

func (EcfStatusResponse) MarshalJSON added in v0.0.7

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

func (*EcfStatusResponse) SetCompanyIdentification added in v0.0.19

func (o *EcfStatusResponse) SetCompanyIdentification(v EcfSubmitResponseCompanyIdentification)

SetCompanyIdentification sets field value

func (*EcfStatusResponse) SetContingencyMessage added in v0.0.19

func (o *EcfStatusResponse) SetContingencyMessage(v string)

SetContingencyMessage gets a reference to the given string and assigns it to the ContingencyMessage field.

func (*EcfStatusResponse) SetContingencyMode added in v0.0.19

func (o *EcfStatusResponse) SetContingencyMode(v bool)

SetContingencyMode gets a reference to the given bool and assigns it to the ContingencyMode field.

func (*EcfStatusResponse) SetDocumentNumber added in v0.0.19

func (o *EcfStatusResponse) SetDocumentNumber(v string)

SetDocumentNumber gets a reference to the given NullableString and assigns it to the DocumentNumber field.

func (*EcfStatusResponse) SetDocumentNumberNil added in v0.0.19

func (o *EcfStatusResponse) SetDocumentNumberNil()

SetDocumentNumberNil sets the value for DocumentNumber to be an explicit nil

func (*EcfStatusResponse) SetDocumentStampUrl added in v0.0.19

func (o *EcfStatusResponse) SetDocumentStampUrl(v string)

SetDocumentStampUrl gets a reference to the given NullableString and assigns it to the DocumentStampUrl field.

func (*EcfStatusResponse) SetDocumentStampUrlNil added in v0.0.19

func (o *EcfStatusResponse) SetDocumentStampUrlNil()

SetDocumentStampUrlNil sets the value for DocumentStampUrl to be an explicit nil

func (*EcfStatusResponse) SetEncf added in v0.0.7

func (o *EcfStatusResponse) SetEncf(v string)

SetEncf gets a reference to the given NullableString and assigns it to the Encf field.

func (*EcfStatusResponse) SetEncfNil added in v0.0.19

func (o *EcfStatusResponse) SetEncfNil()

SetEncfNil sets the value for Encf to be an explicit nil

func (*EcfStatusResponse) SetGovernmentResponse added in v0.0.19

func (o *EcfStatusResponse) SetGovernmentResponse(v map[string]interface{})

SetGovernmentResponse gets a reference to the given map[string]interface{} and assigns it to the GovernmentResponse field.

func (*EcfStatusResponse) SetId added in v0.0.19

func (o *EcfStatusResponse) SetId(v string)

SetId sets field value

func (*EcfStatusResponse) SetLegalStatus added in v0.0.19

func (o *EcfStatusResponse) SetLegalStatus(v string)

SetLegalStatus gets a reference to the given NullableString and assigns it to the LegalStatus field.

func (*EcfStatusResponse) SetLegalStatusNil added in v0.0.19

func (o *EcfStatusResponse) SetLegalStatusNil()

SetLegalStatusNil sets the value for LegalStatus to be an explicit nil

func (*EcfStatusResponse) SetPdf added in v0.0.19

func (o *EcfStatusResponse) SetPdf(v string)

SetPdf gets a reference to the given NullableString and assigns it to the Pdf field.

func (*EcfStatusResponse) SetPdfNil added in v0.0.19

func (o *EcfStatusResponse) SetPdfNil()

SetPdfNil sets the value for Pdf to be an explicit nil

func (*EcfStatusResponse) SetSecurityCode added in v0.0.19

func (o *EcfStatusResponse) SetSecurityCode(v string)

SetSecurityCode gets a reference to the given NullableString and assigns it to the SecurityCode field.

func (*EcfStatusResponse) SetSecurityCodeNil added in v0.0.19

func (o *EcfStatusResponse) SetSecurityCodeNil()

SetSecurityCodeNil sets the value for SecurityCode to be an explicit nil

func (*EcfStatusResponse) SetSequenceConsumed added in v0.0.19

func (o *EcfStatusResponse) SetSequenceConsumed(v bool)

SetSequenceConsumed sets field value

func (*EcfStatusResponse) SetSignatureDate added in v0.0.19

func (o *EcfStatusResponse) SetSignatureDate(v time.Time)

SetSignatureDate gets a reference to the given NullableTime and assigns it to the SignatureDate field.

func (*EcfStatusResponse) SetSignatureDateNil added in v0.0.19

func (o *EcfStatusResponse) SetSignatureDateNil()

SetSignatureDateNil sets the value for SignatureDate to be an explicit nil

func (*EcfStatusResponse) SetStampDate added in v0.0.19

func (o *EcfStatusResponse) SetStampDate(v string)

SetStampDate gets a reference to the given NullableString and assigns it to the StampDate field.

func (*EcfStatusResponse) SetStampDateNil added in v0.0.19

func (o *EcfStatusResponse) SetStampDateNil()

SetStampDateNil sets the value for StampDate to be an explicit nil

func (*EcfStatusResponse) SetStatus added in v0.0.7

func (o *EcfStatusResponse) SetStatus(v string)

SetStatus sets field value

func (*EcfStatusResponse) SetTrackId added in v0.0.7

func (o *EcfStatusResponse) SetTrackId(v string)

SetTrackId gets a reference to the given NullableString and assigns it to the TrackId field.

func (*EcfStatusResponse) SetTrackIdNil added in v0.0.19

func (o *EcfStatusResponse) SetTrackIdNil()

SetTrackIdNil sets the value for TrackId to be an explicit nil

func (*EcfStatusResponse) SetXmlUrl added in v0.0.19

func (o *EcfStatusResponse) SetXmlUrl(v string)

SetXmlUrl gets a reference to the given NullableString and assigns it to the XmlUrl field.

func (*EcfStatusResponse) SetXmlUrlNil added in v0.0.19

func (o *EcfStatusResponse) SetXmlUrlNil()

SetXmlUrlNil sets the value for XmlUrl to be an explicit nil

func (EcfStatusResponse) ToMap added in v0.0.7

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

func (*EcfStatusResponse) UnmarshalJSON added in v0.0.19

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

func (*EcfStatusResponse) UnsetDocumentNumber added in v0.0.19

func (o *EcfStatusResponse) UnsetDocumentNumber()

UnsetDocumentNumber ensures that no value is present for DocumentNumber, not even an explicit nil

func (*EcfStatusResponse) UnsetDocumentStampUrl added in v0.0.19

func (o *EcfStatusResponse) UnsetDocumentStampUrl()

UnsetDocumentStampUrl ensures that no value is present for DocumentStampUrl, not even an explicit nil

func (*EcfStatusResponse) UnsetEncf added in v0.0.19

func (o *EcfStatusResponse) UnsetEncf()

UnsetEncf ensures that no value is present for Encf, not even an explicit nil

func (*EcfStatusResponse) UnsetLegalStatus added in v0.0.19

func (o *EcfStatusResponse) UnsetLegalStatus()

UnsetLegalStatus ensures that no value is present for LegalStatus, not even an explicit nil

func (*EcfStatusResponse) UnsetPdf added in v0.0.19

func (o *EcfStatusResponse) UnsetPdf()

UnsetPdf ensures that no value is present for Pdf, not even an explicit nil

func (*EcfStatusResponse) UnsetSecurityCode added in v0.0.19

func (o *EcfStatusResponse) UnsetSecurityCode()

UnsetSecurityCode ensures that no value is present for SecurityCode, not even an explicit nil

func (*EcfStatusResponse) UnsetSignatureDate added in v0.0.19

func (o *EcfStatusResponse) UnsetSignatureDate()

UnsetSignatureDate ensures that no value is present for SignatureDate, not even an explicit nil

func (*EcfStatusResponse) UnsetStampDate added in v0.0.19

func (o *EcfStatusResponse) UnsetStampDate()

UnsetStampDate ensures that no value is present for StampDate, not even an explicit nil

func (*EcfStatusResponse) UnsetTrackId added in v0.0.19

func (o *EcfStatusResponse) UnsetTrackId()

UnsetTrackId ensures that no value is present for TrackId, not even an explicit nil

func (*EcfStatusResponse) UnsetXmlUrl added in v0.0.19

func (o *EcfStatusResponse) UnsetXmlUrl()

UnsetXmlUrl ensures that no value is present for XmlUrl, not even an explicit nil

type EcfStatusResponseMensajesInner added in v0.0.7

type EcfStatusResponseMensajesInner struct {
	Codigo *string `json:"codigo,omitempty"`
	Valor  *string `json:"valor,omitempty"`
}

EcfStatusResponseMensajesInner struct for EcfStatusResponseMensajesInner

func NewEcfStatusResponseMensajesInner added in v0.0.7

func NewEcfStatusResponseMensajesInner() *EcfStatusResponseMensajesInner

NewEcfStatusResponseMensajesInner instantiates a new EcfStatusResponseMensajesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEcfStatusResponseMensajesInnerWithDefaults added in v0.0.7

func NewEcfStatusResponseMensajesInnerWithDefaults() *EcfStatusResponseMensajesInner

NewEcfStatusResponseMensajesInnerWithDefaults instantiates a new EcfStatusResponseMensajesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EcfStatusResponseMensajesInner) GetCodigo added in v0.0.7

func (o *EcfStatusResponseMensajesInner) GetCodigo() string

GetCodigo returns the Codigo field value if set, zero value otherwise.

func (*EcfStatusResponseMensajesInner) GetCodigoOk added in v0.0.7

func (o *EcfStatusResponseMensajesInner) GetCodigoOk() (*string, bool)

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

func (*EcfStatusResponseMensajesInner) GetValor added in v0.0.7

func (o *EcfStatusResponseMensajesInner) GetValor() string

GetValor returns the Valor field value if set, zero value otherwise.

func (*EcfStatusResponseMensajesInner) GetValorOk added in v0.0.7

func (o *EcfStatusResponseMensajesInner) GetValorOk() (*string, bool)

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

func (*EcfStatusResponseMensajesInner) HasCodigo added in v0.0.7

func (o *EcfStatusResponseMensajesInner) HasCodigo() bool

HasCodigo returns a boolean if a field has been set.

func (*EcfStatusResponseMensajesInner) HasValor added in v0.0.7

func (o *EcfStatusResponseMensajesInner) HasValor() bool

HasValor returns a boolean if a field has been set.

func (EcfStatusResponseMensajesInner) MarshalJSON added in v0.0.7

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

func (*EcfStatusResponseMensajesInner) SetCodigo added in v0.0.7

func (o *EcfStatusResponseMensajesInner) SetCodigo(v string)

SetCodigo gets a reference to the given string and assigns it to the Codigo field.

func (*EcfStatusResponseMensajesInner) SetValor added in v0.0.7

func (o *EcfStatusResponseMensajesInner) SetValor(v string)

SetValor gets a reference to the given string and assigns it to the Valor field.

func (EcfStatusResponseMensajesInner) ToMap added in v0.0.7

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

type EcfSubmissionResponse

type EcfSubmissionResponse struct {
	Success               bool                               `json:"success"`
	Id                    *string                            `json:"id,omitempty"`
	Status                *string                            `json:"status,omitempty"`
	StampDate             *string                            `json:"stampDate,omitempty"`
	CompanyIdentification *string                            `json:"companyIdentification,omitempty"`
	DocumentStampUrl      *string                            `json:"documentStampUrl,omitempty"`
	Pdf                   *string                            `json:"pdf,omitempty"`
	XmlUrl                *string                            `json:"xmlUrl,omitempty"`
	SignatureDate         *time.Time                         `json:"signatureDate,omitempty"`
	SequenceConsumed      *bool                              `json:"sequenceConsumed,omitempty"`
	DocumentId            *string                            `json:"documentId,omitempty"`
	DgiiResponse          *EcfSubmissionResponseDgiiResponse `json:"dgiiResponse,omitempty"`
	QrUrl                 *string                            `json:"qrUrl,omitempty"`
	SignatureTime         *time.Time                         `json:"signatureTime,omitempty"`
	SecurityCode          *string                            `json:"securityCode,omitempty"`
	Encf                  *string                            `json:"encf,omitempty"`
	DocumentType          *string                            `json:"documentType,omitempty"`
	PrintUrl              *string                            `json:"printUrl,omitempty"`
	IsSummary             *bool                              `json:"isSummary,omitempty"`
	AuthType              *string                            `json:"authType,omitempty"`
	Timestamp             *time.Time                         `json:"timestamp,omitempty"`
	Message               *string                            `json:"message,omitempty"`
	ContingencyMode       *bool                              `json:"contingencyMode,omitempty"`
	ContingencyMessage    *string                            `json:"contingencyMessage,omitempty"`
	EstimatedProcessTime  *string                            `json:"estimatedProcessTime,omitempty"`
}

EcfSubmissionResponse Response after submitting an e-CF. The submit flow may return an asynchronous 201 response with id/status fields.

func NewEcfSubmissionResponse

func NewEcfSubmissionResponse(success bool) *EcfSubmissionResponse

NewEcfSubmissionResponse instantiates a new EcfSubmissionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEcfSubmissionResponseWithDefaults

func NewEcfSubmissionResponseWithDefaults() *EcfSubmissionResponse

NewEcfSubmissionResponseWithDefaults instantiates a new EcfSubmissionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EcfSubmissionResponse) GetAuthType added in v0.0.7

func (o *EcfSubmissionResponse) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetAuthTypeOk added in v0.0.7

func (o *EcfSubmissionResponse) GetAuthTypeOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetContingencyMessage added in v0.0.16

func (o *EcfSubmissionResponse) GetContingencyMessage() string

GetContingencyMessage returns the ContingencyMessage field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetContingencyMessageOk added in v0.0.16

func (o *EcfSubmissionResponse) GetContingencyMessageOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetContingencyMode added in v0.0.7

func (o *EcfSubmissionResponse) GetContingencyMode() bool

GetContingencyMode returns the ContingencyMode field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetContingencyModeOk added in v0.0.7

func (o *EcfSubmissionResponse) GetContingencyModeOk() (*bool, bool)

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

func (*EcfSubmissionResponse) GetDgiiResponse added in v0.0.7

GetDgiiResponse returns the DgiiResponse field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetDgiiResponseOk added in v0.0.7

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

func (*EcfSubmissionResponse) GetDocumentId

func (o *EcfSubmissionResponse) GetDocumentId() string

GetDocumentId returns the DocumentId field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetDocumentIdOk

func (o *EcfSubmissionResponse) GetDocumentIdOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetDocumentType added in v0.0.7

func (o *EcfSubmissionResponse) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetDocumentTypeOk added in v0.0.7

func (o *EcfSubmissionResponse) GetDocumentTypeOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetEncf

func (o *EcfSubmissionResponse) GetEncf() string

GetEncf returns the Encf field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetEncfOk

func (o *EcfSubmissionResponse) GetEncfOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetEstimatedProcessTime added in v0.0.7

func (o *EcfSubmissionResponse) GetEstimatedProcessTime() string

GetEstimatedProcessTime returns the EstimatedProcessTime field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetEstimatedProcessTimeOk added in v0.0.7

func (o *EcfSubmissionResponse) GetEstimatedProcessTimeOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetIsSummary added in v0.0.10

func (o *EcfSubmissionResponse) GetIsSummary() bool

GetIsSummary returns the IsSummary field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetIsSummaryOk added in v0.0.10

func (o *EcfSubmissionResponse) GetIsSummaryOk() (*bool, bool)

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

func (*EcfSubmissionResponse) GetMessage

func (o *EcfSubmissionResponse) GetMessage() string

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

func (*EcfSubmissionResponse) GetMessageOk

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

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

func (*EcfSubmissionResponse) GetPrintUrl added in v0.0.7

func (o *EcfSubmissionResponse) GetPrintUrl() string

GetPrintUrl returns the PrintUrl field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetPrintUrlOk added in v0.0.7

func (o *EcfSubmissionResponse) GetPrintUrlOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetQrUrl added in v0.0.7

func (o *EcfSubmissionResponse) GetQrUrl() string

GetQrUrl returns the QrUrl field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetQrUrlOk added in v0.0.7

func (o *EcfSubmissionResponse) GetQrUrlOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetSecurityCode added in v0.0.7

func (o *EcfSubmissionResponse) GetSecurityCode() string

GetSecurityCode returns the SecurityCode field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetSecurityCodeOk added in v0.0.7

func (o *EcfSubmissionResponse) GetSecurityCodeOk() (*string, bool)

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

func (*EcfSubmissionResponse) GetSignatureTime added in v0.0.7

func (o *EcfSubmissionResponse) GetSignatureTime() time.Time

GetSignatureTime returns the SignatureTime field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetSignatureTimeOk added in v0.0.7

func (o *EcfSubmissionResponse) GetSignatureTimeOk() (*time.Time, bool)

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

func (*EcfSubmissionResponse) GetSuccess

func (o *EcfSubmissionResponse) GetSuccess() bool

GetSuccess returns the Success field value

func (*EcfSubmissionResponse) GetSuccessOk

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

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

func (*EcfSubmissionResponse) GetTimestamp added in v0.0.7

func (o *EcfSubmissionResponse) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*EcfSubmissionResponse) GetTimestampOk added in v0.0.7

func (o *EcfSubmissionResponse) GetTimestampOk() (*time.Time, bool)

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

func (*EcfSubmissionResponse) HasAuthType added in v0.0.7

func (o *EcfSubmissionResponse) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasContingencyMessage added in v0.0.16

func (o *EcfSubmissionResponse) HasContingencyMessage() bool

HasContingencyMessage returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasContingencyMode added in v0.0.7

func (o *EcfSubmissionResponse) HasContingencyMode() bool

HasContingencyMode returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasDgiiResponse added in v0.0.7

func (o *EcfSubmissionResponse) HasDgiiResponse() bool

HasDgiiResponse returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasDocumentId added in v0.0.7

func (o *EcfSubmissionResponse) HasDocumentId() bool

HasDocumentId returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasDocumentType added in v0.0.7

func (o *EcfSubmissionResponse) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasEncf

func (o *EcfSubmissionResponse) HasEncf() bool

HasEncf returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasEstimatedProcessTime added in v0.0.7

func (o *EcfSubmissionResponse) HasEstimatedProcessTime() bool

HasEstimatedProcessTime returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasIsSummary added in v0.0.10

func (o *EcfSubmissionResponse) HasIsSummary() bool

HasIsSummary returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasMessage

func (o *EcfSubmissionResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasPrintUrl added in v0.0.7

func (o *EcfSubmissionResponse) HasPrintUrl() bool

HasPrintUrl returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasQrUrl added in v0.0.7

func (o *EcfSubmissionResponse) HasQrUrl() bool

HasQrUrl returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasSecurityCode added in v0.0.7

func (o *EcfSubmissionResponse) HasSecurityCode() bool

HasSecurityCode returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasSignatureTime added in v0.0.7

func (o *EcfSubmissionResponse) HasSignatureTime() bool

HasSignatureTime returns a boolean if a field has been set.

func (*EcfSubmissionResponse) HasTimestamp added in v0.0.7

func (o *EcfSubmissionResponse) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (EcfSubmissionResponse) MarshalJSON

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

func (*EcfSubmissionResponse) SetAuthType added in v0.0.7

func (o *EcfSubmissionResponse) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*EcfSubmissionResponse) SetContingencyMessage added in v0.0.16

func (o *EcfSubmissionResponse) SetContingencyMessage(v string)

SetContingencyMessage gets a reference to the given string and assigns it to the ContingencyMessage field.

func (*EcfSubmissionResponse) SetContingencyMode added in v0.0.7

func (o *EcfSubmissionResponse) SetContingencyMode(v bool)

SetContingencyMode gets a reference to the given bool and assigns it to the ContingencyMode field.

func (*EcfSubmissionResponse) SetDgiiResponse added in v0.0.7

SetDgiiResponse gets a reference to the given EcfSubmissionResponseDgiiResponse and assigns it to the DgiiResponse field.

func (*EcfSubmissionResponse) SetDocumentId

func (o *EcfSubmissionResponse) SetDocumentId(v string)

SetDocumentId gets a reference to the given string and assigns it to the DocumentId field.

func (*EcfSubmissionResponse) SetDocumentType added in v0.0.7

func (o *EcfSubmissionResponse) SetDocumentType(v string)

SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.

func (*EcfSubmissionResponse) SetEncf

func (o *EcfSubmissionResponse) SetEncf(v string)

SetEncf gets a reference to the given string and assigns it to the Encf field.

func (*EcfSubmissionResponse) SetEstimatedProcessTime added in v0.0.7

func (o *EcfSubmissionResponse) SetEstimatedProcessTime(v string)

SetEstimatedProcessTime gets a reference to the given string and assigns it to the EstimatedProcessTime field.

func (*EcfSubmissionResponse) SetIsSummary added in v0.0.10

func (o *EcfSubmissionResponse) SetIsSummary(v bool)

SetIsSummary gets a reference to the given bool and assigns it to the IsSummary field.

func (*EcfSubmissionResponse) SetMessage

func (o *EcfSubmissionResponse) SetMessage(v string)

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

func (*EcfSubmissionResponse) SetPrintUrl added in v0.0.7

func (o *EcfSubmissionResponse) SetPrintUrl(v string)

SetPrintUrl gets a reference to the given string and assigns it to the PrintUrl field.

func (*EcfSubmissionResponse) SetQrUrl added in v0.0.7

func (o *EcfSubmissionResponse) SetQrUrl(v string)

SetQrUrl gets a reference to the given string and assigns it to the QrUrl field.

func (*EcfSubmissionResponse) SetSecurityCode added in v0.0.7

func (o *EcfSubmissionResponse) SetSecurityCode(v string)

SetSecurityCode gets a reference to the given string and assigns it to the SecurityCode field.

func (*EcfSubmissionResponse) SetSignatureTime added in v0.0.7

func (o *EcfSubmissionResponse) SetSignatureTime(v time.Time)

SetSignatureTime gets a reference to the given time.Time and assigns it to the SignatureTime field.

func (*EcfSubmissionResponse) SetSuccess

func (o *EcfSubmissionResponse) SetSuccess(v bool)

SetSuccess sets field value

func (*EcfSubmissionResponse) SetTimestamp added in v0.0.7

func (o *EcfSubmissionResponse) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (EcfSubmissionResponse) ToMap

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

func (*EcfSubmissionResponse) UnmarshalJSON

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

type EcfSubmissionResponseDgiiResponse added in v0.0.7

type EcfSubmissionResponseDgiiResponse struct {
	TrackId *string `json:"trackId,omitempty"`
	// Aprobado, Rechazado, En Proceso
	Estado         *string       `json:"estado,omitempty"`
	Rnc            *string       `json:"rnc,omitempty"`
	Encf           *string       `json:"encf,omitempty"`
	FechaRecepcion *time.Time    `json:"fechaRecepcion,omitempty"`
	Mensajes       []DgiiMessage `json:"mensajes,omitempty"`
}

EcfSubmissionResponseDgiiResponse struct for EcfSubmissionResponseDgiiResponse

func NewEcfSubmissionResponseDgiiResponse added in v0.0.7

func NewEcfSubmissionResponseDgiiResponse() *EcfSubmissionResponseDgiiResponse

NewEcfSubmissionResponseDgiiResponse instantiates a new EcfSubmissionResponseDgiiResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEcfSubmissionResponseDgiiResponseWithDefaults added in v0.0.7

func NewEcfSubmissionResponseDgiiResponseWithDefaults() *EcfSubmissionResponseDgiiResponse

NewEcfSubmissionResponseDgiiResponseWithDefaults instantiates a new EcfSubmissionResponseDgiiResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EcfSubmissionResponseDgiiResponse) GetEncf added in v0.0.10

GetEncf returns the Encf field value if set, zero value otherwise.

func (*EcfSubmissionResponseDgiiResponse) GetEncfOk added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) GetEncfOk() (*string, bool)

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

func (*EcfSubmissionResponseDgiiResponse) GetEstado added in v0.0.7

GetEstado returns the Estado field value if set, zero value otherwise.

func (*EcfSubmissionResponseDgiiResponse) GetEstadoOk added in v0.0.7

func (o *EcfSubmissionResponseDgiiResponse) GetEstadoOk() (*string, bool)

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

func (*EcfSubmissionResponseDgiiResponse) GetFechaRecepcion added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) GetFechaRecepcion() time.Time

GetFechaRecepcion returns the FechaRecepcion field value if set, zero value otherwise.

func (*EcfSubmissionResponseDgiiResponse) GetFechaRecepcionOk added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) GetFechaRecepcionOk() (*time.Time, bool)

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

func (*EcfSubmissionResponseDgiiResponse) GetMensajes added in v0.0.10

GetMensajes returns the Mensajes field value if set, zero value otherwise.

func (*EcfSubmissionResponseDgiiResponse) GetMensajesOk added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) GetMensajesOk() ([]DgiiMessage, bool)

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

func (*EcfSubmissionResponseDgiiResponse) GetRnc added in v0.0.10

GetRnc returns the Rnc field value if set, zero value otherwise.

func (*EcfSubmissionResponseDgiiResponse) GetRncOk added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) GetRncOk() (*string, bool)

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

func (*EcfSubmissionResponseDgiiResponse) GetTrackId added in v0.0.7

func (o *EcfSubmissionResponseDgiiResponse) GetTrackId() string

GetTrackId returns the TrackId field value if set, zero value otherwise.

func (*EcfSubmissionResponseDgiiResponse) GetTrackIdOk added in v0.0.7

func (o *EcfSubmissionResponseDgiiResponse) GetTrackIdOk() (*string, bool)

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

func (*EcfSubmissionResponseDgiiResponse) HasEncf added in v0.0.10

HasEncf returns a boolean if a field has been set.

func (*EcfSubmissionResponseDgiiResponse) HasEstado added in v0.0.7

func (o *EcfSubmissionResponseDgiiResponse) HasEstado() bool

HasEstado returns a boolean if a field has been set.

func (*EcfSubmissionResponseDgiiResponse) HasFechaRecepcion added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) HasFechaRecepcion() bool

HasFechaRecepcion returns a boolean if a field has been set.

func (*EcfSubmissionResponseDgiiResponse) HasMensajes added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) HasMensajes() bool

HasMensajes returns a boolean if a field has been set.

func (*EcfSubmissionResponseDgiiResponse) HasRnc added in v0.0.10

HasRnc returns a boolean if a field has been set.

func (*EcfSubmissionResponseDgiiResponse) HasTrackId added in v0.0.7

func (o *EcfSubmissionResponseDgiiResponse) HasTrackId() bool

HasTrackId returns a boolean if a field has been set.

func (EcfSubmissionResponseDgiiResponse) MarshalJSON added in v0.0.7

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

func (*EcfSubmissionResponseDgiiResponse) SetEncf added in v0.0.10

SetEncf gets a reference to the given string and assigns it to the Encf field.

func (*EcfSubmissionResponseDgiiResponse) SetEstado added in v0.0.7

func (o *EcfSubmissionResponseDgiiResponse) SetEstado(v string)

SetEstado gets a reference to the given string and assigns it to the Estado field.

func (*EcfSubmissionResponseDgiiResponse) SetFechaRecepcion added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) SetFechaRecepcion(v time.Time)

SetFechaRecepcion gets a reference to the given time.Time and assigns it to the FechaRecepcion field.

func (*EcfSubmissionResponseDgiiResponse) SetMensajes added in v0.0.10

func (o *EcfSubmissionResponseDgiiResponse) SetMensajes(v []DgiiMessage)

SetMensajes gets a reference to the given []DgiiMessage and assigns it to the Mensajes field.

func (*EcfSubmissionResponseDgiiResponse) SetRnc added in v0.0.10

SetRnc gets a reference to the given string and assigns it to the Rnc field.

func (*EcfSubmissionResponseDgiiResponse) SetTrackId added in v0.0.7

func (o *EcfSubmissionResponseDgiiResponse) SetTrackId(v string)

SetTrackId gets a reference to the given string and assigns it to the TrackId field.

func (EcfSubmissionResponseDgiiResponse) ToMap added in v0.0.7

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

type EcfSubmitResponse added in v0.0.19

type EcfSubmitResponse struct {
	// ID interno del documento. Úsalo para `GET /ecf/status/{id}`.
	Id string `json:"id"`
	// Fecha de emisión del documento (YYYY-MM-DD).
	StampDate NullableString `json:"stampDate,omitempty"`
	// Siempre `REGISTERED` al enviar. El estado fiscal llega vía webhook o polling.
	Status string `json:"status"`
	// Siempre `null` al enviar. Se actualiza tras la respuesta de DGII.
	LegalStatus           NullableString                         `json:"legalStatus,omitempty"`
	CompanyIdentification EcfSubmitResponseCompanyIdentification `json:"companyIdentification"`
	// Siempre `null` al enviar. Lo asigna DGII al procesar el documento.
	TrackId NullableString `json:"trackId,omitempty"`
	// Número de control electrónico (e-NCF). Igual a `encf`.
	DocumentNumber NullableString `json:"documentNumber,omitempty"`
	// Número e-NCF asignado al documento (ej. E310000000001).
	Encf NullableString `json:"encf,omitempty"`
	// `true` si el documento fue emitido en modo contingencia (DGII no disponible).
	ContingencyMode *bool `json:"contingencyMode,omitempty"`
	// Mensaje oficial DGII cuando `contingencyMode` es `true`.
	ContingencyMessage NullableString `json:"contingencyMessage,omitempty"`
	// URL del código QR del documento.
	DocumentStampUrl NullableString `json:"documentStampUrl,omitempty"`
	// URL pre-firmada del PDF (expira en 1 hora).
	Pdf NullableString `json:"pdf,omitempty"`
	// URL pre-firmada del XML firmado (expira en 1 hora).
	XmlUrl NullableString `json:"xmlUrl,omitempty"`
	// Fecha y hora de la firma digital.
	SignatureDate NullableTime `json:"signatureDate,omitempty"`
	// Código de seguridad del documento.
	SecurityCode NullableString `json:"securityCode,omitempty"`
	// Siempre `false` en el submit. Se confirma como `true` solo tras respuesta de DGII.
	SequenceConsumed bool `json:"sequenceConsumed"`
}

EcfSubmitResponse Respuesta del endpoint POST submit. El documento fue registrado y firmado localmente. `status` siempre es `REGISTERED`. `legalStatus` y `trackId` siempre son `null` en este momento — se populan una vez que la DGII procesa el documento. Usa `GET /ecf/status/{id}` o escucha el webhook `document.status_changed` para obtener el resultado fiscal final.

func NewEcfSubmitResponse added in v0.0.19

func NewEcfSubmitResponse(id string, status string, companyIdentification EcfSubmitResponseCompanyIdentification, sequenceConsumed bool) *EcfSubmitResponse

NewEcfSubmitResponse instantiates a new EcfSubmitResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEcfSubmitResponseWithDefaults added in v0.0.19

func NewEcfSubmitResponseWithDefaults() *EcfSubmitResponse

NewEcfSubmitResponseWithDefaults instantiates a new EcfSubmitResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EcfSubmitResponse) GetCompanyIdentification added in v0.0.19

func (o *EcfSubmitResponse) GetCompanyIdentification() EcfSubmitResponseCompanyIdentification

GetCompanyIdentification returns the CompanyIdentification field value

func (*EcfSubmitResponse) GetCompanyIdentificationOk added in v0.0.19

func (o *EcfSubmitResponse) GetCompanyIdentificationOk() (*EcfSubmitResponseCompanyIdentification, bool)

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

func (*EcfSubmitResponse) GetContingencyMessage added in v0.0.19

func (o *EcfSubmitResponse) GetContingencyMessage() string

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

func (*EcfSubmitResponse) GetContingencyMessageOk added in v0.0.19

func (o *EcfSubmitResponse) GetContingencyMessageOk() (*string, bool)

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

func (*EcfSubmitResponse) GetContingencyMode added in v0.0.19

func (o *EcfSubmitResponse) GetContingencyMode() bool

GetContingencyMode returns the ContingencyMode field value if set, zero value otherwise.

func (*EcfSubmitResponse) GetContingencyModeOk added in v0.0.19

func (o *EcfSubmitResponse) GetContingencyModeOk() (*bool, bool)

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

func (*EcfSubmitResponse) GetDocumentNumber added in v0.0.19

func (o *EcfSubmitResponse) GetDocumentNumber() string

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

func (*EcfSubmitResponse) GetDocumentNumberOk added in v0.0.19

func (o *EcfSubmitResponse) GetDocumentNumberOk() (*string, bool)

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

func (*EcfSubmitResponse) GetDocumentStampUrl added in v0.0.19

func (o *EcfSubmitResponse) GetDocumentStampUrl() string

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

func (*EcfSubmitResponse) GetDocumentStampUrlOk added in v0.0.19

func (o *EcfSubmitResponse) GetDocumentStampUrlOk() (*string, bool)

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

func (*EcfSubmitResponse) GetEncf added in v0.0.19

func (o *EcfSubmitResponse) GetEncf() string

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

func (*EcfSubmitResponse) GetEncfOk added in v0.0.19

func (o *EcfSubmitResponse) GetEncfOk() (*string, bool)

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

func (*EcfSubmitResponse) GetId added in v0.0.19

func (o *EcfSubmitResponse) GetId() string

GetId returns the Id field value

func (*EcfSubmitResponse) GetIdOk added in v0.0.19

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

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

func (*EcfSubmitResponse) GetLegalStatus added in v0.0.19

func (o *EcfSubmitResponse) GetLegalStatus() string

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

func (*EcfSubmitResponse) GetLegalStatusOk added in v0.0.19

func (o *EcfSubmitResponse) GetLegalStatusOk() (*string, bool)

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

func (*EcfSubmitResponse) GetPdf added in v0.0.19

func (o *EcfSubmitResponse) GetPdf() string

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

func (*EcfSubmitResponse) GetPdfOk added in v0.0.19

func (o *EcfSubmitResponse) GetPdfOk() (*string, bool)

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

func (*EcfSubmitResponse) GetSecurityCode added in v0.0.19

func (o *EcfSubmitResponse) GetSecurityCode() string

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

func (*EcfSubmitResponse) GetSecurityCodeOk added in v0.0.19

func (o *EcfSubmitResponse) GetSecurityCodeOk() (*string, bool)

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

func (*EcfSubmitResponse) GetSequenceConsumed added in v0.0.19

func (o *EcfSubmitResponse) GetSequenceConsumed() bool

GetSequenceConsumed returns the SequenceConsumed field value

func (*EcfSubmitResponse) GetSequenceConsumedOk added in v0.0.19

func (o *EcfSubmitResponse) GetSequenceConsumedOk() (*bool, bool)

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

func (*EcfSubmitResponse) GetSignatureDate added in v0.0.19

func (o *EcfSubmitResponse) GetSignatureDate() time.Time

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

func (*EcfSubmitResponse) GetSignatureDateOk added in v0.0.19

func (o *EcfSubmitResponse) GetSignatureDateOk() (*time.Time, bool)

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

func (*EcfSubmitResponse) GetStampDate added in v0.0.19

func (o *EcfSubmitResponse) GetStampDate() string

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

func (*EcfSubmitResponse) GetStampDateOk added in v0.0.19

func (o *EcfSubmitResponse) GetStampDateOk() (*string, bool)

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

func (*EcfSubmitResponse) GetStatus added in v0.0.19

func (o *EcfSubmitResponse) GetStatus() string

GetStatus returns the Status field value

func (*EcfSubmitResponse) GetStatusOk added in v0.0.19

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

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

func (*EcfSubmitResponse) GetTrackId added in v0.0.19

func (o *EcfSubmitResponse) GetTrackId() string

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

func (*EcfSubmitResponse) GetTrackIdOk added in v0.0.19

func (o *EcfSubmitResponse) GetTrackIdOk() (*string, bool)

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

func (*EcfSubmitResponse) GetXmlUrl added in v0.0.19

func (o *EcfSubmitResponse) GetXmlUrl() string

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

func (*EcfSubmitResponse) GetXmlUrlOk added in v0.0.19

func (o *EcfSubmitResponse) GetXmlUrlOk() (*string, bool)

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

func (*EcfSubmitResponse) HasContingencyMessage added in v0.0.19

func (o *EcfSubmitResponse) HasContingencyMessage() bool

HasContingencyMessage returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasContingencyMode added in v0.0.19

func (o *EcfSubmitResponse) HasContingencyMode() bool

HasContingencyMode returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasDocumentNumber added in v0.0.19

func (o *EcfSubmitResponse) HasDocumentNumber() bool

HasDocumentNumber returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasDocumentStampUrl added in v0.0.19

func (o *EcfSubmitResponse) HasDocumentStampUrl() bool

HasDocumentStampUrl returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasEncf added in v0.0.19

func (o *EcfSubmitResponse) HasEncf() bool

HasEncf returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasLegalStatus added in v0.0.19

func (o *EcfSubmitResponse) HasLegalStatus() bool

HasLegalStatus returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasPdf added in v0.0.19

func (o *EcfSubmitResponse) HasPdf() bool

HasPdf returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasSecurityCode added in v0.0.19

func (o *EcfSubmitResponse) HasSecurityCode() bool

HasSecurityCode returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasSignatureDate added in v0.0.19

func (o *EcfSubmitResponse) HasSignatureDate() bool

HasSignatureDate returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasStampDate added in v0.0.19

func (o *EcfSubmitResponse) HasStampDate() bool

HasStampDate returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasTrackId added in v0.0.19

func (o *EcfSubmitResponse) HasTrackId() bool

HasTrackId returns a boolean if a field has been set.

func (*EcfSubmitResponse) HasXmlUrl added in v0.0.19

func (o *EcfSubmitResponse) HasXmlUrl() bool

HasXmlUrl returns a boolean if a field has been set.

func (EcfSubmitResponse) MarshalJSON added in v0.0.19

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

func (*EcfSubmitResponse) SetCompanyIdentification added in v0.0.19

func (o *EcfSubmitResponse) SetCompanyIdentification(v EcfSubmitResponseCompanyIdentification)

SetCompanyIdentification sets field value

func (*EcfSubmitResponse) SetContingencyMessage added in v0.0.19

func (o *EcfSubmitResponse) SetContingencyMessage(v string)

SetContingencyMessage gets a reference to the given NullableString and assigns it to the ContingencyMessage field.

func (*EcfSubmitResponse) SetContingencyMessageNil added in v0.0.19

func (o *EcfSubmitResponse) SetContingencyMessageNil()

SetContingencyMessageNil sets the value for ContingencyMessage to be an explicit nil

func (*EcfSubmitResponse) SetContingencyMode added in v0.0.19

func (o *EcfSubmitResponse) SetContingencyMode(v bool)

SetContingencyMode gets a reference to the given bool and assigns it to the ContingencyMode field.

func (*EcfSubmitResponse) SetDocumentNumber added in v0.0.19

func (o *EcfSubmitResponse) SetDocumentNumber(v string)

SetDocumentNumber gets a reference to the given NullableString and assigns it to the DocumentNumber field.

func (*EcfSubmitResponse) SetDocumentNumberNil added in v0.0.19

func (o *EcfSubmitResponse) SetDocumentNumberNil()

SetDocumentNumberNil sets the value for DocumentNumber to be an explicit nil

func (*EcfSubmitResponse) SetDocumentStampUrl added in v0.0.19

func (o *EcfSubmitResponse) SetDocumentStampUrl(v string)

SetDocumentStampUrl gets a reference to the given NullableString and assigns it to the DocumentStampUrl field.

func (*EcfSubmitResponse) SetDocumentStampUrlNil added in v0.0.19

func (o *EcfSubmitResponse) SetDocumentStampUrlNil()

SetDocumentStampUrlNil sets the value for DocumentStampUrl to be an explicit nil

func (*EcfSubmitResponse) SetEncf added in v0.0.19

func (o *EcfSubmitResponse) SetEncf(v string)

SetEncf gets a reference to the given NullableString and assigns it to the Encf field.

func (*EcfSubmitResponse) SetEncfNil added in v0.0.19

func (o *EcfSubmitResponse) SetEncfNil()

SetEncfNil sets the value for Encf to be an explicit nil

func (*EcfSubmitResponse) SetId added in v0.0.19

func (o *EcfSubmitResponse) SetId(v string)

SetId sets field value

func (*EcfSubmitResponse) SetLegalStatus added in v0.0.19

func (o *EcfSubmitResponse) SetLegalStatus(v string)

SetLegalStatus gets a reference to the given NullableString and assigns it to the LegalStatus field.

func (*EcfSubmitResponse) SetLegalStatusNil added in v0.0.19

func (o *EcfSubmitResponse) SetLegalStatusNil()

SetLegalStatusNil sets the value for LegalStatus to be an explicit nil

func (*EcfSubmitResponse) SetPdf added in v0.0.19

func (o *EcfSubmitResponse) SetPdf(v string)

SetPdf gets a reference to the given NullableString and assigns it to the Pdf field.

func (*EcfSubmitResponse) SetPdfNil added in v0.0.19

func (o *EcfSubmitResponse) SetPdfNil()

SetPdfNil sets the value for Pdf to be an explicit nil

func (*EcfSubmitResponse) SetSecurityCode added in v0.0.19

func (o *EcfSubmitResponse) SetSecurityCode(v string)

SetSecurityCode gets a reference to the given NullableString and assigns it to the SecurityCode field.

func (*EcfSubmitResponse) SetSecurityCodeNil added in v0.0.19

func (o *EcfSubmitResponse) SetSecurityCodeNil()

SetSecurityCodeNil sets the value for SecurityCode to be an explicit nil

func (*EcfSubmitResponse) SetSequenceConsumed added in v0.0.19

func (o *EcfSubmitResponse) SetSequenceConsumed(v bool)

SetSequenceConsumed sets field value

func (*EcfSubmitResponse) SetSignatureDate added in v0.0.19

func (o *EcfSubmitResponse) SetSignatureDate(v time.Time)

SetSignatureDate gets a reference to the given NullableTime and assigns it to the SignatureDate field.

func (*EcfSubmitResponse) SetSignatureDateNil added in v0.0.19

func (o *EcfSubmitResponse) SetSignatureDateNil()

SetSignatureDateNil sets the value for SignatureDate to be an explicit nil

func (*EcfSubmitResponse) SetStampDate added in v0.0.19

func (o *EcfSubmitResponse) SetStampDate(v string)

SetStampDate gets a reference to the given NullableString and assigns it to the StampDate field.

func (*EcfSubmitResponse) SetStampDateNil added in v0.0.19

func (o *EcfSubmitResponse) SetStampDateNil()

SetStampDateNil sets the value for StampDate to be an explicit nil

func (*EcfSubmitResponse) SetStatus added in v0.0.19

func (o *EcfSubmitResponse) SetStatus(v string)

SetStatus sets field value

func (*EcfSubmitResponse) SetTrackId added in v0.0.19

func (o *EcfSubmitResponse) SetTrackId(v string)

SetTrackId gets a reference to the given NullableString and assigns it to the TrackId field.

func (*EcfSubmitResponse) SetTrackIdNil added in v0.0.19

func (o *EcfSubmitResponse) SetTrackIdNil()

SetTrackIdNil sets the value for TrackId to be an explicit nil

func (*EcfSubmitResponse) SetXmlUrl added in v0.0.19

func (o *EcfSubmitResponse) SetXmlUrl(v string)

SetXmlUrl gets a reference to the given NullableString and assigns it to the XmlUrl field.

func (*EcfSubmitResponse) SetXmlUrlNil added in v0.0.19

func (o *EcfSubmitResponse) SetXmlUrlNil()

SetXmlUrlNil sets the value for XmlUrl to be an explicit nil

func (EcfSubmitResponse) ToMap added in v0.0.19

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

func (*EcfSubmitResponse) UnmarshalJSON added in v0.0.19

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

func (*EcfSubmitResponse) UnsetContingencyMessage added in v0.0.19

func (o *EcfSubmitResponse) UnsetContingencyMessage()

UnsetContingencyMessage ensures that no value is present for ContingencyMessage, not even an explicit nil

func (*EcfSubmitResponse) UnsetDocumentNumber added in v0.0.19

func (o *EcfSubmitResponse) UnsetDocumentNumber()

UnsetDocumentNumber ensures that no value is present for DocumentNumber, not even an explicit nil

func (*EcfSubmitResponse) UnsetDocumentStampUrl added in v0.0.19

func (o *EcfSubmitResponse) UnsetDocumentStampUrl()

UnsetDocumentStampUrl ensures that no value is present for DocumentStampUrl, not even an explicit nil

func (*EcfSubmitResponse) UnsetEncf added in v0.0.19

func (o *EcfSubmitResponse) UnsetEncf()

UnsetEncf ensures that no value is present for Encf, not even an explicit nil

func (*EcfSubmitResponse) UnsetLegalStatus added in v0.0.19

func (o *EcfSubmitResponse) UnsetLegalStatus()

UnsetLegalStatus ensures that no value is present for LegalStatus, not even an explicit nil

func (*EcfSubmitResponse) UnsetPdf added in v0.0.19

func (o *EcfSubmitResponse) UnsetPdf()

UnsetPdf ensures that no value is present for Pdf, not even an explicit nil

func (*EcfSubmitResponse) UnsetSecurityCode added in v0.0.19

func (o *EcfSubmitResponse) UnsetSecurityCode()

UnsetSecurityCode ensures that no value is present for SecurityCode, not even an explicit nil

func (*EcfSubmitResponse) UnsetSignatureDate added in v0.0.19

func (o *EcfSubmitResponse) UnsetSignatureDate()

UnsetSignatureDate ensures that no value is present for SignatureDate, not even an explicit nil

func (*EcfSubmitResponse) UnsetStampDate added in v0.0.19

func (o *EcfSubmitResponse) UnsetStampDate()

UnsetStampDate ensures that no value is present for StampDate, not even an explicit nil

func (*EcfSubmitResponse) UnsetTrackId added in v0.0.19

func (o *EcfSubmitResponse) UnsetTrackId()

UnsetTrackId ensures that no value is present for TrackId, not even an explicit nil

func (*EcfSubmitResponse) UnsetXmlUrl added in v0.0.19

func (o *EcfSubmitResponse) UnsetXmlUrl()

UnsetXmlUrl ensures that no value is present for XmlUrl, not even an explicit nil

type EcfSubmitResponseCompanyIdentification added in v0.0.19

type EcfSubmitResponseCompanyIdentification struct {
	Int32  *int32
	String *string
}

EcfSubmitResponseCompanyIdentification - RNC de la empresa emisora.

func Int32AsEcfSubmitResponseCompanyIdentification added in v0.0.19

func Int32AsEcfSubmitResponseCompanyIdentification(v *int32) EcfSubmitResponseCompanyIdentification

int32AsEcfSubmitResponseCompanyIdentification is a convenience function that returns int32 wrapped in EcfSubmitResponseCompanyIdentification

func StringAsEcfSubmitResponseCompanyIdentification added in v0.0.19

func StringAsEcfSubmitResponseCompanyIdentification(v *string) EcfSubmitResponseCompanyIdentification

stringAsEcfSubmitResponseCompanyIdentification is a convenience function that returns string wrapped in EcfSubmitResponseCompanyIdentification

func (*EcfSubmitResponseCompanyIdentification) GetActualInstance added in v0.0.19

func (obj *EcfSubmitResponseCompanyIdentification) GetActualInstance() interface{}

Get the actual instance

func (EcfSubmitResponseCompanyIdentification) GetActualInstanceValue added in v0.0.19

func (obj EcfSubmitResponseCompanyIdentification) GetActualInstanceValue() interface{}

Get the actual instance value

func (EcfSubmitResponseCompanyIdentification) MarshalJSON added in v0.0.19

func (src EcfSubmitResponseCompanyIdentification) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*EcfSubmitResponseCompanyIdentification) UnmarshalJSON added in v0.0.19

func (dst *EcfSubmitResponseCompanyIdentification) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ElectronicDocument

type ElectronicDocument struct {
	// Siempre \"1.0\".
	Version     *string     `json:"version,omitempty"`
	InvoiceType InvoiceType `json:"invoiceType"`
	// Número e-NCF (ej. E310000000001 — E + 2 dígitos tipo + 9 dígitos secuencia). **Opcional**: si se omite, el sistema lo asigna automáticamente desde la secuencia registrada para ese `invoiceType`.
	InvoiceNumber *string `json:"invoiceNumber,omitempty"`
	// Optional Group ID for batch processing
	GroupId        *string    `json:"groupId,omitempty"`
	IssueDate      time.Time  `json:"issueDate"`
	ExpirationDate *time.Time `json:"expirationDate,omitempty"`
	// Credit Notes only: 0=affected invoice <=30 days, 1=>30 days
	CreditNoteIndicator      *string `json:"creditNoteIndicator,omitempty"`
	DeferredSendingIndicator *string `json:"deferredSendingIndicator,omitempty"`
	TaxedAmountIndicator     *string `json:"taxedAmountIndicator,omitempty"`
	// 01=Operations, 02=Financial, 03=Extraordinary, 04=Leasing, 05=Assets, 06=Other
	IncomeType *string `json:"incomeType,omitempty"`
	// 1=Cash, 2=Credit, 3=Mixed
	PaymentType     *string    `json:"paymentType,omitempty"`
	PaymentDeadline *time.Time `json:"paymentDeadline,omitempty"`
	PaymentTerms    *string    `json:"paymentTerms,omitempty"`
	// Payment breakdown. Required.
	PaymentForms         []PaymentForm `json:"paymentForms"`
	PaymentAccountType   *AccountType  `json:"paymentAccountType,omitempty"`
	PaymentAccountNumber *string       `json:"paymentAccountNumber,omitempty"`
	PaymentBank          *string       `json:"paymentBank,omitempty"`
	ServiceStartDate     *time.Time    `json:"serviceStartDate,omitempty"`
	ServiceEndDate       *time.Time    `json:"serviceEndDate,omitempty"`
	TotalPages           *int32        `json:"totalPages,omitempty"`
	// RNC of the issuing company.
	IssuerRNC              *string               `json:"issuerRNC,omitempty"`
	IssuerBusinessName     *string               `json:"issuerBusinessName,omitempty"`
	IssuerCommercialName   *string               `json:"issuerCommercialName,omitempty"`
	BranchName             *string               `json:"branchName,omitempty"`
	IssuerAddress          *string               `json:"issuerAddress,omitempty"`
	MunicipalityCode       *string               `json:"municipalityCode,omitempty"`
	ProvinceCode           *string               `json:"provinceCode,omitempty"`
	IssuerPhones           []string              `json:"issuerPhones,omitempty"`
	IssuerEmail            *string               `json:"issuerEmail,omitempty"`
	IssuerWebsite          *string               `json:"issuerWebsite,omitempty"`
	IssuerEconomicActivity *string               `json:"issuerEconomicActivity,omitempty"`
	SellerCode             *string               `json:"sellerCode,omitempty"`
	InternalInvoiceNumber  *string               `json:"internalInvoiceNumber,omitempty"`
	InternalOrderNumber    *int32                `json:"internalOrderNumber,omitempty"`
	SalesZone              *string               `json:"salesZone,omitempty"`
	SalesRoute             *string               `json:"salesRoute,omitempty"`
	AdditionalIssuerInfo   *string               `json:"additionalIssuerInfo,omitempty"`
	Buyer                  *Buyer                `json:"buyer,omitempty"`
	Items                  []Item                `json:"items"`
	Totals                 Totals                `json:"totals"`
	Transport              *Transport            `json:"transport,omitempty"`
	AdditionalInfo         *AdditionalInfo       `json:"additionalInfo,omitempty"`
	AlternativeCurrency    *AlternativeCurrency  `json:"alternativeCurrency,omitempty"`
	ReferenceInfo          *ReferenceInfo        `json:"referenceInfo,omitempty"`
	Subtotals              *Subtotal             `json:"subtotals,omitempty"`
	DiscountsOrSurcharges  []DiscountOrSurcharge `json:"discountsOrSurcharges,omitempty"`
	Pages                  *Page                 `json:"pages,omitempty"`
}

ElectronicDocument Payload del comprobante fiscal electrónico (e-CF). **invoiceNumber**: opcional. Si tienes una secuencia registrada en la API, el sistema asigna el siguiente e-NCF automáticamente según el `invoiceType`. Usa `GET /tax-sequences/next?invoiceType=31` solo si necesitas conocer el número antes de enviar. **environment**: NO va en el body. Se especifica en el path del endpoint: `POST /{environment}/ecf/submit` (ej. `TesteCF` o `eCF`).

func NewElectronicDocument

func NewElectronicDocument(invoiceType InvoiceType, issueDate time.Time, paymentForms []PaymentForm, items []Item, totals Totals) *ElectronicDocument

NewElectronicDocument instantiates a new ElectronicDocument object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewElectronicDocumentWithDefaults

func NewElectronicDocumentWithDefaults() *ElectronicDocument

NewElectronicDocumentWithDefaults instantiates a new ElectronicDocument object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ElectronicDocument) GetAdditionalInfo

func (o *ElectronicDocument) GetAdditionalInfo() AdditionalInfo

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

func (*ElectronicDocument) GetAdditionalInfoOk

func (o *ElectronicDocument) GetAdditionalInfoOk() (*AdditionalInfo, bool)

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

func (*ElectronicDocument) GetAdditionalIssuerInfo added in v0.0.7

func (o *ElectronicDocument) GetAdditionalIssuerInfo() string

GetAdditionalIssuerInfo returns the AdditionalIssuerInfo field value if set, zero value otherwise.

func (*ElectronicDocument) GetAdditionalIssuerInfoOk added in v0.0.7

func (o *ElectronicDocument) GetAdditionalIssuerInfoOk() (*string, bool)

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

func (*ElectronicDocument) GetAlternativeCurrency

func (o *ElectronicDocument) GetAlternativeCurrency() AlternativeCurrency

GetAlternativeCurrency returns the AlternativeCurrency field value if set, zero value otherwise.

func (*ElectronicDocument) GetAlternativeCurrencyOk

func (o *ElectronicDocument) GetAlternativeCurrencyOk() (*AlternativeCurrency, bool)

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

func (*ElectronicDocument) GetBranchName added in v0.0.7

func (o *ElectronicDocument) GetBranchName() string

GetBranchName returns the BranchName field value if set, zero value otherwise.

func (*ElectronicDocument) GetBranchNameOk added in v0.0.7

func (o *ElectronicDocument) GetBranchNameOk() (*string, bool)

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

func (*ElectronicDocument) GetBuyer

func (o *ElectronicDocument) GetBuyer() Buyer

GetBuyer returns the Buyer field value if set, zero value otherwise.

func (*ElectronicDocument) GetBuyerOk

func (o *ElectronicDocument) GetBuyerOk() (*Buyer, bool)

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

func (*ElectronicDocument) GetCreditNoteIndicator

func (o *ElectronicDocument) GetCreditNoteIndicator() string

GetCreditNoteIndicator returns the CreditNoteIndicator field value if set, zero value otherwise.

func (*ElectronicDocument) GetCreditNoteIndicatorOk

func (o *ElectronicDocument) GetCreditNoteIndicatorOk() (*string, bool)

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

func (*ElectronicDocument) GetDeferredSendingIndicator added in v0.0.7

func (o *ElectronicDocument) GetDeferredSendingIndicator() string

GetDeferredSendingIndicator returns the DeferredSendingIndicator field value if set, zero value otherwise.

func (*ElectronicDocument) GetDeferredSendingIndicatorOk added in v0.0.7

func (o *ElectronicDocument) GetDeferredSendingIndicatorOk() (*string, bool)

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

func (*ElectronicDocument) GetDiscountsOrSurcharges

func (o *ElectronicDocument) GetDiscountsOrSurcharges() []DiscountOrSurcharge

GetDiscountsOrSurcharges returns the DiscountsOrSurcharges field value if set, zero value otherwise.

func (*ElectronicDocument) GetDiscountsOrSurchargesOk

func (o *ElectronicDocument) GetDiscountsOrSurchargesOk() ([]DiscountOrSurcharge, bool)

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

func (*ElectronicDocument) GetExpirationDate

func (o *ElectronicDocument) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*ElectronicDocument) GetExpirationDateOk

func (o *ElectronicDocument) GetExpirationDateOk() (*time.Time, bool)

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

func (*ElectronicDocument) GetGroupId added in v0.0.10

func (o *ElectronicDocument) GetGroupId() string

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*ElectronicDocument) GetGroupIdOk added in v0.0.10

func (o *ElectronicDocument) GetGroupIdOk() (*string, bool)

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

func (*ElectronicDocument) GetIncomeType

func (o *ElectronicDocument) GetIncomeType() string

GetIncomeType returns the IncomeType field value if set, zero value otherwise.

func (*ElectronicDocument) GetIncomeTypeOk

func (o *ElectronicDocument) GetIncomeTypeOk() (*string, bool)

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

func (*ElectronicDocument) GetInternalInvoiceNumber added in v0.0.7

func (o *ElectronicDocument) GetInternalInvoiceNumber() string

GetInternalInvoiceNumber returns the InternalInvoiceNumber field value if set, zero value otherwise.

func (*ElectronicDocument) GetInternalInvoiceNumberOk added in v0.0.7

func (o *ElectronicDocument) GetInternalInvoiceNumberOk() (*string, bool)

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

func (*ElectronicDocument) GetInternalOrderNumber added in v0.0.7

func (o *ElectronicDocument) GetInternalOrderNumber() int32

GetInternalOrderNumber returns the InternalOrderNumber field value if set, zero value otherwise.

func (*ElectronicDocument) GetInternalOrderNumberOk added in v0.0.7

func (o *ElectronicDocument) GetInternalOrderNumberOk() (*int32, bool)

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

func (*ElectronicDocument) GetInvoiceNumber

func (o *ElectronicDocument) GetInvoiceNumber() string

GetInvoiceNumber returns the InvoiceNumber field value if set, zero value otherwise.

func (*ElectronicDocument) GetInvoiceNumberOk

func (o *ElectronicDocument) GetInvoiceNumberOk() (*string, bool)

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

func (*ElectronicDocument) GetInvoiceType

func (o *ElectronicDocument) GetInvoiceType() InvoiceType

GetInvoiceType returns the InvoiceType field value

func (*ElectronicDocument) GetInvoiceTypeOk

func (o *ElectronicDocument) GetInvoiceTypeOk() (*InvoiceType, bool)

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

func (*ElectronicDocument) GetIssueDate

func (o *ElectronicDocument) GetIssueDate() time.Time

GetIssueDate returns the IssueDate field value

func (*ElectronicDocument) GetIssueDateOk

func (o *ElectronicDocument) GetIssueDateOk() (*time.Time, bool)

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

func (*ElectronicDocument) GetIssuerAddress added in v0.0.7

func (o *ElectronicDocument) GetIssuerAddress() string

GetIssuerAddress returns the IssuerAddress field value if set, zero value otherwise.

func (*ElectronicDocument) GetIssuerAddressOk added in v0.0.7

func (o *ElectronicDocument) GetIssuerAddressOk() (*string, bool)

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

func (*ElectronicDocument) GetIssuerBusinessName

func (o *ElectronicDocument) GetIssuerBusinessName() string

GetIssuerBusinessName returns the IssuerBusinessName field value if set, zero value otherwise.

func (*ElectronicDocument) GetIssuerBusinessNameOk

func (o *ElectronicDocument) GetIssuerBusinessNameOk() (*string, bool)

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

func (*ElectronicDocument) GetIssuerCommercialName added in v0.0.7

func (o *ElectronicDocument) GetIssuerCommercialName() string

GetIssuerCommercialName returns the IssuerCommercialName field value if set, zero value otherwise.

func (*ElectronicDocument) GetIssuerCommercialNameOk added in v0.0.7

func (o *ElectronicDocument) GetIssuerCommercialNameOk() (*string, bool)

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

func (*ElectronicDocument) GetIssuerEconomicActivity added in v0.0.7

func (o *ElectronicDocument) GetIssuerEconomicActivity() string

GetIssuerEconomicActivity returns the IssuerEconomicActivity field value if set, zero value otherwise.

func (*ElectronicDocument) GetIssuerEconomicActivityOk added in v0.0.7

func (o *ElectronicDocument) GetIssuerEconomicActivityOk() (*string, bool)

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

func (*ElectronicDocument) GetIssuerEmail

func (o *ElectronicDocument) GetIssuerEmail() string

GetIssuerEmail returns the IssuerEmail field value if set, zero value otherwise.

func (*ElectronicDocument) GetIssuerEmailOk

func (o *ElectronicDocument) GetIssuerEmailOk() (*string, bool)

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

func (*ElectronicDocument) GetIssuerPhones

func (o *ElectronicDocument) GetIssuerPhones() []string

GetIssuerPhones returns the IssuerPhones field value if set, zero value otherwise.

func (*ElectronicDocument) GetIssuerPhonesOk

func (o *ElectronicDocument) GetIssuerPhonesOk() ([]string, bool)

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

func (*ElectronicDocument) GetIssuerRNC

func (o *ElectronicDocument) GetIssuerRNC() string

GetIssuerRNC returns the IssuerRNC field value if set, zero value otherwise.

func (*ElectronicDocument) GetIssuerRNCOk

func (o *ElectronicDocument) GetIssuerRNCOk() (*string, bool)

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

func (*ElectronicDocument) GetIssuerWebsite added in v0.0.7

func (o *ElectronicDocument) GetIssuerWebsite() string

GetIssuerWebsite returns the IssuerWebsite field value if set, zero value otherwise.

func (*ElectronicDocument) GetIssuerWebsiteOk added in v0.0.7

func (o *ElectronicDocument) GetIssuerWebsiteOk() (*string, bool)

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

func (*ElectronicDocument) GetItems

func (o *ElectronicDocument) GetItems() []Item

GetItems returns the Items field value

func (*ElectronicDocument) GetItemsOk

func (o *ElectronicDocument) GetItemsOk() ([]Item, bool)

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

func (*ElectronicDocument) GetMunicipalityCode added in v0.0.7

func (o *ElectronicDocument) GetMunicipalityCode() string

GetMunicipalityCode returns the MunicipalityCode field value if set, zero value otherwise.

func (*ElectronicDocument) GetMunicipalityCodeOk added in v0.0.7

func (o *ElectronicDocument) GetMunicipalityCodeOk() (*string, bool)

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

func (*ElectronicDocument) GetPages

func (o *ElectronicDocument) GetPages() Page

GetPages returns the Pages field value if set, zero value otherwise.

func (*ElectronicDocument) GetPagesOk

func (o *ElectronicDocument) GetPagesOk() (*Page, bool)

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

func (*ElectronicDocument) GetPaymentAccountNumber

func (o *ElectronicDocument) GetPaymentAccountNumber() string

GetPaymentAccountNumber returns the PaymentAccountNumber field value if set, zero value otherwise.

func (*ElectronicDocument) GetPaymentAccountNumberOk

func (o *ElectronicDocument) GetPaymentAccountNumberOk() (*string, bool)

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

func (*ElectronicDocument) GetPaymentAccountType

func (o *ElectronicDocument) GetPaymentAccountType() AccountType

GetPaymentAccountType returns the PaymentAccountType field value if set, zero value otherwise.

func (*ElectronicDocument) GetPaymentAccountTypeOk

func (o *ElectronicDocument) GetPaymentAccountTypeOk() (*AccountType, bool)

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

func (*ElectronicDocument) GetPaymentBank

func (o *ElectronicDocument) GetPaymentBank() string

GetPaymentBank returns the PaymentBank field value if set, zero value otherwise.

func (*ElectronicDocument) GetPaymentBankOk

func (o *ElectronicDocument) GetPaymentBankOk() (*string, bool)

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

func (*ElectronicDocument) GetPaymentDeadline

func (o *ElectronicDocument) GetPaymentDeadline() time.Time

GetPaymentDeadline returns the PaymentDeadline field value if set, zero value otherwise.

func (*ElectronicDocument) GetPaymentDeadlineOk

func (o *ElectronicDocument) GetPaymentDeadlineOk() (*time.Time, bool)

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

func (*ElectronicDocument) GetPaymentForms added in v0.0.7

func (o *ElectronicDocument) GetPaymentForms() []PaymentForm

GetPaymentForms returns the PaymentForms field value

func (*ElectronicDocument) GetPaymentFormsOk added in v0.0.7

func (o *ElectronicDocument) GetPaymentFormsOk() ([]PaymentForm, bool)

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

func (*ElectronicDocument) GetPaymentTerms

func (o *ElectronicDocument) GetPaymentTerms() string

GetPaymentTerms returns the PaymentTerms field value if set, zero value otherwise.

func (*ElectronicDocument) GetPaymentTermsOk

func (o *ElectronicDocument) GetPaymentTermsOk() (*string, bool)

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

func (*ElectronicDocument) GetPaymentType

func (o *ElectronicDocument) GetPaymentType() string

GetPaymentType returns the PaymentType field value if set, zero value otherwise.

func (*ElectronicDocument) GetPaymentTypeOk

func (o *ElectronicDocument) GetPaymentTypeOk() (*string, bool)

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

func (*ElectronicDocument) GetProvinceCode added in v0.0.7

func (o *ElectronicDocument) GetProvinceCode() string

GetProvinceCode returns the ProvinceCode field value if set, zero value otherwise.

func (*ElectronicDocument) GetProvinceCodeOk added in v0.0.7

func (o *ElectronicDocument) GetProvinceCodeOk() (*string, bool)

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

func (*ElectronicDocument) GetReferenceInfo

func (o *ElectronicDocument) GetReferenceInfo() ReferenceInfo

GetReferenceInfo returns the ReferenceInfo field value if set, zero value otherwise.

func (*ElectronicDocument) GetReferenceInfoOk

func (o *ElectronicDocument) GetReferenceInfoOk() (*ReferenceInfo, bool)

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

func (*ElectronicDocument) GetSalesRoute added in v0.0.7

func (o *ElectronicDocument) GetSalesRoute() string

GetSalesRoute returns the SalesRoute field value if set, zero value otherwise.

func (*ElectronicDocument) GetSalesRouteOk added in v0.0.7

func (o *ElectronicDocument) GetSalesRouteOk() (*string, bool)

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

func (*ElectronicDocument) GetSalesZone added in v0.0.7

func (o *ElectronicDocument) GetSalesZone() string

GetSalesZone returns the SalesZone field value if set, zero value otherwise.

func (*ElectronicDocument) GetSalesZoneOk added in v0.0.7

func (o *ElectronicDocument) GetSalesZoneOk() (*string, bool)

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

func (*ElectronicDocument) GetSellerCode added in v0.0.7

func (o *ElectronicDocument) GetSellerCode() string

GetSellerCode returns the SellerCode field value if set, zero value otherwise.

func (*ElectronicDocument) GetSellerCodeOk added in v0.0.7

func (o *ElectronicDocument) GetSellerCodeOk() (*string, bool)

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

func (*ElectronicDocument) GetServiceEndDate added in v0.0.7

func (o *ElectronicDocument) GetServiceEndDate() time.Time

GetServiceEndDate returns the ServiceEndDate field value if set, zero value otherwise.

func (*ElectronicDocument) GetServiceEndDateOk added in v0.0.7

func (o *ElectronicDocument) GetServiceEndDateOk() (*time.Time, bool)

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

func (*ElectronicDocument) GetServiceStartDate added in v0.0.7

func (o *ElectronicDocument) GetServiceStartDate() time.Time

GetServiceStartDate returns the ServiceStartDate field value if set, zero value otherwise.

func (*ElectronicDocument) GetServiceStartDateOk added in v0.0.7

func (o *ElectronicDocument) GetServiceStartDateOk() (*time.Time, bool)

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

func (*ElectronicDocument) GetSubtotals

func (o *ElectronicDocument) GetSubtotals() Subtotal

GetSubtotals returns the Subtotals field value if set, zero value otherwise.

func (*ElectronicDocument) GetSubtotalsOk

func (o *ElectronicDocument) GetSubtotalsOk() (*Subtotal, bool)

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

func (*ElectronicDocument) GetTaxedAmountIndicator added in v0.0.7

func (o *ElectronicDocument) GetTaxedAmountIndicator() string

GetTaxedAmountIndicator returns the TaxedAmountIndicator field value if set, zero value otherwise.

func (*ElectronicDocument) GetTaxedAmountIndicatorOk added in v0.0.7

func (o *ElectronicDocument) GetTaxedAmountIndicatorOk() (*string, bool)

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

func (*ElectronicDocument) GetTotalPages added in v0.0.7

func (o *ElectronicDocument) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*ElectronicDocument) GetTotalPagesOk added in v0.0.7

func (o *ElectronicDocument) GetTotalPagesOk() (*int32, bool)

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

func (*ElectronicDocument) GetTotals

func (o *ElectronicDocument) GetTotals() Totals

GetTotals returns the Totals field value

func (*ElectronicDocument) GetTotalsOk

func (o *ElectronicDocument) GetTotalsOk() (*Totals, bool)

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

func (*ElectronicDocument) GetTransport

func (o *ElectronicDocument) GetTransport() Transport

GetTransport returns the Transport field value if set, zero value otherwise.

func (*ElectronicDocument) GetTransportOk

func (o *ElectronicDocument) GetTransportOk() (*Transport, bool)

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

func (*ElectronicDocument) GetVersion

func (o *ElectronicDocument) GetVersion() string

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

func (*ElectronicDocument) GetVersionOk

func (o *ElectronicDocument) GetVersionOk() (*string, 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 (*ElectronicDocument) HasAdditionalInfo

func (o *ElectronicDocument) HasAdditionalInfo() bool

HasAdditionalInfo returns a boolean if a field has been set.

func (*ElectronicDocument) HasAdditionalIssuerInfo added in v0.0.7

func (o *ElectronicDocument) HasAdditionalIssuerInfo() bool

HasAdditionalIssuerInfo returns a boolean if a field has been set.

func (*ElectronicDocument) HasAlternativeCurrency

func (o *ElectronicDocument) HasAlternativeCurrency() bool

HasAlternativeCurrency returns a boolean if a field has been set.

func (*ElectronicDocument) HasBranchName added in v0.0.7

func (o *ElectronicDocument) HasBranchName() bool

HasBranchName returns a boolean if a field has been set.

func (*ElectronicDocument) HasBuyer

func (o *ElectronicDocument) HasBuyer() bool

HasBuyer returns a boolean if a field has been set.

func (*ElectronicDocument) HasCreditNoteIndicator

func (o *ElectronicDocument) HasCreditNoteIndicator() bool

HasCreditNoteIndicator returns a boolean if a field has been set.

func (*ElectronicDocument) HasDeferredSendingIndicator added in v0.0.7

func (o *ElectronicDocument) HasDeferredSendingIndicator() bool

HasDeferredSendingIndicator returns a boolean if a field has been set.

func (*ElectronicDocument) HasDiscountsOrSurcharges

func (o *ElectronicDocument) HasDiscountsOrSurcharges() bool

HasDiscountsOrSurcharges returns a boolean if a field has been set.

func (*ElectronicDocument) HasExpirationDate

func (o *ElectronicDocument) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*ElectronicDocument) HasGroupId added in v0.0.10

func (o *ElectronicDocument) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*ElectronicDocument) HasIncomeType

func (o *ElectronicDocument) HasIncomeType() bool

HasIncomeType returns a boolean if a field has been set.

func (*ElectronicDocument) HasInternalInvoiceNumber added in v0.0.7

func (o *ElectronicDocument) HasInternalInvoiceNumber() bool

HasInternalInvoiceNumber returns a boolean if a field has been set.

func (*ElectronicDocument) HasInternalOrderNumber added in v0.0.7

func (o *ElectronicDocument) HasInternalOrderNumber() bool

HasInternalOrderNumber returns a boolean if a field has been set.

func (*ElectronicDocument) HasInvoiceNumber added in v0.0.10

func (o *ElectronicDocument) HasInvoiceNumber() bool

HasInvoiceNumber returns a boolean if a field has been set.

func (*ElectronicDocument) HasIssuerAddress added in v0.0.7

func (o *ElectronicDocument) HasIssuerAddress() bool

HasIssuerAddress returns a boolean if a field has been set.

func (*ElectronicDocument) HasIssuerBusinessName

func (o *ElectronicDocument) HasIssuerBusinessName() bool

HasIssuerBusinessName returns a boolean if a field has been set.

func (*ElectronicDocument) HasIssuerCommercialName added in v0.0.7

func (o *ElectronicDocument) HasIssuerCommercialName() bool

HasIssuerCommercialName returns a boolean if a field has been set.

func (*ElectronicDocument) HasIssuerEconomicActivity added in v0.0.7

func (o *ElectronicDocument) HasIssuerEconomicActivity() bool

HasIssuerEconomicActivity returns a boolean if a field has been set.

func (*ElectronicDocument) HasIssuerEmail

func (o *ElectronicDocument) HasIssuerEmail() bool

HasIssuerEmail returns a boolean if a field has been set.

func (*ElectronicDocument) HasIssuerPhones

func (o *ElectronicDocument) HasIssuerPhones() bool

HasIssuerPhones returns a boolean if a field has been set.

func (*ElectronicDocument) HasIssuerRNC

func (o *ElectronicDocument) HasIssuerRNC() bool

HasIssuerRNC returns a boolean if a field has been set.

func (*ElectronicDocument) HasIssuerWebsite added in v0.0.7

func (o *ElectronicDocument) HasIssuerWebsite() bool

HasIssuerWebsite returns a boolean if a field has been set.

func (*ElectronicDocument) HasMunicipalityCode added in v0.0.7

func (o *ElectronicDocument) HasMunicipalityCode() bool

HasMunicipalityCode returns a boolean if a field has been set.

func (*ElectronicDocument) HasPages

func (o *ElectronicDocument) HasPages() bool

HasPages returns a boolean if a field has been set.

func (*ElectronicDocument) HasPaymentAccountNumber

func (o *ElectronicDocument) HasPaymentAccountNumber() bool

HasPaymentAccountNumber returns a boolean if a field has been set.

func (*ElectronicDocument) HasPaymentAccountType

func (o *ElectronicDocument) HasPaymentAccountType() bool

HasPaymentAccountType returns a boolean if a field has been set.

func (*ElectronicDocument) HasPaymentBank

func (o *ElectronicDocument) HasPaymentBank() bool

HasPaymentBank returns a boolean if a field has been set.

func (*ElectronicDocument) HasPaymentDeadline

func (o *ElectronicDocument) HasPaymentDeadline() bool

HasPaymentDeadline returns a boolean if a field has been set.

func (*ElectronicDocument) HasPaymentTerms

func (o *ElectronicDocument) HasPaymentTerms() bool

HasPaymentTerms returns a boolean if a field has been set.

func (*ElectronicDocument) HasPaymentType

func (o *ElectronicDocument) HasPaymentType() bool

HasPaymentType returns a boolean if a field has been set.

func (*ElectronicDocument) HasProvinceCode added in v0.0.7

func (o *ElectronicDocument) HasProvinceCode() bool

HasProvinceCode returns a boolean if a field has been set.

func (*ElectronicDocument) HasReferenceInfo

func (o *ElectronicDocument) HasReferenceInfo() bool

HasReferenceInfo returns a boolean if a field has been set.

func (*ElectronicDocument) HasSalesRoute added in v0.0.7

func (o *ElectronicDocument) HasSalesRoute() bool

HasSalesRoute returns a boolean if a field has been set.

func (*ElectronicDocument) HasSalesZone added in v0.0.7

func (o *ElectronicDocument) HasSalesZone() bool

HasSalesZone returns a boolean if a field has been set.

func (*ElectronicDocument) HasSellerCode added in v0.0.7

func (o *ElectronicDocument) HasSellerCode() bool

HasSellerCode returns a boolean if a field has been set.

func (*ElectronicDocument) HasServiceEndDate added in v0.0.7

func (o *ElectronicDocument) HasServiceEndDate() bool

HasServiceEndDate returns a boolean if a field has been set.

func (*ElectronicDocument) HasServiceStartDate added in v0.0.7

func (o *ElectronicDocument) HasServiceStartDate() bool

HasServiceStartDate returns a boolean if a field has been set.

func (*ElectronicDocument) HasSubtotals

func (o *ElectronicDocument) HasSubtotals() bool

HasSubtotals returns a boolean if a field has been set.

func (*ElectronicDocument) HasTaxedAmountIndicator added in v0.0.7

func (o *ElectronicDocument) HasTaxedAmountIndicator() bool

HasTaxedAmountIndicator returns a boolean if a field has been set.

func (*ElectronicDocument) HasTotalPages added in v0.0.7

func (o *ElectronicDocument) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (*ElectronicDocument) HasTransport

func (o *ElectronicDocument) HasTransport() bool

HasTransport returns a boolean if a field has been set.

func (*ElectronicDocument) HasVersion added in v0.0.19

func (o *ElectronicDocument) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ElectronicDocument) MarshalJSON

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

func (*ElectronicDocument) SetAdditionalInfo

func (o *ElectronicDocument) SetAdditionalInfo(v AdditionalInfo)

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

func (*ElectronicDocument) SetAdditionalIssuerInfo added in v0.0.7

func (o *ElectronicDocument) SetAdditionalIssuerInfo(v string)

SetAdditionalIssuerInfo gets a reference to the given string and assigns it to the AdditionalIssuerInfo field.

func (*ElectronicDocument) SetAlternativeCurrency

func (o *ElectronicDocument) SetAlternativeCurrency(v AlternativeCurrency)

SetAlternativeCurrency gets a reference to the given AlternativeCurrency and assigns it to the AlternativeCurrency field.

func (*ElectronicDocument) SetBranchName added in v0.0.7

func (o *ElectronicDocument) SetBranchName(v string)

SetBranchName gets a reference to the given string and assigns it to the BranchName field.

func (*ElectronicDocument) SetBuyer

func (o *ElectronicDocument) SetBuyer(v Buyer)

SetBuyer gets a reference to the given Buyer and assigns it to the Buyer field.

func (*ElectronicDocument) SetCreditNoteIndicator

func (o *ElectronicDocument) SetCreditNoteIndicator(v string)

SetCreditNoteIndicator gets a reference to the given string and assigns it to the CreditNoteIndicator field.

func (*ElectronicDocument) SetDeferredSendingIndicator added in v0.0.7

func (o *ElectronicDocument) SetDeferredSendingIndicator(v string)

SetDeferredSendingIndicator gets a reference to the given string and assigns it to the DeferredSendingIndicator field.

func (*ElectronicDocument) SetDiscountsOrSurcharges

func (o *ElectronicDocument) SetDiscountsOrSurcharges(v []DiscountOrSurcharge)

SetDiscountsOrSurcharges gets a reference to the given []DiscountOrSurcharge and assigns it to the DiscountsOrSurcharges field.

func (*ElectronicDocument) SetExpirationDate

func (o *ElectronicDocument) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*ElectronicDocument) SetGroupId added in v0.0.10

func (o *ElectronicDocument) SetGroupId(v string)

SetGroupId gets a reference to the given string and assigns it to the GroupId field.

func (*ElectronicDocument) SetIncomeType

func (o *ElectronicDocument) SetIncomeType(v string)

SetIncomeType gets a reference to the given string and assigns it to the IncomeType field.

func (*ElectronicDocument) SetInternalInvoiceNumber added in v0.0.7

func (o *ElectronicDocument) SetInternalInvoiceNumber(v string)

SetInternalInvoiceNumber gets a reference to the given string and assigns it to the InternalInvoiceNumber field.

func (*ElectronicDocument) SetInternalOrderNumber added in v0.0.7

func (o *ElectronicDocument) SetInternalOrderNumber(v int32)

SetInternalOrderNumber gets a reference to the given int32 and assigns it to the InternalOrderNumber field.

func (*ElectronicDocument) SetInvoiceNumber

func (o *ElectronicDocument) SetInvoiceNumber(v string)

SetInvoiceNumber gets a reference to the given string and assigns it to the InvoiceNumber field.

func (*ElectronicDocument) SetInvoiceType

func (o *ElectronicDocument) SetInvoiceType(v InvoiceType)

SetInvoiceType sets field value

func (*ElectronicDocument) SetIssueDate

func (o *ElectronicDocument) SetIssueDate(v time.Time)

SetIssueDate sets field value

func (*ElectronicDocument) SetIssuerAddress added in v0.0.7

func (o *ElectronicDocument) SetIssuerAddress(v string)

SetIssuerAddress gets a reference to the given string and assigns it to the IssuerAddress field.

func (*ElectronicDocument) SetIssuerBusinessName

func (o *ElectronicDocument) SetIssuerBusinessName(v string)

SetIssuerBusinessName gets a reference to the given string and assigns it to the IssuerBusinessName field.

func (*ElectronicDocument) SetIssuerCommercialName added in v0.0.7

func (o *ElectronicDocument) SetIssuerCommercialName(v string)

SetIssuerCommercialName gets a reference to the given string and assigns it to the IssuerCommercialName field.

func (*ElectronicDocument) SetIssuerEconomicActivity added in v0.0.7

func (o *ElectronicDocument) SetIssuerEconomicActivity(v string)

SetIssuerEconomicActivity gets a reference to the given string and assigns it to the IssuerEconomicActivity field.

func (*ElectronicDocument) SetIssuerEmail

func (o *ElectronicDocument) SetIssuerEmail(v string)

SetIssuerEmail gets a reference to the given string and assigns it to the IssuerEmail field.

func (*ElectronicDocument) SetIssuerPhones

func (o *ElectronicDocument) SetIssuerPhones(v []string)

SetIssuerPhones gets a reference to the given []string and assigns it to the IssuerPhones field.

func (*ElectronicDocument) SetIssuerRNC

func (o *ElectronicDocument) SetIssuerRNC(v string)

SetIssuerRNC gets a reference to the given string and assigns it to the IssuerRNC field.

func (*ElectronicDocument) SetIssuerWebsite added in v0.0.7

func (o *ElectronicDocument) SetIssuerWebsite(v string)

SetIssuerWebsite gets a reference to the given string and assigns it to the IssuerWebsite field.

func (*ElectronicDocument) SetItems

func (o *ElectronicDocument) SetItems(v []Item)

SetItems sets field value

func (*ElectronicDocument) SetMunicipalityCode added in v0.0.7

func (o *ElectronicDocument) SetMunicipalityCode(v string)

SetMunicipalityCode gets a reference to the given string and assigns it to the MunicipalityCode field.

func (*ElectronicDocument) SetPages

func (o *ElectronicDocument) SetPages(v Page)

SetPages gets a reference to the given Page and assigns it to the Pages field.

func (*ElectronicDocument) SetPaymentAccountNumber

func (o *ElectronicDocument) SetPaymentAccountNumber(v string)

SetPaymentAccountNumber gets a reference to the given string and assigns it to the PaymentAccountNumber field.

func (*ElectronicDocument) SetPaymentAccountType

func (o *ElectronicDocument) SetPaymentAccountType(v AccountType)

SetPaymentAccountType gets a reference to the given AccountType and assigns it to the PaymentAccountType field.

func (*ElectronicDocument) SetPaymentBank

func (o *ElectronicDocument) SetPaymentBank(v string)

SetPaymentBank gets a reference to the given string and assigns it to the PaymentBank field.

func (*ElectronicDocument) SetPaymentDeadline

func (o *ElectronicDocument) SetPaymentDeadline(v time.Time)

SetPaymentDeadline gets a reference to the given time.Time and assigns it to the PaymentDeadline field.

func (*ElectronicDocument) SetPaymentForms added in v0.0.7

func (o *ElectronicDocument) SetPaymentForms(v []PaymentForm)

SetPaymentForms sets field value

func (*ElectronicDocument) SetPaymentTerms

func (o *ElectronicDocument) SetPaymentTerms(v string)

SetPaymentTerms gets a reference to the given string and assigns it to the PaymentTerms field.

func (*ElectronicDocument) SetPaymentType

func (o *ElectronicDocument) SetPaymentType(v string)

SetPaymentType gets a reference to the given string and assigns it to the PaymentType field.

func (*ElectronicDocument) SetProvinceCode added in v0.0.7

func (o *ElectronicDocument) SetProvinceCode(v string)

SetProvinceCode gets a reference to the given string and assigns it to the ProvinceCode field.

func (*ElectronicDocument) SetReferenceInfo

func (o *ElectronicDocument) SetReferenceInfo(v ReferenceInfo)

SetReferenceInfo gets a reference to the given ReferenceInfo and assigns it to the ReferenceInfo field.

func (*ElectronicDocument) SetSalesRoute added in v0.0.7

func (o *ElectronicDocument) SetSalesRoute(v string)

SetSalesRoute gets a reference to the given string and assigns it to the SalesRoute field.

func (*ElectronicDocument) SetSalesZone added in v0.0.7

func (o *ElectronicDocument) SetSalesZone(v string)

SetSalesZone gets a reference to the given string and assigns it to the SalesZone field.

func (*ElectronicDocument) SetSellerCode added in v0.0.7

func (o *ElectronicDocument) SetSellerCode(v string)

SetSellerCode gets a reference to the given string and assigns it to the SellerCode field.

func (*ElectronicDocument) SetServiceEndDate added in v0.0.7

func (o *ElectronicDocument) SetServiceEndDate(v time.Time)

SetServiceEndDate gets a reference to the given time.Time and assigns it to the ServiceEndDate field.

func (*ElectronicDocument) SetServiceStartDate added in v0.0.7

func (o *ElectronicDocument) SetServiceStartDate(v time.Time)

SetServiceStartDate gets a reference to the given time.Time and assigns it to the ServiceStartDate field.

func (*ElectronicDocument) SetSubtotals

func (o *ElectronicDocument) SetSubtotals(v Subtotal)

SetSubtotals gets a reference to the given Subtotal and assigns it to the Subtotals field.

func (*ElectronicDocument) SetTaxedAmountIndicator added in v0.0.7

func (o *ElectronicDocument) SetTaxedAmountIndicator(v string)

SetTaxedAmountIndicator gets a reference to the given string and assigns it to the TaxedAmountIndicator field.

func (*ElectronicDocument) SetTotalPages added in v0.0.7

func (o *ElectronicDocument) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (*ElectronicDocument) SetTotals

func (o *ElectronicDocument) SetTotals(v Totals)

SetTotals sets field value

func (*ElectronicDocument) SetTransport

func (o *ElectronicDocument) SetTransport(v Transport)

SetTransport gets a reference to the given Transport and assigns it to the Transport field.

func (*ElectronicDocument) SetVersion

func (o *ElectronicDocument) SetVersion(v string)

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

func (ElectronicDocument) ToMap

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

func (*ElectronicDocument) UnmarshalJSON

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

type Environment

type Environment string

Environment TesteCF=testing no DGII, CerteCF=official certification, eCF=production

const (
	ENVIRONMENT_TESTE_CF Environment = "TesteCF"
	ENVIRONMENT_CERTE_CF Environment = "CerteCF"
	ENVIRONMENT_E_CF     Environment = "eCF"
)

List of Environment

func NewEnvironmentFromValue

func NewEnvironmentFromValue(v string) (*Environment, error)

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

func (Environment) IsValid

func (v Environment) IsValid() bool

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

func (Environment) Ptr

func (v Environment) Ptr() *Environment

Ptr returns reference to Environment value

func (*Environment) UnmarshalJSON

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

type ErrorResponse

type ErrorResponse struct {
	StatusCode *int32     `json:"statusCode,omitempty"`
	Message    *string    `json:"message,omitempty"`
	Error      *string    `json:"error,omitempty"`
	Timestamp  *time.Time `json:"timestamp,omitempty"`
}

ErrorResponse struct for ErrorResponse

func NewErrorResponse

func NewErrorResponse() *ErrorResponse

NewErrorResponse instantiates a new ErrorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorResponseWithDefaults

func NewErrorResponseWithDefaults() *ErrorResponse

NewErrorResponseWithDefaults instantiates a new ErrorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ErrorResponse) GetError added in v0.0.7

func (o *ErrorResponse) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorResponse) GetErrorOk added in v0.0.7

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

func (*ErrorResponse) GetMessage

func (o *ErrorResponse) GetMessage() string

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

func (*ErrorResponse) GetMessageOk

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

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

func (*ErrorResponse) GetStatusCode

func (o *ErrorResponse) GetStatusCode() int32

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*ErrorResponse) GetStatusCodeOk

func (o *ErrorResponse) 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 (*ErrorResponse) GetTimestamp

func (o *ErrorResponse) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ErrorResponse) GetTimestampOk

func (o *ErrorResponse) GetTimestampOk() (*time.Time, bool)

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

func (*ErrorResponse) HasError added in v0.0.7

func (o *ErrorResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*ErrorResponse) HasMessage

func (o *ErrorResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ErrorResponse) HasStatusCode

func (o *ErrorResponse) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (*ErrorResponse) HasTimestamp

func (o *ErrorResponse) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ErrorResponse) MarshalJSON

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

func (*ErrorResponse) SetError added in v0.0.7

func (o *ErrorResponse) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ErrorResponse) SetMessage

func (o *ErrorResponse) SetMessage(v string)

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

func (*ErrorResponse) SetStatusCode

func (o *ErrorResponse) SetStatusCode(v int32)

SetStatusCode gets a reference to the given int32 and assigns it to the StatusCode field.

func (*ErrorResponse) SetTimestamp

func (o *ErrorResponse) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (ErrorResponse) ToMap

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

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetEcfSubmissionHistory200Response added in v0.0.19

type GetEcfSubmissionHistory200Response struct {
	Data []EcfHistoryItem `json:"data,omitempty"`
	Meta *PaginationMeta  `json:"meta,omitempty"`
}

GetEcfSubmissionHistory200Response struct for GetEcfSubmissionHistory200Response

func NewGetEcfSubmissionHistory200Response added in v0.0.19

func NewGetEcfSubmissionHistory200Response() *GetEcfSubmissionHistory200Response

NewGetEcfSubmissionHistory200Response instantiates a new GetEcfSubmissionHistory200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetEcfSubmissionHistory200ResponseWithDefaults added in v0.0.19

func NewGetEcfSubmissionHistory200ResponseWithDefaults() *GetEcfSubmissionHistory200Response

NewGetEcfSubmissionHistory200ResponseWithDefaults instantiates a new GetEcfSubmissionHistory200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetEcfSubmissionHistory200Response) GetData added in v0.0.19

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

func (*GetEcfSubmissionHistory200Response) GetDataOk added in v0.0.19

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 (*GetEcfSubmissionHistory200Response) GetMeta added in v0.0.19

GetMeta returns the Meta field value if set, zero value otherwise.

func (*GetEcfSubmissionHistory200Response) GetMetaOk added in v0.0.19

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

func (*GetEcfSubmissionHistory200Response) HasData added in v0.0.19

HasData returns a boolean if a field has been set.

func (*GetEcfSubmissionHistory200Response) HasMeta added in v0.0.19

HasMeta returns a boolean if a field has been set.

func (GetEcfSubmissionHistory200Response) MarshalJSON added in v0.0.19

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

func (*GetEcfSubmissionHistory200Response) SetData added in v0.0.19

SetData gets a reference to the given []EcfHistoryItem and assigns it to the Data field.

func (*GetEcfSubmissionHistory200Response) SetMeta added in v0.0.19

SetMeta gets a reference to the given PaginationMeta and assigns it to the Meta field.

func (GetEcfSubmissionHistory200Response) ToMap added in v0.0.19

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

type GetNextNumber200Response

type GetNextNumber200Response struct {
	Success *bool                         `json:"success,omitempty"`
	Data    *GetNextNumber200ResponseData `json:"data,omitempty"`
}

GetNextNumber200Response struct for GetNextNumber200Response

func NewGetNextNumber200Response

func NewGetNextNumber200Response() *GetNextNumber200Response

NewGetNextNumber200Response instantiates a new GetNextNumber200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetNextNumber200ResponseWithDefaults

func NewGetNextNumber200ResponseWithDefaults() *GetNextNumber200Response

NewGetNextNumber200ResponseWithDefaults instantiates a new GetNextNumber200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetNextNumber200Response) GetData

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

func (*GetNextNumber200Response) GetDataOk

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 (*GetNextNumber200Response) GetSuccess

func (o *GetNextNumber200Response) GetSuccess() bool

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

func (*GetNextNumber200Response) GetSuccessOk

func (o *GetNextNumber200Response) 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 (*GetNextNumber200Response) HasData

func (o *GetNextNumber200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*GetNextNumber200Response) HasSuccess

func (o *GetNextNumber200Response) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (GetNextNumber200Response) MarshalJSON

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

func (*GetNextNumber200Response) SetData

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

func (*GetNextNumber200Response) SetSuccess

func (o *GetNextNumber200Response) SetSuccess(v bool)

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

func (GetNextNumber200Response) ToMap

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

type GetNextNumber200ResponseData

type GetNextNumber200ResponseData struct {
	NextNumber       *string `json:"nextNumber,omitempty"`
	SequenceId       *string `json:"sequenceId,omitempty"`
	RemainingNumbers *int32  `json:"remainingNumbers,omitempty"`
}

GetNextNumber200ResponseData struct for GetNextNumber200ResponseData

func NewGetNextNumber200ResponseData

func NewGetNextNumber200ResponseData() *GetNextNumber200ResponseData

NewGetNextNumber200ResponseData instantiates a new GetNextNumber200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetNextNumber200ResponseDataWithDefaults

func NewGetNextNumber200ResponseDataWithDefaults() *GetNextNumber200ResponseData

NewGetNextNumber200ResponseDataWithDefaults instantiates a new GetNextNumber200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetNextNumber200ResponseData) GetNextNumber

func (o *GetNextNumber200ResponseData) GetNextNumber() string

GetNextNumber returns the NextNumber field value if set, zero value otherwise.

func (*GetNextNumber200ResponseData) GetNextNumberOk

func (o *GetNextNumber200ResponseData) GetNextNumberOk() (*string, bool)

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

func (*GetNextNumber200ResponseData) GetRemainingNumbers

func (o *GetNextNumber200ResponseData) GetRemainingNumbers() int32

GetRemainingNumbers returns the RemainingNumbers field value if set, zero value otherwise.

func (*GetNextNumber200ResponseData) GetRemainingNumbersOk

func (o *GetNextNumber200ResponseData) GetRemainingNumbersOk() (*int32, bool)

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

func (*GetNextNumber200ResponseData) GetSequenceId added in v0.0.7

func (o *GetNextNumber200ResponseData) GetSequenceId() string

GetSequenceId returns the SequenceId field value if set, zero value otherwise.

func (*GetNextNumber200ResponseData) GetSequenceIdOk added in v0.0.7

func (o *GetNextNumber200ResponseData) GetSequenceIdOk() (*string, bool)

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

func (*GetNextNumber200ResponseData) HasNextNumber

func (o *GetNextNumber200ResponseData) HasNextNumber() bool

HasNextNumber returns a boolean if a field has been set.

func (*GetNextNumber200ResponseData) HasRemainingNumbers

func (o *GetNextNumber200ResponseData) HasRemainingNumbers() bool

HasRemainingNumbers returns a boolean if a field has been set.

func (*GetNextNumber200ResponseData) HasSequenceId added in v0.0.7

func (o *GetNextNumber200ResponseData) HasSequenceId() bool

HasSequenceId returns a boolean if a field has been set.

func (GetNextNumber200ResponseData) MarshalJSON

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

func (*GetNextNumber200ResponseData) SetNextNumber

func (o *GetNextNumber200ResponseData) SetNextNumber(v string)

SetNextNumber gets a reference to the given string and assigns it to the NextNumber field.

func (*GetNextNumber200ResponseData) SetRemainingNumbers

func (o *GetNextNumber200ResponseData) SetRemainingNumbers(v int32)

SetRemainingNumbers gets a reference to the given int32 and assigns it to the RemainingNumbers field.

func (*GetNextNumber200ResponseData) SetSequenceId added in v0.0.7

func (o *GetNextNumber200ResponseData) SetSequenceId(v string)

SetSequenceId gets a reference to the given string and assigns it to the SequenceId field.

func (GetNextNumber200ResponseData) ToMap

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

type GetReceivedDocumentStatsBySupplier200ResponseInner added in v0.0.19

type GetReceivedDocumentStatsBySupplier200ResponseInner struct {
	SupplierRnc *string  `json:"supplierRnc,omitempty"`
	Count       *int32   `json:"count,omitempty"`
	TotalAmount *float32 `json:"totalAmount,omitempty"`
}

GetReceivedDocumentStatsBySupplier200ResponseInner struct for GetReceivedDocumentStatsBySupplier200ResponseInner

func NewGetReceivedDocumentStatsBySupplier200ResponseInner added in v0.0.19

func NewGetReceivedDocumentStatsBySupplier200ResponseInner() *GetReceivedDocumentStatsBySupplier200ResponseInner

NewGetReceivedDocumentStatsBySupplier200ResponseInner instantiates a new GetReceivedDocumentStatsBySupplier200ResponseInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetReceivedDocumentStatsBySupplier200ResponseInnerWithDefaults added in v0.0.19

func NewGetReceivedDocumentStatsBySupplier200ResponseInnerWithDefaults() *GetReceivedDocumentStatsBySupplier200ResponseInner

NewGetReceivedDocumentStatsBySupplier200ResponseInnerWithDefaults instantiates a new GetReceivedDocumentStatsBySupplier200ResponseInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) GetCount added in v0.0.19

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

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) GetCountOk added in v0.0.19

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

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) GetSupplierRnc added in v0.0.19

GetSupplierRnc returns the SupplierRnc field value if set, zero value otherwise.

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) GetSupplierRncOk added in v0.0.19

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

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) GetTotalAmount added in v0.0.19

GetTotalAmount returns the TotalAmount field value if set, zero value otherwise.

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) GetTotalAmountOk added in v0.0.19

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

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) HasCount added in v0.0.19

HasCount returns a boolean if a field has been set.

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) HasSupplierRnc added in v0.0.19

HasSupplierRnc returns a boolean if a field has been set.

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) HasTotalAmount added in v0.0.19

HasTotalAmount returns a boolean if a field has been set.

func (GetReceivedDocumentStatsBySupplier200ResponseInner) MarshalJSON added in v0.0.19

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) SetCount added in v0.0.19

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

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) SetSupplierRnc added in v0.0.19

SetSupplierRnc gets a reference to the given string and assigns it to the SupplierRnc field.

func (*GetReceivedDocumentStatsBySupplier200ResponseInner) SetTotalAmount added in v0.0.19

SetTotalAmount gets a reference to the given float32 and assigns it to the TotalAmount field.

func (GetReceivedDocumentStatsBySupplier200ResponseInner) ToMap added in v0.0.19

type GetSentDocumentLogs200ResponseInner added in v0.0.19

type GetSentDocumentLogs200ResponseInner struct {
	Id        *string    `json:"id,omitempty"`
	Message   *string    `json:"message,omitempty"`
	Type      *string    `json:"type,omitempty"`
	CreatedAt *time.Time `json:"createdAt,omitempty"`
}

GetSentDocumentLogs200ResponseInner struct for GetSentDocumentLogs200ResponseInner

func NewGetSentDocumentLogs200ResponseInner added in v0.0.19

func NewGetSentDocumentLogs200ResponseInner() *GetSentDocumentLogs200ResponseInner

NewGetSentDocumentLogs200ResponseInner instantiates a new GetSentDocumentLogs200ResponseInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetSentDocumentLogs200ResponseInnerWithDefaults added in v0.0.19

func NewGetSentDocumentLogs200ResponseInnerWithDefaults() *GetSentDocumentLogs200ResponseInner

NewGetSentDocumentLogs200ResponseInnerWithDefaults instantiates a new GetSentDocumentLogs200ResponseInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetSentDocumentLogs200ResponseInner) GetCreatedAt added in v0.0.19

func (o *GetSentDocumentLogs200ResponseInner) GetCreatedAt() time.Time

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

func (*GetSentDocumentLogs200ResponseInner) GetCreatedAtOk added in v0.0.19

func (o *GetSentDocumentLogs200ResponseInner) GetCreatedAtOk() (*time.Time, bool)

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

func (*GetSentDocumentLogs200ResponseInner) GetId added in v0.0.19

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

func (*GetSentDocumentLogs200ResponseInner) GetIdOk added in v0.0.19

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 (*GetSentDocumentLogs200ResponseInner) GetMessage added in v0.0.19

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

func (*GetSentDocumentLogs200ResponseInner) GetMessageOk added in v0.0.19

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

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

func (*GetSentDocumentLogs200ResponseInner) GetType added in v0.0.19

GetType returns the Type field value if set, zero value otherwise.

func (*GetSentDocumentLogs200ResponseInner) GetTypeOk added in v0.0.19

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

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

func (*GetSentDocumentLogs200ResponseInner) HasCreatedAt added in v0.0.19

func (o *GetSentDocumentLogs200ResponseInner) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*GetSentDocumentLogs200ResponseInner) HasId added in v0.0.19

HasId returns a boolean if a field has been set.

func (*GetSentDocumentLogs200ResponseInner) HasMessage added in v0.0.19

func (o *GetSentDocumentLogs200ResponseInner) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GetSentDocumentLogs200ResponseInner) HasType added in v0.0.19

HasType returns a boolean if a field has been set.

func (GetSentDocumentLogs200ResponseInner) MarshalJSON added in v0.0.19

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

func (*GetSentDocumentLogs200ResponseInner) SetCreatedAt added in v0.0.19

func (o *GetSentDocumentLogs200ResponseInner) SetCreatedAt(v time.Time)

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

func (*GetSentDocumentLogs200ResponseInner) SetId added in v0.0.19

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

func (*GetSentDocumentLogs200ResponseInner) SetMessage added in v0.0.19

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

func (*GetSentDocumentLogs200ResponseInner) SetType added in v0.0.19

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

func (GetSentDocumentLogs200ResponseInner) ToMap added in v0.0.19

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

type GetSentDocumentStatusOptions200ResponseInner added in v0.0.19

type GetSentDocumentStatusOptions200ResponseInner struct {
	Value *string `json:"value,omitempty"`
	Label *string `json:"label,omitempty"`
}

GetSentDocumentStatusOptions200ResponseInner struct for GetSentDocumentStatusOptions200ResponseInner

func NewGetSentDocumentStatusOptions200ResponseInner added in v0.0.19

func NewGetSentDocumentStatusOptions200ResponseInner() *GetSentDocumentStatusOptions200ResponseInner

NewGetSentDocumentStatusOptions200ResponseInner instantiates a new GetSentDocumentStatusOptions200ResponseInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetSentDocumentStatusOptions200ResponseInnerWithDefaults added in v0.0.19

func NewGetSentDocumentStatusOptions200ResponseInnerWithDefaults() *GetSentDocumentStatusOptions200ResponseInner

NewGetSentDocumentStatusOptions200ResponseInnerWithDefaults instantiates a new GetSentDocumentStatusOptions200ResponseInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetSentDocumentStatusOptions200ResponseInner) GetLabel added in v0.0.19

GetLabel returns the Label field value if set, zero value otherwise.

func (*GetSentDocumentStatusOptions200ResponseInner) GetLabelOk added in v0.0.19

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

func (*GetSentDocumentStatusOptions200ResponseInner) GetValue added in v0.0.19

GetValue returns the Value field value if set, zero value otherwise.

func (*GetSentDocumentStatusOptions200ResponseInner) GetValueOk added in v0.0.19

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

func (*GetSentDocumentStatusOptions200ResponseInner) HasLabel added in v0.0.19

HasLabel returns a boolean if a field has been set.

func (*GetSentDocumentStatusOptions200ResponseInner) HasValue added in v0.0.19

HasValue returns a boolean if a field has been set.

func (GetSentDocumentStatusOptions200ResponseInner) MarshalJSON added in v0.0.19

func (*GetSentDocumentStatusOptions200ResponseInner) SetLabel added in v0.0.19

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*GetSentDocumentStatusOptions200ResponseInner) SetValue added in v0.0.19

SetValue gets a reference to the given string and assigns it to the Value field.

func (GetSentDocumentStatusOptions200ResponseInner) ToMap added in v0.0.19

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

type IntegrationClient added in v0.0.13

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

func NewIntegrationClient added in v0.0.13

func NewIntegrationClient(opts IntegrationClientOptions) (*IntegrationClient, error)

func (*IntegrationClient) API added in v0.0.13

func (c *IntegrationClient) API() *APIClient

func (*IntegrationClient) StartSession added in v0.0.14

func (c *IntegrationClient) StartSession(tenantID string) (*TenantSession, error)

StartSession returns a tenant-scoped session while reusing the same token manager.

type IntegrationClientOptions added in v0.0.13

type IntegrationClientOptions struct {
	BaseURL            string
	ClientID           string
	ClientSecret       string
	TenantID           string
	RefreshSkewSeconds int
	HTTPClient         *http.Client
}

type InvoiceType

type InvoiceType string

InvoiceType 31=Factura Credito Fiscal, 32=Factura Consumo, 33=Nota Debito, 34=Nota Credito, 41=Compras, 43=Gastos Menores, 44=Regimenes Especiales, 45=Gubernamental, 46=Exportaciones, 47=Pagos Exterior

const (
	INVOICETYPE__31 InvoiceType = "31"
	INVOICETYPE__32 InvoiceType = "32"
	INVOICETYPE__33 InvoiceType = "33"
	INVOICETYPE__34 InvoiceType = "34"
	INVOICETYPE__41 InvoiceType = "41"
	INVOICETYPE__43 InvoiceType = "43"
	INVOICETYPE__44 InvoiceType = "44"
	INVOICETYPE__45 InvoiceType = "45"
	INVOICETYPE__46 InvoiceType = "46"
	INVOICETYPE__47 InvoiceType = "47"
)

List of InvoiceType

func NewInvoiceTypeFromValue

func NewInvoiceTypeFromValue(v string) (*InvoiceType, error)

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

func (InvoiceType) IsValid

func (v InvoiceType) IsValid() bool

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

func (InvoiceType) Ptr

func (v InvoiceType) Ptr() *InvoiceType

Ptr returns reference to InvoiceType value

func (*InvoiceType) UnmarshalJSON

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

type InvoiceTypeSequence added in v0.0.7

type InvoiceTypeSequence string

InvoiceTypeSequence Invoice type with E prefix — used for tax sequence endpoints.

const (
	INVOICETYPESEQUENCE_E31 InvoiceTypeSequence = "E31"
	INVOICETYPESEQUENCE_E32 InvoiceTypeSequence = "E32"
	INVOICETYPESEQUENCE_E33 InvoiceTypeSequence = "E33"
	INVOICETYPESEQUENCE_E34 InvoiceTypeSequence = "E34"
	INVOICETYPESEQUENCE_E41 InvoiceTypeSequence = "E41"
	INVOICETYPESEQUENCE_E43 InvoiceTypeSequence = "E43"
	INVOICETYPESEQUENCE_E44 InvoiceTypeSequence = "E44"
	INVOICETYPESEQUENCE_E45 InvoiceTypeSequence = "E45"
	INVOICETYPESEQUENCE_E46 InvoiceTypeSequence = "E46"
	INVOICETYPESEQUENCE_E47 InvoiceTypeSequence = "E47"
)

List of InvoiceTypeSequence

func NewInvoiceTypeSequenceFromValue added in v0.0.7

func NewInvoiceTypeSequenceFromValue(v string) (*InvoiceTypeSequence, error)

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

func (InvoiceTypeSequence) IsValid added in v0.0.7

func (v InvoiceTypeSequence) IsValid() bool

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

func (InvoiceTypeSequence) Ptr added in v0.0.7

Ptr returns reference to InvoiceTypeSequence value

func (*InvoiceTypeSequence) UnmarshalJSON added in v0.0.7

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

type Item

type Item struct {
	LineNumber  *int32           `json:"lineNumber,omitempty"`
	Codes       []ItemCodesInner `json:"codes,omitempty"`
	Name        string           `json:"name"`
	Description *string          `json:"description,omitempty"`
	// 1=Good, 2=Service
	Type                      string                   `json:"type"`
	BillingIndicator          BillingIndicator         `json:"billingIndicator"`
	WithholdingAgentIndicator *int32                   `json:"withholdingAgentIndicator,omitempty"`
	WithheldITBISAmount       *ItemWithheldITBISAmount `json:"withheldITBISAmount,omitempty"`
	WithheldISRAmount         *ItemWithheldITBISAmount `json:"withheldISRAmount,omitempty"`
	Quantity                  ItemQuantity             `json:"quantity"`
	UnitOfMeasure             *int32                   `json:"unitOfMeasure,omitempty"`
	ReferenceQuantity         *ItemWithheldITBISAmount `json:"referenceQuantity,omitempty"`
	ReferenceUnit             *int32                   `json:"referenceUnit,omitempty"`
	ReferenceUnitPrice        *ItemWithheldITBISAmount `json:"referenceUnitPrice,omitempty"`
	Subquantities             []Subquantity            `json:"subquantities,omitempty"`
	AlcoholDegree             *float32                 `json:"alcoholDegree,omitempty"`
	ManufacturingDate         *time.Time               `json:"manufacturingDate,omitempty"`
	ExpirationDate            *time.Time               `json:"expirationDate,omitempty"`
	MiningInfo                *ItemMiningInfo          `json:"miningInfo,omitempty"`
	UnitPrice                 ItemUnitPrice            `json:"unitPrice"`
	DiscountAmount            *ItemWithheldITBISAmount `json:"discountAmount,omitempty"`
	Discount                  []ItemDiscountInner      `json:"discount,omitempty"`
	SurchargeAmount           *ItemWithheldITBISAmount `json:"surchargeAmount,omitempty"`
	Surcharge                 []ItemSurchargeInner     `json:"surcharge,omitempty"`
	AdditionalTaxes           []ItemAdditionalTax      `json:"additionalTaxes,omitempty"`
	AlternativeCurrency       *ItemAlternativeCurrency `json:"alternativeCurrency,omitempty"`
	Amount                    *ItemAmount              `json:"amount,omitempty"`
}

Item struct for Item

func NewItem

func NewItem(name string, type_ string, billingIndicator BillingIndicator, quantity ItemQuantity, unitPrice ItemUnitPrice) *Item

NewItem instantiates a new Item object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewItemWithDefaults

func NewItemWithDefaults() *Item

NewItemWithDefaults instantiates a new Item object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Item) GetAdditionalTaxes

func (o *Item) GetAdditionalTaxes() []ItemAdditionalTax

GetAdditionalTaxes returns the AdditionalTaxes field value if set, zero value otherwise.

func (*Item) GetAdditionalTaxesOk

func (o *Item) GetAdditionalTaxesOk() ([]ItemAdditionalTax, bool)

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

func (*Item) GetAlcoholDegree

func (o *Item) GetAlcoholDegree() float32

GetAlcoholDegree returns the AlcoholDegree field value if set, zero value otherwise.

func (*Item) GetAlcoholDegreeOk

func (o *Item) GetAlcoholDegreeOk() (*float32, bool)

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

func (*Item) GetAlternativeCurrency added in v0.0.7

func (o *Item) GetAlternativeCurrency() ItemAlternativeCurrency

GetAlternativeCurrency returns the AlternativeCurrency field value if set, zero value otherwise.

func (*Item) GetAlternativeCurrencyOk added in v0.0.7

func (o *Item) GetAlternativeCurrencyOk() (*ItemAlternativeCurrency, bool)

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

func (*Item) GetAmount

func (o *Item) GetAmount() ItemAmount

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

func (*Item) GetAmountOk

func (o *Item) GetAmountOk() (*ItemAmount, bool)

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

func (*Item) GetBillingIndicator

func (o *Item) GetBillingIndicator() BillingIndicator

GetBillingIndicator returns the BillingIndicator field value

func (*Item) GetBillingIndicatorOk

func (o *Item) GetBillingIndicatorOk() (*BillingIndicator, bool)

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

func (*Item) GetCodes added in v0.0.7

func (o *Item) GetCodes() []ItemCodesInner

GetCodes returns the Codes field value if set, zero value otherwise.

func (*Item) GetCodesOk added in v0.0.7

func (o *Item) GetCodesOk() ([]ItemCodesInner, bool)

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

func (*Item) GetDescription added in v0.0.7

func (o *Item) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Item) GetDescriptionOk added in v0.0.7

func (o *Item) GetDescriptionOk() (*string, bool)

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

func (*Item) GetDiscount added in v0.0.7

func (o *Item) GetDiscount() []ItemDiscountInner

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*Item) GetDiscountAmount

func (o *Item) GetDiscountAmount() ItemWithheldITBISAmount

GetDiscountAmount returns the DiscountAmount field value if set, zero value otherwise.

func (*Item) GetDiscountAmountOk

func (o *Item) GetDiscountAmountOk() (*ItemWithheldITBISAmount, bool)

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

func (*Item) GetDiscountOk added in v0.0.7

func (o *Item) GetDiscountOk() ([]ItemDiscountInner, bool)

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

func (*Item) GetExpirationDate added in v0.0.7

func (o *Item) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*Item) GetExpirationDateOk added in v0.0.7

func (o *Item) GetExpirationDateOk() (*time.Time, bool)

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

func (*Item) GetLineNumber

func (o *Item) GetLineNumber() int32

GetLineNumber returns the LineNumber field value if set, zero value otherwise.

func (*Item) GetLineNumberOk

func (o *Item) GetLineNumberOk() (*int32, bool)

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

func (*Item) GetManufacturingDate added in v0.0.7

func (o *Item) GetManufacturingDate() time.Time

GetManufacturingDate returns the ManufacturingDate field value if set, zero value otherwise.

func (*Item) GetManufacturingDateOk added in v0.0.7

func (o *Item) GetManufacturingDateOk() (*time.Time, bool)

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

func (*Item) GetMiningInfo added in v0.0.7

func (o *Item) GetMiningInfo() ItemMiningInfo

GetMiningInfo returns the MiningInfo field value if set, zero value otherwise.

func (*Item) GetMiningInfoOk added in v0.0.7

func (o *Item) GetMiningInfoOk() (*ItemMiningInfo, bool)

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

func (*Item) GetName

func (o *Item) GetName() string

GetName returns the Name field value

func (*Item) GetNameOk

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

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

func (*Item) GetQuantity

func (o *Item) GetQuantity() ItemQuantity

GetQuantity returns the Quantity field value

func (*Item) GetQuantityOk

func (o *Item) GetQuantityOk() (*ItemQuantity, bool)

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

func (*Item) GetReferenceQuantity added in v0.0.7

func (o *Item) GetReferenceQuantity() ItemWithheldITBISAmount

GetReferenceQuantity returns the ReferenceQuantity field value if set, zero value otherwise.

func (*Item) GetReferenceQuantityOk added in v0.0.7

func (o *Item) GetReferenceQuantityOk() (*ItemWithheldITBISAmount, bool)

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

func (*Item) GetReferenceUnit added in v0.0.7

func (o *Item) GetReferenceUnit() int32

GetReferenceUnit returns the ReferenceUnit field value if set, zero value otherwise.

func (*Item) GetReferenceUnitOk added in v0.0.7

func (o *Item) GetReferenceUnitOk() (*int32, bool)

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

func (*Item) GetReferenceUnitPrice added in v0.0.7

func (o *Item) GetReferenceUnitPrice() ItemWithheldITBISAmount

GetReferenceUnitPrice returns the ReferenceUnitPrice field value if set, zero value otherwise.

func (*Item) GetReferenceUnitPriceOk added in v0.0.7

func (o *Item) GetReferenceUnitPriceOk() (*ItemWithheldITBISAmount, bool)

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

func (*Item) GetSubquantities

func (o *Item) GetSubquantities() []Subquantity

GetSubquantities returns the Subquantities field value if set, zero value otherwise.

func (*Item) GetSubquantitiesOk

func (o *Item) GetSubquantitiesOk() ([]Subquantity, bool)

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

func (*Item) GetSurcharge added in v0.0.7

func (o *Item) GetSurcharge() []ItemSurchargeInner

GetSurcharge returns the Surcharge field value if set, zero value otherwise.

func (*Item) GetSurchargeAmount added in v0.0.7

func (o *Item) GetSurchargeAmount() ItemWithheldITBISAmount

GetSurchargeAmount returns the SurchargeAmount field value if set, zero value otherwise.

func (*Item) GetSurchargeAmountOk added in v0.0.7

func (o *Item) GetSurchargeAmountOk() (*ItemWithheldITBISAmount, bool)

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

func (*Item) GetSurchargeOk added in v0.0.7

func (o *Item) GetSurchargeOk() ([]ItemSurchargeInner, bool)

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

func (*Item) GetType

func (o *Item) GetType() string

GetType returns the Type field value

func (*Item) GetTypeOk

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

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

func (*Item) GetUnitOfMeasure added in v0.0.7

func (o *Item) GetUnitOfMeasure() int32

GetUnitOfMeasure returns the UnitOfMeasure field value if set, zero value otherwise.

func (*Item) GetUnitOfMeasureOk added in v0.0.7

func (o *Item) GetUnitOfMeasureOk() (*int32, bool)

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

func (*Item) GetUnitPrice

func (o *Item) GetUnitPrice() ItemUnitPrice

GetUnitPrice returns the UnitPrice field value

func (*Item) GetUnitPriceOk

func (o *Item) GetUnitPriceOk() (*ItemUnitPrice, bool)

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

func (*Item) GetWithheldISRAmount added in v0.0.7

func (o *Item) GetWithheldISRAmount() ItemWithheldITBISAmount

GetWithheldISRAmount returns the WithheldISRAmount field value if set, zero value otherwise.

func (*Item) GetWithheldISRAmountOk added in v0.0.7

func (o *Item) GetWithheldISRAmountOk() (*ItemWithheldITBISAmount, bool)

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

func (*Item) GetWithheldITBISAmount added in v0.0.7

func (o *Item) GetWithheldITBISAmount() ItemWithheldITBISAmount

GetWithheldITBISAmount returns the WithheldITBISAmount field value if set, zero value otherwise.

func (*Item) GetWithheldITBISAmountOk added in v0.0.7

func (o *Item) GetWithheldITBISAmountOk() (*ItemWithheldITBISAmount, bool)

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

func (*Item) GetWithholdingAgentIndicator added in v0.0.7

func (o *Item) GetWithholdingAgentIndicator() int32

GetWithholdingAgentIndicator returns the WithholdingAgentIndicator field value if set, zero value otherwise.

func (*Item) GetWithholdingAgentIndicatorOk added in v0.0.7

func (o *Item) GetWithholdingAgentIndicatorOk() (*int32, bool)

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

func (*Item) HasAdditionalTaxes

func (o *Item) HasAdditionalTaxes() bool

HasAdditionalTaxes returns a boolean if a field has been set.

func (*Item) HasAlcoholDegree

func (o *Item) HasAlcoholDegree() bool

HasAlcoholDegree returns a boolean if a field has been set.

func (*Item) HasAlternativeCurrency added in v0.0.7

func (o *Item) HasAlternativeCurrency() bool

HasAlternativeCurrency returns a boolean if a field has been set.

func (*Item) HasAmount added in v0.0.10

func (o *Item) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*Item) HasCodes added in v0.0.7

func (o *Item) HasCodes() bool

HasCodes returns a boolean if a field has been set.

func (*Item) HasDescription added in v0.0.7

func (o *Item) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Item) HasDiscount added in v0.0.7

func (o *Item) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*Item) HasDiscountAmount

func (o *Item) HasDiscountAmount() bool

HasDiscountAmount returns a boolean if a field has been set.

func (*Item) HasExpirationDate added in v0.0.7

func (o *Item) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*Item) HasLineNumber

func (o *Item) HasLineNumber() bool

HasLineNumber returns a boolean if a field has been set.

func (*Item) HasManufacturingDate added in v0.0.7

func (o *Item) HasManufacturingDate() bool

HasManufacturingDate returns a boolean if a field has been set.

func (*Item) HasMiningInfo added in v0.0.7

func (o *Item) HasMiningInfo() bool

HasMiningInfo returns a boolean if a field has been set.

func (*Item) HasReferenceQuantity added in v0.0.7

func (o *Item) HasReferenceQuantity() bool

HasReferenceQuantity returns a boolean if a field has been set.

func (*Item) HasReferenceUnit added in v0.0.7

func (o *Item) HasReferenceUnit() bool

HasReferenceUnit returns a boolean if a field has been set.

func (*Item) HasReferenceUnitPrice added in v0.0.7

func (o *Item) HasReferenceUnitPrice() bool

HasReferenceUnitPrice returns a boolean if a field has been set.

func (*Item) HasSubquantities

func (o *Item) HasSubquantities() bool

HasSubquantities returns a boolean if a field has been set.

func (*Item) HasSurcharge added in v0.0.7

func (o *Item) HasSurcharge() bool

HasSurcharge returns a boolean if a field has been set.

func (*Item) HasSurchargeAmount added in v0.0.7

func (o *Item) HasSurchargeAmount() bool

HasSurchargeAmount returns a boolean if a field has been set.

func (*Item) HasUnitOfMeasure added in v0.0.7

func (o *Item) HasUnitOfMeasure() bool

HasUnitOfMeasure returns a boolean if a field has been set.

func (*Item) HasWithheldISRAmount added in v0.0.7

func (o *Item) HasWithheldISRAmount() bool

HasWithheldISRAmount returns a boolean if a field has been set.

func (*Item) HasWithheldITBISAmount added in v0.0.7

func (o *Item) HasWithheldITBISAmount() bool

HasWithheldITBISAmount returns a boolean if a field has been set.

func (*Item) HasWithholdingAgentIndicator added in v0.0.7

func (o *Item) HasWithholdingAgentIndicator() bool

HasWithholdingAgentIndicator returns a boolean if a field has been set.

func (Item) MarshalJSON

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

func (*Item) SetAdditionalTaxes

func (o *Item) SetAdditionalTaxes(v []ItemAdditionalTax)

SetAdditionalTaxes gets a reference to the given []ItemAdditionalTax and assigns it to the AdditionalTaxes field.

func (*Item) SetAlcoholDegree

func (o *Item) SetAlcoholDegree(v float32)

SetAlcoholDegree gets a reference to the given float32 and assigns it to the AlcoholDegree field.

func (*Item) SetAlternativeCurrency added in v0.0.7

func (o *Item) SetAlternativeCurrency(v ItemAlternativeCurrency)

SetAlternativeCurrency gets a reference to the given ItemAlternativeCurrency and assigns it to the AlternativeCurrency field.

func (*Item) SetAmount

func (o *Item) SetAmount(v ItemAmount)

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

func (*Item) SetBillingIndicator

func (o *Item) SetBillingIndicator(v BillingIndicator)

SetBillingIndicator sets field value

func (*Item) SetCodes added in v0.0.7

func (o *Item) SetCodes(v []ItemCodesInner)

SetCodes gets a reference to the given []ItemCodesInner and assigns it to the Codes field.

func (*Item) SetDescription added in v0.0.7

func (o *Item) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Item) SetDiscount added in v0.0.7

func (o *Item) SetDiscount(v []ItemDiscountInner)

SetDiscount gets a reference to the given []ItemDiscountInner and assigns it to the Discount field.

func (*Item) SetDiscountAmount

func (o *Item) SetDiscountAmount(v ItemWithheldITBISAmount)

SetDiscountAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the DiscountAmount field.

func (*Item) SetExpirationDate added in v0.0.7

func (o *Item) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*Item) SetLineNumber

func (o *Item) SetLineNumber(v int32)

SetLineNumber gets a reference to the given int32 and assigns it to the LineNumber field.

func (*Item) SetManufacturingDate added in v0.0.7

func (o *Item) SetManufacturingDate(v time.Time)

SetManufacturingDate gets a reference to the given time.Time and assigns it to the ManufacturingDate field.

func (*Item) SetMiningInfo added in v0.0.7

func (o *Item) SetMiningInfo(v ItemMiningInfo)

SetMiningInfo gets a reference to the given ItemMiningInfo and assigns it to the MiningInfo field.

func (*Item) SetName

func (o *Item) SetName(v string)

SetName sets field value

func (*Item) SetQuantity

func (o *Item) SetQuantity(v ItemQuantity)

SetQuantity sets field value

func (*Item) SetReferenceQuantity added in v0.0.7

func (o *Item) SetReferenceQuantity(v ItemWithheldITBISAmount)

SetReferenceQuantity gets a reference to the given ItemWithheldITBISAmount and assigns it to the ReferenceQuantity field.

func (*Item) SetReferenceUnit added in v0.0.7

func (o *Item) SetReferenceUnit(v int32)

SetReferenceUnit gets a reference to the given int32 and assigns it to the ReferenceUnit field.

func (*Item) SetReferenceUnitPrice added in v0.0.7

func (o *Item) SetReferenceUnitPrice(v ItemWithheldITBISAmount)

SetReferenceUnitPrice gets a reference to the given ItemWithheldITBISAmount and assigns it to the ReferenceUnitPrice field.

func (*Item) SetSubquantities

func (o *Item) SetSubquantities(v []Subquantity)

SetSubquantities gets a reference to the given []Subquantity and assigns it to the Subquantities field.

func (*Item) SetSurcharge added in v0.0.7

func (o *Item) SetSurcharge(v []ItemSurchargeInner)

SetSurcharge gets a reference to the given []ItemSurchargeInner and assigns it to the Surcharge field.

func (*Item) SetSurchargeAmount added in v0.0.7

func (o *Item) SetSurchargeAmount(v ItemWithheldITBISAmount)

SetSurchargeAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the SurchargeAmount field.

func (*Item) SetType

func (o *Item) SetType(v string)

SetType sets field value

func (*Item) SetUnitOfMeasure added in v0.0.7

func (o *Item) SetUnitOfMeasure(v int32)

SetUnitOfMeasure gets a reference to the given int32 and assigns it to the UnitOfMeasure field.

func (*Item) SetUnitPrice

func (o *Item) SetUnitPrice(v ItemUnitPrice)

SetUnitPrice sets field value

func (*Item) SetWithheldISRAmount added in v0.0.7

func (o *Item) SetWithheldISRAmount(v ItemWithheldITBISAmount)

SetWithheldISRAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the WithheldISRAmount field.

func (*Item) SetWithheldITBISAmount added in v0.0.7

func (o *Item) SetWithheldITBISAmount(v ItemWithheldITBISAmount)

SetWithheldITBISAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the WithheldITBISAmount field.

func (*Item) SetWithholdingAgentIndicator added in v0.0.7

func (o *Item) SetWithholdingAgentIndicator(v int32)

SetWithholdingAgentIndicator gets a reference to the given int32 and assigns it to the WithholdingAgentIndicator field.

func (Item) ToMap

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

func (*Item) UnmarshalJSON

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

type ItemAdditionalTax

type ItemAdditionalTax struct {
	// DGII tax code (e.g. ISC, IECS)
	Code                      string                   `json:"code"`
	Amount                    *ItemWithheldITBISAmount `json:"amount,omitempty"`
	Rate                      *float32                 `json:"rate,omitempty"`
	AlternativeCurrencyAmount *float32                 `json:"alternativeCurrencyAmount,omitempty"`
}

ItemAdditionalTax struct for ItemAdditionalTax

func NewItemAdditionalTax

func NewItemAdditionalTax(code string) *ItemAdditionalTax

NewItemAdditionalTax instantiates a new ItemAdditionalTax object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewItemAdditionalTaxWithDefaults

func NewItemAdditionalTaxWithDefaults() *ItemAdditionalTax

NewItemAdditionalTaxWithDefaults instantiates a new ItemAdditionalTax object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ItemAdditionalTax) GetAlternativeCurrencyAmount added in v0.0.10

func (o *ItemAdditionalTax) GetAlternativeCurrencyAmount() float32

GetAlternativeCurrencyAmount returns the AlternativeCurrencyAmount field value if set, zero value otherwise.

func (*ItemAdditionalTax) GetAlternativeCurrencyAmountOk added in v0.0.10

func (o *ItemAdditionalTax) GetAlternativeCurrencyAmountOk() (*float32, bool)

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

func (*ItemAdditionalTax) GetAmount

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

func (*ItemAdditionalTax) GetAmountOk

func (o *ItemAdditionalTax) GetAmountOk() (*ItemWithheldITBISAmount, bool)

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

func (*ItemAdditionalTax) GetCode

func (o *ItemAdditionalTax) GetCode() string

GetCode returns the Code field value

func (*ItemAdditionalTax) GetCodeOk

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

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

func (*ItemAdditionalTax) GetRate added in v0.0.10

func (o *ItemAdditionalTax) GetRate() float32

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

func (*ItemAdditionalTax) GetRateOk added in v0.0.10

func (o *ItemAdditionalTax) GetRateOk() (*float32, bool)

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

func (*ItemAdditionalTax) HasAlternativeCurrencyAmount added in v0.0.10

func (o *ItemAdditionalTax) HasAlternativeCurrencyAmount() bool

HasAlternativeCurrencyAmount returns a boolean if a field has been set.

func (*ItemAdditionalTax) HasAmount added in v0.0.7

func (o *ItemAdditionalTax) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ItemAdditionalTax) HasRate added in v0.0.10

func (o *ItemAdditionalTax) HasRate() bool

HasRate returns a boolean if a field has been set.

func (ItemAdditionalTax) MarshalJSON

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

func (*ItemAdditionalTax) SetAlternativeCurrencyAmount added in v0.0.10

func (o *ItemAdditionalTax) SetAlternativeCurrencyAmount(v float32)

SetAlternativeCurrencyAmount gets a reference to the given float32 and assigns it to the AlternativeCurrencyAmount field.

func (*ItemAdditionalTax) SetAmount

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

func (*ItemAdditionalTax) SetCode

func (o *ItemAdditionalTax) SetCode(v string)

SetCode sets field value

func (*ItemAdditionalTax) SetRate added in v0.0.10

func (o *ItemAdditionalTax) SetRate(v float32)

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

func (ItemAdditionalTax) ToMap

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

func (*ItemAdditionalTax) UnmarshalJSON

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

type ItemAlternativeCurrency added in v0.0.7

type ItemAlternativeCurrency struct {
	UnitPrice *float32 `json:"unitPrice,omitempty"`
	Discount  *float32 `json:"discount,omitempty"`
	Surcharge *float32 `json:"surcharge,omitempty"`
	Amount    *float32 `json:"amount,omitempty"`
}

ItemAlternativeCurrency struct for ItemAlternativeCurrency

func NewItemAlternativeCurrency added in v0.0.7

func NewItemAlternativeCurrency() *ItemAlternativeCurrency

NewItemAlternativeCurrency instantiates a new ItemAlternativeCurrency object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewItemAlternativeCurrencyWithDefaults added in v0.0.7

func NewItemAlternativeCurrencyWithDefaults() *ItemAlternativeCurrency

NewItemAlternativeCurrencyWithDefaults instantiates a new ItemAlternativeCurrency object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ItemAlternativeCurrency) GetAmount added in v0.0.7

func (o *ItemAlternativeCurrency) GetAmount() float32

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

func (*ItemAlternativeCurrency) GetAmountOk added in v0.0.7

func (o *ItemAlternativeCurrency) GetAmountOk() (*float32, bool)

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

func (*ItemAlternativeCurrency) GetDiscount added in v0.0.7

func (o *ItemAlternativeCurrency) GetDiscount() float32

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*ItemAlternativeCurrency) GetDiscountOk added in v0.0.7

func (o *ItemAlternativeCurrency) GetDiscountOk() (*float32, bool)

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

func (*ItemAlternativeCurrency) GetSurcharge added in v0.0.7

func (o *ItemAlternativeCurrency) GetSurcharge() float32

GetSurcharge returns the Surcharge field value if set, zero value otherwise.

func (*ItemAlternativeCurrency) GetSurchargeOk added in v0.0.7

func (o *ItemAlternativeCurrency) GetSurchargeOk() (*float32, bool)

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

func (*ItemAlternativeCurrency) GetUnitPrice added in v0.0.7

func (o *ItemAlternativeCurrency) GetUnitPrice() float32

GetUnitPrice returns the UnitPrice field value if set, zero value otherwise.

func (*ItemAlternativeCurrency) GetUnitPriceOk added in v0.0.7

func (o *ItemAlternativeCurrency) GetUnitPriceOk() (*float32, bool)

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

func (*ItemAlternativeCurrency) HasAmount added in v0.0.7

func (o *ItemAlternativeCurrency) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ItemAlternativeCurrency) HasDiscount added in v0.0.7

func (o *ItemAlternativeCurrency) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*ItemAlternativeCurrency) HasSurcharge added in v0.0.7

func (o *ItemAlternativeCurrency) HasSurcharge() bool

HasSurcharge returns a boolean if a field has been set.

func (*ItemAlternativeCurrency) HasUnitPrice added in v0.0.7

func (o *ItemAlternativeCurrency) HasUnitPrice() bool

HasUnitPrice returns a boolean if a field has been set.

func (ItemAlternativeCurrency) MarshalJSON added in v0.0.7

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

func (*ItemAlternativeCurrency) SetAmount added in v0.0.7

func (o *ItemAlternativeCurrency) SetAmount(v float32)

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

func (*ItemAlternativeCurrency) SetDiscount added in v0.0.7

func (o *ItemAlternativeCurrency) SetDiscount(v float32)

SetDiscount gets a reference to the given float32 and assigns it to the Discount field.

func (*ItemAlternativeCurrency) SetSurcharge added in v0.0.7

func (o *ItemAlternativeCurrency) SetSurcharge(v float32)

SetSurcharge gets a reference to the given float32 and assigns it to the Surcharge field.

func (*ItemAlternativeCurrency) SetUnitPrice added in v0.0.7

func (o *ItemAlternativeCurrency) SetUnitPrice(v float32)

SetUnitPrice gets a reference to the given float32 and assigns it to the UnitPrice field.

func (ItemAlternativeCurrency) ToMap added in v0.0.7

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

type ItemAmount added in v0.0.10

type ItemAmount struct {
	Float32 *float32
	String  *string
}

ItemAmount - struct for ItemAmount

func Float32AsItemAmount added in v0.0.10

func Float32AsItemAmount(v *float32) ItemAmount

float32AsItemAmount is a convenience function that returns float32 wrapped in ItemAmount

func StringAsItemAmount added in v0.0.10

func StringAsItemAmount(v *string) ItemAmount

stringAsItemAmount is a convenience function that returns string wrapped in ItemAmount

func (*ItemAmount) GetActualInstance added in v0.0.10

func (obj *ItemAmount) GetActualInstance() interface{}

Get the actual instance

func (ItemAmount) GetActualInstanceValue added in v0.0.10

func (obj ItemAmount) GetActualInstanceValue() interface{}

Get the actual instance value

func (ItemAmount) MarshalJSON added in v0.0.10

func (src ItemAmount) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ItemAmount) UnmarshalJSON added in v0.0.10

func (dst *ItemAmount) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ItemCodesInner added in v0.0.7

type ItemCodesInner struct {
	CodeType *string `json:"codeType,omitempty"`
	Code     *string `json:"code,omitempty"`
}

ItemCodesInner struct for ItemCodesInner

func NewItemCodesInner added in v0.0.7

func NewItemCodesInner() *ItemCodesInner

NewItemCodesInner instantiates a new ItemCodesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewItemCodesInnerWithDefaults added in v0.0.7

func NewItemCodesInnerWithDefaults() *ItemCodesInner

NewItemCodesInnerWithDefaults instantiates a new ItemCodesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ItemCodesInner) GetCode added in v0.0.7

func (o *ItemCodesInner) GetCode() string

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

func (*ItemCodesInner) GetCodeOk added in v0.0.7

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

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

func (*ItemCodesInner) GetCodeType added in v0.0.7

func (o *ItemCodesInner) GetCodeType() string

GetCodeType returns the CodeType field value if set, zero value otherwise.

func (*ItemCodesInner) GetCodeTypeOk added in v0.0.7

func (o *ItemCodesInner) GetCodeTypeOk() (*string, bool)

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

func (*ItemCodesInner) HasCode added in v0.0.7

func (o *ItemCodesInner) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ItemCodesInner) HasCodeType added in v0.0.7

func (o *ItemCodesInner) HasCodeType() bool

HasCodeType returns a boolean if a field has been set.

func (ItemCodesInner) MarshalJSON added in v0.0.7

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

func (*ItemCodesInner) SetCode added in v0.0.7

func (o *ItemCodesInner) SetCode(v string)

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

func (*ItemCodesInner) SetCodeType added in v0.0.7

func (o *ItemCodesInner) SetCodeType(v string)

SetCodeType gets a reference to the given string and assigns it to the CodeType field.

func (ItemCodesInner) ToMap added in v0.0.7

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

type ItemDiscountInner added in v0.0.7

type ItemDiscountInner struct {
	Type   *string                  `json:"type,omitempty"`
	Value  *float32                 `json:"value,omitempty"`
	Amount *ItemWithheldITBISAmount `json:"amount,omitempty"`
}

ItemDiscountInner struct for ItemDiscountInner

func NewItemDiscountInner added in v0.0.7

func NewItemDiscountInner() *ItemDiscountInner

NewItemDiscountInner instantiates a new ItemDiscountInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewItemDiscountInnerWithDefaults added in v0.0.7

func NewItemDiscountInnerWithDefaults() *ItemDiscountInner

NewItemDiscountInnerWithDefaults instantiates a new ItemDiscountInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ItemDiscountInner) GetAmount added in v0.0.7

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

func (*ItemDiscountInner) GetAmountOk added in v0.0.7

func (o *ItemDiscountInner) GetAmountOk() (*ItemWithheldITBISAmount, bool)

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

func (*ItemDiscountInner) GetType added in v0.0.7

func (o *ItemDiscountInner) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ItemDiscountInner) GetTypeOk added in v0.0.7

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

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

func (*ItemDiscountInner) GetValue added in v0.0.7

func (o *ItemDiscountInner) GetValue() float32

GetValue returns the Value field value if set, zero value otherwise.

func (*ItemDiscountInner) GetValueOk added in v0.0.7

func (o *ItemDiscountInner) GetValueOk() (*float32, bool)

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

func (*ItemDiscountInner) HasAmount added in v0.0.7

func (o *ItemDiscountInner) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ItemDiscountInner) HasType added in v0.0.7

func (o *ItemDiscountInner) HasType() bool

HasType returns a boolean if a field has been set.

func (*ItemDiscountInner) HasValue added in v0.0.7

func (o *ItemDiscountInner) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ItemDiscountInner) MarshalJSON added in v0.0.7

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

func (*ItemDiscountInner) SetAmount added in v0.0.7

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

func (*ItemDiscountInner) SetType added in v0.0.7

func (o *ItemDiscountInner) SetType(v string)

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

func (*ItemDiscountInner) SetValue added in v0.0.7

func (o *ItemDiscountInner) SetValue(v float32)

SetValue gets a reference to the given float32 and assigns it to the Value field.

func (ItemDiscountInner) ToMap added in v0.0.7

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

type ItemMiningInfo added in v0.0.7

type ItemMiningInfo struct {
	NetWeightKg     *float32 `json:"netWeightKg,omitempty"`
	NetWeightMining *float32 `json:"netWeightMining,omitempty"`
	AffiliationType *string  `json:"affiliationType,omitempty"`
	Settlement      *string  `json:"settlement,omitempty"`
}

ItemMiningInfo struct for ItemMiningInfo

func NewItemMiningInfo added in v0.0.7

func NewItemMiningInfo() *ItemMiningInfo

NewItemMiningInfo instantiates a new ItemMiningInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewItemMiningInfoWithDefaults added in v0.0.7

func NewItemMiningInfoWithDefaults() *ItemMiningInfo

NewItemMiningInfoWithDefaults instantiates a new ItemMiningInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ItemMiningInfo) GetAffiliationType added in v0.0.7

func (o *ItemMiningInfo) GetAffiliationType() string

GetAffiliationType returns the AffiliationType field value if set, zero value otherwise.

func (*ItemMiningInfo) GetAffiliationTypeOk added in v0.0.7

func (o *ItemMiningInfo) GetAffiliationTypeOk() (*string, bool)

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

func (*ItemMiningInfo) GetNetWeightKg added in v0.0.7

func (o *ItemMiningInfo) GetNetWeightKg() float32

GetNetWeightKg returns the NetWeightKg field value if set, zero value otherwise.

func (*ItemMiningInfo) GetNetWeightKgOk added in v0.0.7

func (o *ItemMiningInfo) GetNetWeightKgOk() (*float32, bool)

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

func (*ItemMiningInfo) GetNetWeightMining added in v0.0.7

func (o *ItemMiningInfo) GetNetWeightMining() float32

GetNetWeightMining returns the NetWeightMining field value if set, zero value otherwise.

func (*ItemMiningInfo) GetNetWeightMiningOk added in v0.0.7

func (o *ItemMiningInfo) GetNetWeightMiningOk() (*float32, bool)

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

func (*ItemMiningInfo) GetSettlement added in v0.0.7

func (o *ItemMiningInfo) GetSettlement() string

GetSettlement returns the Settlement field value if set, zero value otherwise.

func (*ItemMiningInfo) GetSettlementOk added in v0.0.7

func (o *ItemMiningInfo) GetSettlementOk() (*string, bool)

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

func (*ItemMiningInfo) HasAffiliationType added in v0.0.7

func (o *ItemMiningInfo) HasAffiliationType() bool

HasAffiliationType returns a boolean if a field has been set.

func (*ItemMiningInfo) HasNetWeightKg added in v0.0.7

func (o *ItemMiningInfo) HasNetWeightKg() bool

HasNetWeightKg returns a boolean if a field has been set.

func (*ItemMiningInfo) HasNetWeightMining added in v0.0.7

func (o *ItemMiningInfo) HasNetWeightMining() bool

HasNetWeightMining returns a boolean if a field has been set.

func (*ItemMiningInfo) HasSettlement added in v0.0.7

func (o *ItemMiningInfo) HasSettlement() bool

HasSettlement returns a boolean if a field has been set.

func (ItemMiningInfo) MarshalJSON added in v0.0.7

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

func (*ItemMiningInfo) SetAffiliationType added in v0.0.7

func (o *ItemMiningInfo) SetAffiliationType(v string)

SetAffiliationType gets a reference to the given string and assigns it to the AffiliationType field.

func (*ItemMiningInfo) SetNetWeightKg added in v0.0.7

func (o *ItemMiningInfo) SetNetWeightKg(v float32)

SetNetWeightKg gets a reference to the given float32 and assigns it to the NetWeightKg field.

func (*ItemMiningInfo) SetNetWeightMining added in v0.0.7

func (o *ItemMiningInfo) SetNetWeightMining(v float32)

SetNetWeightMining gets a reference to the given float32 and assigns it to the NetWeightMining field.

func (*ItemMiningInfo) SetSettlement added in v0.0.7

func (o *ItemMiningInfo) SetSettlement(v string)

SetSettlement gets a reference to the given string and assigns it to the Settlement field.

func (ItemMiningInfo) ToMap added in v0.0.7

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

type ItemQuantity added in v0.0.10

type ItemQuantity struct {
	Float32 *float32
	String  *string
}

ItemQuantity - struct for ItemQuantity

func Float32AsItemQuantity added in v0.0.10

func Float32AsItemQuantity(v *float32) ItemQuantity

float32AsItemQuantity is a convenience function that returns float32 wrapped in ItemQuantity

func StringAsItemQuantity added in v0.0.10

func StringAsItemQuantity(v *string) ItemQuantity

stringAsItemQuantity is a convenience function that returns string wrapped in ItemQuantity

func (*ItemQuantity) GetActualInstance added in v0.0.10

func (obj *ItemQuantity) GetActualInstance() interface{}

Get the actual instance

func (ItemQuantity) GetActualInstanceValue added in v0.0.10

func (obj ItemQuantity) GetActualInstanceValue() interface{}

Get the actual instance value

func (ItemQuantity) MarshalJSON added in v0.0.10

func (src ItemQuantity) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ItemQuantity) UnmarshalJSON added in v0.0.10

func (dst *ItemQuantity) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ItemSurchargeInner added in v0.0.10

type ItemSurchargeInner struct {
	Type   *string  `json:"type,omitempty"`
	Value  *float32 `json:"value,omitempty"`
	Amount *float32 `json:"amount,omitempty"`
}

ItemSurchargeInner struct for ItemSurchargeInner

func NewItemSurchargeInner added in v0.0.10

func NewItemSurchargeInner() *ItemSurchargeInner

NewItemSurchargeInner instantiates a new ItemSurchargeInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewItemSurchargeInnerWithDefaults added in v0.0.10

func NewItemSurchargeInnerWithDefaults() *ItemSurchargeInner

NewItemSurchargeInnerWithDefaults instantiates a new ItemSurchargeInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ItemSurchargeInner) GetAmount added in v0.0.10

func (o *ItemSurchargeInner) GetAmount() float32

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

func (*ItemSurchargeInner) GetAmountOk added in v0.0.10

func (o *ItemSurchargeInner) GetAmountOk() (*float32, bool)

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

func (*ItemSurchargeInner) GetType added in v0.0.10

func (o *ItemSurchargeInner) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ItemSurchargeInner) GetTypeOk added in v0.0.10

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

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

func (*ItemSurchargeInner) GetValue added in v0.0.10

func (o *ItemSurchargeInner) GetValue() float32

GetValue returns the Value field value if set, zero value otherwise.

func (*ItemSurchargeInner) GetValueOk added in v0.0.10

func (o *ItemSurchargeInner) GetValueOk() (*float32, bool)

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

func (*ItemSurchargeInner) HasAmount added in v0.0.10

func (o *ItemSurchargeInner) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*ItemSurchargeInner) HasType added in v0.0.10

func (o *ItemSurchargeInner) HasType() bool

HasType returns a boolean if a field has been set.

func (*ItemSurchargeInner) HasValue added in v0.0.10

func (o *ItemSurchargeInner) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ItemSurchargeInner) MarshalJSON added in v0.0.10

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

func (*ItemSurchargeInner) SetAmount added in v0.0.10

func (o *ItemSurchargeInner) SetAmount(v float32)

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

func (*ItemSurchargeInner) SetType added in v0.0.10

func (o *ItemSurchargeInner) SetType(v string)

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

func (*ItemSurchargeInner) SetValue added in v0.0.10

func (o *ItemSurchargeInner) SetValue(v float32)

SetValue gets a reference to the given float32 and assigns it to the Value field.

func (ItemSurchargeInner) ToMap added in v0.0.10

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

type ItemUnitPrice added in v0.0.10

type ItemUnitPrice struct {
	Float32 *float32
	String  *string
}

ItemUnitPrice - struct for ItemUnitPrice

func Float32AsItemUnitPrice added in v0.0.10

func Float32AsItemUnitPrice(v *float32) ItemUnitPrice

float32AsItemUnitPrice is a convenience function that returns float32 wrapped in ItemUnitPrice

func StringAsItemUnitPrice added in v0.0.10

func StringAsItemUnitPrice(v *string) ItemUnitPrice

stringAsItemUnitPrice is a convenience function that returns string wrapped in ItemUnitPrice

func (*ItemUnitPrice) GetActualInstance added in v0.0.10

func (obj *ItemUnitPrice) GetActualInstance() interface{}

Get the actual instance

func (ItemUnitPrice) GetActualInstanceValue added in v0.0.10

func (obj ItemUnitPrice) GetActualInstanceValue() interface{}

Get the actual instance value

func (ItemUnitPrice) MarshalJSON added in v0.0.10

func (src ItemUnitPrice) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ItemUnitPrice) UnmarshalJSON added in v0.0.10

func (dst *ItemUnitPrice) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ItemWithheldITBISAmount added in v0.0.10

type ItemWithheldITBISAmount struct {
	Float32 *float32
	String  *string
}

ItemWithheldITBISAmount - struct for ItemWithheldITBISAmount

func Float32AsItemWithheldITBISAmount added in v0.0.10

func Float32AsItemWithheldITBISAmount(v *float32) ItemWithheldITBISAmount

float32AsItemWithheldITBISAmount is a convenience function that returns float32 wrapped in ItemWithheldITBISAmount

func StringAsItemWithheldITBISAmount added in v0.0.10

func StringAsItemWithheldITBISAmount(v *string) ItemWithheldITBISAmount

stringAsItemWithheldITBISAmount is a convenience function that returns string wrapped in ItemWithheldITBISAmount

func (*ItemWithheldITBISAmount) GetActualInstance added in v0.0.10

func (obj *ItemWithheldITBISAmount) GetActualInstance() interface{}

Get the actual instance

func (ItemWithheldITBISAmount) GetActualInstanceValue added in v0.0.10

func (obj ItemWithheldITBISAmount) GetActualInstanceValue() interface{}

Get the actual instance value

func (ItemWithheldITBISAmount) MarshalJSON added in v0.0.10

func (src ItemWithheldITBISAmount) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ItemWithheldITBISAmount) UnmarshalJSON added in v0.0.10

func (dst *ItemWithheldITBISAmount) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type LegalStatus added in v0.0.19

type LegalStatus string

LegalStatus Fiscal result from DGII. Only meaningful when PublicDocumentStatus=FINISHED.

const (
	LEGALSTATUS_ACCEPTED                   LegalStatus = "ACCEPTED"
	LEGALSTATUS_ACCEPTED_WITH_OBSERVATIONS LegalStatus = "ACCEPTED_WITH_OBSERVATIONS"
	LEGALSTATUS_REJECTED                   LegalStatus = "REJECTED"
	LEGALSTATUS_ERROR                      LegalStatus = "ERROR"
)

List of LegalStatus

func NewLegalStatusFromValue added in v0.0.19

func NewLegalStatusFromValue(v string) (*LegalStatus, error)

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

func (LegalStatus) IsValid added in v0.0.19

func (v LegalStatus) IsValid() bool

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

func (LegalStatus) Ptr added in v0.0.19

func (v LegalStatus) Ptr() *LegalStatus

Ptr returns reference to LegalStatus value

func (*LegalStatus) UnmarshalJSON added in v0.0.19

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

type ListTaxSequences200Response

type ListTaxSequences200Response struct {
	Success *bool           `json:"success,omitempty"`
	Data    []TaxSequence   `json:"data,omitempty"`
	Meta    *PaginationMeta `json:"meta,omitempty"`
}

ListTaxSequences200Response struct for ListTaxSequences200Response

func NewListTaxSequences200Response

func NewListTaxSequences200Response() *ListTaxSequences200Response

NewListTaxSequences200Response instantiates a new ListTaxSequences200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListTaxSequences200ResponseWithDefaults

func NewListTaxSequences200ResponseWithDefaults() *ListTaxSequences200Response

NewListTaxSequences200ResponseWithDefaults instantiates a new ListTaxSequences200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListTaxSequences200Response) GetData

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

func (*ListTaxSequences200Response) GetDataOk

func (o *ListTaxSequences200Response) GetDataOk() ([]TaxSequence, 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 (*ListTaxSequences200Response) GetMeta added in v0.0.7

GetMeta returns the Meta field value if set, zero value otherwise.

func (*ListTaxSequences200Response) GetMetaOk added in v0.0.7

func (o *ListTaxSequences200Response) GetMetaOk() (*PaginationMeta, bool)

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

func (*ListTaxSequences200Response) GetSuccess

func (o *ListTaxSequences200Response) GetSuccess() bool

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

func (*ListTaxSequences200Response) GetSuccessOk

func (o *ListTaxSequences200Response) 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 (*ListTaxSequences200Response) HasData

func (o *ListTaxSequences200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*ListTaxSequences200Response) HasMeta added in v0.0.7

func (o *ListTaxSequences200Response) HasMeta() bool

HasMeta returns a boolean if a field has been set.

func (*ListTaxSequences200Response) HasSuccess

func (o *ListTaxSequences200Response) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (ListTaxSequences200Response) MarshalJSON

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

func (*ListTaxSequences200Response) SetData

func (o *ListTaxSequences200Response) SetData(v []TaxSequence)

SetData gets a reference to the given []TaxSequence and assigns it to the Data field.

func (*ListTaxSequences200Response) SetMeta added in v0.0.7

SetMeta gets a reference to the given PaginationMeta and assigns it to the Meta field.

func (*ListTaxSequences200Response) SetSuccess

func (o *ListTaxSequences200Response) SetSuccess(v bool)

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

func (ListTaxSequences200Response) ToMap

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

type MappedNullable

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

type MemberInvitedPayload added in v0.0.19

type MemberInvitedPayload struct {
	Email string `json:"email"`
	// Rol asignado al usuario invitado.
	Role string `json:"role"`
	// Email del usuario que realizó la invitación.
	InvitedBy string `json:"invitedBy"`
}

MemberInvitedPayload Payload del evento `member.invited`. Se invitó un nuevo usuario a la empresa.

func NewMemberInvitedPayload added in v0.0.19

func NewMemberInvitedPayload(email string, role string, invitedBy string) *MemberInvitedPayload

NewMemberInvitedPayload instantiates a new MemberInvitedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMemberInvitedPayloadWithDefaults added in v0.0.19

func NewMemberInvitedPayloadWithDefaults() *MemberInvitedPayload

NewMemberInvitedPayloadWithDefaults instantiates a new MemberInvitedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MemberInvitedPayload) GetEmail added in v0.0.19

func (o *MemberInvitedPayload) GetEmail() string

GetEmail returns the Email field value

func (*MemberInvitedPayload) GetEmailOk added in v0.0.19

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

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

func (*MemberInvitedPayload) GetInvitedBy added in v0.0.19

func (o *MemberInvitedPayload) GetInvitedBy() string

GetInvitedBy returns the InvitedBy field value

func (*MemberInvitedPayload) GetInvitedByOk added in v0.0.19

func (o *MemberInvitedPayload) GetInvitedByOk() (*string, bool)

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

func (*MemberInvitedPayload) GetRole added in v0.0.19

func (o *MemberInvitedPayload) GetRole() string

GetRole returns the Role field value

func (*MemberInvitedPayload) GetRoleOk added in v0.0.19

func (o *MemberInvitedPayload) GetRoleOk() (*string, bool)

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

func (MemberInvitedPayload) MarshalJSON added in v0.0.19

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

func (*MemberInvitedPayload) SetEmail added in v0.0.19

func (o *MemberInvitedPayload) SetEmail(v string)

SetEmail sets field value

func (*MemberInvitedPayload) SetInvitedBy added in v0.0.19

func (o *MemberInvitedPayload) SetInvitedBy(v string)

SetInvitedBy sets field value

func (*MemberInvitedPayload) SetRole added in v0.0.19

func (o *MemberInvitedPayload) SetRole(v string)

SetRole sets field value

func (MemberInvitedPayload) ToMap added in v0.0.19

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

func (*MemberInvitedPayload) UnmarshalJSON added in v0.0.19

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

type MemberJoinedPayload added in v0.0.19

type MemberJoinedPayload struct {
	UserId   string    `json:"userId"`
	Email    string    `json:"email"`
	Role     string    `json:"role"`
	JoinedAt time.Time `json:"joinedAt"`
}

MemberJoinedPayload Payload del evento `member.joined`. Un usuario aceptó la invitación y se unió a la empresa.

func NewMemberJoinedPayload added in v0.0.19

func NewMemberJoinedPayload(userId string, email string, role string, joinedAt time.Time) *MemberJoinedPayload

NewMemberJoinedPayload instantiates a new MemberJoinedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMemberJoinedPayloadWithDefaults added in v0.0.19

func NewMemberJoinedPayloadWithDefaults() *MemberJoinedPayload

NewMemberJoinedPayloadWithDefaults instantiates a new MemberJoinedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MemberJoinedPayload) GetEmail added in v0.0.19

func (o *MemberJoinedPayload) GetEmail() string

GetEmail returns the Email field value

func (*MemberJoinedPayload) GetEmailOk added in v0.0.19

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

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

func (*MemberJoinedPayload) GetJoinedAt added in v0.0.19

func (o *MemberJoinedPayload) GetJoinedAt() time.Time

GetJoinedAt returns the JoinedAt field value

func (*MemberJoinedPayload) GetJoinedAtOk added in v0.0.19

func (o *MemberJoinedPayload) GetJoinedAtOk() (*time.Time, bool)

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

func (*MemberJoinedPayload) GetRole added in v0.0.19

func (o *MemberJoinedPayload) GetRole() string

GetRole returns the Role field value

func (*MemberJoinedPayload) GetRoleOk added in v0.0.19

func (o *MemberJoinedPayload) GetRoleOk() (*string, bool)

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

func (*MemberJoinedPayload) GetUserId added in v0.0.19

func (o *MemberJoinedPayload) GetUserId() string

GetUserId returns the UserId field value

func (*MemberJoinedPayload) GetUserIdOk added in v0.0.19

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

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

func (MemberJoinedPayload) MarshalJSON added in v0.0.19

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

func (*MemberJoinedPayload) SetEmail added in v0.0.19

func (o *MemberJoinedPayload) SetEmail(v string)

SetEmail sets field value

func (*MemberJoinedPayload) SetJoinedAt added in v0.0.19

func (o *MemberJoinedPayload) SetJoinedAt(v time.Time)

SetJoinedAt sets field value

func (*MemberJoinedPayload) SetRole added in v0.0.19

func (o *MemberJoinedPayload) SetRole(v string)

SetRole sets field value

func (*MemberJoinedPayload) SetUserId added in v0.0.19

func (o *MemberJoinedPayload) SetUserId(v string)

SetUserId sets field value

func (MemberJoinedPayload) ToMap added in v0.0.19

func (o MemberJoinedPayload) ToMap() (map[string]interface{}, error)

func (*MemberJoinedPayload) UnmarshalJSON added in v0.0.19

func (o *MemberJoinedPayload) UnmarshalJSON(data []byte) (err error)

type MemberRemovedPayload added in v0.0.19

type MemberRemovedPayload struct {
	UserId string `json:"userId"`
	Email  string `json:"email"`
	// Email del usuario que realizó la remoción.
	RemovedBy string `json:"removedBy"`
}

MemberRemovedPayload Payload del evento `member.removed`. Un usuario fue removido de la empresa.

func NewMemberRemovedPayload added in v0.0.19

func NewMemberRemovedPayload(userId string, email string, removedBy string) *MemberRemovedPayload

NewMemberRemovedPayload instantiates a new MemberRemovedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMemberRemovedPayloadWithDefaults added in v0.0.19

func NewMemberRemovedPayloadWithDefaults() *MemberRemovedPayload

NewMemberRemovedPayloadWithDefaults instantiates a new MemberRemovedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MemberRemovedPayload) GetEmail added in v0.0.19

func (o *MemberRemovedPayload) GetEmail() string

GetEmail returns the Email field value

func (*MemberRemovedPayload) GetEmailOk added in v0.0.19

func (o *MemberRemovedPayload) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*MemberRemovedPayload) GetRemovedBy added in v0.0.19

func (o *MemberRemovedPayload) GetRemovedBy() string

GetRemovedBy returns the RemovedBy field value

func (*MemberRemovedPayload) GetRemovedByOk added in v0.0.19

func (o *MemberRemovedPayload) GetRemovedByOk() (*string, bool)

GetRemovedByOk returns a tuple with the RemovedBy field value and a boolean to check if the value has been set.

func (*MemberRemovedPayload) GetUserId added in v0.0.19

func (o *MemberRemovedPayload) GetUserId() string

GetUserId returns the UserId field value

func (*MemberRemovedPayload) GetUserIdOk added in v0.0.19

func (o *MemberRemovedPayload) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (MemberRemovedPayload) MarshalJSON added in v0.0.19

func (o MemberRemovedPayload) MarshalJSON() ([]byte, error)

func (*MemberRemovedPayload) SetEmail added in v0.0.19

func (o *MemberRemovedPayload) SetEmail(v string)

SetEmail sets field value

func (*MemberRemovedPayload) SetRemovedBy added in v0.0.19

func (o *MemberRemovedPayload) SetRemovedBy(v string)

SetRemovedBy sets field value

func (*MemberRemovedPayload) SetUserId added in v0.0.19

func (o *MemberRemovedPayload) SetUserId(v string)

SetUserId sets field value

func (MemberRemovedPayload) ToMap added in v0.0.19

func (o MemberRemovedPayload) ToMap() (map[string]interface{}, error)

func (*MemberRemovedPayload) UnmarshalJSON added in v0.0.19

func (o *MemberRemovedPayload) UnmarshalJSON(data []byte) (err error)

type NullableAccountType

type NullableAccountType struct {
	// contains filtered or unexported fields
}

func NewNullableAccountType

func NewNullableAccountType(val *AccountType) *NullableAccountType

func (NullableAccountType) Get

func (NullableAccountType) IsSet

func (v NullableAccountType) IsSet() bool

func (NullableAccountType) MarshalJSON

func (v NullableAccountType) MarshalJSON() ([]byte, error)

func (*NullableAccountType) Set

func (v *NullableAccountType) Set(val *AccountType)

func (*NullableAccountType) UnmarshalJSON

func (v *NullableAccountType) UnmarshalJSON(src []byte) error

func (*NullableAccountType) Unset

func (v *NullableAccountType) Unset()

type NullableAdditionalInfo

type NullableAdditionalInfo struct {
	// contains filtered or unexported fields
}

func NewNullableAdditionalInfo

func NewNullableAdditionalInfo(val *AdditionalInfo) *NullableAdditionalInfo

func (NullableAdditionalInfo) Get

func (NullableAdditionalInfo) IsSet

func (v NullableAdditionalInfo) IsSet() bool

func (NullableAdditionalInfo) MarshalJSON

func (v NullableAdditionalInfo) MarshalJSON() ([]byte, error)

func (*NullableAdditionalInfo) Set

func (*NullableAdditionalInfo) UnmarshalJSON

func (v *NullableAdditionalInfo) UnmarshalJSON(src []byte) error

func (*NullableAdditionalInfo) Unset

func (v *NullableAdditionalInfo) Unset()

type NullableAdditionalTax added in v0.0.10

type NullableAdditionalTax struct {
	// contains filtered or unexported fields
}

func NewNullableAdditionalTax added in v0.0.10

func NewNullableAdditionalTax(val *AdditionalTax) *NullableAdditionalTax

func (NullableAdditionalTax) Get added in v0.0.10

func (NullableAdditionalTax) IsSet added in v0.0.10

func (v NullableAdditionalTax) IsSet() bool

func (NullableAdditionalTax) MarshalJSON added in v0.0.10

func (v NullableAdditionalTax) MarshalJSON() ([]byte, error)

func (*NullableAdditionalTax) Set added in v0.0.10

func (v *NullableAdditionalTax) Set(val *AdditionalTax)

func (*NullableAdditionalTax) UnmarshalJSON added in v0.0.10

func (v *NullableAdditionalTax) UnmarshalJSON(src []byte) error

func (*NullableAdditionalTax) Unset added in v0.0.10

func (v *NullableAdditionalTax) Unset()

type NullableAlternativeCurrency

type NullableAlternativeCurrency struct {
	// contains filtered or unexported fields
}

func NewNullableAlternativeCurrency

func NewNullableAlternativeCurrency(val *AlternativeCurrency) *NullableAlternativeCurrency

func (NullableAlternativeCurrency) Get

func (NullableAlternativeCurrency) IsSet

func (NullableAlternativeCurrency) MarshalJSON

func (v NullableAlternativeCurrency) MarshalJSON() ([]byte, error)

func (*NullableAlternativeCurrency) Set

func (*NullableAlternativeCurrency) UnmarshalJSON

func (v *NullableAlternativeCurrency) UnmarshalJSON(src []byte) error

func (*NullableAlternativeCurrency) Unset

func (v *NullableAlternativeCurrency) Unset()

type NullableApprovalItem added in v0.0.7

type NullableApprovalItem struct {
	// contains filtered or unexported fields
}

func NewNullableApprovalItem added in v0.0.7

func NewNullableApprovalItem(val *ApprovalItem) *NullableApprovalItem

func (NullableApprovalItem) Get added in v0.0.7

func (NullableApprovalItem) IsSet added in v0.0.7

func (v NullableApprovalItem) IsSet() bool

func (NullableApprovalItem) MarshalJSON added in v0.0.7

func (v NullableApprovalItem) MarshalJSON() ([]byte, error)

func (*NullableApprovalItem) Set added in v0.0.7

func (v *NullableApprovalItem) Set(val *ApprovalItem)

func (*NullableApprovalItem) UnmarshalJSON added in v0.0.7

func (v *NullableApprovalItem) UnmarshalJSON(src []byte) error

func (*NullableApprovalItem) Unset added in v0.0.7

func (v *NullableApprovalItem) Unset()

type NullableApprovalListResponse added in v0.0.7

type NullableApprovalListResponse struct {
	// contains filtered or unexported fields
}

func NewNullableApprovalListResponse added in v0.0.7

func NewNullableApprovalListResponse(val *ApprovalListResponse) *NullableApprovalListResponse

func (NullableApprovalListResponse) Get added in v0.0.7

func (NullableApprovalListResponse) IsSet added in v0.0.7

func (NullableApprovalListResponse) MarshalJSON added in v0.0.7

func (v NullableApprovalListResponse) MarshalJSON() ([]byte, error)

func (*NullableApprovalListResponse) Set added in v0.0.7

func (*NullableApprovalListResponse) UnmarshalJSON added in v0.0.7

func (v *NullableApprovalListResponse) UnmarshalJSON(src []byte) error

func (*NullableApprovalListResponse) Unset added in v0.0.7

func (v *NullableApprovalListResponse) Unset()

type NullableAssociatedCompany

type NullableAssociatedCompany struct {
	// contains filtered or unexported fields
}

func NewNullableAssociatedCompany

func NewNullableAssociatedCompany(val *AssociatedCompany) *NullableAssociatedCompany

func (NullableAssociatedCompany) Get

func (NullableAssociatedCompany) IsSet

func (v NullableAssociatedCompany) IsSet() bool

func (NullableAssociatedCompany) MarshalJSON

func (v NullableAssociatedCompany) MarshalJSON() ([]byte, error)

func (*NullableAssociatedCompany) Set

func (*NullableAssociatedCompany) UnmarshalJSON

func (v *NullableAssociatedCompany) UnmarshalJSON(src []byte) error

func (*NullableAssociatedCompany) Unset

func (v *NullableAssociatedCompany) Unset()

type NullableAssociatedCompanySubscription

type NullableAssociatedCompanySubscription struct {
	// contains filtered or unexported fields
}

func (NullableAssociatedCompanySubscription) Get

func (NullableAssociatedCompanySubscription) IsSet

func (NullableAssociatedCompanySubscription) MarshalJSON

func (v NullableAssociatedCompanySubscription) MarshalJSON() ([]byte, error)

func (*NullableAssociatedCompanySubscription) Set

func (*NullableAssociatedCompanySubscription) UnmarshalJSON

func (v *NullableAssociatedCompanySubscription) UnmarshalJSON(src []byte) error

func (*NullableAssociatedCompanySubscription) Unset

type NullableAssociatedCompanySubscriptionPlan

type NullableAssociatedCompanySubscriptionPlan struct {
	// contains filtered or unexported fields
}

func (NullableAssociatedCompanySubscriptionPlan) Get

func (NullableAssociatedCompanySubscriptionPlan) IsSet

func (NullableAssociatedCompanySubscriptionPlan) MarshalJSON

func (*NullableAssociatedCompanySubscriptionPlan) Set

func (*NullableAssociatedCompanySubscriptionPlan) UnmarshalJSON

func (v *NullableAssociatedCompanySubscriptionPlan) UnmarshalJSON(src []byte) error

func (*NullableAssociatedCompanySubscriptionPlan) Unset

type NullableBillingIndicator

type NullableBillingIndicator struct {
	// contains filtered or unexported fields
}

func NewNullableBillingIndicator

func NewNullableBillingIndicator(val *BillingIndicator) *NullableBillingIndicator

func (NullableBillingIndicator) Get

func (NullableBillingIndicator) IsSet

func (v NullableBillingIndicator) IsSet() bool

func (NullableBillingIndicator) MarshalJSON

func (v NullableBillingIndicator) MarshalJSON() ([]byte, error)

func (*NullableBillingIndicator) Set

func (*NullableBillingIndicator) UnmarshalJSON

func (v *NullableBillingIndicator) UnmarshalJSON(src []byte) error

func (*NullableBillingIndicator) Unset

func (v *NullableBillingIndicator) Unset()

type NullableBillingInvoiceReadyPayload added in v0.0.19

type NullableBillingInvoiceReadyPayload struct {
	// contains filtered or unexported fields
}

func NewNullableBillingInvoiceReadyPayload added in v0.0.19

func NewNullableBillingInvoiceReadyPayload(val *BillingInvoiceReadyPayload) *NullableBillingInvoiceReadyPayload

func (NullableBillingInvoiceReadyPayload) Get added in v0.0.19

func (NullableBillingInvoiceReadyPayload) IsSet added in v0.0.19

func (NullableBillingInvoiceReadyPayload) MarshalJSON added in v0.0.19

func (v NullableBillingInvoiceReadyPayload) MarshalJSON() ([]byte, error)

func (*NullableBillingInvoiceReadyPayload) Set added in v0.0.19

func (*NullableBillingInvoiceReadyPayload) UnmarshalJSON added in v0.0.19

func (v *NullableBillingInvoiceReadyPayload) UnmarshalJSON(src []byte) error

func (*NullableBillingInvoiceReadyPayload) Unset added in v0.0.19

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 NullableBranchCreatedPayload added in v0.0.19

type NullableBranchCreatedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableBranchCreatedPayload added in v0.0.19

func NewNullableBranchCreatedPayload(val *BranchCreatedPayload) *NullableBranchCreatedPayload

func (NullableBranchCreatedPayload) Get added in v0.0.19

func (NullableBranchCreatedPayload) IsSet added in v0.0.19

func (NullableBranchCreatedPayload) MarshalJSON added in v0.0.19

func (v NullableBranchCreatedPayload) MarshalJSON() ([]byte, error)

func (*NullableBranchCreatedPayload) Set added in v0.0.19

func (*NullableBranchCreatedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableBranchCreatedPayload) UnmarshalJSON(src []byte) error

func (*NullableBranchCreatedPayload) Unset added in v0.0.19

func (v *NullableBranchCreatedPayload) Unset()

type NullableBranchStatusChangedPayload added in v0.0.19

type NullableBranchStatusChangedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableBranchStatusChangedPayload added in v0.0.19

func NewNullableBranchStatusChangedPayload(val *BranchStatusChangedPayload) *NullableBranchStatusChangedPayload

func (NullableBranchStatusChangedPayload) Get added in v0.0.19

func (NullableBranchStatusChangedPayload) IsSet added in v0.0.19

func (NullableBranchStatusChangedPayload) MarshalJSON added in v0.0.19

func (v NullableBranchStatusChangedPayload) MarshalJSON() ([]byte, error)

func (*NullableBranchStatusChangedPayload) Set added in v0.0.19

func (*NullableBranchStatusChangedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableBranchStatusChangedPayload) UnmarshalJSON(src []byte) error

func (*NullableBranchStatusChangedPayload) Unset added in v0.0.19

type NullableBuyer

type NullableBuyer struct {
	// contains filtered or unexported fields
}

func NewNullableBuyer

func NewNullableBuyer(val *Buyer) *NullableBuyer

func (NullableBuyer) Get

func (v NullableBuyer) Get() *Buyer

func (NullableBuyer) IsSet

func (v NullableBuyer) IsSet() bool

func (NullableBuyer) MarshalJSON

func (v NullableBuyer) MarshalJSON() ([]byte, error)

func (*NullableBuyer) Set

func (v *NullableBuyer) Set(val *Buyer)

func (*NullableBuyer) UnmarshalJSON

func (v *NullableBuyer) UnmarshalJSON(src []byte) error

func (*NullableBuyer) Unset

func (v *NullableBuyer) Unset()

type NullableCertificateExpiringPayload added in v0.0.19

type NullableCertificateExpiringPayload struct {
	// contains filtered or unexported fields
}

func NewNullableCertificateExpiringPayload added in v0.0.19

func NewNullableCertificateExpiringPayload(val *CertificateExpiringPayload) *NullableCertificateExpiringPayload

func (NullableCertificateExpiringPayload) Get added in v0.0.19

func (NullableCertificateExpiringPayload) IsSet added in v0.0.19

func (NullableCertificateExpiringPayload) MarshalJSON added in v0.0.19

func (v NullableCertificateExpiringPayload) MarshalJSON() ([]byte, error)

func (*NullableCertificateExpiringPayload) Set added in v0.0.19

func (*NullableCertificateExpiringPayload) UnmarshalJSON added in v0.0.19

func (v *NullableCertificateExpiringPayload) UnmarshalJSON(src []byte) error

func (*NullableCertificateExpiringPayload) Unset added in v0.0.19

type NullableCertificationCompletedPayload added in v0.0.19

type NullableCertificationCompletedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableCertificationCompletedPayload added in v0.0.19

func NewNullableCertificationCompletedPayload(val *CertificationCompletedPayload) *NullableCertificationCompletedPayload

func (NullableCertificationCompletedPayload) Get added in v0.0.19

func (NullableCertificationCompletedPayload) IsSet added in v0.0.19

func (NullableCertificationCompletedPayload) MarshalJSON added in v0.0.19

func (v NullableCertificationCompletedPayload) MarshalJSON() ([]byte, error)

func (*NullableCertificationCompletedPayload) Set added in v0.0.19

func (*NullableCertificationCompletedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableCertificationCompletedPayload) UnmarshalJSON(src []byte) error

func (*NullableCertificationCompletedPayload) Unset added in v0.0.19

type NullableCertificationNiche added in v0.0.7

type NullableCertificationNiche struct {
	// contains filtered or unexported fields
}

func NewNullableCertificationNiche added in v0.0.7

func NewNullableCertificationNiche(val *CertificationNiche) *NullableCertificationNiche

func (NullableCertificationNiche) Get added in v0.0.7

func (NullableCertificationNiche) IsSet added in v0.0.7

func (v NullableCertificationNiche) IsSet() bool

func (NullableCertificationNiche) MarshalJSON added in v0.0.7

func (v NullableCertificationNiche) MarshalJSON() ([]byte, error)

func (*NullableCertificationNiche) Set added in v0.0.7

func (*NullableCertificationNiche) UnmarshalJSON added in v0.0.7

func (v *NullableCertificationNiche) UnmarshalJSON(src []byte) error

func (*NullableCertificationNiche) Unset added in v0.0.7

func (v *NullableCertificationNiche) Unset()

type NullableCertificationNicheNicheItemsInner added in v0.0.7

type NullableCertificationNicheNicheItemsInner struct {
	// contains filtered or unexported fields
}

func NewNullableCertificationNicheNicheItemsInner added in v0.0.7

func NewNullableCertificationNicheNicheItemsInner(val *CertificationNicheNicheItemsInner) *NullableCertificationNicheNicheItemsInner

func (NullableCertificationNicheNicheItemsInner) Get added in v0.0.7

func (NullableCertificationNicheNicheItemsInner) IsSet added in v0.0.7

func (NullableCertificationNicheNicheItemsInner) MarshalJSON added in v0.0.7

func (*NullableCertificationNicheNicheItemsInner) Set added in v0.0.7

func (*NullableCertificationNicheNicheItemsInner) UnmarshalJSON added in v0.0.7

func (v *NullableCertificationNicheNicheItemsInner) UnmarshalJSON(src []byte) error

func (*NullableCertificationNicheNicheItemsInner) Unset added in v0.0.7

type NullableCertificationStatus added in v0.0.7

type NullableCertificationStatus struct {
	// contains filtered or unexported fields
}

func NewNullableCertificationStatus added in v0.0.7

func NewNullableCertificationStatus(val *CertificationStatus) *NullableCertificationStatus

func (NullableCertificationStatus) Get added in v0.0.7

func (NullableCertificationStatus) IsSet added in v0.0.7

func (NullableCertificationStatus) MarshalJSON added in v0.0.7

func (v NullableCertificationStatus) MarshalJSON() ([]byte, error)

func (*NullableCertificationStatus) Set added in v0.0.7

func (*NullableCertificationStatus) UnmarshalJSON added in v0.0.7

func (v *NullableCertificationStatus) UnmarshalJSON(src []byte) error

func (*NullableCertificationStatus) Unset added in v0.0.7

func (v *NullableCertificationStatus) Unset()

type NullableCommercialApprovalPayload added in v0.0.19

type NullableCommercialApprovalPayload struct {
	// contains filtered or unexported fields
}

func NewNullableCommercialApprovalPayload added in v0.0.19

func NewNullableCommercialApprovalPayload(val *CommercialApprovalPayload) *NullableCommercialApprovalPayload

func (NullableCommercialApprovalPayload) Get added in v0.0.19

func (NullableCommercialApprovalPayload) IsSet added in v0.0.19

func (NullableCommercialApprovalPayload) MarshalJSON added in v0.0.19

func (v NullableCommercialApprovalPayload) MarshalJSON() ([]byte, error)

func (*NullableCommercialApprovalPayload) Set added in v0.0.19

func (*NullableCommercialApprovalPayload) UnmarshalJSON added in v0.0.19

func (v *NullableCommercialApprovalPayload) UnmarshalJSON(src []byte) error

func (*NullableCommercialApprovalPayload) Unset added in v0.0.19

type NullableCompanyDocumentMetrics added in v0.0.7

type NullableCompanyDocumentMetrics struct {
	// contains filtered or unexported fields
}

func NewNullableCompanyDocumentMetrics added in v0.0.7

func NewNullableCompanyDocumentMetrics(val *CompanyDocumentMetrics) *NullableCompanyDocumentMetrics

func (NullableCompanyDocumentMetrics) Get added in v0.0.7

func (NullableCompanyDocumentMetrics) IsSet added in v0.0.7

func (NullableCompanyDocumentMetrics) MarshalJSON added in v0.0.7

func (v NullableCompanyDocumentMetrics) MarshalJSON() ([]byte, error)

func (*NullableCompanyDocumentMetrics) Set added in v0.0.7

func (*NullableCompanyDocumentMetrics) UnmarshalJSON added in v0.0.7

func (v *NullableCompanyDocumentMetrics) UnmarshalJSON(src []byte) error

func (*NullableCompanyDocumentMetrics) Unset added in v0.0.7

func (v *NullableCompanyDocumentMetrics) Unset()

type NullableCompanyDocumentMetricsGroupByStatusInner added in v0.0.7

type NullableCompanyDocumentMetricsGroupByStatusInner struct {
	// contains filtered or unexported fields
}

func (NullableCompanyDocumentMetricsGroupByStatusInner) Get added in v0.0.7

func (NullableCompanyDocumentMetricsGroupByStatusInner) IsSet added in v0.0.7

func (NullableCompanyDocumentMetricsGroupByStatusInner) MarshalJSON added in v0.0.7

func (*NullableCompanyDocumentMetricsGroupByStatusInner) Set added in v0.0.7

func (*NullableCompanyDocumentMetricsGroupByStatusInner) UnmarshalJSON added in v0.0.7

func (*NullableCompanyDocumentMetricsGroupByStatusInner) Unset added in v0.0.7

type NullableCompanyDocumentMetricsGroupByStatusInnerCount added in v0.0.7

type NullableCompanyDocumentMetricsGroupByStatusInnerCount struct {
	// contains filtered or unexported fields
}

func (NullableCompanyDocumentMetricsGroupByStatusInnerCount) Get added in v0.0.7

func (NullableCompanyDocumentMetricsGroupByStatusInnerCount) IsSet added in v0.0.7

func (NullableCompanyDocumentMetricsGroupByStatusInnerCount) MarshalJSON added in v0.0.7

func (*NullableCompanyDocumentMetricsGroupByStatusInnerCount) Set added in v0.0.7

func (*NullableCompanyDocumentMetricsGroupByStatusInnerCount) UnmarshalJSON added in v0.0.7

func (*NullableCompanyDocumentMetricsGroupByStatusInnerCount) Unset added in v0.0.7

type NullableCompanyDocumentMetricsMainBusiness added in v0.0.7

type NullableCompanyDocumentMetricsMainBusiness struct {
	// contains filtered or unexported fields
}

func NewNullableCompanyDocumentMetricsMainBusiness added in v0.0.7

func NewNullableCompanyDocumentMetricsMainBusiness(val *CompanyDocumentMetricsMainBusiness) *NullableCompanyDocumentMetricsMainBusiness

func (NullableCompanyDocumentMetricsMainBusiness) Get added in v0.0.7

func (NullableCompanyDocumentMetricsMainBusiness) IsSet added in v0.0.7

func (NullableCompanyDocumentMetricsMainBusiness) MarshalJSON added in v0.0.7

func (*NullableCompanyDocumentMetricsMainBusiness) Set added in v0.0.7

func (*NullableCompanyDocumentMetricsMainBusiness) UnmarshalJSON added in v0.0.7

func (v *NullableCompanyDocumentMetricsMainBusiness) UnmarshalJSON(src []byte) error

func (*NullableCompanyDocumentMetricsMainBusiness) Unset added in v0.0.7

type NullableCompanyDocumentMetricsTotals added in v0.0.7

type NullableCompanyDocumentMetricsTotals struct {
	// contains filtered or unexported fields
}

func NewNullableCompanyDocumentMetricsTotals added in v0.0.7

func NewNullableCompanyDocumentMetricsTotals(val *CompanyDocumentMetricsTotals) *NullableCompanyDocumentMetricsTotals

func (NullableCompanyDocumentMetricsTotals) Get added in v0.0.7

func (NullableCompanyDocumentMetricsTotals) IsSet added in v0.0.7

func (NullableCompanyDocumentMetricsTotals) MarshalJSON added in v0.0.7

func (v NullableCompanyDocumentMetricsTotals) MarshalJSON() ([]byte, error)

func (*NullableCompanyDocumentMetricsTotals) Set added in v0.0.7

func (*NullableCompanyDocumentMetricsTotals) UnmarshalJSON added in v0.0.7

func (v *NullableCompanyDocumentMetricsTotals) UnmarshalJSON(src []byte) error

func (*NullableCompanyDocumentMetricsTotals) Unset added in v0.0.7

type NullableCompanyMetrics added in v0.0.7

type NullableCompanyMetrics struct {
	// contains filtered or unexported fields
}

func NewNullableCompanyMetrics added in v0.0.7

func NewNullableCompanyMetrics(val *CompanyMetrics) *NullableCompanyMetrics

func (NullableCompanyMetrics) Get added in v0.0.7

func (NullableCompanyMetrics) IsSet added in v0.0.7

func (v NullableCompanyMetrics) IsSet() bool

func (NullableCompanyMetrics) MarshalJSON added in v0.0.7

func (v NullableCompanyMetrics) MarshalJSON() ([]byte, error)

func (*NullableCompanyMetrics) Set added in v0.0.7

func (*NullableCompanyMetrics) UnmarshalJSON added in v0.0.7

func (v *NullableCompanyMetrics) UnmarshalJSON(src []byte) error

func (*NullableCompanyMetrics) Unset added in v0.0.7

func (v *NullableCompanyMetrics) Unset()

type NullableCompanyMetricsDocumentsStatus added in v0.0.7

type NullableCompanyMetricsDocumentsStatus struct {
	// contains filtered or unexported fields
}

func NewNullableCompanyMetricsDocumentsStatus added in v0.0.7

func NewNullableCompanyMetricsDocumentsStatus(val *CompanyMetricsDocumentsStatus) *NullableCompanyMetricsDocumentsStatus

func (NullableCompanyMetricsDocumentsStatus) Get added in v0.0.7

func (NullableCompanyMetricsDocumentsStatus) IsSet added in v0.0.7

func (NullableCompanyMetricsDocumentsStatus) MarshalJSON added in v0.0.7

func (v NullableCompanyMetricsDocumentsStatus) MarshalJSON() ([]byte, error)

func (*NullableCompanyMetricsDocumentsStatus) Set added in v0.0.7

func (*NullableCompanyMetricsDocumentsStatus) UnmarshalJSON added in v0.0.7

func (v *NullableCompanyMetricsDocumentsStatus) UnmarshalJSON(src []byte) error

func (*NullableCompanyMetricsDocumentsStatus) Unset added in v0.0.7

type NullableContingencyActivatedPayload added in v0.0.19

type NullableContingencyActivatedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableContingencyActivatedPayload added in v0.0.19

func NewNullableContingencyActivatedPayload(val *ContingencyActivatedPayload) *NullableContingencyActivatedPayload

func (NullableContingencyActivatedPayload) Get added in v0.0.19

func (NullableContingencyActivatedPayload) IsSet added in v0.0.19

func (NullableContingencyActivatedPayload) MarshalJSON added in v0.0.19

func (v NullableContingencyActivatedPayload) MarshalJSON() ([]byte, error)

func (*NullableContingencyActivatedPayload) Set added in v0.0.19

func (*NullableContingencyActivatedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableContingencyActivatedPayload) UnmarshalJSON(src []byte) error

func (*NullableContingencyActivatedPayload) Unset added in v0.0.19

type NullableCreateAssociatedCompany201Response

type NullableCreateAssociatedCompany201Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateAssociatedCompany201Response) Get

func (NullableCreateAssociatedCompany201Response) IsSet

func (NullableCreateAssociatedCompany201Response) MarshalJSON

func (*NullableCreateAssociatedCompany201Response) Set

func (*NullableCreateAssociatedCompany201Response) UnmarshalJSON

func (v *NullableCreateAssociatedCompany201Response) UnmarshalJSON(src []byte) error

func (*NullableCreateAssociatedCompany201Response) Unset

type NullableCreateTaxSequence201Response added in v0.0.7

type NullableCreateTaxSequence201Response struct {
	// contains filtered or unexported fields
}

func NewNullableCreateTaxSequence201Response added in v0.0.7

func NewNullableCreateTaxSequence201Response(val *CreateTaxSequence201Response) *NullableCreateTaxSequence201Response

func (NullableCreateTaxSequence201Response) Get added in v0.0.7

func (NullableCreateTaxSequence201Response) IsSet added in v0.0.7

func (NullableCreateTaxSequence201Response) MarshalJSON added in v0.0.7

func (v NullableCreateTaxSequence201Response) MarshalJSON() ([]byte, error)

func (*NullableCreateTaxSequence201Response) Set added in v0.0.7

func (*NullableCreateTaxSequence201Response) UnmarshalJSON added in v0.0.7

func (v *NullableCreateTaxSequence201Response) UnmarshalJSON(src []byte) error

func (*NullableCreateTaxSequence201Response) Unset added in v0.0.7

type NullableCreateTaxSequenceRequest

type NullableCreateTaxSequenceRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateTaxSequenceRequest) Get

func (NullableCreateTaxSequenceRequest) IsSet

func (NullableCreateTaxSequenceRequest) MarshalJSON

func (v NullableCreateTaxSequenceRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateTaxSequenceRequest) Set

func (*NullableCreateTaxSequenceRequest) UnmarshalJSON

func (v *NullableCreateTaxSequenceRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateTaxSequenceRequest) Unset

type NullableCreateWebhookConfig

type NullableCreateWebhookConfig struct {
	// contains filtered or unexported fields
}

func NewNullableCreateWebhookConfig

func NewNullableCreateWebhookConfig(val *CreateWebhookConfig) *NullableCreateWebhookConfig

func (NullableCreateWebhookConfig) Get

func (NullableCreateWebhookConfig) IsSet

func (NullableCreateWebhookConfig) MarshalJSON

func (v NullableCreateWebhookConfig) MarshalJSON() ([]byte, error)

func (*NullableCreateWebhookConfig) Set

func (*NullableCreateWebhookConfig) UnmarshalJSON

func (v *NullableCreateWebhookConfig) UnmarshalJSON(src []byte) error

func (*NullableCreateWebhookConfig) Unset

func (v *NullableCreateWebhookConfig) Unset()

type NullableDeleteAssociatedCompany200Response added in v0.0.7

type NullableDeleteAssociatedCompany200Response struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteAssociatedCompany200Response added in v0.0.7

func NewNullableDeleteAssociatedCompany200Response(val *DeleteAssociatedCompany200Response) *NullableDeleteAssociatedCompany200Response

func (NullableDeleteAssociatedCompany200Response) Get added in v0.0.7

func (NullableDeleteAssociatedCompany200Response) IsSet added in v0.0.7

func (NullableDeleteAssociatedCompany200Response) MarshalJSON added in v0.0.7

func (*NullableDeleteAssociatedCompany200Response) Set added in v0.0.7

func (*NullableDeleteAssociatedCompany200Response) UnmarshalJSON added in v0.0.7

func (v *NullableDeleteAssociatedCompany200Response) UnmarshalJSON(src []byte) error

func (*NullableDeleteAssociatedCompany200Response) Unset added in v0.0.7

type NullableDgiiMessage added in v0.0.10

type NullableDgiiMessage struct {
	// contains filtered or unexported fields
}

func NewNullableDgiiMessage added in v0.0.10

func NewNullableDgiiMessage(val *DgiiMessage) *NullableDgiiMessage

func (NullableDgiiMessage) Get added in v0.0.10

func (NullableDgiiMessage) IsSet added in v0.0.10

func (v NullableDgiiMessage) IsSet() bool

func (NullableDgiiMessage) MarshalJSON added in v0.0.10

func (v NullableDgiiMessage) MarshalJSON() ([]byte, error)

func (*NullableDgiiMessage) Set added in v0.0.10

func (v *NullableDgiiMessage) Set(val *DgiiMessage)

func (*NullableDgiiMessage) UnmarshalJSON added in v0.0.10

func (v *NullableDgiiMessage) UnmarshalJSON(src []byte) error

func (*NullableDgiiMessage) Unset added in v0.0.10

func (v *NullableDgiiMessage) Unset()

type NullableDiscountOrSurcharge

type NullableDiscountOrSurcharge struct {
	// contains filtered or unexported fields
}

func NewNullableDiscountOrSurcharge

func NewNullableDiscountOrSurcharge(val *DiscountOrSurcharge) *NullableDiscountOrSurcharge

func (NullableDiscountOrSurcharge) Get

func (NullableDiscountOrSurcharge) IsSet

func (NullableDiscountOrSurcharge) MarshalJSON

func (v NullableDiscountOrSurcharge) MarshalJSON() ([]byte, error)

func (*NullableDiscountOrSurcharge) Set

func (*NullableDiscountOrSurcharge) UnmarshalJSON

func (v *NullableDiscountOrSurcharge) UnmarshalJSON(src []byte) error

func (*NullableDiscountOrSurcharge) Unset

func (v *NullableDiscountOrSurcharge) Unset()

type NullableDocumentReceivedPayload added in v0.0.19

type NullableDocumentReceivedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableDocumentReceivedPayload added in v0.0.19

func NewNullableDocumentReceivedPayload(val *DocumentReceivedPayload) *NullableDocumentReceivedPayload

func (NullableDocumentReceivedPayload) Get added in v0.0.19

func (NullableDocumentReceivedPayload) IsSet added in v0.0.19

func (NullableDocumentReceivedPayload) MarshalJSON added in v0.0.19

func (v NullableDocumentReceivedPayload) MarshalJSON() ([]byte, error)

func (*NullableDocumentReceivedPayload) Set added in v0.0.19

func (*NullableDocumentReceivedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableDocumentReceivedPayload) UnmarshalJSON(src []byte) error

func (*NullableDocumentReceivedPayload) Unset added in v0.0.19

type NullableDocumentStatsResponse added in v0.0.7

type NullableDocumentStatsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDocumentStatsResponse added in v0.0.7

func NewNullableDocumentStatsResponse(val *DocumentStatsResponse) *NullableDocumentStatsResponse

func (NullableDocumentStatsResponse) Get added in v0.0.7

func (NullableDocumentStatsResponse) IsSet added in v0.0.7

func (NullableDocumentStatsResponse) MarshalJSON added in v0.0.7

func (v NullableDocumentStatsResponse) MarshalJSON() ([]byte, error)

func (*NullableDocumentStatsResponse) Set added in v0.0.7

func (*NullableDocumentStatsResponse) UnmarshalJSON added in v0.0.7

func (v *NullableDocumentStatsResponse) UnmarshalJSON(src []byte) error

func (*NullableDocumentStatsResponse) Unset added in v0.0.7

func (v *NullableDocumentStatsResponse) Unset()

type NullableDocumentStatsResponseByStatusValue added in v0.0.19

type NullableDocumentStatsResponseByStatusValue struct {
	// contains filtered or unexported fields
}

func NewNullableDocumentStatsResponseByStatusValue added in v0.0.19

func NewNullableDocumentStatsResponseByStatusValue(val *DocumentStatsResponseByStatusValue) *NullableDocumentStatsResponseByStatusValue

func (NullableDocumentStatsResponseByStatusValue) Get added in v0.0.19

func (NullableDocumentStatsResponseByStatusValue) IsSet added in v0.0.19

func (NullableDocumentStatsResponseByStatusValue) MarshalJSON added in v0.0.19

func (*NullableDocumentStatsResponseByStatusValue) Set added in v0.0.19

func (*NullableDocumentStatsResponseByStatusValue) UnmarshalJSON added in v0.0.19

func (v *NullableDocumentStatsResponseByStatusValue) UnmarshalJSON(src []byte) error

func (*NullableDocumentStatsResponseByStatusValue) Unset added in v0.0.19

type NullableDocumentStatus added in v0.0.7

type NullableDocumentStatus struct {
	// contains filtered or unexported fields
}

func NewNullableDocumentStatus added in v0.0.7

func NewNullableDocumentStatus(val *DocumentStatus) *NullableDocumentStatus

func (NullableDocumentStatus) Get added in v0.0.7

func (NullableDocumentStatus) IsSet added in v0.0.7

func (v NullableDocumentStatus) IsSet() bool

func (NullableDocumentStatus) MarshalJSON added in v0.0.7

func (v NullableDocumentStatus) MarshalJSON() ([]byte, error)

func (*NullableDocumentStatus) Set added in v0.0.7

func (*NullableDocumentStatus) UnmarshalJSON added in v0.0.7

func (v *NullableDocumentStatus) UnmarshalJSON(src []byte) error

func (*NullableDocumentStatus) Unset added in v0.0.7

func (v *NullableDocumentStatus) Unset()

type NullableDocumentStatusChangedPayload added in v0.0.19

type NullableDocumentStatusChangedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableDocumentStatusChangedPayload added in v0.0.19

func NewNullableDocumentStatusChangedPayload(val *DocumentStatusChangedPayload) *NullableDocumentStatusChangedPayload

func (NullableDocumentStatusChangedPayload) Get added in v0.0.19

func (NullableDocumentStatusChangedPayload) IsSet added in v0.0.19

func (NullableDocumentStatusChangedPayload) MarshalJSON added in v0.0.19

func (v NullableDocumentStatusChangedPayload) MarshalJSON() ([]byte, error)

func (*NullableDocumentStatusChangedPayload) Set added in v0.0.19

func (*NullableDocumentStatusChangedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableDocumentStatusChangedPayload) UnmarshalJSON(src []byte) error

func (*NullableDocumentStatusChangedPayload) Unset added in v0.0.19

type NullableDocumentValidationErrorPayload added in v0.0.19

type NullableDocumentValidationErrorPayload struct {
	// contains filtered or unexported fields
}

func NewNullableDocumentValidationErrorPayload added in v0.0.19

func NewNullableDocumentValidationErrorPayload(val *DocumentValidationErrorPayload) *NullableDocumentValidationErrorPayload

func (NullableDocumentValidationErrorPayload) Get added in v0.0.19

func (NullableDocumentValidationErrorPayload) IsSet added in v0.0.19

func (NullableDocumentValidationErrorPayload) MarshalJSON added in v0.0.19

func (v NullableDocumentValidationErrorPayload) MarshalJSON() ([]byte, error)

func (*NullableDocumentValidationErrorPayload) Set added in v0.0.19

func (*NullableDocumentValidationErrorPayload) UnmarshalJSON added in v0.0.19

func (v *NullableDocumentValidationErrorPayload) UnmarshalJSON(src []byte) error

func (*NullableDocumentValidationErrorPayload) Unset added in v0.0.19

type NullableEcfHistoryItem added in v0.0.7

type NullableEcfHistoryItem struct {
	// contains filtered or unexported fields
}

func NewNullableEcfHistoryItem added in v0.0.7

func NewNullableEcfHistoryItem(val *EcfHistoryItem) *NullableEcfHistoryItem

func (NullableEcfHistoryItem) Get added in v0.0.7

func (NullableEcfHistoryItem) IsSet added in v0.0.7

func (v NullableEcfHistoryItem) IsSet() bool

func (NullableEcfHistoryItem) MarshalJSON added in v0.0.7

func (v NullableEcfHistoryItem) MarshalJSON() ([]byte, error)

func (*NullableEcfHistoryItem) Set added in v0.0.7

func (*NullableEcfHistoryItem) UnmarshalJSON added in v0.0.7

func (v *NullableEcfHistoryItem) UnmarshalJSON(src []byte) error

func (*NullableEcfHistoryItem) Unset added in v0.0.7

func (v *NullableEcfHistoryItem) Unset()

type NullableEcfStatsResponse added in v0.0.7

type NullableEcfStatsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableEcfStatsResponse added in v0.0.7

func NewNullableEcfStatsResponse(val *EcfStatsResponse) *NullableEcfStatsResponse

func (NullableEcfStatsResponse) Get added in v0.0.7

func (NullableEcfStatsResponse) IsSet added in v0.0.7

func (v NullableEcfStatsResponse) IsSet() bool

func (NullableEcfStatsResponse) MarshalJSON added in v0.0.7

func (v NullableEcfStatsResponse) MarshalJSON() ([]byte, error)

func (*NullableEcfStatsResponse) Set added in v0.0.7

func (*NullableEcfStatsResponse) UnmarshalJSON added in v0.0.7

func (v *NullableEcfStatsResponse) UnmarshalJSON(src []byte) error

func (*NullableEcfStatsResponse) Unset added in v0.0.7

func (v *NullableEcfStatsResponse) Unset()

type NullableEcfStatusResponse added in v0.0.7

type NullableEcfStatusResponse struct {
	// contains filtered or unexported fields
}

func NewNullableEcfStatusResponse added in v0.0.7

func NewNullableEcfStatusResponse(val *EcfStatusResponse) *NullableEcfStatusResponse

func (NullableEcfStatusResponse) Get added in v0.0.7

func (NullableEcfStatusResponse) IsSet added in v0.0.7

func (v NullableEcfStatusResponse) IsSet() bool

func (NullableEcfStatusResponse) MarshalJSON added in v0.0.7

func (v NullableEcfStatusResponse) MarshalJSON() ([]byte, error)

func (*NullableEcfStatusResponse) Set added in v0.0.7

func (*NullableEcfStatusResponse) UnmarshalJSON added in v0.0.7

func (v *NullableEcfStatusResponse) UnmarshalJSON(src []byte) error

func (*NullableEcfStatusResponse) Unset added in v0.0.7

func (v *NullableEcfStatusResponse) Unset()

type NullableEcfStatusResponseMensajesInner added in v0.0.7

type NullableEcfStatusResponseMensajesInner struct {
	// contains filtered or unexported fields
}

func NewNullableEcfStatusResponseMensajesInner added in v0.0.7

func NewNullableEcfStatusResponseMensajesInner(val *EcfStatusResponseMensajesInner) *NullableEcfStatusResponseMensajesInner

func (NullableEcfStatusResponseMensajesInner) Get added in v0.0.7

func (NullableEcfStatusResponseMensajesInner) IsSet added in v0.0.7

func (NullableEcfStatusResponseMensajesInner) MarshalJSON added in v0.0.7

func (v NullableEcfStatusResponseMensajesInner) MarshalJSON() ([]byte, error)

func (*NullableEcfStatusResponseMensajesInner) Set added in v0.0.7

func (*NullableEcfStatusResponseMensajesInner) UnmarshalJSON added in v0.0.7

func (v *NullableEcfStatusResponseMensajesInner) UnmarshalJSON(src []byte) error

func (*NullableEcfStatusResponseMensajesInner) Unset added in v0.0.7

type NullableEcfSubmissionResponse

type NullableEcfSubmissionResponse struct {
	// contains filtered or unexported fields
}

func (NullableEcfSubmissionResponse) Get

func (NullableEcfSubmissionResponse) IsSet

func (NullableEcfSubmissionResponse) MarshalJSON

func (v NullableEcfSubmissionResponse) MarshalJSON() ([]byte, error)

func (*NullableEcfSubmissionResponse) Set

func (*NullableEcfSubmissionResponse) UnmarshalJSON

func (v *NullableEcfSubmissionResponse) UnmarshalJSON(src []byte) error

func (*NullableEcfSubmissionResponse) Unset

func (v *NullableEcfSubmissionResponse) Unset()

type NullableEcfSubmissionResponseDgiiResponse added in v0.0.7

type NullableEcfSubmissionResponseDgiiResponse struct {
	// contains filtered or unexported fields
}

func NewNullableEcfSubmissionResponseDgiiResponse added in v0.0.7

func NewNullableEcfSubmissionResponseDgiiResponse(val *EcfSubmissionResponseDgiiResponse) *NullableEcfSubmissionResponseDgiiResponse

func (NullableEcfSubmissionResponseDgiiResponse) Get added in v0.0.7

func (NullableEcfSubmissionResponseDgiiResponse) IsSet added in v0.0.7

func (NullableEcfSubmissionResponseDgiiResponse) MarshalJSON added in v0.0.7

func (*NullableEcfSubmissionResponseDgiiResponse) Set added in v0.0.7

func (*NullableEcfSubmissionResponseDgiiResponse) UnmarshalJSON added in v0.0.7

func (v *NullableEcfSubmissionResponseDgiiResponse) UnmarshalJSON(src []byte) error

func (*NullableEcfSubmissionResponseDgiiResponse) Unset added in v0.0.7

type NullableEcfSubmitResponse added in v0.0.19

type NullableEcfSubmitResponse struct {
	// contains filtered or unexported fields
}

func NewNullableEcfSubmitResponse added in v0.0.19

func NewNullableEcfSubmitResponse(val *EcfSubmitResponse) *NullableEcfSubmitResponse

func (NullableEcfSubmitResponse) Get added in v0.0.19

func (NullableEcfSubmitResponse) IsSet added in v0.0.19

func (v NullableEcfSubmitResponse) IsSet() bool

func (NullableEcfSubmitResponse) MarshalJSON added in v0.0.19

func (v NullableEcfSubmitResponse) MarshalJSON() ([]byte, error)

func (*NullableEcfSubmitResponse) Set added in v0.0.19

func (*NullableEcfSubmitResponse) UnmarshalJSON added in v0.0.19

func (v *NullableEcfSubmitResponse) UnmarshalJSON(src []byte) error

func (*NullableEcfSubmitResponse) Unset added in v0.0.19

func (v *NullableEcfSubmitResponse) Unset()

type NullableEcfSubmitResponseCompanyIdentification added in v0.0.19

type NullableEcfSubmitResponseCompanyIdentification struct {
	// contains filtered or unexported fields
}

func (NullableEcfSubmitResponseCompanyIdentification) Get added in v0.0.19

func (NullableEcfSubmitResponseCompanyIdentification) IsSet added in v0.0.19

func (NullableEcfSubmitResponseCompanyIdentification) MarshalJSON added in v0.0.19

func (*NullableEcfSubmitResponseCompanyIdentification) Set added in v0.0.19

func (*NullableEcfSubmitResponseCompanyIdentification) UnmarshalJSON added in v0.0.19

func (*NullableEcfSubmitResponseCompanyIdentification) Unset added in v0.0.19

type NullableElectronicDocument

type NullableElectronicDocument struct {
	// contains filtered or unexported fields
}

func NewNullableElectronicDocument

func NewNullableElectronicDocument(val *ElectronicDocument) *NullableElectronicDocument

func (NullableElectronicDocument) Get

func (NullableElectronicDocument) IsSet

func (v NullableElectronicDocument) IsSet() bool

func (NullableElectronicDocument) MarshalJSON

func (v NullableElectronicDocument) MarshalJSON() ([]byte, error)

func (*NullableElectronicDocument) Set

func (*NullableElectronicDocument) UnmarshalJSON

func (v *NullableElectronicDocument) UnmarshalJSON(src []byte) error

func (*NullableElectronicDocument) Unset

func (v *NullableElectronicDocument) Unset()

type NullableEnvironment

type NullableEnvironment struct {
	// contains filtered or unexported fields
}

func NewNullableEnvironment

func NewNullableEnvironment(val *Environment) *NullableEnvironment

func (NullableEnvironment) Get

func (NullableEnvironment) IsSet

func (v NullableEnvironment) IsSet() bool

func (NullableEnvironment) MarshalJSON

func (v NullableEnvironment) MarshalJSON() ([]byte, error)

func (*NullableEnvironment) Set

func (v *NullableEnvironment) Set(val *Environment)

func (*NullableEnvironment) UnmarshalJSON

func (v *NullableEnvironment) UnmarshalJSON(src []byte) error

func (*NullableEnvironment) Unset

func (v *NullableEnvironment) Unset()

type NullableErrorResponse

type NullableErrorResponse struct {
	// contains filtered or unexported fields
}

func NewNullableErrorResponse

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get

func (NullableErrorResponse) IsSet

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON

func (v NullableErrorResponse) MarshalJSON() ([]byte, error)

func (*NullableErrorResponse) Set

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON

func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error

func (*NullableErrorResponse) Unset

func (v *NullableErrorResponse) 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 NullableGetEcfSubmissionHistory200Response added in v0.0.19

type NullableGetEcfSubmissionHistory200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetEcfSubmissionHistory200Response added in v0.0.19

func NewNullableGetEcfSubmissionHistory200Response(val *GetEcfSubmissionHistory200Response) *NullableGetEcfSubmissionHistory200Response

func (NullableGetEcfSubmissionHistory200Response) Get added in v0.0.19

func (NullableGetEcfSubmissionHistory200Response) IsSet added in v0.0.19

func (NullableGetEcfSubmissionHistory200Response) MarshalJSON added in v0.0.19

func (*NullableGetEcfSubmissionHistory200Response) Set added in v0.0.19

func (*NullableGetEcfSubmissionHistory200Response) UnmarshalJSON added in v0.0.19

func (v *NullableGetEcfSubmissionHistory200Response) UnmarshalJSON(src []byte) error

func (*NullableGetEcfSubmissionHistory200Response) Unset added in v0.0.19

type NullableGetNextNumber200Response

type NullableGetNextNumber200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetNextNumber200Response) Get

func (NullableGetNextNumber200Response) IsSet

func (NullableGetNextNumber200Response) MarshalJSON

func (v NullableGetNextNumber200Response) MarshalJSON() ([]byte, error)

func (*NullableGetNextNumber200Response) Set

func (*NullableGetNextNumber200Response) UnmarshalJSON

func (v *NullableGetNextNumber200Response) UnmarshalJSON(src []byte) error

func (*NullableGetNextNumber200Response) Unset

type NullableGetNextNumber200ResponseData

type NullableGetNextNumber200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableGetNextNumber200ResponseData) Get

func (NullableGetNextNumber200ResponseData) IsSet

func (NullableGetNextNumber200ResponseData) MarshalJSON

func (v NullableGetNextNumber200ResponseData) MarshalJSON() ([]byte, error)

func (*NullableGetNextNumber200ResponseData) Set

func (*NullableGetNextNumber200ResponseData) UnmarshalJSON

func (v *NullableGetNextNumber200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableGetNextNumber200ResponseData) Unset

type NullableGetReceivedDocumentStatsBySupplier200ResponseInner added in v0.0.19

type NullableGetReceivedDocumentStatsBySupplier200ResponseInner struct {
	// contains filtered or unexported fields
}

func (NullableGetReceivedDocumentStatsBySupplier200ResponseInner) Get added in v0.0.19

func (NullableGetReceivedDocumentStatsBySupplier200ResponseInner) IsSet added in v0.0.19

func (NullableGetReceivedDocumentStatsBySupplier200ResponseInner) MarshalJSON added in v0.0.19

func (*NullableGetReceivedDocumentStatsBySupplier200ResponseInner) Set added in v0.0.19

func (*NullableGetReceivedDocumentStatsBySupplier200ResponseInner) UnmarshalJSON added in v0.0.19

func (*NullableGetReceivedDocumentStatsBySupplier200ResponseInner) Unset added in v0.0.19

type NullableGetSentDocumentLogs200ResponseInner added in v0.0.19

type NullableGetSentDocumentLogs200ResponseInner struct {
	// contains filtered or unexported fields
}

func NewNullableGetSentDocumentLogs200ResponseInner added in v0.0.19

func NewNullableGetSentDocumentLogs200ResponseInner(val *GetSentDocumentLogs200ResponseInner) *NullableGetSentDocumentLogs200ResponseInner

func (NullableGetSentDocumentLogs200ResponseInner) Get added in v0.0.19

func (NullableGetSentDocumentLogs200ResponseInner) IsSet added in v0.0.19

func (NullableGetSentDocumentLogs200ResponseInner) MarshalJSON added in v0.0.19

func (*NullableGetSentDocumentLogs200ResponseInner) Set added in v0.0.19

func (*NullableGetSentDocumentLogs200ResponseInner) UnmarshalJSON added in v0.0.19

func (v *NullableGetSentDocumentLogs200ResponseInner) UnmarshalJSON(src []byte) error

func (*NullableGetSentDocumentLogs200ResponseInner) Unset added in v0.0.19

type NullableGetSentDocumentStatusOptions200ResponseInner added in v0.0.19

type NullableGetSentDocumentStatusOptions200ResponseInner struct {
	// contains filtered or unexported fields
}

func (NullableGetSentDocumentStatusOptions200ResponseInner) Get added in v0.0.19

func (NullableGetSentDocumentStatusOptions200ResponseInner) IsSet added in v0.0.19

func (NullableGetSentDocumentStatusOptions200ResponseInner) MarshalJSON added in v0.0.19

func (*NullableGetSentDocumentStatusOptions200ResponseInner) Set added in v0.0.19

func (*NullableGetSentDocumentStatusOptions200ResponseInner) UnmarshalJSON added in v0.0.19

func (*NullableGetSentDocumentStatusOptions200ResponseInner) Unset added in v0.0.19

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 NullableInvoiceType

type NullableInvoiceType struct {
	// contains filtered or unexported fields
}

func NewNullableInvoiceType

func NewNullableInvoiceType(val *InvoiceType) *NullableInvoiceType

func (NullableInvoiceType) Get

func (NullableInvoiceType) IsSet

func (v NullableInvoiceType) IsSet() bool

func (NullableInvoiceType) MarshalJSON

func (v NullableInvoiceType) MarshalJSON() ([]byte, error)

func (*NullableInvoiceType) Set

func (v *NullableInvoiceType) Set(val *InvoiceType)

func (*NullableInvoiceType) UnmarshalJSON

func (v *NullableInvoiceType) UnmarshalJSON(src []byte) error

func (*NullableInvoiceType) Unset

func (v *NullableInvoiceType) Unset()

type NullableInvoiceTypeSequence added in v0.0.7

type NullableInvoiceTypeSequence struct {
	// contains filtered or unexported fields
}

func NewNullableInvoiceTypeSequence added in v0.0.7

func NewNullableInvoiceTypeSequence(val *InvoiceTypeSequence) *NullableInvoiceTypeSequence

func (NullableInvoiceTypeSequence) Get added in v0.0.7

func (NullableInvoiceTypeSequence) IsSet added in v0.0.7

func (NullableInvoiceTypeSequence) MarshalJSON added in v0.0.7

func (v NullableInvoiceTypeSequence) MarshalJSON() ([]byte, error)

func (*NullableInvoiceTypeSequence) Set added in v0.0.7

func (*NullableInvoiceTypeSequence) UnmarshalJSON added in v0.0.7

func (v *NullableInvoiceTypeSequence) UnmarshalJSON(src []byte) error

func (*NullableInvoiceTypeSequence) Unset added in v0.0.7

func (v *NullableInvoiceTypeSequence) Unset()

type NullableItem

type NullableItem struct {
	// contains filtered or unexported fields
}

func NewNullableItem

func NewNullableItem(val *Item) *NullableItem

func (NullableItem) Get

func (v NullableItem) Get() *Item

func (NullableItem) IsSet

func (v NullableItem) IsSet() bool

func (NullableItem) MarshalJSON

func (v NullableItem) MarshalJSON() ([]byte, error)

func (*NullableItem) Set

func (v *NullableItem) Set(val *Item)

func (*NullableItem) UnmarshalJSON

func (v *NullableItem) UnmarshalJSON(src []byte) error

func (*NullableItem) Unset

func (v *NullableItem) Unset()

type NullableItemAdditionalTax

type NullableItemAdditionalTax struct {
	// contains filtered or unexported fields
}

func NewNullableItemAdditionalTax

func NewNullableItemAdditionalTax(val *ItemAdditionalTax) *NullableItemAdditionalTax

func (NullableItemAdditionalTax) Get

func (NullableItemAdditionalTax) IsSet

func (v NullableItemAdditionalTax) IsSet() bool

func (NullableItemAdditionalTax) MarshalJSON

func (v NullableItemAdditionalTax) MarshalJSON() ([]byte, error)

func (*NullableItemAdditionalTax) Set

func (*NullableItemAdditionalTax) UnmarshalJSON

func (v *NullableItemAdditionalTax) UnmarshalJSON(src []byte) error

func (*NullableItemAdditionalTax) Unset

func (v *NullableItemAdditionalTax) Unset()

type NullableItemAlternativeCurrency added in v0.0.7

type NullableItemAlternativeCurrency struct {
	// contains filtered or unexported fields
}

func NewNullableItemAlternativeCurrency added in v0.0.7

func NewNullableItemAlternativeCurrency(val *ItemAlternativeCurrency) *NullableItemAlternativeCurrency

func (NullableItemAlternativeCurrency) Get added in v0.0.7

func (NullableItemAlternativeCurrency) IsSet added in v0.0.7

func (NullableItemAlternativeCurrency) MarshalJSON added in v0.0.7

func (v NullableItemAlternativeCurrency) MarshalJSON() ([]byte, error)

func (*NullableItemAlternativeCurrency) Set added in v0.0.7

func (*NullableItemAlternativeCurrency) UnmarshalJSON added in v0.0.7

func (v *NullableItemAlternativeCurrency) UnmarshalJSON(src []byte) error

func (*NullableItemAlternativeCurrency) Unset added in v0.0.7

type NullableItemAmount added in v0.0.10

type NullableItemAmount struct {
	// contains filtered or unexported fields
}

func NewNullableItemAmount added in v0.0.10

func NewNullableItemAmount(val *ItemAmount) *NullableItemAmount

func (NullableItemAmount) Get added in v0.0.10

func (v NullableItemAmount) Get() *ItemAmount

func (NullableItemAmount) IsSet added in v0.0.10

func (v NullableItemAmount) IsSet() bool

func (NullableItemAmount) MarshalJSON added in v0.0.10

func (v NullableItemAmount) MarshalJSON() ([]byte, error)

func (*NullableItemAmount) Set added in v0.0.10

func (v *NullableItemAmount) Set(val *ItemAmount)

func (*NullableItemAmount) UnmarshalJSON added in v0.0.10

func (v *NullableItemAmount) UnmarshalJSON(src []byte) error

func (*NullableItemAmount) Unset added in v0.0.10

func (v *NullableItemAmount) Unset()

type NullableItemCodesInner added in v0.0.7

type NullableItemCodesInner struct {
	// contains filtered or unexported fields
}

func NewNullableItemCodesInner added in v0.0.7

func NewNullableItemCodesInner(val *ItemCodesInner) *NullableItemCodesInner

func (NullableItemCodesInner) Get added in v0.0.7

func (NullableItemCodesInner) IsSet added in v0.0.7

func (v NullableItemCodesInner) IsSet() bool

func (NullableItemCodesInner) MarshalJSON added in v0.0.7

func (v NullableItemCodesInner) MarshalJSON() ([]byte, error)

func (*NullableItemCodesInner) Set added in v0.0.7

func (*NullableItemCodesInner) UnmarshalJSON added in v0.0.7

func (v *NullableItemCodesInner) UnmarshalJSON(src []byte) error

func (*NullableItemCodesInner) Unset added in v0.0.7

func (v *NullableItemCodesInner) Unset()

type NullableItemDiscountInner added in v0.0.7

type NullableItemDiscountInner struct {
	// contains filtered or unexported fields
}

func NewNullableItemDiscountInner added in v0.0.7

func NewNullableItemDiscountInner(val *ItemDiscountInner) *NullableItemDiscountInner

func (NullableItemDiscountInner) Get added in v0.0.7

func (NullableItemDiscountInner) IsSet added in v0.0.7

func (v NullableItemDiscountInner) IsSet() bool

func (NullableItemDiscountInner) MarshalJSON added in v0.0.7

func (v NullableItemDiscountInner) MarshalJSON() ([]byte, error)

func (*NullableItemDiscountInner) Set added in v0.0.7

func (*NullableItemDiscountInner) UnmarshalJSON added in v0.0.7

func (v *NullableItemDiscountInner) UnmarshalJSON(src []byte) error

func (*NullableItemDiscountInner) Unset added in v0.0.7

func (v *NullableItemDiscountInner) Unset()

type NullableItemMiningInfo added in v0.0.7

type NullableItemMiningInfo struct {
	// contains filtered or unexported fields
}

func NewNullableItemMiningInfo added in v0.0.7

func NewNullableItemMiningInfo(val *ItemMiningInfo) *NullableItemMiningInfo

func (NullableItemMiningInfo) Get added in v0.0.7

func (NullableItemMiningInfo) IsSet added in v0.0.7

func (v NullableItemMiningInfo) IsSet() bool

func (NullableItemMiningInfo) MarshalJSON added in v0.0.7

func (v NullableItemMiningInfo) MarshalJSON() ([]byte, error)

func (*NullableItemMiningInfo) Set added in v0.0.7

func (*NullableItemMiningInfo) UnmarshalJSON added in v0.0.7

func (v *NullableItemMiningInfo) UnmarshalJSON(src []byte) error

func (*NullableItemMiningInfo) Unset added in v0.0.7

func (v *NullableItemMiningInfo) Unset()

type NullableItemQuantity added in v0.0.10

type NullableItemQuantity struct {
	// contains filtered or unexported fields
}

func NewNullableItemQuantity added in v0.0.10

func NewNullableItemQuantity(val *ItemQuantity) *NullableItemQuantity

func (NullableItemQuantity) Get added in v0.0.10

func (NullableItemQuantity) IsSet added in v0.0.10

func (v NullableItemQuantity) IsSet() bool

func (NullableItemQuantity) MarshalJSON added in v0.0.10

func (v NullableItemQuantity) MarshalJSON() ([]byte, error)

func (*NullableItemQuantity) Set added in v0.0.10

func (v *NullableItemQuantity) Set(val *ItemQuantity)

func (*NullableItemQuantity) UnmarshalJSON added in v0.0.10

func (v *NullableItemQuantity) UnmarshalJSON(src []byte) error

func (*NullableItemQuantity) Unset added in v0.0.10

func (v *NullableItemQuantity) Unset()

type NullableItemSurchargeInner added in v0.0.10

type NullableItemSurchargeInner struct {
	// contains filtered or unexported fields
}

func NewNullableItemSurchargeInner added in v0.0.10

func NewNullableItemSurchargeInner(val *ItemSurchargeInner) *NullableItemSurchargeInner

func (NullableItemSurchargeInner) Get added in v0.0.10

func (NullableItemSurchargeInner) IsSet added in v0.0.10

func (v NullableItemSurchargeInner) IsSet() bool

func (NullableItemSurchargeInner) MarshalJSON added in v0.0.10

func (v NullableItemSurchargeInner) MarshalJSON() ([]byte, error)

func (*NullableItemSurchargeInner) Set added in v0.0.10

func (*NullableItemSurchargeInner) UnmarshalJSON added in v0.0.10

func (v *NullableItemSurchargeInner) UnmarshalJSON(src []byte) error

func (*NullableItemSurchargeInner) Unset added in v0.0.10

func (v *NullableItemSurchargeInner) Unset()

type NullableItemUnitPrice added in v0.0.10

type NullableItemUnitPrice struct {
	// contains filtered or unexported fields
}

func NewNullableItemUnitPrice added in v0.0.10

func NewNullableItemUnitPrice(val *ItemUnitPrice) *NullableItemUnitPrice

func (NullableItemUnitPrice) Get added in v0.0.10

func (NullableItemUnitPrice) IsSet added in v0.0.10

func (v NullableItemUnitPrice) IsSet() bool

func (NullableItemUnitPrice) MarshalJSON added in v0.0.10

func (v NullableItemUnitPrice) MarshalJSON() ([]byte, error)

func (*NullableItemUnitPrice) Set added in v0.0.10

func (v *NullableItemUnitPrice) Set(val *ItemUnitPrice)

func (*NullableItemUnitPrice) UnmarshalJSON added in v0.0.10

func (v *NullableItemUnitPrice) UnmarshalJSON(src []byte) error

func (*NullableItemUnitPrice) Unset added in v0.0.10

func (v *NullableItemUnitPrice) Unset()

type NullableItemWithheldITBISAmount added in v0.0.10

type NullableItemWithheldITBISAmount struct {
	// contains filtered or unexported fields
}

func NewNullableItemWithheldITBISAmount added in v0.0.10

func NewNullableItemWithheldITBISAmount(val *ItemWithheldITBISAmount) *NullableItemWithheldITBISAmount

func (NullableItemWithheldITBISAmount) Get added in v0.0.10

func (NullableItemWithheldITBISAmount) IsSet added in v0.0.10

func (NullableItemWithheldITBISAmount) MarshalJSON added in v0.0.10

func (v NullableItemWithheldITBISAmount) MarshalJSON() ([]byte, error)

func (*NullableItemWithheldITBISAmount) Set added in v0.0.10

func (*NullableItemWithheldITBISAmount) UnmarshalJSON added in v0.0.10

func (v *NullableItemWithheldITBISAmount) UnmarshalJSON(src []byte) error

func (*NullableItemWithheldITBISAmount) Unset added in v0.0.10

type NullableLegalStatus added in v0.0.19

type NullableLegalStatus struct {
	// contains filtered or unexported fields
}

func NewNullableLegalStatus added in v0.0.19

func NewNullableLegalStatus(val *LegalStatus) *NullableLegalStatus

func (NullableLegalStatus) Get added in v0.0.19

func (NullableLegalStatus) IsSet added in v0.0.19

func (v NullableLegalStatus) IsSet() bool

func (NullableLegalStatus) MarshalJSON added in v0.0.19

func (v NullableLegalStatus) MarshalJSON() ([]byte, error)

func (*NullableLegalStatus) Set added in v0.0.19

func (v *NullableLegalStatus) Set(val *LegalStatus)

func (*NullableLegalStatus) UnmarshalJSON added in v0.0.19

func (v *NullableLegalStatus) UnmarshalJSON(src []byte) error

func (*NullableLegalStatus) Unset added in v0.0.19

func (v *NullableLegalStatus) Unset()

type NullableListTaxSequences200Response

type NullableListTaxSequences200Response struct {
	// contains filtered or unexported fields
}

func (NullableListTaxSequences200Response) Get

func (NullableListTaxSequences200Response) IsSet

func (NullableListTaxSequences200Response) MarshalJSON

func (v NullableListTaxSequences200Response) MarshalJSON() ([]byte, error)

func (*NullableListTaxSequences200Response) Set

func (*NullableListTaxSequences200Response) UnmarshalJSON

func (v *NullableListTaxSequences200Response) UnmarshalJSON(src []byte) error

func (*NullableListTaxSequences200Response) Unset

type NullableMemberInvitedPayload added in v0.0.19

type NullableMemberInvitedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableMemberInvitedPayload added in v0.0.19

func NewNullableMemberInvitedPayload(val *MemberInvitedPayload) *NullableMemberInvitedPayload

func (NullableMemberInvitedPayload) Get added in v0.0.19

func (NullableMemberInvitedPayload) IsSet added in v0.0.19

func (NullableMemberInvitedPayload) MarshalJSON added in v0.0.19

func (v NullableMemberInvitedPayload) MarshalJSON() ([]byte, error)

func (*NullableMemberInvitedPayload) Set added in v0.0.19

func (*NullableMemberInvitedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableMemberInvitedPayload) UnmarshalJSON(src []byte) error

func (*NullableMemberInvitedPayload) Unset added in v0.0.19

func (v *NullableMemberInvitedPayload) Unset()

type NullableMemberJoinedPayload added in v0.0.19

type NullableMemberJoinedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableMemberJoinedPayload added in v0.0.19

func NewNullableMemberJoinedPayload(val *MemberJoinedPayload) *NullableMemberJoinedPayload

func (NullableMemberJoinedPayload) Get added in v0.0.19

func (NullableMemberJoinedPayload) IsSet added in v0.0.19

func (NullableMemberJoinedPayload) MarshalJSON added in v0.0.19

func (v NullableMemberJoinedPayload) MarshalJSON() ([]byte, error)

func (*NullableMemberJoinedPayload) Set added in v0.0.19

func (*NullableMemberJoinedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableMemberJoinedPayload) UnmarshalJSON(src []byte) error

func (*NullableMemberJoinedPayload) Unset added in v0.0.19

func (v *NullableMemberJoinedPayload) Unset()

type NullableMemberRemovedPayload added in v0.0.19

type NullableMemberRemovedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableMemberRemovedPayload added in v0.0.19

func NewNullableMemberRemovedPayload(val *MemberRemovedPayload) *NullableMemberRemovedPayload

func (NullableMemberRemovedPayload) Get added in v0.0.19

func (NullableMemberRemovedPayload) IsSet added in v0.0.19

func (NullableMemberRemovedPayload) MarshalJSON added in v0.0.19

func (v NullableMemberRemovedPayload) MarshalJSON() ([]byte, error)

func (*NullableMemberRemovedPayload) Set added in v0.0.19

func (*NullableMemberRemovedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableMemberRemovedPayload) UnmarshalJSON(src []byte) error

func (*NullableMemberRemovedPayload) Unset added in v0.0.19

func (v *NullableMemberRemovedPayload) Unset()

type NullableOAuthTokenRequest

type NullableOAuthTokenRequest struct {
	// contains filtered or unexported fields
}

func NewNullableOAuthTokenRequest

func NewNullableOAuthTokenRequest(val *OAuthTokenRequest) *NullableOAuthTokenRequest

func (NullableOAuthTokenRequest) Get

func (NullableOAuthTokenRequest) IsSet

func (v NullableOAuthTokenRequest) IsSet() bool

func (NullableOAuthTokenRequest) MarshalJSON

func (v NullableOAuthTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableOAuthTokenRequest) Set

func (*NullableOAuthTokenRequest) UnmarshalJSON

func (v *NullableOAuthTokenRequest) UnmarshalJSON(src []byte) error

func (*NullableOAuthTokenRequest) Unset

func (v *NullableOAuthTokenRequest) Unset()

type NullableOAuthTokenResponse

type NullableOAuthTokenResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOAuthTokenResponse

func NewNullableOAuthTokenResponse(val *OAuthTokenResponse) *NullableOAuthTokenResponse

func (NullableOAuthTokenResponse) Get

func (NullableOAuthTokenResponse) IsSet

func (v NullableOAuthTokenResponse) IsSet() bool

func (NullableOAuthTokenResponse) MarshalJSON

func (v NullableOAuthTokenResponse) MarshalJSON() ([]byte, error)

func (*NullableOAuthTokenResponse) Set

func (*NullableOAuthTokenResponse) UnmarshalJSON

func (v *NullableOAuthTokenResponse) UnmarshalJSON(src []byte) error

func (*NullableOAuthTokenResponse) Unset

func (v *NullableOAuthTokenResponse) Unset()

type NullablePage

type NullablePage struct {
	// contains filtered or unexported fields
}

func NewNullablePage

func NewNullablePage(val *Page) *NullablePage

func (NullablePage) Get

func (v NullablePage) Get() *Page

func (NullablePage) IsSet

func (v NullablePage) IsSet() bool

func (NullablePage) MarshalJSON

func (v NullablePage) MarshalJSON() ([]byte, error)

func (*NullablePage) Set

func (v *NullablePage) Set(val *Page)

func (*NullablePage) UnmarshalJSON

func (v *NullablePage) UnmarshalJSON(src []byte) error

func (*NullablePage) Unset

func (v *NullablePage) Unset()

type NullablePaginationMeta added in v0.0.7

type NullablePaginationMeta struct {
	// contains filtered or unexported fields
}

func NewNullablePaginationMeta added in v0.0.7

func NewNullablePaginationMeta(val *PaginationMeta) *NullablePaginationMeta

func (NullablePaginationMeta) Get added in v0.0.7

func (NullablePaginationMeta) IsSet added in v0.0.7

func (v NullablePaginationMeta) IsSet() bool

func (NullablePaginationMeta) MarshalJSON added in v0.0.7

func (v NullablePaginationMeta) MarshalJSON() ([]byte, error)

func (*NullablePaginationMeta) Set added in v0.0.7

func (*NullablePaginationMeta) UnmarshalJSON added in v0.0.7

func (v *NullablePaginationMeta) UnmarshalJSON(src []byte) error

func (*NullablePaginationMeta) Unset added in v0.0.7

func (v *NullablePaginationMeta) Unset()

type NullablePaymentForm added in v0.0.7

type NullablePaymentForm struct {
	// contains filtered or unexported fields
}

func NewNullablePaymentForm added in v0.0.7

func NewNullablePaymentForm(val *PaymentForm) *NullablePaymentForm

func (NullablePaymentForm) Get added in v0.0.7

func (NullablePaymentForm) IsSet added in v0.0.7

func (v NullablePaymentForm) IsSet() bool

func (NullablePaymentForm) MarshalJSON added in v0.0.7

func (v NullablePaymentForm) MarshalJSON() ([]byte, error)

func (*NullablePaymentForm) Set added in v0.0.7

func (v *NullablePaymentForm) Set(val *PaymentForm)

func (*NullablePaymentForm) UnmarshalJSON added in v0.0.7

func (v *NullablePaymentForm) UnmarshalJSON(src []byte) error

func (*NullablePaymentForm) Unset added in v0.0.7

func (v *NullablePaymentForm) Unset()

type NullablePaymentMethod

type NullablePaymentMethod struct {
	// contains filtered or unexported fields
}

func NewNullablePaymentMethod

func NewNullablePaymentMethod(val *PaymentMethod) *NullablePaymentMethod

func (NullablePaymentMethod) Get

func (NullablePaymentMethod) IsSet

func (v NullablePaymentMethod) IsSet() bool

func (NullablePaymentMethod) MarshalJSON

func (v NullablePaymentMethod) MarshalJSON() ([]byte, error)

func (*NullablePaymentMethod) Set

func (v *NullablePaymentMethod) Set(val *PaymentMethod)

func (*NullablePaymentMethod) UnmarshalJSON

func (v *NullablePaymentMethod) UnmarshalJSON(src []byte) error

func (*NullablePaymentMethod) Unset

func (v *NullablePaymentMethod) Unset()

type NullablePlanPaymentFailedPayload added in v0.0.19

type NullablePlanPaymentFailedPayload struct {
	// contains filtered or unexported fields
}

func NewNullablePlanPaymentFailedPayload added in v0.0.19

func NewNullablePlanPaymentFailedPayload(val *PlanPaymentFailedPayload) *NullablePlanPaymentFailedPayload

func (NullablePlanPaymentFailedPayload) Get added in v0.0.19

func (NullablePlanPaymentFailedPayload) IsSet added in v0.0.19

func (NullablePlanPaymentFailedPayload) MarshalJSON added in v0.0.19

func (v NullablePlanPaymentFailedPayload) MarshalJSON() ([]byte, error)

func (*NullablePlanPaymentFailedPayload) Set added in v0.0.19

func (*NullablePlanPaymentFailedPayload) UnmarshalJSON added in v0.0.19

func (v *NullablePlanPaymentFailedPayload) UnmarshalJSON(src []byte) error

func (*NullablePlanPaymentFailedPayload) Unset added in v0.0.19

type NullablePlanUsageAlertPayload added in v0.0.19

type NullablePlanUsageAlertPayload struct {
	// contains filtered or unexported fields
}

func NewNullablePlanUsageAlertPayload added in v0.0.19

func NewNullablePlanUsageAlertPayload(val *PlanUsageAlertPayload) *NullablePlanUsageAlertPayload

func (NullablePlanUsageAlertPayload) Get added in v0.0.19

func (NullablePlanUsageAlertPayload) IsSet added in v0.0.19

func (NullablePlanUsageAlertPayload) MarshalJSON added in v0.0.19

func (v NullablePlanUsageAlertPayload) MarshalJSON() ([]byte, error)

func (*NullablePlanUsageAlertPayload) Set added in v0.0.19

func (*NullablePlanUsageAlertPayload) UnmarshalJSON added in v0.0.19

func (v *NullablePlanUsageAlertPayload) UnmarshalJSON(src []byte) error

func (*NullablePlanUsageAlertPayload) Unset added in v0.0.19

func (v *NullablePlanUsageAlertPayload) Unset()

type NullablePrintFormat

type NullablePrintFormat struct {
	// contains filtered or unexported fields
}

func NewNullablePrintFormat

func NewNullablePrintFormat(val *PrintFormat) *NullablePrintFormat

func (NullablePrintFormat) Get

func (NullablePrintFormat) IsSet

func (v NullablePrintFormat) IsSet() bool

func (NullablePrintFormat) MarshalJSON

func (v NullablePrintFormat) MarshalJSON() ([]byte, error)

func (*NullablePrintFormat) Set

func (v *NullablePrintFormat) Set(val *PrintFormat)

func (*NullablePrintFormat) UnmarshalJSON

func (v *NullablePrintFormat) UnmarshalJSON(src []byte) error

func (*NullablePrintFormat) Unset

func (v *NullablePrintFormat) Unset()

type NullableProcessingLog added in v0.0.7

type NullableProcessingLog struct {
	// contains filtered or unexported fields
}

func NewNullableProcessingLog added in v0.0.7

func NewNullableProcessingLog(val *ProcessingLog) *NullableProcessingLog

func (NullableProcessingLog) Get added in v0.0.7

func (NullableProcessingLog) IsSet added in v0.0.7

func (v NullableProcessingLog) IsSet() bool

func (NullableProcessingLog) MarshalJSON added in v0.0.7

func (v NullableProcessingLog) MarshalJSON() ([]byte, error)

func (*NullableProcessingLog) Set added in v0.0.7

func (v *NullableProcessingLog) Set(val *ProcessingLog)

func (*NullableProcessingLog) UnmarshalJSON added in v0.0.7

func (v *NullableProcessingLog) UnmarshalJSON(src []byte) error

func (*NullableProcessingLog) Unset added in v0.0.7

func (v *NullableProcessingLog) Unset()

type NullablePublicDocumentStatus added in v0.0.19

type NullablePublicDocumentStatus struct {
	// contains filtered or unexported fields
}

func NewNullablePublicDocumentStatus added in v0.0.19

func NewNullablePublicDocumentStatus(val *PublicDocumentStatus) *NullablePublicDocumentStatus

func (NullablePublicDocumentStatus) Get added in v0.0.19

func (NullablePublicDocumentStatus) IsSet added in v0.0.19

func (NullablePublicDocumentStatus) MarshalJSON added in v0.0.19

func (v NullablePublicDocumentStatus) MarshalJSON() ([]byte, error)

func (*NullablePublicDocumentStatus) Set added in v0.0.19

func (*NullablePublicDocumentStatus) UnmarshalJSON added in v0.0.19

func (v *NullablePublicDocumentStatus) UnmarshalJSON(src []byte) error

func (*NullablePublicDocumentStatus) Unset added in v0.0.19

func (v *NullablePublicDocumentStatus) Unset()

type NullableRateLimitErrorResponse added in v0.0.7

type NullableRateLimitErrorResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRateLimitErrorResponse added in v0.0.7

func NewNullableRateLimitErrorResponse(val *RateLimitErrorResponse) *NullableRateLimitErrorResponse

func (NullableRateLimitErrorResponse) Get added in v0.0.7

func (NullableRateLimitErrorResponse) IsSet added in v0.0.7

func (NullableRateLimitErrorResponse) MarshalJSON added in v0.0.7

func (v NullableRateLimitErrorResponse) MarshalJSON() ([]byte, error)

func (*NullableRateLimitErrorResponse) Set added in v0.0.7

func (*NullableRateLimitErrorResponse) UnmarshalJSON added in v0.0.7

func (v *NullableRateLimitErrorResponse) UnmarshalJSON(src []byte) error

func (*NullableRateLimitErrorResponse) Unset added in v0.0.7

func (v *NullableRateLimitErrorResponse) Unset()

type NullableReceivedDocument added in v0.0.7

type NullableReceivedDocument struct {
	// contains filtered or unexported fields
}

func NewNullableReceivedDocument added in v0.0.7

func NewNullableReceivedDocument(val *ReceivedDocument) *NullableReceivedDocument

func (NullableReceivedDocument) Get added in v0.0.7

func (NullableReceivedDocument) IsSet added in v0.0.7

func (v NullableReceivedDocument) IsSet() bool

func (NullableReceivedDocument) MarshalJSON added in v0.0.7

func (v NullableReceivedDocument) MarshalJSON() ([]byte, error)

func (*NullableReceivedDocument) Set added in v0.0.7

func (*NullableReceivedDocument) UnmarshalJSON added in v0.0.7

func (v *NullableReceivedDocument) UnmarshalJSON(src []byte) error

func (*NullableReceivedDocument) Unset added in v0.0.7

func (v *NullableReceivedDocument) Unset()

type NullableReceivedDocumentListResponse added in v0.0.7

type NullableReceivedDocumentListResponse struct {
	// contains filtered or unexported fields
}

func NewNullableReceivedDocumentListResponse added in v0.0.7

func NewNullableReceivedDocumentListResponse(val *ReceivedDocumentListResponse) *NullableReceivedDocumentListResponse

func (NullableReceivedDocumentListResponse) Get added in v0.0.7

func (NullableReceivedDocumentListResponse) IsSet added in v0.0.7

func (NullableReceivedDocumentListResponse) MarshalJSON added in v0.0.7

func (v NullableReceivedDocumentListResponse) MarshalJSON() ([]byte, error)

func (*NullableReceivedDocumentListResponse) Set added in v0.0.7

func (*NullableReceivedDocumentListResponse) UnmarshalJSON added in v0.0.7

func (v *NullableReceivedDocumentListResponse) UnmarshalJSON(src []byte) error

func (*NullableReceivedDocumentListResponse) Unset added in v0.0.7

type NullableReceivedDocumentStatsResponse added in v0.0.7

type NullableReceivedDocumentStatsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableReceivedDocumentStatsResponse added in v0.0.7

func NewNullableReceivedDocumentStatsResponse(val *ReceivedDocumentStatsResponse) *NullableReceivedDocumentStatsResponse

func (NullableReceivedDocumentStatsResponse) Get added in v0.0.7

func (NullableReceivedDocumentStatsResponse) IsSet added in v0.0.7

func (NullableReceivedDocumentStatsResponse) MarshalJSON added in v0.0.7

func (v NullableReceivedDocumentStatsResponse) MarshalJSON() ([]byte, error)

func (*NullableReceivedDocumentStatsResponse) Set added in v0.0.7

func (*NullableReceivedDocumentStatsResponse) UnmarshalJSON added in v0.0.7

func (v *NullableReceivedDocumentStatsResponse) UnmarshalJSON(src []byte) error

func (*NullableReceivedDocumentStatsResponse) Unset added in v0.0.7

type NullableReferenceInfo

type NullableReferenceInfo struct {
	// contains filtered or unexported fields
}

func NewNullableReferenceInfo

func NewNullableReferenceInfo(val *ReferenceInfo) *NullableReferenceInfo

func (NullableReferenceInfo) Get

func (NullableReferenceInfo) IsSet

func (v NullableReferenceInfo) IsSet() bool

func (NullableReferenceInfo) MarshalJSON

func (v NullableReferenceInfo) MarshalJSON() ([]byte, error)

func (*NullableReferenceInfo) Set

func (v *NullableReferenceInfo) Set(val *ReferenceInfo)

func (*NullableReferenceInfo) UnmarshalJSON

func (v *NullableReferenceInfo) UnmarshalJSON(src []byte) error

func (*NullableReferenceInfo) Unset

func (v *NullableReferenceInfo) Unset()

type NullableSecurityApiKeyRotatedPayload added in v0.0.19

type NullableSecurityApiKeyRotatedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableSecurityApiKeyRotatedPayload added in v0.0.19

func NewNullableSecurityApiKeyRotatedPayload(val *SecurityApiKeyRotatedPayload) *NullableSecurityApiKeyRotatedPayload

func (NullableSecurityApiKeyRotatedPayload) Get added in v0.0.19

func (NullableSecurityApiKeyRotatedPayload) IsSet added in v0.0.19

func (NullableSecurityApiKeyRotatedPayload) MarshalJSON added in v0.0.19

func (v NullableSecurityApiKeyRotatedPayload) MarshalJSON() ([]byte, error)

func (*NullableSecurityApiKeyRotatedPayload) Set added in v0.0.19

func (*NullableSecurityApiKeyRotatedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableSecurityApiKeyRotatedPayload) UnmarshalJSON(src []byte) error

func (*NullableSecurityApiKeyRotatedPayload) Unset added in v0.0.19

type NullableSecurityNewLoginPayload added in v0.0.19

type NullableSecurityNewLoginPayload struct {
	// contains filtered or unexported fields
}

func NewNullableSecurityNewLoginPayload added in v0.0.19

func NewNullableSecurityNewLoginPayload(val *SecurityNewLoginPayload) *NullableSecurityNewLoginPayload

func (NullableSecurityNewLoginPayload) Get added in v0.0.19

func (NullableSecurityNewLoginPayload) IsSet added in v0.0.19

func (NullableSecurityNewLoginPayload) MarshalJSON added in v0.0.19

func (v NullableSecurityNewLoginPayload) MarshalJSON() ([]byte, error)

func (*NullableSecurityNewLoginPayload) Set added in v0.0.19

func (*NullableSecurityNewLoginPayload) UnmarshalJSON added in v0.0.19

func (v *NullableSecurityNewLoginPayload) UnmarshalJSON(src []byte) error

func (*NullableSecurityNewLoginPayload) Unset added in v0.0.19

type NullableSentDocumentDetail added in v0.0.7

type NullableSentDocumentDetail struct {
	// contains filtered or unexported fields
}

func NewNullableSentDocumentDetail added in v0.0.7

func NewNullableSentDocumentDetail(val *SentDocumentDetail) *NullableSentDocumentDetail

func (NullableSentDocumentDetail) Get added in v0.0.7

func (NullableSentDocumentDetail) IsSet added in v0.0.7

func (v NullableSentDocumentDetail) IsSet() bool

func (NullableSentDocumentDetail) MarshalJSON added in v0.0.7

func (v NullableSentDocumentDetail) MarshalJSON() ([]byte, error)

func (*NullableSentDocumentDetail) Set added in v0.0.7

func (*NullableSentDocumentDetail) UnmarshalJSON added in v0.0.7

func (v *NullableSentDocumentDetail) UnmarshalJSON(src []byte) error

func (*NullableSentDocumentDetail) Unset added in v0.0.7

func (v *NullableSentDocumentDetail) Unset()

type NullableSentDocumentListResponse added in v0.0.7

type NullableSentDocumentListResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSentDocumentListResponse added in v0.0.7

func NewNullableSentDocumentListResponse(val *SentDocumentListResponse) *NullableSentDocumentListResponse

func (NullableSentDocumentListResponse) Get added in v0.0.7

func (NullableSentDocumentListResponse) IsSet added in v0.0.7

func (NullableSentDocumentListResponse) MarshalJSON added in v0.0.7

func (v NullableSentDocumentListResponse) MarshalJSON() ([]byte, error)

func (*NullableSentDocumentListResponse) Set added in v0.0.7

func (*NullableSentDocumentListResponse) UnmarshalJSON added in v0.0.7

func (v *NullableSentDocumentListResponse) UnmarshalJSON(src []byte) error

func (*NullableSentDocumentListResponse) Unset added in v0.0.7

type NullableSentDocumentSummary added in v0.0.7

type NullableSentDocumentSummary struct {
	// contains filtered or unexported fields
}

func NewNullableSentDocumentSummary added in v0.0.7

func NewNullableSentDocumentSummary(val *SentDocumentSummary) *NullableSentDocumentSummary

func (NullableSentDocumentSummary) Get added in v0.0.7

func (NullableSentDocumentSummary) IsSet added in v0.0.7

func (NullableSentDocumentSummary) MarshalJSON added in v0.0.7

func (v NullableSentDocumentSummary) MarshalJSON() ([]byte, error)

func (*NullableSentDocumentSummary) Set added in v0.0.7

func (*NullableSentDocumentSummary) UnmarshalJSON added in v0.0.7

func (v *NullableSentDocumentSummary) UnmarshalJSON(src []byte) error

func (*NullableSentDocumentSummary) Unset added in v0.0.7

func (v *NullableSentDocumentSummary) Unset()

type NullableSentDocumentSummaryBusiness added in v0.0.7

type NullableSentDocumentSummaryBusiness struct {
	// contains filtered or unexported fields
}

func NewNullableSentDocumentSummaryBusiness added in v0.0.7

func NewNullableSentDocumentSummaryBusiness(val *SentDocumentSummaryBusiness) *NullableSentDocumentSummaryBusiness

func (NullableSentDocumentSummaryBusiness) Get added in v0.0.7

func (NullableSentDocumentSummaryBusiness) IsSet added in v0.0.7

func (NullableSentDocumentSummaryBusiness) MarshalJSON added in v0.0.7

func (v NullableSentDocumentSummaryBusiness) MarshalJSON() ([]byte, error)

func (*NullableSentDocumentSummaryBusiness) Set added in v0.0.7

func (*NullableSentDocumentSummaryBusiness) UnmarshalJSON added in v0.0.7

func (v *NullableSentDocumentSummaryBusiness) UnmarshalJSON(src []byte) error

func (*NullableSentDocumentSummaryBusiness) Unset added in v0.0.7

type NullableSequenceDepletedPayload added in v0.0.19

type NullableSequenceDepletedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableSequenceDepletedPayload added in v0.0.19

func NewNullableSequenceDepletedPayload(val *SequenceDepletedPayload) *NullableSequenceDepletedPayload

func (NullableSequenceDepletedPayload) Get added in v0.0.19

func (NullableSequenceDepletedPayload) IsSet added in v0.0.19

func (NullableSequenceDepletedPayload) MarshalJSON added in v0.0.19

func (v NullableSequenceDepletedPayload) MarshalJSON() ([]byte, error)

func (*NullableSequenceDepletedPayload) Set added in v0.0.19

func (*NullableSequenceDepletedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableSequenceDepletedPayload) UnmarshalJSON(src []byte) error

func (*NullableSequenceDepletedPayload) Unset added in v0.0.19

type NullableSequenceVoidedPayload added in v0.0.19

type NullableSequenceVoidedPayload struct {
	// contains filtered or unexported fields
}

func NewNullableSequenceVoidedPayload added in v0.0.19

func NewNullableSequenceVoidedPayload(val *SequenceVoidedPayload) *NullableSequenceVoidedPayload

func (NullableSequenceVoidedPayload) Get added in v0.0.19

func (NullableSequenceVoidedPayload) IsSet added in v0.0.19

func (NullableSequenceVoidedPayload) MarshalJSON added in v0.0.19

func (v NullableSequenceVoidedPayload) MarshalJSON() ([]byte, error)

func (*NullableSequenceVoidedPayload) Set added in v0.0.19

func (*NullableSequenceVoidedPayload) UnmarshalJSON added in v0.0.19

func (v *NullableSequenceVoidedPayload) UnmarshalJSON(src []byte) error

func (*NullableSequenceVoidedPayload) Unset added in v0.0.19

func (v *NullableSequenceVoidedPayload) Unset()

type NullableStartCertification200Response added in v0.0.7

type NullableStartCertification200Response struct {
	// contains filtered or unexported fields
}

func NewNullableStartCertification200Response added in v0.0.7

func NewNullableStartCertification200Response(val *StartCertification200Response) *NullableStartCertification200Response

func (NullableStartCertification200Response) Get added in v0.0.7

func (NullableStartCertification200Response) IsSet added in v0.0.7

func (NullableStartCertification200Response) MarshalJSON added in v0.0.7

func (v NullableStartCertification200Response) MarshalJSON() ([]byte, error)

func (*NullableStartCertification200Response) Set added in v0.0.7

func (*NullableStartCertification200Response) UnmarshalJSON added in v0.0.7

func (v *NullableStartCertification200Response) UnmarshalJSON(src []byte) error

func (*NullableStartCertification200Response) Unset added in v0.0.7

type NullableStartCertificationRequest added in v0.0.7

type NullableStartCertificationRequest struct {
	// contains filtered or unexported fields
}

func NewNullableStartCertificationRequest added in v0.0.7

func NewNullableStartCertificationRequest(val *StartCertificationRequest) *NullableStartCertificationRequest

func (NullableStartCertificationRequest) Get added in v0.0.7

func (NullableStartCertificationRequest) IsSet added in v0.0.7

func (NullableStartCertificationRequest) MarshalJSON added in v0.0.7

func (v NullableStartCertificationRequest) MarshalJSON() ([]byte, error)

func (*NullableStartCertificationRequest) Set added in v0.0.7

func (*NullableStartCertificationRequest) UnmarshalJSON added in v0.0.7

func (v *NullableStartCertificationRequest) UnmarshalJSON(src []byte) error

func (*NullableStartCertificationRequest) Unset added in v0.0.7

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 NullableSubquantity

type NullableSubquantity struct {
	// contains filtered or unexported fields
}

func NewNullableSubquantity

func NewNullableSubquantity(val *Subquantity) *NullableSubquantity

func (NullableSubquantity) Get

func (NullableSubquantity) IsSet

func (v NullableSubquantity) IsSet() bool

func (NullableSubquantity) MarshalJSON

func (v NullableSubquantity) MarshalJSON() ([]byte, error)

func (*NullableSubquantity) Set

func (v *NullableSubquantity) Set(val *Subquantity)

func (*NullableSubquantity) UnmarshalJSON

func (v *NullableSubquantity) UnmarshalJSON(src []byte) error

func (*NullableSubquantity) Unset

func (v *NullableSubquantity) Unset()

type NullableSubtotal

type NullableSubtotal struct {
	// contains filtered or unexported fields
}

func NewNullableSubtotal

func NewNullableSubtotal(val *Subtotal) *NullableSubtotal

func (NullableSubtotal) Get

func (v NullableSubtotal) Get() *Subtotal

func (NullableSubtotal) IsSet

func (v NullableSubtotal) IsSet() bool

func (NullableSubtotal) MarshalJSON

func (v NullableSubtotal) MarshalJSON() ([]byte, error)

func (*NullableSubtotal) Set

func (v *NullableSubtotal) Set(val *Subtotal)

func (*NullableSubtotal) UnmarshalJSON

func (v *NullableSubtotal) UnmarshalJSON(src []byte) error

func (*NullableSubtotal) Unset

func (v *NullableSubtotal) Unset()

type NullableTaxSequence

type NullableTaxSequence struct {
	// contains filtered or unexported fields
}

func NewNullableTaxSequence

func NewNullableTaxSequence(val *TaxSequence) *NullableTaxSequence

func (NullableTaxSequence) Get

func (NullableTaxSequence) IsSet

func (v NullableTaxSequence) IsSet() bool

func (NullableTaxSequence) MarshalJSON

func (v NullableTaxSequence) MarshalJSON() ([]byte, error)

func (*NullableTaxSequence) Set

func (v *NullableTaxSequence) Set(val *TaxSequence)

func (*NullableTaxSequence) UnmarshalJSON

func (v *NullableTaxSequence) UnmarshalJSON(src []byte) error

func (*NullableTaxSequence) Unset

func (v *NullableTaxSequence) Unset()

type NullableTaxSequenceCreated added in v0.0.7

type NullableTaxSequenceCreated struct {
	// contains filtered or unexported fields
}

func NewNullableTaxSequenceCreated added in v0.0.7

func NewNullableTaxSequenceCreated(val *TaxSequenceCreated) *NullableTaxSequenceCreated

func (NullableTaxSequenceCreated) Get added in v0.0.7

func (NullableTaxSequenceCreated) IsSet added in v0.0.7

func (v NullableTaxSequenceCreated) IsSet() bool

func (NullableTaxSequenceCreated) MarshalJSON added in v0.0.7

func (v NullableTaxSequenceCreated) MarshalJSON() ([]byte, error)

func (*NullableTaxSequenceCreated) Set added in v0.0.7

func (*NullableTaxSequenceCreated) UnmarshalJSON added in v0.0.7

func (v *NullableTaxSequenceCreated) UnmarshalJSON(src []byte) error

func (*NullableTaxSequenceCreated) Unset added in v0.0.7

func (v *NullableTaxSequenceCreated) 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 NullableTotals

type NullableTotals struct {
	// contains filtered or unexported fields
}

func NewNullableTotals

func NewNullableTotals(val *Totals) *NullableTotals

func (NullableTotals) Get

func (v NullableTotals) Get() *Totals

func (NullableTotals) IsSet

func (v NullableTotals) IsSet() bool

func (NullableTotals) MarshalJSON

func (v NullableTotals) MarshalJSON() ([]byte, error)

func (*NullableTotals) Set

func (v *NullableTotals) Set(val *Totals)

func (*NullableTotals) UnmarshalJSON

func (v *NullableTotals) UnmarshalJSON(src []byte) error

func (*NullableTotals) Unset

func (v *NullableTotals) Unset()

type NullableTotalsItbisRate1 added in v0.0.10

type NullableTotalsItbisRate1 struct {
	// contains filtered or unexported fields
}

func NewNullableTotalsItbisRate1 added in v0.0.10

func NewNullableTotalsItbisRate1(val *TotalsItbisRate1) *NullableTotalsItbisRate1

func (NullableTotalsItbisRate1) Get added in v0.0.10

func (NullableTotalsItbisRate1) IsSet added in v0.0.10

func (v NullableTotalsItbisRate1) IsSet() bool

func (NullableTotalsItbisRate1) MarshalJSON added in v0.0.10

func (v NullableTotalsItbisRate1) MarshalJSON() ([]byte, error)

func (*NullableTotalsItbisRate1) Set added in v0.0.10

func (*NullableTotalsItbisRate1) UnmarshalJSON added in v0.0.10

func (v *NullableTotalsItbisRate1) UnmarshalJSON(src []byte) error

func (*NullableTotalsItbisRate1) Unset added in v0.0.10

func (v *NullableTotalsItbisRate1) Unset()

type NullableTotalsItbisRate2 added in v0.0.10

type NullableTotalsItbisRate2 struct {
	// contains filtered or unexported fields
}

func NewNullableTotalsItbisRate2 added in v0.0.10

func NewNullableTotalsItbisRate2(val *TotalsItbisRate2) *NullableTotalsItbisRate2

func (NullableTotalsItbisRate2) Get added in v0.0.10

func (NullableTotalsItbisRate2) IsSet added in v0.0.10

func (v NullableTotalsItbisRate2) IsSet() bool

func (NullableTotalsItbisRate2) MarshalJSON added in v0.0.10

func (v NullableTotalsItbisRate2) MarshalJSON() ([]byte, error)

func (*NullableTotalsItbisRate2) Set added in v0.0.10

func (*NullableTotalsItbisRate2) UnmarshalJSON added in v0.0.10

func (v *NullableTotalsItbisRate2) UnmarshalJSON(src []byte) error

func (*NullableTotalsItbisRate2) Unset added in v0.0.10

func (v *NullableTotalsItbisRate2) Unset()

type NullableTotalsItbisRate3 added in v0.0.10

type NullableTotalsItbisRate3 struct {
	// contains filtered or unexported fields
}

func NewNullableTotalsItbisRate3 added in v0.0.10

func NewNullableTotalsItbisRate3(val *TotalsItbisRate3) *NullableTotalsItbisRate3

func (NullableTotalsItbisRate3) Get added in v0.0.10

func (NullableTotalsItbisRate3) IsSet added in v0.0.10

func (v NullableTotalsItbisRate3) IsSet() bool

func (NullableTotalsItbisRate3) MarshalJSON added in v0.0.10

func (v NullableTotalsItbisRate3) MarshalJSON() ([]byte, error)

func (*NullableTotalsItbisRate3) Set added in v0.0.10

func (*NullableTotalsItbisRate3) UnmarshalJSON added in v0.0.10

func (v *NullableTotalsItbisRate3) UnmarshalJSON(src []byte) error

func (*NullableTotalsItbisRate3) Unset added in v0.0.10

func (v *NullableTotalsItbisRate3) Unset()

type NullableTotalsTotalAmount added in v0.0.10

type NullableTotalsTotalAmount struct {
	// contains filtered or unexported fields
}

func NewNullableTotalsTotalAmount added in v0.0.10

func NewNullableTotalsTotalAmount(val *TotalsTotalAmount) *NullableTotalsTotalAmount

func (NullableTotalsTotalAmount) Get added in v0.0.10

func (NullableTotalsTotalAmount) IsSet added in v0.0.10

func (v NullableTotalsTotalAmount) IsSet() bool

func (NullableTotalsTotalAmount) MarshalJSON added in v0.0.10

func (v NullableTotalsTotalAmount) MarshalJSON() ([]byte, error)

func (*NullableTotalsTotalAmount) Set added in v0.0.10

func (*NullableTotalsTotalAmount) UnmarshalJSON added in v0.0.10

func (v *NullableTotalsTotalAmount) UnmarshalJSON(src []byte) error

func (*NullableTotalsTotalAmount) Unset added in v0.0.10

func (v *NullableTotalsTotalAmount) Unset()

type NullableTransport

type NullableTransport struct {
	// contains filtered or unexported fields
}

func NewNullableTransport

func NewNullableTransport(val *Transport) *NullableTransport

func (NullableTransport) Get

func (v NullableTransport) Get() *Transport

func (NullableTransport) IsSet

func (v NullableTransport) IsSet() bool

func (NullableTransport) MarshalJSON

func (v NullableTransport) MarshalJSON() ([]byte, error)

func (*NullableTransport) Set

func (v *NullableTransport) Set(val *Transport)

func (*NullableTransport) UnmarshalJSON

func (v *NullableTransport) UnmarshalJSON(src []byte) error

func (*NullableTransport) Unset

func (v *NullableTransport) Unset()

type NullableUpdateTaxSequenceRequest added in v0.0.7

type NullableUpdateTaxSequenceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateTaxSequenceRequest added in v0.0.7

func NewNullableUpdateTaxSequenceRequest(val *UpdateTaxSequenceRequest) *NullableUpdateTaxSequenceRequest

func (NullableUpdateTaxSequenceRequest) Get added in v0.0.7

func (NullableUpdateTaxSequenceRequest) IsSet added in v0.0.7

func (NullableUpdateTaxSequenceRequest) MarshalJSON added in v0.0.7

func (v NullableUpdateTaxSequenceRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateTaxSequenceRequest) Set added in v0.0.7

func (*NullableUpdateTaxSequenceRequest) UnmarshalJSON added in v0.0.7

func (v *NullableUpdateTaxSequenceRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateTaxSequenceRequest) Unset added in v0.0.7

type NullableUploadCertificate201Response

type NullableUploadCertificate201Response struct {
	// contains filtered or unexported fields
}

func (NullableUploadCertificate201Response) Get

func (NullableUploadCertificate201Response) IsSet

func (NullableUploadCertificate201Response) MarshalJSON

func (v NullableUploadCertificate201Response) MarshalJSON() ([]byte, error)

func (*NullableUploadCertificate201Response) Set

func (*NullableUploadCertificate201Response) UnmarshalJSON

func (v *NullableUploadCertificate201Response) UnmarshalJSON(src []byte) error

func (*NullableUploadCertificate201Response) Unset

type NullableUploadCertificateResponse

type NullableUploadCertificateResponse struct {
	// contains filtered or unexported fields
}

func (NullableUploadCertificateResponse) Get

func (NullableUploadCertificateResponse) IsSet

func (NullableUploadCertificateResponse) MarshalJSON

func (v NullableUploadCertificateResponse) MarshalJSON() ([]byte, error)

func (*NullableUploadCertificateResponse) Set

func (*NullableUploadCertificateResponse) UnmarshalJSON

func (v *NullableUploadCertificateResponse) UnmarshalJSON(src []byte) error

func (*NullableUploadCertificateResponse) Unset

type NullableVoidTaxSequence200Response added in v0.0.7

type NullableVoidTaxSequence200Response struct {
	// contains filtered or unexported fields
}

func NewNullableVoidTaxSequence200Response added in v0.0.7

func NewNullableVoidTaxSequence200Response(val *VoidTaxSequence200Response) *NullableVoidTaxSequence200Response

func (NullableVoidTaxSequence200Response) Get added in v0.0.7

func (NullableVoidTaxSequence200Response) IsSet added in v0.0.7

func (NullableVoidTaxSequence200Response) MarshalJSON added in v0.0.7

func (v NullableVoidTaxSequence200Response) MarshalJSON() ([]byte, error)

func (*NullableVoidTaxSequence200Response) Set added in v0.0.7

func (*NullableVoidTaxSequence200Response) UnmarshalJSON added in v0.0.7

func (v *NullableVoidTaxSequence200Response) UnmarshalJSON(src []byte) error

func (*NullableVoidTaxSequence200Response) Unset added in v0.0.7

type NullableVoidTaxSequence200ResponseData added in v0.0.7

type NullableVoidTaxSequence200ResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableVoidTaxSequence200ResponseData added in v0.0.7

func NewNullableVoidTaxSequence200ResponseData(val *VoidTaxSequence200ResponseData) *NullableVoidTaxSequence200ResponseData

func (NullableVoidTaxSequence200ResponseData) Get added in v0.0.7

func (NullableVoidTaxSequence200ResponseData) IsSet added in v0.0.7

func (NullableVoidTaxSequence200ResponseData) MarshalJSON added in v0.0.7

func (v NullableVoidTaxSequence200ResponseData) MarshalJSON() ([]byte, error)

func (*NullableVoidTaxSequence200ResponseData) Set added in v0.0.7

func (*NullableVoidTaxSequence200ResponseData) UnmarshalJSON added in v0.0.7

func (v *NullableVoidTaxSequence200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableVoidTaxSequence200ResponseData) Unset added in v0.0.7

type NullableVoidTaxSequenceRequest added in v0.0.7

type NullableVoidTaxSequenceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableVoidTaxSequenceRequest added in v0.0.7

func NewNullableVoidTaxSequenceRequest(val *VoidTaxSequenceRequest) *NullableVoidTaxSequenceRequest

func (NullableVoidTaxSequenceRequest) Get added in v0.0.7

func (NullableVoidTaxSequenceRequest) IsSet added in v0.0.7

func (NullableVoidTaxSequenceRequest) MarshalJSON added in v0.0.7

func (v NullableVoidTaxSequenceRequest) MarshalJSON() ([]byte, error)

func (*NullableVoidTaxSequenceRequest) Set added in v0.0.7

func (*NullableVoidTaxSequenceRequest) UnmarshalJSON added in v0.0.7

func (v *NullableVoidTaxSequenceRequest) UnmarshalJSON(src []byte) error

func (*NullableVoidTaxSequenceRequest) Unset added in v0.0.7

func (v *NullableVoidTaxSequenceRequest) Unset()

type NullableWebhookConfigDetail added in v0.0.7

type NullableWebhookConfigDetail struct {
	// contains filtered or unexported fields
}

func NewNullableWebhookConfigDetail added in v0.0.7

func NewNullableWebhookConfigDetail(val *WebhookConfigDetail) *NullableWebhookConfigDetail

func (NullableWebhookConfigDetail) Get added in v0.0.7

func (NullableWebhookConfigDetail) IsSet added in v0.0.7

func (NullableWebhookConfigDetail) MarshalJSON added in v0.0.7

func (v NullableWebhookConfigDetail) MarshalJSON() ([]byte, error)

func (*NullableWebhookConfigDetail) Set added in v0.0.7

func (*NullableWebhookConfigDetail) UnmarshalJSON added in v0.0.7

func (v *NullableWebhookConfigDetail) UnmarshalJSON(src []byte) error

func (*NullableWebhookConfigDetail) Unset added in v0.0.7

func (v *NullableWebhookConfigDetail) Unset()

type NullableWebhookConfigResponse

type NullableWebhookConfigResponse struct {
	// contains filtered or unexported fields
}

func (NullableWebhookConfigResponse) Get

func (NullableWebhookConfigResponse) IsSet

func (NullableWebhookConfigResponse) MarshalJSON

func (v NullableWebhookConfigResponse) MarshalJSON() ([]byte, error)

func (*NullableWebhookConfigResponse) Set

func (*NullableWebhookConfigResponse) UnmarshalJSON

func (v *NullableWebhookConfigResponse) UnmarshalJSON(src []byte) error

func (*NullableWebhookConfigResponse) Unset

func (v *NullableWebhookConfigResponse) Unset()

type NullableWebhookEventType

type NullableWebhookEventType struct {
	// contains filtered or unexported fields
}

func NewNullableWebhookEventType

func NewNullableWebhookEventType(val *WebhookEventType) *NullableWebhookEventType

func (NullableWebhookEventType) Get

func (NullableWebhookEventType) IsSet

func (v NullableWebhookEventType) IsSet() bool

func (NullableWebhookEventType) MarshalJSON

func (v NullableWebhookEventType) MarshalJSON() ([]byte, error)

func (*NullableWebhookEventType) Set

func (*NullableWebhookEventType) UnmarshalJSON

func (v *NullableWebhookEventType) UnmarshalJSON(src []byte) error

func (*NullableWebhookEventType) Unset

func (v *NullableWebhookEventType) Unset()

type NullableWebhookNotificationPayload

type NullableWebhookNotificationPayload struct {
	// contains filtered or unexported fields
}

func (NullableWebhookNotificationPayload) Get

func (NullableWebhookNotificationPayload) IsSet

func (NullableWebhookNotificationPayload) MarshalJSON

func (v NullableWebhookNotificationPayload) MarshalJSON() ([]byte, error)

func (*NullableWebhookNotificationPayload) Set

func (*NullableWebhookNotificationPayload) UnmarshalJSON

func (v *NullableWebhookNotificationPayload) UnmarshalJSON(src []byte) error

func (*NullableWebhookNotificationPayload) Unset

type NullableWebhookNotificationPayloadData added in v0.0.19

type NullableWebhookNotificationPayloadData struct {
	// contains filtered or unexported fields
}

func NewNullableWebhookNotificationPayloadData added in v0.0.19

func NewNullableWebhookNotificationPayloadData(val *WebhookNotificationPayloadData) *NullableWebhookNotificationPayloadData

func (NullableWebhookNotificationPayloadData) Get added in v0.0.19

func (NullableWebhookNotificationPayloadData) IsSet added in v0.0.19

func (NullableWebhookNotificationPayloadData) MarshalJSON added in v0.0.19

func (v NullableWebhookNotificationPayloadData) MarshalJSON() ([]byte, error)

func (*NullableWebhookNotificationPayloadData) Set added in v0.0.19

func (*NullableWebhookNotificationPayloadData) UnmarshalJSON added in v0.0.19

func (v *NullableWebhookNotificationPayloadData) UnmarshalJSON(src []byte) error

func (*NullableWebhookNotificationPayloadData) Unset added in v0.0.19

type NullableWebhookStats added in v0.0.7

type NullableWebhookStats struct {
	// contains filtered or unexported fields
}

func NewNullableWebhookStats added in v0.0.7

func NewNullableWebhookStats(val *WebhookStats) *NullableWebhookStats

func (NullableWebhookStats) Get added in v0.0.7

func (NullableWebhookStats) IsSet added in v0.0.7

func (v NullableWebhookStats) IsSet() bool

func (NullableWebhookStats) MarshalJSON added in v0.0.7

func (v NullableWebhookStats) MarshalJSON() ([]byte, error)

func (*NullableWebhookStats) Set added in v0.0.7

func (v *NullableWebhookStats) Set(val *WebhookStats)

func (*NullableWebhookStats) UnmarshalJSON added in v0.0.7

func (v *NullableWebhookStats) UnmarshalJSON(src []byte) error

func (*NullableWebhookStats) Unset added in v0.0.7

func (v *NullableWebhookStats) Unset()

type NullableWebhookStatsStats added in v0.0.7

type NullableWebhookStatsStats struct {
	// contains filtered or unexported fields
}

func NewNullableWebhookStatsStats added in v0.0.7

func NewNullableWebhookStatsStats(val *WebhookStatsStats) *NullableWebhookStatsStats

func (NullableWebhookStatsStats) Get added in v0.0.7

func (NullableWebhookStatsStats) IsSet added in v0.0.7

func (v NullableWebhookStatsStats) IsSet() bool

func (NullableWebhookStatsStats) MarshalJSON added in v0.0.7

func (v NullableWebhookStatsStats) MarshalJSON() ([]byte, error)

func (*NullableWebhookStatsStats) Set added in v0.0.7

func (*NullableWebhookStatsStats) UnmarshalJSON added in v0.0.7

func (v *NullableWebhookStatsStats) UnmarshalJSON(src []byte) error

func (*NullableWebhookStatsStats) Unset added in v0.0.7

func (v *NullableWebhookStatsStats) Unset()

type OAuthTokenRequest

type OAuthTokenRequest struct {
	ClientId     string `json:"clientId"`
	ClientSecret string `json:"clientSecret"`
}

OAuthTokenRequest Credentials for OAuth 2.0. Get from Pronesoft portal.

func NewOAuthTokenRequest

func NewOAuthTokenRequest(clientId string, clientSecret string) *OAuthTokenRequest

NewOAuthTokenRequest instantiates a new OAuthTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOAuthTokenRequestWithDefaults

func NewOAuthTokenRequestWithDefaults() *OAuthTokenRequest

NewOAuthTokenRequestWithDefaults instantiates a new OAuthTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OAuthTokenRequest) GetClientId

func (o *OAuthTokenRequest) GetClientId() string

GetClientId returns the ClientId field value

func (*OAuthTokenRequest) GetClientIdOk

func (o *OAuthTokenRequest) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value and a boolean to check if the value has been set.

func (*OAuthTokenRequest) GetClientSecret

func (o *OAuthTokenRequest) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*OAuthTokenRequest) GetClientSecretOk

func (o *OAuthTokenRequest) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value and a boolean to check if the value has been set.

func (OAuthTokenRequest) MarshalJSON

func (o OAuthTokenRequest) MarshalJSON() ([]byte, error)

func (*OAuthTokenRequest) SetClientId

func (o *OAuthTokenRequest) SetClientId(v string)

SetClientId sets field value

func (*OAuthTokenRequest) SetClientSecret

func (o *OAuthTokenRequest) SetClientSecret(v string)

SetClientSecret sets field value

func (OAuthTokenRequest) ToMap

func (o OAuthTokenRequest) ToMap() (map[string]interface{}, error)

func (*OAuthTokenRequest) UnmarshalJSON

func (o *OAuthTokenRequest) UnmarshalJSON(data []byte) (err error)

type OAuthTokenResponse

type OAuthTokenResponse struct {
	AccessToken *string `json:"accessToken,omitempty"`
	TokenType   *string `json:"tokenType,omitempty"`
	// Token lifetime in seconds (24 hours = 86400).
	ExpiresIn *int32   `json:"expiresIn,omitempty"`
	Scope     []string `json:"scope,omitempty"`
}

OAuthTokenResponse Bearer token valid for 24 hours (86400 seconds).

func NewOAuthTokenResponse

func NewOAuthTokenResponse() *OAuthTokenResponse

NewOAuthTokenResponse instantiates a new OAuthTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOAuthTokenResponseWithDefaults

func NewOAuthTokenResponseWithDefaults() *OAuthTokenResponse

NewOAuthTokenResponseWithDefaults instantiates a new OAuthTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OAuthTokenResponse) GetAccessToken

func (o *OAuthTokenResponse) GetAccessToken() string

GetAccessToken returns the AccessToken field value if set, zero value otherwise.

func (*OAuthTokenResponse) GetAccessTokenOk

func (o *OAuthTokenResponse) GetAccessTokenOk() (*string, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuthTokenResponse) GetExpiresIn

func (o *OAuthTokenResponse) GetExpiresIn() int32

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*OAuthTokenResponse) GetExpiresInOk

func (o *OAuthTokenResponse) GetExpiresInOk() (*int32, bool)

GetExpiresInOk returns a tuple with the ExpiresIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuthTokenResponse) GetScope added in v0.0.10

func (o *OAuthTokenResponse) GetScope() []string

GetScope returns the Scope field value if set, zero value otherwise.

func (*OAuthTokenResponse) GetScopeOk added in v0.0.10

func (o *OAuthTokenResponse) GetScopeOk() ([]string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuthTokenResponse) GetTokenType

func (o *OAuthTokenResponse) GetTokenType() string

GetTokenType returns the TokenType field value if set, zero value otherwise.

func (*OAuthTokenResponse) GetTokenTypeOk

func (o *OAuthTokenResponse) GetTokenTypeOk() (*string, bool)

GetTokenTypeOk returns a tuple with the TokenType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuthTokenResponse) HasAccessToken

func (o *OAuthTokenResponse) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*OAuthTokenResponse) HasExpiresIn

func (o *OAuthTokenResponse) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*OAuthTokenResponse) HasScope added in v0.0.10

func (o *OAuthTokenResponse) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*OAuthTokenResponse) HasTokenType

func (o *OAuthTokenResponse) HasTokenType() bool

HasTokenType returns a boolean if a field has been set.

func (OAuthTokenResponse) MarshalJSON

func (o OAuthTokenResponse) MarshalJSON() ([]byte, error)

func (*OAuthTokenResponse) SetAccessToken

func (o *OAuthTokenResponse) SetAccessToken(v string)

SetAccessToken gets a reference to the given string and assigns it to the AccessToken field.

func (*OAuthTokenResponse) SetExpiresIn

func (o *OAuthTokenResponse) SetExpiresIn(v int32)

SetExpiresIn gets a reference to the given int32 and assigns it to the ExpiresIn field.

func (*OAuthTokenResponse) SetScope added in v0.0.10

func (o *OAuthTokenResponse) SetScope(v []string)

SetScope gets a reference to the given []string and assigns it to the Scope field.

func (*OAuthTokenResponse) SetTokenType

func (o *OAuthTokenResponse) SetTokenType(v string)

SetTokenType gets a reference to the given string and assigns it to the TokenType field.

func (OAuthTokenResponse) ToMap

func (o OAuthTokenResponse) ToMap() (map[string]interface{}, error)

type Page

type Page struct {
	PageNumber        *int32   `json:"pageNumber,omitempty"`
	LineFrom          *int32   `json:"lineFrom,omitempty"`
	LineTo            *int32   `json:"lineTo,omitempty"`
	TaxableAmount     *float32 `json:"taxableAmount,omitempty"`
	TaxableAmount1    *float32 `json:"taxableAmount1,omitempty"`
	TaxableAmount2    *float32 `json:"taxableAmount2,omitempty"`
	TaxableAmount3    *float32 `json:"taxableAmount3,omitempty"`
	ExemptAmount      *float32 `json:"exemptAmount,omitempty"`
	TotalITBIS        *float32 `json:"totalITBIS,omitempty"`
	Itbis1            *float32 `json:"itbis1,omitempty"`
	Itbis2            *float32 `json:"itbis2,omitempty"`
	Itbis3            *float32 `json:"itbis3,omitempty"`
	AdditionalTaxes   *float32 `json:"additionalTaxes,omitempty"`
	Subtotal          *float32 `json:"subtotal,omitempty"`
	NonBillableAmount *float32 `json:"nonBillableAmount,omitempty"`
}

Page struct for Page

func NewPage

func NewPage() *Page

NewPage instantiates a new Page object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPageWithDefaults

func NewPageWithDefaults() *Page

NewPageWithDefaults instantiates a new Page object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Page) GetAdditionalTaxes

func (o *Page) GetAdditionalTaxes() float32

GetAdditionalTaxes returns the AdditionalTaxes field value if set, zero value otherwise.

func (*Page) GetAdditionalTaxesOk

func (o *Page) GetAdditionalTaxesOk() (*float32, bool)

GetAdditionalTaxesOk returns a tuple with the AdditionalTaxes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetExemptAmount

func (o *Page) GetExemptAmount() float32

GetExemptAmount returns the ExemptAmount field value if set, zero value otherwise.

func (*Page) GetExemptAmountOk

func (o *Page) GetExemptAmountOk() (*float32, bool)

GetExemptAmountOk returns a tuple with the ExemptAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetItbis1

func (o *Page) GetItbis1() float32

GetItbis1 returns the Itbis1 field value if set, zero value otherwise.

func (*Page) GetItbis1Ok

func (o *Page) GetItbis1Ok() (*float32, bool)

GetItbis1Ok returns a tuple with the Itbis1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetItbis2

func (o *Page) GetItbis2() float32

GetItbis2 returns the Itbis2 field value if set, zero value otherwise.

func (*Page) GetItbis2Ok

func (o *Page) GetItbis2Ok() (*float32, bool)

GetItbis2Ok returns a tuple with the Itbis2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetItbis3

func (o *Page) GetItbis3() float32

GetItbis3 returns the Itbis3 field value if set, zero value otherwise.

func (*Page) GetItbis3Ok

func (o *Page) GetItbis3Ok() (*float32, bool)

GetItbis3Ok returns a tuple with the Itbis3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetLineFrom

func (o *Page) GetLineFrom() int32

GetLineFrom returns the LineFrom field value if set, zero value otherwise.

func (*Page) GetLineFromOk

func (o *Page) GetLineFromOk() (*int32, bool)

GetLineFromOk returns a tuple with the LineFrom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetLineTo

func (o *Page) GetLineTo() int32

GetLineTo returns the LineTo field value if set, zero value otherwise.

func (*Page) GetLineToOk

func (o *Page) GetLineToOk() (*int32, bool)

GetLineToOk returns a tuple with the LineTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetNonBillableAmount

func (o *Page) GetNonBillableAmount() float32

GetNonBillableAmount returns the NonBillableAmount field value if set, zero value otherwise.

func (*Page) GetNonBillableAmountOk

func (o *Page) GetNonBillableAmountOk() (*float32, bool)

GetNonBillableAmountOk returns a tuple with the NonBillableAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetPageNumber

func (o *Page) GetPageNumber() int32

GetPageNumber returns the PageNumber field value if set, zero value otherwise.

func (*Page) GetPageNumberOk

func (o *Page) GetPageNumberOk() (*int32, bool)

GetPageNumberOk returns a tuple with the PageNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetSubtotal

func (o *Page) GetSubtotal() float32

GetSubtotal returns the Subtotal field value if set, zero value otherwise.

func (*Page) GetSubtotalOk

func (o *Page) GetSubtotalOk() (*float32, bool)

GetSubtotalOk returns a tuple with the Subtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetTaxableAmount

func (o *Page) GetTaxableAmount() float32

GetTaxableAmount returns the TaxableAmount field value if set, zero value otherwise.

func (*Page) GetTaxableAmount1

func (o *Page) GetTaxableAmount1() float32

GetTaxableAmount1 returns the TaxableAmount1 field value if set, zero value otherwise.

func (*Page) GetTaxableAmount1Ok

func (o *Page) GetTaxableAmount1Ok() (*float32, bool)

GetTaxableAmount1Ok returns a tuple with the TaxableAmount1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetTaxableAmount2

func (o *Page) GetTaxableAmount2() float32

GetTaxableAmount2 returns the TaxableAmount2 field value if set, zero value otherwise.

func (*Page) GetTaxableAmount2Ok

func (o *Page) GetTaxableAmount2Ok() (*float32, bool)

GetTaxableAmount2Ok returns a tuple with the TaxableAmount2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetTaxableAmount3

func (o *Page) GetTaxableAmount3() float32

GetTaxableAmount3 returns the TaxableAmount3 field value if set, zero value otherwise.

func (*Page) GetTaxableAmount3Ok

func (o *Page) GetTaxableAmount3Ok() (*float32, bool)

GetTaxableAmount3Ok returns a tuple with the TaxableAmount3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetTaxableAmountOk

func (o *Page) GetTaxableAmountOk() (*float32, bool)

GetTaxableAmountOk returns a tuple with the TaxableAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetTotalITBIS

func (o *Page) GetTotalITBIS() float32

GetTotalITBIS returns the TotalITBIS field value if set, zero value otherwise.

func (*Page) GetTotalITBISOk

func (o *Page) GetTotalITBISOk() (*float32, bool)

GetTotalITBISOk returns a tuple with the TotalITBIS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) HasAdditionalTaxes

func (o *Page) HasAdditionalTaxes() bool

HasAdditionalTaxes returns a boolean if a field has been set.

func (*Page) HasExemptAmount

func (o *Page) HasExemptAmount() bool

HasExemptAmount returns a boolean if a field has been set.

func (*Page) HasItbis1

func (o *Page) HasItbis1() bool

HasItbis1 returns a boolean if a field has been set.

func (*Page) HasItbis2

func (o *Page) HasItbis2() bool

HasItbis2 returns a boolean if a field has been set.

func (*Page) HasItbis3

func (o *Page) HasItbis3() bool

HasItbis3 returns a boolean if a field has been set.

func (*Page) HasLineFrom added in v0.0.7

func (o *Page) HasLineFrom() bool

HasLineFrom returns a boolean if a field has been set.

func (*Page) HasLineTo added in v0.0.7

func (o *Page) HasLineTo() bool

HasLineTo returns a boolean if a field has been set.

func (*Page) HasNonBillableAmount

func (o *Page) HasNonBillableAmount() bool

HasNonBillableAmount returns a boolean if a field has been set.

func (*Page) HasPageNumber added in v0.0.7

func (o *Page) HasPageNumber() bool

HasPageNumber returns a boolean if a field has been set.

func (*Page) HasSubtotal

func (o *Page) HasSubtotal() bool

HasSubtotal returns a boolean if a field has been set.

func (*Page) HasTaxableAmount

func (o *Page) HasTaxableAmount() bool

HasTaxableAmount returns a boolean if a field has been set.

func (*Page) HasTaxableAmount1

func (o *Page) HasTaxableAmount1() bool

HasTaxableAmount1 returns a boolean if a field has been set.

func (*Page) HasTaxableAmount2

func (o *Page) HasTaxableAmount2() bool

HasTaxableAmount2 returns a boolean if a field has been set.

func (*Page) HasTaxableAmount3

func (o *Page) HasTaxableAmount3() bool

HasTaxableAmount3 returns a boolean if a field has been set.

func (*Page) HasTotalITBIS

func (o *Page) HasTotalITBIS() bool

HasTotalITBIS returns a boolean if a field has been set.

func (Page) MarshalJSON

func (o Page) MarshalJSON() ([]byte, error)

func (*Page) SetAdditionalTaxes

func (o *Page) SetAdditionalTaxes(v float32)

SetAdditionalTaxes gets a reference to the given float32 and assigns it to the AdditionalTaxes field.

func (*Page) SetExemptAmount

func (o *Page) SetExemptAmount(v float32)

SetExemptAmount gets a reference to the given float32 and assigns it to the ExemptAmount field.

func (*Page) SetItbis1

func (o *Page) SetItbis1(v float32)

SetItbis1 gets a reference to the given float32 and assigns it to the Itbis1 field.

func (*Page) SetItbis2

func (o *Page) SetItbis2(v float32)

SetItbis2 gets a reference to the given float32 and assigns it to the Itbis2 field.

func (*Page) SetItbis3

func (o *Page) SetItbis3(v float32)

SetItbis3 gets a reference to the given float32 and assigns it to the Itbis3 field.

func (*Page) SetLineFrom

func (o *Page) SetLineFrom(v int32)

SetLineFrom gets a reference to the given int32 and assigns it to the LineFrom field.

func (*Page) SetLineTo

func (o *Page) SetLineTo(v int32)

SetLineTo gets a reference to the given int32 and assigns it to the LineTo field.

func (*Page) SetNonBillableAmount

func (o *Page) SetNonBillableAmount(v float32)

SetNonBillableAmount gets a reference to the given float32 and assigns it to the NonBillableAmount field.

func (*Page) SetPageNumber

func (o *Page) SetPageNumber(v int32)

SetPageNumber gets a reference to the given int32 and assigns it to the PageNumber field.

func (*Page) SetSubtotal

func (o *Page) SetSubtotal(v float32)

SetSubtotal gets a reference to the given float32 and assigns it to the Subtotal field.

func (*Page) SetTaxableAmount

func (o *Page) SetTaxableAmount(v float32)

SetTaxableAmount gets a reference to the given float32 and assigns it to the TaxableAmount field.

func (*Page) SetTaxableAmount1

func (o *Page) SetTaxableAmount1(v float32)

SetTaxableAmount1 gets a reference to the given float32 and assigns it to the TaxableAmount1 field.

func (*Page) SetTaxableAmount2

func (o *Page) SetTaxableAmount2(v float32)

SetTaxableAmount2 gets a reference to the given float32 and assigns it to the TaxableAmount2 field.

func (*Page) SetTaxableAmount3

func (o *Page) SetTaxableAmount3(v float32)

SetTaxableAmount3 gets a reference to the given float32 and assigns it to the TaxableAmount3 field.

func (*Page) SetTotalITBIS

func (o *Page) SetTotalITBIS(v float32)

SetTotalITBIS gets a reference to the given float32 and assigns it to the TotalITBIS field.

func (Page) ToMap

func (o Page) ToMap() (map[string]interface{}, error)

type PaginationMeta added in v0.0.7

type PaginationMeta struct {
	Total      *int32 `json:"total,omitempty"`
	Page       *int32 `json:"page,omitempty"`
	Limit      *int32 `json:"limit,omitempty"`
	TotalPages *int32 `json:"totalPages,omitempty"`
}

PaginationMeta struct for PaginationMeta

func NewPaginationMeta added in v0.0.7

func NewPaginationMeta() *PaginationMeta

NewPaginationMeta instantiates a new PaginationMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPaginationMetaWithDefaults added in v0.0.7

func NewPaginationMetaWithDefaults() *PaginationMeta

NewPaginationMetaWithDefaults instantiates a new PaginationMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PaginationMeta) GetLimit added in v0.0.7

func (o *PaginationMeta) GetLimit() int32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*PaginationMeta) GetLimitOk added in v0.0.7

func (o *PaginationMeta) GetLimitOk() (*int32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationMeta) GetPage added in v0.0.7

func (o *PaginationMeta) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*PaginationMeta) GetPageOk added in v0.0.7

func (o *PaginationMeta) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationMeta) GetTotal added in v0.0.7

func (o *PaginationMeta) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*PaginationMeta) GetTotalOk added in v0.0.7

func (o *PaginationMeta) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationMeta) GetTotalPages added in v0.0.7

func (o *PaginationMeta) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*PaginationMeta) GetTotalPagesOk added in v0.0.7

func (o *PaginationMeta) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationMeta) HasLimit added in v0.0.7

func (o *PaginationMeta) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*PaginationMeta) HasPage added in v0.0.7

func (o *PaginationMeta) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*PaginationMeta) HasTotal added in v0.0.7

func (o *PaginationMeta) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*PaginationMeta) HasTotalPages added in v0.0.7

func (o *PaginationMeta) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (PaginationMeta) MarshalJSON added in v0.0.7

func (o PaginationMeta) MarshalJSON() ([]byte, error)

func (*PaginationMeta) SetLimit added in v0.0.7

func (o *PaginationMeta) SetLimit(v int32)

SetLimit gets a reference to the given int32 and assigns it to the Limit field.

func (*PaginationMeta) SetPage added in v0.0.7

func (o *PaginationMeta) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*PaginationMeta) SetTotal added in v0.0.7

func (o *PaginationMeta) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*PaginationMeta) SetTotalPages added in v0.0.7

func (o *PaginationMeta) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

func (PaginationMeta) ToMap added in v0.0.7

func (o PaginationMeta) ToMap() (map[string]interface{}, error)

type PaymentForm added in v0.0.7

type PaymentForm struct {
	Method PaymentMethod `json:"method"`
	Amount float32       `json:"amount"`
}

PaymentForm struct for PaymentForm

func NewPaymentForm added in v0.0.7

func NewPaymentForm(method PaymentMethod, amount float32) *PaymentForm

NewPaymentForm instantiates a new PaymentForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPaymentFormWithDefaults added in v0.0.7

func NewPaymentFormWithDefaults() *PaymentForm

NewPaymentFormWithDefaults instantiates a new PaymentForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PaymentForm) GetAmount added in v0.0.7

func (o *PaymentForm) GetAmount() float32

GetAmount returns the Amount field value

func (*PaymentForm) GetAmountOk added in v0.0.7

func (o *PaymentForm) GetAmountOk() (*float32, bool)

GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.

func (*PaymentForm) GetMethod added in v0.0.7

func (o *PaymentForm) GetMethod() PaymentMethod

GetMethod returns the Method field value

func (*PaymentForm) GetMethodOk added in v0.0.7

func (o *PaymentForm) GetMethodOk() (*PaymentMethod, bool)

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (PaymentForm) MarshalJSON added in v0.0.7

func (o PaymentForm) MarshalJSON() ([]byte, error)

func (*PaymentForm) SetAmount added in v0.0.7

func (o *PaymentForm) SetAmount(v float32)

SetAmount sets field value

func (*PaymentForm) SetMethod added in v0.0.7

func (o *PaymentForm) SetMethod(v PaymentMethod)

SetMethod sets field value

func (PaymentForm) ToMap added in v0.0.7

func (o PaymentForm) ToMap() (map[string]interface{}, error)

func (*PaymentForm) UnmarshalJSON added in v0.0.7

func (o *PaymentForm) UnmarshalJSON(data []byte) (err error)

type PaymentMethod

type PaymentMethod string

PaymentMethod 1=Cash, 2=Check, 3=Card, 4=Credit, 5=Transfer, 6=Electronic, 7=Bond, 8=Other

const (
	PAYMENTMETHOD__1 PaymentMethod = "1"
	PAYMENTMETHOD__2 PaymentMethod = "2"
	PAYMENTMETHOD__3 PaymentMethod = "3"
	PAYMENTMETHOD__4 PaymentMethod = "4"
	PAYMENTMETHOD__5 PaymentMethod = "5"
	PAYMENTMETHOD__6 PaymentMethod = "6"
	PAYMENTMETHOD__7 PaymentMethod = "7"
	PAYMENTMETHOD__8 PaymentMethod = "8"
)

List of PaymentMethod

func NewPaymentMethodFromValue

func NewPaymentMethodFromValue(v string) (*PaymentMethod, error)

NewPaymentMethodFromValue returns a pointer to a valid PaymentMethod for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PaymentMethod) IsValid

func (v PaymentMethod) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PaymentMethod) Ptr

func (v PaymentMethod) Ptr() *PaymentMethod

Ptr returns reference to PaymentMethod value

func (*PaymentMethod) UnmarshalJSON

func (v *PaymentMethod) UnmarshalJSON(src []byte) error

type PlanPaymentFailedPayload added in v0.0.19

type PlanPaymentFailedPayload struct {
	InvoiceId NullableString `json:"invoiceId,omitempty"`
	// Monto del pago fallido.
	Amount float32 `json:"amount"`
	// Razón del fallo.
	Reason string `json:"reason"`
}

PlanPaymentFailedPayload Payload del evento `plan.payment_failed`. Falló el pago automático del plan mensual.

func NewPlanPaymentFailedPayload added in v0.0.19

func NewPlanPaymentFailedPayload(amount float32, reason string) *PlanPaymentFailedPayload

NewPlanPaymentFailedPayload instantiates a new PlanPaymentFailedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPlanPaymentFailedPayloadWithDefaults added in v0.0.19

func NewPlanPaymentFailedPayloadWithDefaults() *PlanPaymentFailedPayload

NewPlanPaymentFailedPayloadWithDefaults instantiates a new PlanPaymentFailedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PlanPaymentFailedPayload) GetAmount added in v0.0.19

func (o *PlanPaymentFailedPayload) GetAmount() float32

GetAmount returns the Amount field value

func (*PlanPaymentFailedPayload) GetAmountOk added in v0.0.19

func (o *PlanPaymentFailedPayload) GetAmountOk() (*float32, bool)

GetAmountOk returns a tuple with the Amount field value and a boolean to check if the value has been set.

func (*PlanPaymentFailedPayload) GetInvoiceId added in v0.0.19

func (o *PlanPaymentFailedPayload) GetInvoiceId() string

GetInvoiceId returns the InvoiceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PlanPaymentFailedPayload) GetInvoiceIdOk added in v0.0.19

func (o *PlanPaymentFailedPayload) GetInvoiceIdOk() (*string, bool)

GetInvoiceIdOk returns a tuple with the InvoiceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PlanPaymentFailedPayload) GetReason added in v0.0.19

func (o *PlanPaymentFailedPayload) GetReason() string

GetReason returns the Reason field value

func (*PlanPaymentFailedPayload) GetReasonOk added in v0.0.19

func (o *PlanPaymentFailedPayload) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set.

func (*PlanPaymentFailedPayload) HasInvoiceId added in v0.0.19

func (o *PlanPaymentFailedPayload) HasInvoiceId() bool

HasInvoiceId returns a boolean if a field has been set.

func (PlanPaymentFailedPayload) MarshalJSON added in v0.0.19

func (o PlanPaymentFailedPayload) MarshalJSON() ([]byte, error)

func (*PlanPaymentFailedPayload) SetAmount added in v0.0.19

func (o *PlanPaymentFailedPayload) SetAmount(v float32)

SetAmount sets field value

func (*PlanPaymentFailedPayload) SetInvoiceId added in v0.0.19

func (o *PlanPaymentFailedPayload) SetInvoiceId(v string)

SetInvoiceId gets a reference to the given NullableString and assigns it to the InvoiceId field.

func (*PlanPaymentFailedPayload) SetInvoiceIdNil added in v0.0.19

func (o *PlanPaymentFailedPayload) SetInvoiceIdNil()

SetInvoiceIdNil sets the value for InvoiceId to be an explicit nil

func (*PlanPaymentFailedPayload) SetReason added in v0.0.19

func (o *PlanPaymentFailedPayload) SetReason(v string)

SetReason sets field value

func (PlanPaymentFailedPayload) ToMap added in v0.0.19

func (o PlanPaymentFailedPayload) ToMap() (map[string]interface{}, error)

func (*PlanPaymentFailedPayload) UnmarshalJSON added in v0.0.19

func (o *PlanPaymentFailedPayload) UnmarshalJSON(data []byte) (err error)

func (*PlanPaymentFailedPayload) UnsetInvoiceId added in v0.0.19

func (o *PlanPaymentFailedPayload) UnsetInvoiceId()

UnsetInvoiceId ensures that no value is present for InvoiceId, not even an explicit nil

type PlanUsageAlertPayload added in v0.0.19

type PlanUsageAlertPayload struct {
	// Porcentaje de uso del plan.
	UsagePercent float32 `json:"usagePercent"`
	// Documentos restantes en el plan.
	RemainingDocs int32 `json:"remainingDocs"`
}

PlanUsageAlertPayload Payload del evento `plan.usage_alert`. El consumo de documentos superó el umbral configurado.

func NewPlanUsageAlertPayload added in v0.0.19

func NewPlanUsageAlertPayload(usagePercent float32, remainingDocs int32) *PlanUsageAlertPayload

NewPlanUsageAlertPayload instantiates a new PlanUsageAlertPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPlanUsageAlertPayloadWithDefaults added in v0.0.19

func NewPlanUsageAlertPayloadWithDefaults() *PlanUsageAlertPayload

NewPlanUsageAlertPayloadWithDefaults instantiates a new PlanUsageAlertPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PlanUsageAlertPayload) GetRemainingDocs added in v0.0.19

func (o *PlanUsageAlertPayload) GetRemainingDocs() int32

GetRemainingDocs returns the RemainingDocs field value

func (*PlanUsageAlertPayload) GetRemainingDocsOk added in v0.0.19

func (o *PlanUsageAlertPayload) GetRemainingDocsOk() (*int32, bool)

GetRemainingDocsOk returns a tuple with the RemainingDocs field value and a boolean to check if the value has been set.

func (*PlanUsageAlertPayload) GetUsagePercent added in v0.0.19

func (o *PlanUsageAlertPayload) GetUsagePercent() float32

GetUsagePercent returns the UsagePercent field value

func (*PlanUsageAlertPayload) GetUsagePercentOk added in v0.0.19

func (o *PlanUsageAlertPayload) GetUsagePercentOk() (*float32, bool)

GetUsagePercentOk returns a tuple with the UsagePercent field value and a boolean to check if the value has been set.

func (PlanUsageAlertPayload) MarshalJSON added in v0.0.19

func (o PlanUsageAlertPayload) MarshalJSON() ([]byte, error)

func (*PlanUsageAlertPayload) SetRemainingDocs added in v0.0.19

func (o *PlanUsageAlertPayload) SetRemainingDocs(v int32)

SetRemainingDocs sets field value

func (*PlanUsageAlertPayload) SetUsagePercent added in v0.0.19

func (o *PlanUsageAlertPayload) SetUsagePercent(v float32)

SetUsagePercent sets field value

func (PlanUsageAlertPayload) ToMap added in v0.0.19

func (o PlanUsageAlertPayload) ToMap() (map[string]interface{}, error)

func (*PlanUsageAlertPayload) UnmarshalJSON added in v0.0.19

func (o *PlanUsageAlertPayload) UnmarshalJSON(data []byte) (err error)

type PrintFormat

type PrintFormat string

PrintFormat the model 'PrintFormat'

const (
	PRINTFORMAT_A4         PrintFormat = "A4"
	PRINTFORMAT_THERMAL_80 PrintFormat = "thermal_80"
	PRINTFORMAT_THERMAL_58 PrintFormat = "thermal_58"
)

List of PrintFormat

func NewPrintFormatFromValue

func NewPrintFormatFromValue(v string) (*PrintFormat, error)

NewPrintFormatFromValue returns a pointer to a valid PrintFormat for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PrintFormat) IsValid

func (v PrintFormat) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PrintFormat) Ptr

func (v PrintFormat) Ptr() *PrintFormat

Ptr returns reference to PrintFormat value

func (*PrintFormat) UnmarshalJSON

func (v *PrintFormat) UnmarshalJSON(src []byte) error

type ProcessingLog added in v0.0.7

type ProcessingLog struct {
	Timestamp *time.Time `json:"timestamp,omitempty"`
	Level     *string    `json:"level,omitempty"`
	Message   *string    `json:"message,omitempty"`
}

ProcessingLog struct for ProcessingLog

func NewProcessingLog added in v0.0.7

func NewProcessingLog() *ProcessingLog

NewProcessingLog instantiates a new ProcessingLog object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProcessingLogWithDefaults added in v0.0.7

func NewProcessingLogWithDefaults() *ProcessingLog

NewProcessingLogWithDefaults instantiates a new ProcessingLog object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProcessingLog) GetLevel added in v0.0.7

func (o *ProcessingLog) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*ProcessingLog) GetLevelOk added in v0.0.7

func (o *ProcessingLog) GetLevelOk() (*string, bool)

GetLevelOk returns a tuple with the Level field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProcessingLog) GetMessage added in v0.0.7

func (o *ProcessingLog) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ProcessingLog) GetMessageOk added in v0.0.7

func (o *ProcessingLog) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProcessingLog) GetTimestamp added in v0.0.7

func (o *ProcessingLog) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ProcessingLog) GetTimestampOk added in v0.0.7

func (o *ProcessingLog) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProcessingLog) HasLevel added in v0.0.7

func (o *ProcessingLog) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*ProcessingLog) HasMessage added in v0.0.7

func (o *ProcessingLog) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ProcessingLog) HasTimestamp added in v0.0.7

func (o *ProcessingLog) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ProcessingLog) MarshalJSON added in v0.0.7

func (o ProcessingLog) MarshalJSON() ([]byte, error)

func (*ProcessingLog) SetLevel added in v0.0.7

func (o *ProcessingLog) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*ProcessingLog) SetMessage added in v0.0.7

func (o *ProcessingLog) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ProcessingLog) SetTimestamp added in v0.0.7

func (o *ProcessingLog) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (ProcessingLog) ToMap added in v0.0.7

func (o ProcessingLog) ToMap() (map[string]interface{}, error)

type PublicDocumentStatus added in v0.0.19

type PublicDocumentStatus string

PublicDocumentStatus Lifecycle status visible to integrators.

const (
	PUBLICDOCUMENTSTATUS_REGISTERED       PublicDocumentStatus = "REGISTERED"
	PUBLICDOCUMENTSTATUS_TO_SEND          PublicDocumentStatus = "TO_SEND"
	PUBLICDOCUMENTSTATUS_WAITING_RESPONSE PublicDocumentStatus = "WAITING_RESPONSE"
	PUBLICDOCUMENTSTATUS_FINISHED         PublicDocumentStatus = "FINISHED"
)

List of PublicDocumentStatus

func NewPublicDocumentStatusFromValue added in v0.0.19

func NewPublicDocumentStatusFromValue(v string) (*PublicDocumentStatus, error)

NewPublicDocumentStatusFromValue returns a pointer to a valid PublicDocumentStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PublicDocumentStatus) IsValid added in v0.0.19

func (v PublicDocumentStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PublicDocumentStatus) Ptr added in v0.0.19

Ptr returns reference to PublicDocumentStatus value

func (*PublicDocumentStatus) UnmarshalJSON added in v0.0.19

func (v *PublicDocumentStatus) UnmarshalJSON(src []byte) error

type RateLimitErrorResponse added in v0.0.7

type RateLimitErrorResponse struct {
	StatusCode *int32  `json:"statusCode,omitempty"`
	Message    *string `json:"message,omitempty"`
	Error      *string `json:"error,omitempty"`
	RetryAfter *int32  `json:"retryAfter,omitempty"`
}

RateLimitErrorResponse struct for RateLimitErrorResponse

func NewRateLimitErrorResponse added in v0.0.7

func NewRateLimitErrorResponse() *RateLimitErrorResponse

NewRateLimitErrorResponse instantiates a new RateLimitErrorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRateLimitErrorResponseWithDefaults added in v0.0.7

func NewRateLimitErrorResponseWithDefaults() *RateLimitErrorResponse

NewRateLimitErrorResponseWithDefaults instantiates a new RateLimitErrorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RateLimitErrorResponse) GetError added in v0.0.7

func (o *RateLimitErrorResponse) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*RateLimitErrorResponse) GetErrorOk added in v0.0.7

func (o *RateLimitErrorResponse) 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.

func (*RateLimitErrorResponse) GetMessage added in v0.0.7

func (o *RateLimitErrorResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RateLimitErrorResponse) GetMessageOk added in v0.0.7

func (o *RateLimitErrorResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RateLimitErrorResponse) GetRetryAfter added in v0.0.7

func (o *RateLimitErrorResponse) GetRetryAfter() int32

GetRetryAfter returns the RetryAfter field value if set, zero value otherwise.

func (*RateLimitErrorResponse) GetRetryAfterOk added in v0.0.7

func (o *RateLimitErrorResponse) GetRetryAfterOk() (*int32, bool)

GetRetryAfterOk returns a tuple with the RetryAfter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RateLimitErrorResponse) GetStatusCode added in v0.0.7

func (o *RateLimitErrorResponse) GetStatusCode() int32

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*RateLimitErrorResponse) GetStatusCodeOk added in v0.0.7

func (o *RateLimitErrorResponse) 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 (*RateLimitErrorResponse) HasError added in v0.0.7

func (o *RateLimitErrorResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*RateLimitErrorResponse) HasMessage added in v0.0.7

func (o *RateLimitErrorResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RateLimitErrorResponse) HasRetryAfter added in v0.0.7

func (o *RateLimitErrorResponse) HasRetryAfter() bool

HasRetryAfter returns a boolean if a field has been set.

func (*RateLimitErrorResponse) HasStatusCode added in v0.0.7

func (o *RateLimitErrorResponse) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (RateLimitErrorResponse) MarshalJSON added in v0.0.7

func (o RateLimitErrorResponse) MarshalJSON() ([]byte, error)

func (*RateLimitErrorResponse) SetError added in v0.0.7

func (o *RateLimitErrorResponse) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*RateLimitErrorResponse) SetMessage added in v0.0.7

func (o *RateLimitErrorResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RateLimitErrorResponse) SetRetryAfter added in v0.0.7

func (o *RateLimitErrorResponse) SetRetryAfter(v int32)

SetRetryAfter gets a reference to the given int32 and assigns it to the RetryAfter field.

func (*RateLimitErrorResponse) SetStatusCode added in v0.0.7

func (o *RateLimitErrorResponse) SetStatusCode(v int32)

SetStatusCode gets a reference to the given int32 and assigns it to the StatusCode field.

func (RateLimitErrorResponse) ToMap added in v0.0.7

func (o RateLimitErrorResponse) ToMap() (map[string]interface{}, error)

type ReceivedDocument added in v0.0.7

type ReceivedDocument struct {
	Id          *string  `json:"id,omitempty"`
	Encf        *string  `json:"encf,omitempty"`
	SenderRnc   *string  `json:"senderRnc,omitempty"`
	ReceiverRnc *string  `json:"receiverRnc,omitempty"`
	TotalAmount *float32 `json:"totalAmount,omitempty"`
	// 1=Valid, 2=Voided, 3=Pending
	Status                            *int32                       `json:"status,omitempty"`
	StatusLabel                       *string                      `json:"statusLabel,omitempty"`
	IssueDate                         *time.Time                   `json:"issueDate,omitempty"`
	ReceivedAt                        *time.Time                   `json:"receivedAt,omitempty"`
	CreatedAt                         *time.Time                   `json:"createdAt,omitempty"`
	CommercialApprovalStatus          NullableString               `json:"commercialApprovalStatus,omitempty"`
	CommercialApprovalRejectionReason NullableString               `json:"commercialApprovalRejectionReason,omitempty"`
	Business                          *SentDocumentSummaryBusiness `json:"business,omitempty"`
}

ReceivedDocument struct for ReceivedDocument

func NewReceivedDocument added in v0.0.7

func NewReceivedDocument() *ReceivedDocument

NewReceivedDocument instantiates a new ReceivedDocument object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReceivedDocumentWithDefaults added in v0.0.7

func NewReceivedDocumentWithDefaults() *ReceivedDocument

NewReceivedDocumentWithDefaults instantiates a new ReceivedDocument object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReceivedDocument) GetBusiness added in v0.0.7

GetBusiness returns the Business field value if set, zero value otherwise.

func (*ReceivedDocument) GetBusinessOk added in v0.0.7

func (o *ReceivedDocument) GetBusinessOk() (*SentDocumentSummaryBusiness, bool)

GetBusinessOk returns a tuple with the Business field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetCommercialApprovalRejectionReason added in v0.0.19

func (o *ReceivedDocument) GetCommercialApprovalRejectionReason() string

GetCommercialApprovalRejectionReason returns the CommercialApprovalRejectionReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReceivedDocument) GetCommercialApprovalRejectionReasonOk added in v0.0.19

func (o *ReceivedDocument) GetCommercialApprovalRejectionReasonOk() (*string, bool)

GetCommercialApprovalRejectionReasonOk returns a tuple with the CommercialApprovalRejectionReason field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReceivedDocument) GetCommercialApprovalStatus added in v0.0.19

func (o *ReceivedDocument) GetCommercialApprovalStatus() string

GetCommercialApprovalStatus returns the CommercialApprovalStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReceivedDocument) GetCommercialApprovalStatusOk added in v0.0.19

func (o *ReceivedDocument) GetCommercialApprovalStatusOk() (*string, bool)

GetCommercialApprovalStatusOk returns a tuple with the CommercialApprovalStatus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReceivedDocument) GetCreatedAt added in v0.0.19

func (o *ReceivedDocument) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ReceivedDocument) GetCreatedAtOk added in v0.0.19

func (o *ReceivedDocument) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetEncf added in v0.0.7

func (o *ReceivedDocument) GetEncf() string

GetEncf returns the Encf field value if set, zero value otherwise.

func (*ReceivedDocument) GetEncfOk added in v0.0.7

func (o *ReceivedDocument) GetEncfOk() (*string, bool)

GetEncfOk returns a tuple with the Encf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetId added in v0.0.7

func (o *ReceivedDocument) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ReceivedDocument) GetIdOk added in v0.0.7

func (o *ReceivedDocument) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetIssueDate added in v0.0.7

func (o *ReceivedDocument) GetIssueDate() time.Time

GetIssueDate returns the IssueDate field value if set, zero value otherwise.

func (*ReceivedDocument) GetIssueDateOk added in v0.0.7

func (o *ReceivedDocument) GetIssueDateOk() (*time.Time, bool)

GetIssueDateOk returns a tuple with the IssueDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetReceivedAt added in v0.0.7

func (o *ReceivedDocument) GetReceivedAt() time.Time

GetReceivedAt returns the ReceivedAt field value if set, zero value otherwise.

func (*ReceivedDocument) GetReceivedAtOk added in v0.0.7

func (o *ReceivedDocument) GetReceivedAtOk() (*time.Time, bool)

GetReceivedAtOk returns a tuple with the ReceivedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetReceiverRnc added in v0.0.7

func (o *ReceivedDocument) GetReceiverRnc() string

GetReceiverRnc returns the ReceiverRnc field value if set, zero value otherwise.

func (*ReceivedDocument) GetReceiverRncOk added in v0.0.7

func (o *ReceivedDocument) GetReceiverRncOk() (*string, bool)

GetReceiverRncOk returns a tuple with the ReceiverRnc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetSenderRnc added in v0.0.7

func (o *ReceivedDocument) GetSenderRnc() string

GetSenderRnc returns the SenderRnc field value if set, zero value otherwise.

func (*ReceivedDocument) GetSenderRncOk added in v0.0.7

func (o *ReceivedDocument) GetSenderRncOk() (*string, bool)

GetSenderRncOk returns a tuple with the SenderRnc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetStatus added in v0.0.7

func (o *ReceivedDocument) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ReceivedDocument) GetStatusLabel added in v0.0.19

func (o *ReceivedDocument) GetStatusLabel() string

GetStatusLabel returns the StatusLabel field value if set, zero value otherwise.

func (*ReceivedDocument) GetStatusLabelOk added in v0.0.19

func (o *ReceivedDocument) GetStatusLabelOk() (*string, bool)

GetStatusLabelOk returns a tuple with the StatusLabel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) GetStatusOk added in v0.0.7

func (o *ReceivedDocument) 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.

func (*ReceivedDocument) GetTotalAmount added in v0.0.7

func (o *ReceivedDocument) GetTotalAmount() float32

GetTotalAmount returns the TotalAmount field value if set, zero value otherwise.

func (*ReceivedDocument) GetTotalAmountOk added in v0.0.7

func (o *ReceivedDocument) GetTotalAmountOk() (*float32, bool)

GetTotalAmountOk returns a tuple with the TotalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocument) HasBusiness added in v0.0.7

func (o *ReceivedDocument) HasBusiness() bool

HasBusiness returns a boolean if a field has been set.

func (*ReceivedDocument) HasCommercialApprovalRejectionReason added in v0.0.19

func (o *ReceivedDocument) HasCommercialApprovalRejectionReason() bool

HasCommercialApprovalRejectionReason returns a boolean if a field has been set.

func (*ReceivedDocument) HasCommercialApprovalStatus added in v0.0.19

func (o *ReceivedDocument) HasCommercialApprovalStatus() bool

HasCommercialApprovalStatus returns a boolean if a field has been set.

func (*ReceivedDocument) HasCreatedAt added in v0.0.19

func (o *ReceivedDocument) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ReceivedDocument) HasEncf added in v0.0.7

func (o *ReceivedDocument) HasEncf() bool

HasEncf returns a boolean if a field has been set.

func (*ReceivedDocument) HasId added in v0.0.7

func (o *ReceivedDocument) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReceivedDocument) HasIssueDate added in v0.0.7

func (o *ReceivedDocument) HasIssueDate() bool

HasIssueDate returns a boolean if a field has been set.

func (*ReceivedDocument) HasReceivedAt added in v0.0.7

func (o *ReceivedDocument) HasReceivedAt() bool

HasReceivedAt returns a boolean if a field has been set.

func (*ReceivedDocument) HasReceiverRnc added in v0.0.7

func (o *ReceivedDocument) HasReceiverRnc() bool

HasReceiverRnc returns a boolean if a field has been set.

func (*ReceivedDocument) HasSenderRnc added in v0.0.7

func (o *ReceivedDocument) HasSenderRnc() bool

HasSenderRnc returns a boolean if a field has been set.

func (*ReceivedDocument) HasStatus added in v0.0.7

func (o *ReceivedDocument) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ReceivedDocument) HasStatusLabel added in v0.0.19

func (o *ReceivedDocument) HasStatusLabel() bool

HasStatusLabel returns a boolean if a field has been set.

func (*ReceivedDocument) HasTotalAmount added in v0.0.7

func (o *ReceivedDocument) HasTotalAmount() bool

HasTotalAmount returns a boolean if a field has been set.

func (ReceivedDocument) MarshalJSON added in v0.0.7

func (o ReceivedDocument) MarshalJSON() ([]byte, error)

func (*ReceivedDocument) SetBusiness added in v0.0.7

SetBusiness gets a reference to the given SentDocumentSummaryBusiness and assigns it to the Business field.

func (*ReceivedDocument) SetCommercialApprovalRejectionReason added in v0.0.19

func (o *ReceivedDocument) SetCommercialApprovalRejectionReason(v string)

SetCommercialApprovalRejectionReason gets a reference to the given NullableString and assigns it to the CommercialApprovalRejectionReason field.

func (*ReceivedDocument) SetCommercialApprovalRejectionReasonNil added in v0.0.19

func (o *ReceivedDocument) SetCommercialApprovalRejectionReasonNil()

SetCommercialApprovalRejectionReasonNil sets the value for CommercialApprovalRejectionReason to be an explicit nil

func (*ReceivedDocument) SetCommercialApprovalStatus added in v0.0.19

func (o *ReceivedDocument) SetCommercialApprovalStatus(v string)

SetCommercialApprovalStatus gets a reference to the given NullableString and assigns it to the CommercialApprovalStatus field.

func (*ReceivedDocument) SetCommercialApprovalStatusNil added in v0.0.19

func (o *ReceivedDocument) SetCommercialApprovalStatusNil()

SetCommercialApprovalStatusNil sets the value for CommercialApprovalStatus to be an explicit nil

func (*ReceivedDocument) SetCreatedAt added in v0.0.19

func (o *ReceivedDocument) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*ReceivedDocument) SetEncf added in v0.0.7

func (o *ReceivedDocument) SetEncf(v string)

SetEncf gets a reference to the given string and assigns it to the Encf field.

func (*ReceivedDocument) SetId added in v0.0.7

func (o *ReceivedDocument) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ReceivedDocument) SetIssueDate added in v0.0.7

func (o *ReceivedDocument) SetIssueDate(v time.Time)

SetIssueDate gets a reference to the given time.Time and assigns it to the IssueDate field.

func (*ReceivedDocument) SetReceivedAt added in v0.0.7

func (o *ReceivedDocument) SetReceivedAt(v time.Time)

SetReceivedAt gets a reference to the given time.Time and assigns it to the ReceivedAt field.

func (*ReceivedDocument) SetReceiverRnc added in v0.0.7

func (o *ReceivedDocument) SetReceiverRnc(v string)

SetReceiverRnc gets a reference to the given string and assigns it to the ReceiverRnc field.

func (*ReceivedDocument) SetSenderRnc added in v0.0.7

func (o *ReceivedDocument) SetSenderRnc(v string)

SetSenderRnc gets a reference to the given string and assigns it to the SenderRnc field.

func (*ReceivedDocument) SetStatus added in v0.0.7

func (o *ReceivedDocument) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ReceivedDocument) SetStatusLabel added in v0.0.19

func (o *ReceivedDocument) SetStatusLabel(v string)

SetStatusLabel gets a reference to the given string and assigns it to the StatusLabel field.

func (*ReceivedDocument) SetTotalAmount added in v0.0.7

func (o *ReceivedDocument) SetTotalAmount(v float32)

SetTotalAmount gets a reference to the given float32 and assigns it to the TotalAmount field.

func (ReceivedDocument) ToMap added in v0.0.7

func (o ReceivedDocument) ToMap() (map[string]interface{}, error)

func (*ReceivedDocument) UnsetCommercialApprovalRejectionReason added in v0.0.19

func (o *ReceivedDocument) UnsetCommercialApprovalRejectionReason()

UnsetCommercialApprovalRejectionReason ensures that no value is present for CommercialApprovalRejectionReason, not even an explicit nil

func (*ReceivedDocument) UnsetCommercialApprovalStatus added in v0.0.19

func (o *ReceivedDocument) UnsetCommercialApprovalStatus()

UnsetCommercialApprovalStatus ensures that no value is present for CommercialApprovalStatus, not even an explicit nil

type ReceivedDocumentListResponse added in v0.0.7

type ReceivedDocumentListResponse struct {
	Data []ReceivedDocument `json:"data,omitempty"`
	Meta *PaginationMeta    `json:"meta,omitempty"`
}

ReceivedDocumentListResponse struct for ReceivedDocumentListResponse

func NewReceivedDocumentListResponse added in v0.0.7

func NewReceivedDocumentListResponse() *ReceivedDocumentListResponse

NewReceivedDocumentListResponse instantiates a new ReceivedDocumentListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReceivedDocumentListResponseWithDefaults added in v0.0.7

func NewReceivedDocumentListResponseWithDefaults() *ReceivedDocumentListResponse

NewReceivedDocumentListResponseWithDefaults instantiates a new ReceivedDocumentListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReceivedDocumentListResponse) GetData added in v0.0.7

GetData returns the Data field value if set, zero value otherwise.

func (*ReceivedDocumentListResponse) GetDataOk added in v0.0.7

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 (*ReceivedDocumentListResponse) GetMeta added in v0.0.7

GetMeta returns the Meta field value if set, zero value otherwise.

func (*ReceivedDocumentListResponse) GetMetaOk added in v0.0.7

GetMetaOk returns a tuple with the Meta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocumentListResponse) HasData added in v0.0.7

func (o *ReceivedDocumentListResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*ReceivedDocumentListResponse) HasMeta added in v0.0.7

func (o *ReceivedDocumentListResponse) HasMeta() bool

HasMeta returns a boolean if a field has been set.

func (ReceivedDocumentListResponse) MarshalJSON added in v0.0.7

func (o ReceivedDocumentListResponse) MarshalJSON() ([]byte, error)

func (*ReceivedDocumentListResponse) SetData added in v0.0.7

SetData gets a reference to the given []ReceivedDocument and assigns it to the Data field.

func (*ReceivedDocumentListResponse) SetMeta added in v0.0.7

SetMeta gets a reference to the given PaginationMeta and assigns it to the Meta field.

func (ReceivedDocumentListResponse) ToMap added in v0.0.7

func (o ReceivedDocumentListResponse) ToMap() (map[string]interface{}, error)

type ReceivedDocumentStatsResponse added in v0.0.7

type ReceivedDocumentStatsResponse struct {
	Total       *int32                                         `json:"total,omitempty"`
	TotalAmount *float32                                       `json:"totalAmount,omitempty"`
	ByStatus    *map[string]DocumentStatsResponseByStatusValue `json:"byStatus,omitempty"`
}

ReceivedDocumentStatsResponse struct for ReceivedDocumentStatsResponse

func NewReceivedDocumentStatsResponse added in v0.0.7

func NewReceivedDocumentStatsResponse() *ReceivedDocumentStatsResponse

NewReceivedDocumentStatsResponse instantiates a new ReceivedDocumentStatsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReceivedDocumentStatsResponseWithDefaults added in v0.0.7

func NewReceivedDocumentStatsResponseWithDefaults() *ReceivedDocumentStatsResponse

NewReceivedDocumentStatsResponseWithDefaults instantiates a new ReceivedDocumentStatsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReceivedDocumentStatsResponse) GetByStatus added in v0.0.7

GetByStatus returns the ByStatus field value if set, zero value otherwise.

func (*ReceivedDocumentStatsResponse) GetByStatusOk added in v0.0.7

GetByStatusOk returns a tuple with the ByStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocumentStatsResponse) GetTotal added in v0.0.7

func (o *ReceivedDocumentStatsResponse) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*ReceivedDocumentStatsResponse) GetTotalAmount added in v0.0.7

func (o *ReceivedDocumentStatsResponse) GetTotalAmount() float32

GetTotalAmount returns the TotalAmount field value if set, zero value otherwise.

func (*ReceivedDocumentStatsResponse) GetTotalAmountOk added in v0.0.7

func (o *ReceivedDocumentStatsResponse) GetTotalAmountOk() (*float32, bool)

GetTotalAmountOk returns a tuple with the TotalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocumentStatsResponse) GetTotalOk added in v0.0.7

func (o *ReceivedDocumentStatsResponse) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReceivedDocumentStatsResponse) HasByStatus added in v0.0.7

func (o *ReceivedDocumentStatsResponse) HasByStatus() bool

HasByStatus returns a boolean if a field has been set.

func (*ReceivedDocumentStatsResponse) HasTotal added in v0.0.7

func (o *ReceivedDocumentStatsResponse) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*ReceivedDocumentStatsResponse) HasTotalAmount added in v0.0.7

func (o *ReceivedDocumentStatsResponse) HasTotalAmount() bool

HasTotalAmount returns a boolean if a field has been set.

func (ReceivedDocumentStatsResponse) MarshalJSON added in v0.0.7

func (o ReceivedDocumentStatsResponse) MarshalJSON() ([]byte, error)

func (*ReceivedDocumentStatsResponse) SetByStatus added in v0.0.7

SetByStatus gets a reference to the given map[string]DocumentStatsResponseByStatusValue and assigns it to the ByStatus field.

func (*ReceivedDocumentStatsResponse) SetTotal added in v0.0.7

func (o *ReceivedDocumentStatsResponse) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*ReceivedDocumentStatsResponse) SetTotalAmount added in v0.0.7

func (o *ReceivedDocumentStatsResponse) SetTotalAmount(v float32)

SetTotalAmount gets a reference to the given float32 and assigns it to the TotalAmount field.

func (ReceivedDocumentStatsResponse) ToMap added in v0.0.7

func (o ReceivedDocumentStatsResponse) ToMap() (map[string]interface{}, error)

type ReferenceInfo

type ReferenceInfo struct {
	ModifiedInvoiceNumber string     `json:"modifiedInvoiceNumber"`
	OtherContributorRNC   *string    `json:"otherContributorRNC,omitempty"`
	ModifiedInvoiceDate   *time.Time `json:"modifiedInvoiceDate,omitempty"`
	// 1=Price, 2=Quantity, 3=Return, 4=Tax, 5=Other
	ModificationCode   string  `json:"modificationCode"`
	ModificationReason *string `json:"modificationReason,omitempty"`
}

ReferenceInfo Reference to previously issued document (for credit/debit notes).

func NewReferenceInfo

func NewReferenceInfo(modifiedInvoiceNumber string, modificationCode string) *ReferenceInfo

NewReferenceInfo instantiates a new ReferenceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceInfoWithDefaults

func NewReferenceInfoWithDefaults() *ReferenceInfo

NewReferenceInfoWithDefaults instantiates a new ReferenceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceInfo) GetModificationCode

func (o *ReferenceInfo) GetModificationCode() string

GetModificationCode returns the ModificationCode field value

func (*ReferenceInfo) GetModificationCodeOk

func (o *ReferenceInfo) GetModificationCodeOk() (*string, bool)

GetModificationCodeOk returns a tuple with the ModificationCode field value and a boolean to check if the value has been set.

func (*ReferenceInfo) GetModificationReason

func (o *ReferenceInfo) GetModificationReason() string

GetModificationReason returns the ModificationReason field value if set, zero value otherwise.

func (*ReferenceInfo) GetModificationReasonOk

func (o *ReferenceInfo) GetModificationReasonOk() (*string, bool)

GetModificationReasonOk returns a tuple with the ModificationReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceInfo) GetModifiedInvoiceDate

func (o *ReferenceInfo) GetModifiedInvoiceDate() time.Time

GetModifiedInvoiceDate returns the ModifiedInvoiceDate field value if set, zero value otherwise.

func (*ReferenceInfo) GetModifiedInvoiceDateOk

func (o *ReferenceInfo) GetModifiedInvoiceDateOk() (*time.Time, bool)

GetModifiedInvoiceDateOk returns a tuple with the ModifiedInvoiceDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceInfo) GetModifiedInvoiceNumber

func (o *ReferenceInfo) GetModifiedInvoiceNumber() string

GetModifiedInvoiceNumber returns the ModifiedInvoiceNumber field value

func (*ReferenceInfo) GetModifiedInvoiceNumberOk

func (o *ReferenceInfo) GetModifiedInvoiceNumberOk() (*string, bool)

GetModifiedInvoiceNumberOk returns a tuple with the ModifiedInvoiceNumber field value and a boolean to check if the value has been set.

func (*ReferenceInfo) GetOtherContributorRNC

func (o *ReferenceInfo) GetOtherContributorRNC() string

GetOtherContributorRNC returns the OtherContributorRNC field value if set, zero value otherwise.

func (*ReferenceInfo) GetOtherContributorRNCOk

func (o *ReferenceInfo) GetOtherContributorRNCOk() (*string, bool)

GetOtherContributorRNCOk returns a tuple with the OtherContributorRNC field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceInfo) HasModificationReason

func (o *ReferenceInfo) HasModificationReason() bool

HasModificationReason returns a boolean if a field has been set.

func (*ReferenceInfo) HasModifiedInvoiceDate

func (o *ReferenceInfo) HasModifiedInvoiceDate() bool

HasModifiedInvoiceDate returns a boolean if a field has been set.

func (*ReferenceInfo) HasOtherContributorRNC

func (o *ReferenceInfo) HasOtherContributorRNC() bool

HasOtherContributorRNC returns a boolean if a field has been set.

func (ReferenceInfo) MarshalJSON

func (o ReferenceInfo) MarshalJSON() ([]byte, error)

func (*ReferenceInfo) SetModificationCode

func (o *ReferenceInfo) SetModificationCode(v string)

SetModificationCode sets field value

func (*ReferenceInfo) SetModificationReason

func (o *ReferenceInfo) SetModificationReason(v string)

SetModificationReason gets a reference to the given string and assigns it to the ModificationReason field.

func (*ReferenceInfo) SetModifiedInvoiceDate

func (o *ReferenceInfo) SetModifiedInvoiceDate(v time.Time)

SetModifiedInvoiceDate gets a reference to the given time.Time and assigns it to the ModifiedInvoiceDate field.

func (*ReferenceInfo) SetModifiedInvoiceNumber

func (o *ReferenceInfo) SetModifiedInvoiceNumber(v string)

SetModifiedInvoiceNumber sets field value

func (*ReferenceInfo) SetOtherContributorRNC

func (o *ReferenceInfo) SetOtherContributorRNC(v string)

SetOtherContributorRNC gets a reference to the given string and assigns it to the OtherContributorRNC field.

func (ReferenceInfo) ToMap

func (o ReferenceInfo) ToMap() (map[string]interface{}, error)

func (*ReferenceInfo) UnmarshalJSON

func (o *ReferenceInfo) UnmarshalJSON(data []byte) (err error)

type ReportsAPIService added in v0.0.7

type ReportsAPIService service

ReportsAPIService ReportsAPI service

func (*ReportsAPIService) Export606 added in v0.0.7

Export606 Exportar Formato 606 (Compras)

Descarga el Formato 606 oficial para DGII en TXT (oficial) o Excel.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExport606Request

func (*ReportsAPIService) Export606Execute added in v0.0.7

func (a *ReportsAPIService) Export606Execute(r ApiExport606Request) (string, *http.Response, error)

Execute executes the request

@return string

func (*ReportsAPIService) ExportSentDocuments added in v0.0.7

func (a *ReportsAPIService) ExportSentDocuments(ctx context.Context) ApiExportSentDocumentsRequest

ExportSentDocuments Exportar reporte de documentos enviados

Descarga los documentos enviados en un rango de fechas en formato Excel. Requiere el scope reports:read.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExportSentDocumentsRequest

func (*ReportsAPIService) ExportSentDocumentsExecute added in v0.0.7

func (a *ReportsAPIService) ExportSentDocumentsExecute(r ApiExportSentDocumentsRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

type SecurityApiKeyRotatedPayload added in v0.0.19

type SecurityApiKeyRotatedPayload struct {
	// ID de la aplicación cuya clave fue rotada.
	AppId     string    `json:"appId"`
	RotatedAt time.Time `json:"rotatedAt"`
}

SecurityApiKeyRotatedPayload Payload del evento `security.api_key_rotated`. Una App rotó su clientSecret.

func NewSecurityApiKeyRotatedPayload added in v0.0.19

func NewSecurityApiKeyRotatedPayload(appId string, rotatedAt time.Time) *SecurityApiKeyRotatedPayload

NewSecurityApiKeyRotatedPayload instantiates a new SecurityApiKeyRotatedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecurityApiKeyRotatedPayloadWithDefaults added in v0.0.19

func NewSecurityApiKeyRotatedPayloadWithDefaults() *SecurityApiKeyRotatedPayload

NewSecurityApiKeyRotatedPayloadWithDefaults instantiates a new SecurityApiKeyRotatedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecurityApiKeyRotatedPayload) GetAppId added in v0.0.19

func (o *SecurityApiKeyRotatedPayload) GetAppId() string

GetAppId returns the AppId field value

func (*SecurityApiKeyRotatedPayload) GetAppIdOk added in v0.0.19

func (o *SecurityApiKeyRotatedPayload) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value and a boolean to check if the value has been set.

func (*SecurityApiKeyRotatedPayload) GetRotatedAt added in v0.0.19

func (o *SecurityApiKeyRotatedPayload) GetRotatedAt() time.Time

GetRotatedAt returns the RotatedAt field value

func (*SecurityApiKeyRotatedPayload) GetRotatedAtOk added in v0.0.19

func (o *SecurityApiKeyRotatedPayload) GetRotatedAtOk() (*time.Time, bool)

GetRotatedAtOk returns a tuple with the RotatedAt field value and a boolean to check if the value has been set.

func (SecurityApiKeyRotatedPayload) MarshalJSON added in v0.0.19

func (o SecurityApiKeyRotatedPayload) MarshalJSON() ([]byte, error)

func (*SecurityApiKeyRotatedPayload) SetAppId added in v0.0.19

func (o *SecurityApiKeyRotatedPayload) SetAppId(v string)

SetAppId sets field value

func (*SecurityApiKeyRotatedPayload) SetRotatedAt added in v0.0.19

func (o *SecurityApiKeyRotatedPayload) SetRotatedAt(v time.Time)

SetRotatedAt sets field value

func (SecurityApiKeyRotatedPayload) ToMap added in v0.0.19

func (o SecurityApiKeyRotatedPayload) ToMap() (map[string]interface{}, error)

func (*SecurityApiKeyRotatedPayload) UnmarshalJSON added in v0.0.19

func (o *SecurityApiKeyRotatedPayload) UnmarshalJSON(data []byte) (err error)

type SecurityNewLoginPayload added in v0.0.19

type SecurityNewLoginPayload struct {
	Ip        string `json:"ip"`
	UserAgent string `json:"userAgent"`
	// Ciudad detectada por geolocalización.
	City NullableString `json:"city,omitempty"`
}

SecurityNewLoginPayload Payload del evento `security.new_login`. Se detectó un inicio de sesión desde una IP o dispositivo nuevo.

func NewSecurityNewLoginPayload added in v0.0.19

func NewSecurityNewLoginPayload(ip string, userAgent string) *SecurityNewLoginPayload

NewSecurityNewLoginPayload instantiates a new SecurityNewLoginPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecurityNewLoginPayloadWithDefaults added in v0.0.19

func NewSecurityNewLoginPayloadWithDefaults() *SecurityNewLoginPayload

NewSecurityNewLoginPayloadWithDefaults instantiates a new SecurityNewLoginPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecurityNewLoginPayload) GetCity added in v0.0.19

func (o *SecurityNewLoginPayload) GetCity() string

GetCity returns the City field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SecurityNewLoginPayload) GetCityOk added in v0.0.19

func (o *SecurityNewLoginPayload) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SecurityNewLoginPayload) GetIp added in v0.0.19

func (o *SecurityNewLoginPayload) GetIp() string

GetIp returns the Ip field value

func (*SecurityNewLoginPayload) GetIpOk added in v0.0.19

func (o *SecurityNewLoginPayload) GetIpOk() (*string, bool)

GetIpOk returns a tuple with the Ip field value and a boolean to check if the value has been set.

func (*SecurityNewLoginPayload) GetUserAgent added in v0.0.19

func (o *SecurityNewLoginPayload) GetUserAgent() string

GetUserAgent returns the UserAgent field value

func (*SecurityNewLoginPayload) GetUserAgentOk added in v0.0.19

func (o *SecurityNewLoginPayload) GetUserAgentOk() (*string, bool)

GetUserAgentOk returns a tuple with the UserAgent field value and a boolean to check if the value has been set.

func (*SecurityNewLoginPayload) HasCity added in v0.0.19

func (o *SecurityNewLoginPayload) HasCity() bool

HasCity returns a boolean if a field has been set.

func (SecurityNewLoginPayload) MarshalJSON added in v0.0.19

func (o SecurityNewLoginPayload) MarshalJSON() ([]byte, error)

func (*SecurityNewLoginPayload) SetCity added in v0.0.19

func (o *SecurityNewLoginPayload) SetCity(v string)

SetCity gets a reference to the given NullableString and assigns it to the City field.

func (*SecurityNewLoginPayload) SetCityNil added in v0.0.19

func (o *SecurityNewLoginPayload) SetCityNil()

SetCityNil sets the value for City to be an explicit nil

func (*SecurityNewLoginPayload) SetIp added in v0.0.19

func (o *SecurityNewLoginPayload) SetIp(v string)

SetIp sets field value

func (*SecurityNewLoginPayload) SetUserAgent added in v0.0.19

func (o *SecurityNewLoginPayload) SetUserAgent(v string)

SetUserAgent sets field value

func (SecurityNewLoginPayload) ToMap added in v0.0.19

func (o SecurityNewLoginPayload) ToMap() (map[string]interface{}, error)

func (*SecurityNewLoginPayload) UnmarshalJSON added in v0.0.19

func (o *SecurityNewLoginPayload) UnmarshalJSON(data []byte) (err error)

func (*SecurityNewLoginPayload) UnsetCity added in v0.0.19

func (o *SecurityNewLoginPayload) UnsetCity()

UnsetCity ensures that no value is present for City, not even an explicit nil

type SentDocumentDetail added in v0.0.7

type SentDocumentDetail struct {
	Id                 *string                      `json:"id,omitempty"`
	Encf               NullableString               `json:"encf,omitempty"`
	Status             *string                      `json:"status,omitempty"`
	StatusLabel        *string                      `json:"statusLabel,omitempty"`
	TrackId            NullableString               `json:"trackId,omitempty"`
	DocumentType       *string                      `json:"documentType,omitempty"`
	IssuerRnc          *string                      `json:"issuerRnc,omitempty"`
	Environment        *Environment                 `json:"environment,omitempty"`
	ReceivedAt         *time.Time                   `json:"receivedAt,omitempty"`
	CreatedAt          *time.Time                   `json:"createdAt,omitempty"`
	Business           *SentDocumentSummaryBusiness `json:"business,omitempty"`
	LegalStatus        NullableString               `json:"legalStatus,omitempty"`
	DocumentStampUrl   NullableString               `json:"documentStampUrl,omitempty"`
	SecurityCode       NullableString               `json:"securityCode,omitempty"`
	ContingencyMode    *bool                        `json:"contingencyMode,omitempty"`
	GovernmentResponse map[string]interface{}       `json:"governmentResponse,omitempty"`
}

SentDocumentDetail struct for SentDocumentDetail

func NewSentDocumentDetail added in v0.0.7

func NewSentDocumentDetail() *SentDocumentDetail

NewSentDocumentDetail instantiates a new SentDocumentDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSentDocumentDetailWithDefaults added in v0.0.7

func NewSentDocumentDetailWithDefaults() *SentDocumentDetail

NewSentDocumentDetailWithDefaults instantiates a new SentDocumentDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SentDocumentDetail) GetBusiness added in v0.0.7

GetBusiness returns the Business field value if set, zero value otherwise.

func (*SentDocumentDetail) GetBusinessOk added in v0.0.7

func (o *SentDocumentDetail) GetBusinessOk() (*SentDocumentSummaryBusiness, bool)

GetBusinessOk returns a tuple with the Business field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetContingencyMode added in v0.0.19

func (o *SentDocumentDetail) GetContingencyMode() bool

GetContingencyMode returns the ContingencyMode field value if set, zero value otherwise.

func (*SentDocumentDetail) GetContingencyModeOk added in v0.0.19

func (o *SentDocumentDetail) GetContingencyModeOk() (*bool, bool)

GetContingencyModeOk returns a tuple with the ContingencyMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetCreatedAt added in v0.0.7

func (o *SentDocumentDetail) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SentDocumentDetail) GetCreatedAtOk added in v0.0.7

func (o *SentDocumentDetail) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetDocumentStampUrl added in v0.0.19

func (o *SentDocumentDetail) GetDocumentStampUrl() string

GetDocumentStampUrl returns the DocumentStampUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SentDocumentDetail) GetDocumentStampUrlOk added in v0.0.19

func (o *SentDocumentDetail) GetDocumentStampUrlOk() (*string, bool)

GetDocumentStampUrlOk returns a tuple with the DocumentStampUrl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SentDocumentDetail) GetDocumentType added in v0.0.7

func (o *SentDocumentDetail) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise.

func (*SentDocumentDetail) GetDocumentTypeOk added in v0.0.7

func (o *SentDocumentDetail) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetEncf added in v0.0.7

func (o *SentDocumentDetail) GetEncf() string

GetEncf returns the Encf field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SentDocumentDetail) GetEncfOk added in v0.0.7

func (o *SentDocumentDetail) GetEncfOk() (*string, bool)

GetEncfOk returns a tuple with the Encf field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SentDocumentDetail) GetEnvironment added in v0.0.19

func (o *SentDocumentDetail) GetEnvironment() Environment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*SentDocumentDetail) GetEnvironmentOk added in v0.0.19

func (o *SentDocumentDetail) GetEnvironmentOk() (*Environment, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetGovernmentResponse added in v0.0.19

func (o *SentDocumentDetail) GetGovernmentResponse() map[string]interface{}

GetGovernmentResponse returns the GovernmentResponse field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SentDocumentDetail) GetGovernmentResponseOk added in v0.0.19

func (o *SentDocumentDetail) GetGovernmentResponseOk() (map[string]interface{}, bool)

GetGovernmentResponseOk returns a tuple with the GovernmentResponse field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SentDocumentDetail) GetId added in v0.0.7

func (o *SentDocumentDetail) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SentDocumentDetail) GetIdOk added in v0.0.7

func (o *SentDocumentDetail) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetIssuerRnc added in v0.0.19

func (o *SentDocumentDetail) GetIssuerRnc() string

GetIssuerRnc returns the IssuerRnc field value if set, zero value otherwise.

func (*SentDocumentDetail) GetIssuerRncOk added in v0.0.19

func (o *SentDocumentDetail) GetIssuerRncOk() (*string, bool)

GetIssuerRncOk returns a tuple with the IssuerRnc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetLegalStatus added in v0.0.19

func (o *SentDocumentDetail) GetLegalStatus() string

GetLegalStatus returns the LegalStatus field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SentDocumentDetail) GetLegalStatusOk added in v0.0.19

func (o *SentDocumentDetail) GetLegalStatusOk() (*string, bool)

GetLegalStatusOk returns a tuple with the LegalStatus field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SentDocumentDetail) GetReceivedAt added in v0.0.7

func (o *SentDocumentDetail) GetReceivedAt() time.Time

GetReceivedAt returns the ReceivedAt field value if set, zero value otherwise.

func (*SentDocumentDetail) GetReceivedAtOk added in v0.0.7

func (o *SentDocumentDetail) GetReceivedAtOk() (*time.Time, bool)

GetReceivedAtOk returns a tuple with the ReceivedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetSecurityCode added in v0.0.19

func (o *SentDocumentDetail) GetSecurityCode() string

GetSecurityCode returns the SecurityCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SentDocumentDetail) GetSecurityCodeOk added in v0.0.19

func (o *SentDocumentDetail) GetSecurityCodeOk() (*string, bool)

GetSecurityCodeOk returns a tuple with the SecurityCode field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SentDocumentDetail) GetStatus added in v0.0.7

func (o *SentDocumentDetail) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*SentDocumentDetail) GetStatusLabel added in v0.0.19

func (o *SentDocumentDetail) GetStatusLabel() string

GetStatusLabel returns the StatusLabel field value if set, zero value otherwise.

func (*SentDocumentDetail) GetStatusLabelOk added in v0.0.19

func (o *SentDocumentDetail) GetStatusLabelOk() (*string, bool)

GetStatusLabelOk returns a tuple with the StatusLabel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetStatusOk added in v0.0.7

func (o *SentDocumentDetail) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentDetail) GetTrackId added in v0.0.7

func (o *SentDocumentDetail) GetTrackId() string

GetTrackId returns the TrackId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SentDocumentDetail) GetTrackIdOk added in v0.0.7

func (o *SentDocumentDetail) GetTrackIdOk() (*string, bool)

GetTrackIdOk returns a tuple with the TrackId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SentDocumentDetail) HasBusiness added in v0.0.7

func (o *SentDocumentDetail) HasBusiness() bool

HasBusiness returns a boolean if a field has been set.

func (*SentDocumentDetail) HasContingencyMode added in v0.0.19

func (o *SentDocumentDetail) HasContingencyMode() bool

HasContingencyMode returns a boolean if a field has been set.

func (*SentDocumentDetail) HasCreatedAt added in v0.0.7

func (o *SentDocumentDetail) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SentDocumentDetail) HasDocumentStampUrl added in v0.0.19

func (o *SentDocumentDetail) HasDocumentStampUrl() bool

HasDocumentStampUrl returns a boolean if a field has been set.

func (*SentDocumentDetail) HasDocumentType added in v0.0.7

func (o *SentDocumentDetail) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*SentDocumentDetail) HasEncf added in v0.0.7

func (o *SentDocumentDetail) HasEncf() bool

HasEncf returns a boolean if a field has been set.

func (*SentDocumentDetail) HasEnvironment added in v0.0.19

func (o *SentDocumentDetail) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*SentDocumentDetail) HasGovernmentResponse added in v0.0.19

func (o *SentDocumentDetail) HasGovernmentResponse() bool

HasGovernmentResponse returns a boolean if a field has been set.

func (*SentDocumentDetail) HasId added in v0.0.7

func (o *SentDocumentDetail) HasId() bool

HasId returns a boolean if a field has been set.

func (*SentDocumentDetail) HasIssuerRnc added in v0.0.19

func (o *SentDocumentDetail) HasIssuerRnc() bool

HasIssuerRnc returns a boolean if a field has been set.

func (*SentDocumentDetail) HasLegalStatus added in v0.0.19

func (o *SentDocumentDetail) HasLegalStatus() bool

HasLegalStatus returns a boolean if a field has been set.

func (*SentDocumentDetail) HasReceivedAt added in v0.0.7

func (o *SentDocumentDetail) HasReceivedAt() bool

HasReceivedAt returns a boolean if a field has been set.

func (*SentDocumentDetail) HasSecurityCode added in v0.0.19

func (o *SentDocumentDetail) HasSecurityCode() bool

HasSecurityCode returns a boolean if a field has been set.

func (*SentDocumentDetail) HasStatus added in v0.0.7

func (o *SentDocumentDetail) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SentDocumentDetail) HasStatusLabel added in v0.0.19

func (o *SentDocumentDetail) HasStatusLabel() bool

HasStatusLabel returns a boolean if a field has been set.

func (*SentDocumentDetail) HasTrackId added in v0.0.7

func (o *SentDocumentDetail) HasTrackId() bool

HasTrackId returns a boolean if a field has been set.

func (SentDocumentDetail) MarshalJSON added in v0.0.7

func (o SentDocumentDetail) MarshalJSON() ([]byte, error)

func (*SentDocumentDetail) SetBusiness added in v0.0.7

SetBusiness gets a reference to the given SentDocumentSummaryBusiness and assigns it to the Business field.

func (*SentDocumentDetail) SetContingencyMode added in v0.0.19

func (o *SentDocumentDetail) SetContingencyMode(v bool)

SetContingencyMode gets a reference to the given bool and assigns it to the ContingencyMode field.

func (*SentDocumentDetail) SetCreatedAt added in v0.0.7

func (o *SentDocumentDetail) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*SentDocumentDetail) SetDocumentStampUrl added in v0.0.19

func (o *SentDocumentDetail) SetDocumentStampUrl(v string)

SetDocumentStampUrl gets a reference to the given NullableString and assigns it to the DocumentStampUrl field.

func (*SentDocumentDetail) SetDocumentStampUrlNil added in v0.0.19

func (o *SentDocumentDetail) SetDocumentStampUrlNil()

SetDocumentStampUrlNil sets the value for DocumentStampUrl to be an explicit nil

func (*SentDocumentDetail) SetDocumentType added in v0.0.7

func (o *SentDocumentDetail) SetDocumentType(v string)

SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.

func (*SentDocumentDetail) SetEncf added in v0.0.7

func (o *SentDocumentDetail) SetEncf(v string)

SetEncf gets a reference to the given NullableString and assigns it to the Encf field.

func (*SentDocumentDetail) SetEncfNil added in v0.0.19

func (o *SentDocumentDetail) SetEncfNil()

SetEncfNil sets the value for Encf to be an explicit nil

func (*SentDocumentDetail) SetEnvironment added in v0.0.19

func (o *SentDocumentDetail) SetEnvironment(v Environment)

SetEnvironment gets a reference to the given Environment and assigns it to the Environment field.

func (*SentDocumentDetail) SetGovernmentResponse added in v0.0.19

func (o *SentDocumentDetail) SetGovernmentResponse(v map[string]interface{})

SetGovernmentResponse gets a reference to the given map[string]interface{} and assigns it to the GovernmentResponse field.

func (*SentDocumentDetail) SetId added in v0.0.7

func (o *SentDocumentDetail) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SentDocumentDetail) SetIssuerRnc added in v0.0.19

func (o *SentDocumentDetail) SetIssuerRnc(v string)

SetIssuerRnc gets a reference to the given string and assigns it to the IssuerRnc field.

func (*SentDocumentDetail) SetLegalStatus added in v0.0.19

func (o *SentDocumentDetail) SetLegalStatus(v string)

SetLegalStatus gets a reference to the given NullableString and assigns it to the LegalStatus field.

func (*SentDocumentDetail) SetLegalStatusNil added in v0.0.19

func (o *SentDocumentDetail) SetLegalStatusNil()

SetLegalStatusNil sets the value for LegalStatus to be an explicit nil

func (*SentDocumentDetail) SetReceivedAt added in v0.0.7

func (o *SentDocumentDetail) SetReceivedAt(v time.Time)

SetReceivedAt gets a reference to the given time.Time and assigns it to the ReceivedAt field.

func (*SentDocumentDetail) SetSecurityCode added in v0.0.19

func (o *SentDocumentDetail) SetSecurityCode(v string)

SetSecurityCode gets a reference to the given NullableString and assigns it to the SecurityCode field.

func (*SentDocumentDetail) SetSecurityCodeNil added in v0.0.19

func (o *SentDocumentDetail) SetSecurityCodeNil()

SetSecurityCodeNil sets the value for SecurityCode to be an explicit nil

func (*SentDocumentDetail) SetStatus added in v0.0.7

func (o *SentDocumentDetail) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*SentDocumentDetail) SetStatusLabel added in v0.0.19

func (o *SentDocumentDetail) SetStatusLabel(v string)

SetStatusLabel gets a reference to the given string and assigns it to the StatusLabel field.

func (*SentDocumentDetail) SetTrackId added in v0.0.7

func (o *SentDocumentDetail) SetTrackId(v string)

SetTrackId gets a reference to the given NullableString and assigns it to the TrackId field.

func (*SentDocumentDetail) SetTrackIdNil added in v0.0.19

func (o *SentDocumentDetail) SetTrackIdNil()

SetTrackIdNil sets the value for TrackId to be an explicit nil

func (SentDocumentDetail) ToMap added in v0.0.7

func (o SentDocumentDetail) ToMap() (map[string]interface{}, error)

func (*SentDocumentDetail) UnsetDocumentStampUrl added in v0.0.19

func (o *SentDocumentDetail) UnsetDocumentStampUrl()

UnsetDocumentStampUrl ensures that no value is present for DocumentStampUrl, not even an explicit nil

func (*SentDocumentDetail) UnsetEncf added in v0.0.19

func (o *SentDocumentDetail) UnsetEncf()

UnsetEncf ensures that no value is present for Encf, not even an explicit nil

func (*SentDocumentDetail) UnsetLegalStatus added in v0.0.19

func (o *SentDocumentDetail) UnsetLegalStatus()

UnsetLegalStatus ensures that no value is present for LegalStatus, not even an explicit nil

func (*SentDocumentDetail) UnsetSecurityCode added in v0.0.19

func (o *SentDocumentDetail) UnsetSecurityCode()

UnsetSecurityCode ensures that no value is present for SecurityCode, not even an explicit nil

func (*SentDocumentDetail) UnsetTrackId added in v0.0.19

func (o *SentDocumentDetail) UnsetTrackId()

UnsetTrackId ensures that no value is present for TrackId, not even an explicit nil

type SentDocumentListResponse added in v0.0.7

type SentDocumentListResponse struct {
	Data []SentDocumentSummary `json:"data,omitempty"`
	Meta *PaginationMeta       `json:"meta,omitempty"`
}

SentDocumentListResponse struct for SentDocumentListResponse

func NewSentDocumentListResponse added in v0.0.7

func NewSentDocumentListResponse() *SentDocumentListResponse

NewSentDocumentListResponse instantiates a new SentDocumentListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSentDocumentListResponseWithDefaults added in v0.0.7

func NewSentDocumentListResponseWithDefaults() *SentDocumentListResponse

NewSentDocumentListResponseWithDefaults instantiates a new SentDocumentListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SentDocumentListResponse) GetData added in v0.0.7

GetData returns the Data field value if set, zero value otherwise.

func (*SentDocumentListResponse) GetDataOk added in v0.0.7

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 (*SentDocumentListResponse) GetMeta added in v0.0.7

GetMeta returns the Meta field value if set, zero value otherwise.

func (*SentDocumentListResponse) GetMetaOk added in v0.0.7

func (o *SentDocumentListResponse) GetMetaOk() (*PaginationMeta, bool)

GetMetaOk returns a tuple with the Meta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentListResponse) HasData added in v0.0.7

func (o *SentDocumentListResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*SentDocumentListResponse) HasMeta added in v0.0.7

func (o *SentDocumentListResponse) HasMeta() bool

HasMeta returns a boolean if a field has been set.

func (SentDocumentListResponse) MarshalJSON added in v0.0.7

func (o SentDocumentListResponse) MarshalJSON() ([]byte, error)

func (*SentDocumentListResponse) SetData added in v0.0.7

SetData gets a reference to the given []SentDocumentSummary and assigns it to the Data field.

func (*SentDocumentListResponse) SetMeta added in v0.0.7

SetMeta gets a reference to the given PaginationMeta and assigns it to the Meta field.

func (SentDocumentListResponse) ToMap added in v0.0.7

func (o SentDocumentListResponse) ToMap() (map[string]interface{}, error)

type SentDocumentSummary added in v0.0.7

type SentDocumentSummary struct {
	Id           *string                      `json:"id,omitempty"`
	Encf         NullableString               `json:"encf,omitempty"`
	Status       *string                      `json:"status,omitempty"`
	StatusLabel  *string                      `json:"statusLabel,omitempty"`
	TrackId      NullableString               `json:"trackId,omitempty"`
	DocumentType *string                      `json:"documentType,omitempty"`
	IssuerRnc    *string                      `json:"issuerRnc,omitempty"`
	Environment  *Environment                 `json:"environment,omitempty"`
	ReceivedAt   *time.Time                   `json:"receivedAt,omitempty"`
	CreatedAt    *time.Time                   `json:"createdAt,omitempty"`
	Business     *SentDocumentSummaryBusiness `json:"business,omitempty"`
}

SentDocumentSummary struct for SentDocumentSummary

func NewSentDocumentSummary added in v0.0.7

func NewSentDocumentSummary() *SentDocumentSummary

NewSentDocumentSummary instantiates a new SentDocumentSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSentDocumentSummaryWithDefaults added in v0.0.7

func NewSentDocumentSummaryWithDefaults() *SentDocumentSummary

NewSentDocumentSummaryWithDefaults instantiates a new SentDocumentSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SentDocumentSummary) GetBusiness added in v0.0.7

GetBusiness returns the Business field value if set, zero value otherwise.

func (*SentDocumentSummary) GetBusinessOk added in v0.0.7

func (o *SentDocumentSummary) GetBusinessOk() (*SentDocumentSummaryBusiness, bool)

GetBusinessOk returns a tuple with the Business field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetCreatedAt added in v0.0.7

func (o *SentDocumentSummary) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*SentDocumentSummary) GetCreatedAtOk added in v0.0.7

func (o *SentDocumentSummary) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetDocumentType added in v0.0.7

func (o *SentDocumentSummary) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise.

func (*SentDocumentSummary) GetDocumentTypeOk added in v0.0.7

func (o *SentDocumentSummary) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetEncf added in v0.0.7

func (o *SentDocumentSummary) GetEncf() string

GetEncf returns the Encf field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SentDocumentSummary) GetEncfOk added in v0.0.7

func (o *SentDocumentSummary) GetEncfOk() (*string, bool)

GetEncfOk returns a tuple with the Encf field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SentDocumentSummary) GetEnvironment added in v0.0.19

func (o *SentDocumentSummary) GetEnvironment() Environment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*SentDocumentSummary) GetEnvironmentOk added in v0.0.19

func (o *SentDocumentSummary) GetEnvironmentOk() (*Environment, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetId added in v0.0.7

func (o *SentDocumentSummary) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SentDocumentSummary) GetIdOk added in v0.0.7

func (o *SentDocumentSummary) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetIssuerRnc added in v0.0.19

func (o *SentDocumentSummary) GetIssuerRnc() string

GetIssuerRnc returns the IssuerRnc field value if set, zero value otherwise.

func (*SentDocumentSummary) GetIssuerRncOk added in v0.0.19

func (o *SentDocumentSummary) GetIssuerRncOk() (*string, bool)

GetIssuerRncOk returns a tuple with the IssuerRnc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetReceivedAt added in v0.0.7

func (o *SentDocumentSummary) GetReceivedAt() time.Time

GetReceivedAt returns the ReceivedAt field value if set, zero value otherwise.

func (*SentDocumentSummary) GetReceivedAtOk added in v0.0.7

func (o *SentDocumentSummary) GetReceivedAtOk() (*time.Time, bool)

GetReceivedAtOk returns a tuple with the ReceivedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetStatus added in v0.0.7

func (o *SentDocumentSummary) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*SentDocumentSummary) GetStatusLabel added in v0.0.19

func (o *SentDocumentSummary) GetStatusLabel() string

GetStatusLabel returns the StatusLabel field value if set, zero value otherwise.

func (*SentDocumentSummary) GetStatusLabelOk added in v0.0.19

func (o *SentDocumentSummary) GetStatusLabelOk() (*string, bool)

GetStatusLabelOk returns a tuple with the StatusLabel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetStatusOk added in v0.0.7

func (o *SentDocumentSummary) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummary) GetTrackId added in v0.0.7

func (o *SentDocumentSummary) GetTrackId() string

GetTrackId returns the TrackId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SentDocumentSummary) GetTrackIdOk added in v0.0.7

func (o *SentDocumentSummary) GetTrackIdOk() (*string, bool)

GetTrackIdOk returns a tuple with the TrackId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SentDocumentSummary) HasBusiness added in v0.0.7

func (o *SentDocumentSummary) HasBusiness() bool

HasBusiness returns a boolean if a field has been set.

func (*SentDocumentSummary) HasCreatedAt added in v0.0.7

func (o *SentDocumentSummary) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*SentDocumentSummary) HasDocumentType added in v0.0.7

func (o *SentDocumentSummary) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*SentDocumentSummary) HasEncf added in v0.0.7

func (o *SentDocumentSummary) HasEncf() bool

HasEncf returns a boolean if a field has been set.

func (*SentDocumentSummary) HasEnvironment added in v0.0.19

func (o *SentDocumentSummary) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*SentDocumentSummary) HasId added in v0.0.7

func (o *SentDocumentSummary) HasId() bool

HasId returns a boolean if a field has been set.

func (*SentDocumentSummary) HasIssuerRnc added in v0.0.19

func (o *SentDocumentSummary) HasIssuerRnc() bool

HasIssuerRnc returns a boolean if a field has been set.

func (*SentDocumentSummary) HasReceivedAt added in v0.0.7

func (o *SentDocumentSummary) HasReceivedAt() bool

HasReceivedAt returns a boolean if a field has been set.

func (*SentDocumentSummary) HasStatus added in v0.0.7

func (o *SentDocumentSummary) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SentDocumentSummary) HasStatusLabel added in v0.0.19

func (o *SentDocumentSummary) HasStatusLabel() bool

HasStatusLabel returns a boolean if a field has been set.

func (*SentDocumentSummary) HasTrackId added in v0.0.7

func (o *SentDocumentSummary) HasTrackId() bool

HasTrackId returns a boolean if a field has been set.

func (SentDocumentSummary) MarshalJSON added in v0.0.7

func (o SentDocumentSummary) MarshalJSON() ([]byte, error)

func (*SentDocumentSummary) SetBusiness added in v0.0.7

SetBusiness gets a reference to the given SentDocumentSummaryBusiness and assigns it to the Business field.

func (*SentDocumentSummary) SetCreatedAt added in v0.0.7

func (o *SentDocumentSummary) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*SentDocumentSummary) SetDocumentType added in v0.0.7

func (o *SentDocumentSummary) SetDocumentType(v string)

SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.

func (*SentDocumentSummary) SetEncf added in v0.0.7

func (o *SentDocumentSummary) SetEncf(v string)

SetEncf gets a reference to the given NullableString and assigns it to the Encf field.

func (*SentDocumentSummary) SetEncfNil added in v0.0.19

func (o *SentDocumentSummary) SetEncfNil()

SetEncfNil sets the value for Encf to be an explicit nil

func (*SentDocumentSummary) SetEnvironment added in v0.0.19

func (o *SentDocumentSummary) SetEnvironment(v Environment)

SetEnvironment gets a reference to the given Environment and assigns it to the Environment field.

func (*SentDocumentSummary) SetId added in v0.0.7

func (o *SentDocumentSummary) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SentDocumentSummary) SetIssuerRnc added in v0.0.19

func (o *SentDocumentSummary) SetIssuerRnc(v string)

SetIssuerRnc gets a reference to the given string and assigns it to the IssuerRnc field.

func (*SentDocumentSummary) SetReceivedAt added in v0.0.7

func (o *SentDocumentSummary) SetReceivedAt(v time.Time)

SetReceivedAt gets a reference to the given time.Time and assigns it to the ReceivedAt field.

func (*SentDocumentSummary) SetStatus added in v0.0.7

func (o *SentDocumentSummary) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*SentDocumentSummary) SetStatusLabel added in v0.0.19

func (o *SentDocumentSummary) SetStatusLabel(v string)

SetStatusLabel gets a reference to the given string and assigns it to the StatusLabel field.

func (*SentDocumentSummary) SetTrackId added in v0.0.7

func (o *SentDocumentSummary) SetTrackId(v string)

SetTrackId gets a reference to the given NullableString and assigns it to the TrackId field.

func (*SentDocumentSummary) SetTrackIdNil added in v0.0.19

func (o *SentDocumentSummary) SetTrackIdNil()

SetTrackIdNil sets the value for TrackId to be an explicit nil

func (SentDocumentSummary) ToMap added in v0.0.7

func (o SentDocumentSummary) ToMap() (map[string]interface{}, error)

func (*SentDocumentSummary) UnsetEncf added in v0.0.19

func (o *SentDocumentSummary) UnsetEncf()

UnsetEncf ensures that no value is present for Encf, not even an explicit nil

func (*SentDocumentSummary) UnsetTrackId added in v0.0.19

func (o *SentDocumentSummary) UnsetTrackId()

UnsetTrackId ensures that no value is present for TrackId, not even an explicit nil

type SentDocumentSummaryBusiness added in v0.0.7

type SentDocumentSummaryBusiness struct {
	Name *string `json:"name,omitempty"`
	Rnc  *string `json:"rnc,omitempty"`
}

SentDocumentSummaryBusiness struct for SentDocumentSummaryBusiness

func NewSentDocumentSummaryBusiness added in v0.0.7

func NewSentDocumentSummaryBusiness() *SentDocumentSummaryBusiness

NewSentDocumentSummaryBusiness instantiates a new SentDocumentSummaryBusiness object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSentDocumentSummaryBusinessWithDefaults added in v0.0.7

func NewSentDocumentSummaryBusinessWithDefaults() *SentDocumentSummaryBusiness

NewSentDocumentSummaryBusinessWithDefaults instantiates a new SentDocumentSummaryBusiness object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SentDocumentSummaryBusiness) GetName added in v0.0.7

func (o *SentDocumentSummaryBusiness) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SentDocumentSummaryBusiness) GetNameOk added in v0.0.7

func (o *SentDocumentSummaryBusiness) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummaryBusiness) GetRnc added in v0.0.7

func (o *SentDocumentSummaryBusiness) GetRnc() string

GetRnc returns the Rnc field value if set, zero value otherwise.

func (*SentDocumentSummaryBusiness) GetRncOk added in v0.0.7

func (o *SentDocumentSummaryBusiness) GetRncOk() (*string, bool)

GetRncOk returns a tuple with the Rnc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SentDocumentSummaryBusiness) HasName added in v0.0.7

func (o *SentDocumentSummaryBusiness) HasName() bool

HasName returns a boolean if a field has been set.

func (*SentDocumentSummaryBusiness) HasRnc added in v0.0.7

func (o *SentDocumentSummaryBusiness) HasRnc() bool

HasRnc returns a boolean if a field has been set.

func (SentDocumentSummaryBusiness) MarshalJSON added in v0.0.7

func (o SentDocumentSummaryBusiness) MarshalJSON() ([]byte, error)

func (*SentDocumentSummaryBusiness) SetName added in v0.0.7

func (o *SentDocumentSummaryBusiness) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*SentDocumentSummaryBusiness) SetRnc added in v0.0.7

func (o *SentDocumentSummaryBusiness) SetRnc(v string)

SetRnc gets a reference to the given string and assigns it to the Rnc field.

func (SentDocumentSummaryBusiness) ToMap added in v0.0.7

func (o SentDocumentSummaryBusiness) ToMap() (map[string]interface{}, error)

type SequenceDepletedPayload added in v0.0.19

type SequenceDepletedPayload struct {
	// Tipo de secuencia NCF.
	SequenceType string `json:"sequenceType"`
	// Cantidad de NCF restantes.
	Remaining int32 `json:"remaining"`
	// Nivel de alerta. `warning` = bajo; `danger` = crítico.
	AlertLevel string `json:"alertLevel"`
}

SequenceDepletedPayload Payload del evento `sequence.depleted`. Una secuencia de NCF está por agotarse.

func NewSequenceDepletedPayload added in v0.0.19

func NewSequenceDepletedPayload(sequenceType string, remaining int32, alertLevel string) *SequenceDepletedPayload

NewSequenceDepletedPayload instantiates a new SequenceDepletedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSequenceDepletedPayloadWithDefaults added in v0.0.19

func NewSequenceDepletedPayloadWithDefaults() *SequenceDepletedPayload

NewSequenceDepletedPayloadWithDefaults instantiates a new SequenceDepletedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SequenceDepletedPayload) GetAlertLevel added in v0.0.19

func (o *SequenceDepletedPayload) GetAlertLevel() string

GetAlertLevel returns the AlertLevel field value

func (*SequenceDepletedPayload) GetAlertLevelOk added in v0.0.19

func (o *SequenceDepletedPayload) GetAlertLevelOk() (*string, bool)

GetAlertLevelOk returns a tuple with the AlertLevel field value and a boolean to check if the value has been set.

func (*SequenceDepletedPayload) GetRemaining added in v0.0.19

func (o *SequenceDepletedPayload) GetRemaining() int32

GetRemaining returns the Remaining field value

func (*SequenceDepletedPayload) GetRemainingOk added in v0.0.19

func (o *SequenceDepletedPayload) GetRemainingOk() (*int32, bool)

GetRemainingOk returns a tuple with the Remaining field value and a boolean to check if the value has been set.

func (*SequenceDepletedPayload) GetSequenceType added in v0.0.19

func (o *SequenceDepletedPayload) GetSequenceType() string

GetSequenceType returns the SequenceType field value

func (*SequenceDepletedPayload) GetSequenceTypeOk added in v0.0.19

func (o *SequenceDepletedPayload) GetSequenceTypeOk() (*string, bool)

GetSequenceTypeOk returns a tuple with the SequenceType field value and a boolean to check if the value has been set.

func (SequenceDepletedPayload) MarshalJSON added in v0.0.19

func (o SequenceDepletedPayload) MarshalJSON() ([]byte, error)

func (*SequenceDepletedPayload) SetAlertLevel added in v0.0.19

func (o *SequenceDepletedPayload) SetAlertLevel(v string)

SetAlertLevel sets field value

func (*SequenceDepletedPayload) SetRemaining added in v0.0.19

func (o *SequenceDepletedPayload) SetRemaining(v int32)

SetRemaining sets field value

func (*SequenceDepletedPayload) SetSequenceType added in v0.0.19

func (o *SequenceDepletedPayload) SetSequenceType(v string)

SetSequenceType sets field value

func (SequenceDepletedPayload) ToMap added in v0.0.19

func (o SequenceDepletedPayload) ToMap() (map[string]interface{}, error)

func (*SequenceDepletedPayload) UnmarshalJSON added in v0.0.19

func (o *SequenceDepletedPayload) UnmarshalJSON(data []byte) (err error)

type SequenceVoidedPayload added in v0.0.19

type SequenceVoidedPayload struct {
	SequenceType string `json:"sequenceType"`
	// Rango de NCF anulados.
	VoidedRange string `json:"voidedRange"`
	// Motivo de la anulación.
	Reason string `json:"reason"`
}

SequenceVoidedPayload Payload del evento `sequence.voided`. Se anuló un rango de secuencias.

func NewSequenceVoidedPayload added in v0.0.19

func NewSequenceVoidedPayload(sequenceType string, voidedRange string, reason string) *SequenceVoidedPayload

NewSequenceVoidedPayload instantiates a new SequenceVoidedPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSequenceVoidedPayloadWithDefaults added in v0.0.19

func NewSequenceVoidedPayloadWithDefaults() *SequenceVoidedPayload

NewSequenceVoidedPayloadWithDefaults instantiates a new SequenceVoidedPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SequenceVoidedPayload) GetReason added in v0.0.19

func (o *SequenceVoidedPayload) GetReason() string

GetReason returns the Reason field value

func (*SequenceVoidedPayload) GetReasonOk added in v0.0.19

func (o *SequenceVoidedPayload) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set.

func (*SequenceVoidedPayload) GetSequenceType added in v0.0.19

func (o *SequenceVoidedPayload) GetSequenceType() string

GetSequenceType returns the SequenceType field value

func (*SequenceVoidedPayload) GetSequenceTypeOk added in v0.0.19

func (o *SequenceVoidedPayload) GetSequenceTypeOk() (*string, bool)

GetSequenceTypeOk returns a tuple with the SequenceType field value and a boolean to check if the value has been set.

func (*SequenceVoidedPayload) GetVoidedRange added in v0.0.19

func (o *SequenceVoidedPayload) GetVoidedRange() string

GetVoidedRange returns the VoidedRange field value

func (*SequenceVoidedPayload) GetVoidedRangeOk added in v0.0.19

func (o *SequenceVoidedPayload) GetVoidedRangeOk() (*string, bool)

GetVoidedRangeOk returns a tuple with the VoidedRange field value and a boolean to check if the value has been set.

func (SequenceVoidedPayload) MarshalJSON added in v0.0.19

func (o SequenceVoidedPayload) MarshalJSON() ([]byte, error)

func (*SequenceVoidedPayload) SetReason added in v0.0.19

func (o *SequenceVoidedPayload) SetReason(v string)

SetReason sets field value

func (*SequenceVoidedPayload) SetSequenceType added in v0.0.19

func (o *SequenceVoidedPayload) SetSequenceType(v string)

SetSequenceType sets field value

func (*SequenceVoidedPayload) SetVoidedRange added in v0.0.19

func (o *SequenceVoidedPayload) SetVoidedRange(v string)

SetVoidedRange sets field value

func (SequenceVoidedPayload) ToMap added in v0.0.19

func (o SequenceVoidedPayload) ToMap() (map[string]interface{}, error)

func (*SequenceVoidedPayload) UnmarshalJSON added in v0.0.19

func (o *SequenceVoidedPayload) UnmarshalJSON(data []byte) (err error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type StartCertification200Response added in v0.0.7

type StartCertification200Response struct {
	ProcessId *string `json:"processId,omitempty"`
}

StartCertification200Response struct for StartCertification200Response

func NewStartCertification200Response added in v0.0.7

func NewStartCertification200Response() *StartCertification200Response

NewStartCertification200Response instantiates a new StartCertification200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStartCertification200ResponseWithDefaults added in v0.0.7

func NewStartCertification200ResponseWithDefaults() *StartCertification200Response

NewStartCertification200ResponseWithDefaults instantiates a new StartCertification200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StartCertification200Response) GetProcessId added in v0.0.7

func (o *StartCertification200Response) GetProcessId() string

GetProcessId returns the ProcessId field value if set, zero value otherwise.

func (*StartCertification200Response) GetProcessIdOk added in v0.0.7

func (o *StartCertification200Response) GetProcessIdOk() (*string, bool)

GetProcessIdOk returns a tuple with the ProcessId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartCertification200Response) HasProcessId added in v0.0.7

func (o *StartCertification200Response) HasProcessId() bool

HasProcessId returns a boolean if a field has been set.

func (StartCertification200Response) MarshalJSON added in v0.0.7

func (o StartCertification200Response) MarshalJSON() ([]byte, error)

func (*StartCertification200Response) SetProcessId added in v0.0.7

func (o *StartCertification200Response) SetProcessId(v string)

SetProcessId gets a reference to the given string and assigns it to the ProcessId field.

func (StartCertification200Response) ToMap added in v0.0.7

func (o StartCertification200Response) ToMap() (map[string]interface{}, error)

type StartCertificationRequest added in v0.0.7

type StartCertificationRequest struct {
	Rnc          string       `json:"rnc"`
	BusinessName string       `json:"businessName"`
	NicheId      string       `json:"nicheId"`
	Environment  *Environment `json:"environment,omitempty"`
}

StartCertificationRequest struct for StartCertificationRequest

func NewStartCertificationRequest added in v0.0.7

func NewStartCertificationRequest(rnc string, businessName string, nicheId string) *StartCertificationRequest

NewStartCertificationRequest instantiates a new StartCertificationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStartCertificationRequestWithDefaults added in v0.0.7

func NewStartCertificationRequestWithDefaults() *StartCertificationRequest

NewStartCertificationRequestWithDefaults instantiates a new StartCertificationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StartCertificationRequest) GetBusinessName added in v0.0.7

func (o *StartCertificationRequest) GetBusinessName() string

GetBusinessName returns the BusinessName field value

func (*StartCertificationRequest) GetBusinessNameOk added in v0.0.7

func (o *StartCertificationRequest) GetBusinessNameOk() (*string, bool)

GetBusinessNameOk returns a tuple with the BusinessName field value and a boolean to check if the value has been set.

func (*StartCertificationRequest) GetEnvironment added in v0.0.7

func (o *StartCertificationRequest) GetEnvironment() Environment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*StartCertificationRequest) GetEnvironmentOk added in v0.0.7

func (o *StartCertificationRequest) GetEnvironmentOk() (*Environment, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartCertificationRequest) GetNicheId added in v0.0.7

func (o *StartCertificationRequest) GetNicheId() string

GetNicheId returns the NicheId field value

func (*StartCertificationRequest) GetNicheIdOk added in v0.0.7

func (o *StartCertificationRequest) GetNicheIdOk() (*string, bool)

GetNicheIdOk returns a tuple with the NicheId field value and a boolean to check if the value has been set.

func (*StartCertificationRequest) GetRnc added in v0.0.7

func (o *StartCertificationRequest) GetRnc() string

GetRnc returns the Rnc field value

func (*StartCertificationRequest) GetRncOk added in v0.0.7

func (o *StartCertificationRequest) GetRncOk() (*string, bool)

GetRncOk returns a tuple with the Rnc field value and a boolean to check if the value has been set.

func (*StartCertificationRequest) HasEnvironment added in v0.0.7

func (o *StartCertificationRequest) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (StartCertificationRequest) MarshalJSON added in v0.0.7

func (o StartCertificationRequest) MarshalJSON() ([]byte, error)

func (*StartCertificationRequest) SetBusinessName added in v0.0.7

func (o *StartCertificationRequest) SetBusinessName(v string)

SetBusinessName sets field value

func (*StartCertificationRequest) SetEnvironment added in v0.0.7

func (o *StartCertificationRequest) SetEnvironment(v Environment)

SetEnvironment gets a reference to the given Environment and assigns it to the Environment field.

func (*StartCertificationRequest) SetNicheId added in v0.0.7

func (o *StartCertificationRequest) SetNicheId(v string)

SetNicheId sets field value

func (*StartCertificationRequest) SetRnc added in v0.0.7

func (o *StartCertificationRequest) SetRnc(v string)

SetRnc sets field value

func (StartCertificationRequest) ToMap added in v0.0.7

func (o StartCertificationRequest) ToMap() (map[string]interface{}, error)

func (*StartCertificationRequest) UnmarshalJSON added in v0.0.7

func (o *StartCertificationRequest) UnmarshalJSON(data []byte) (err error)

type Subquantity

type Subquantity struct {
	Quantity float32 `json:"quantity"`
	UnitCode int32   `json:"unitCode"`
}

Subquantity struct for Subquantity

func NewSubquantity

func NewSubquantity(quantity float32, unitCode int32) *Subquantity

NewSubquantity instantiates a new Subquantity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubquantityWithDefaults

func NewSubquantityWithDefaults() *Subquantity

NewSubquantityWithDefaults instantiates a new Subquantity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Subquantity) GetQuantity

func (o *Subquantity) GetQuantity() float32

GetQuantity returns the Quantity field value

func (*Subquantity) GetQuantityOk

func (o *Subquantity) GetQuantityOk() (*float32, bool)

GetQuantityOk returns a tuple with the Quantity field value and a boolean to check if the value has been set.

func (*Subquantity) GetUnitCode

func (o *Subquantity) GetUnitCode() int32

GetUnitCode returns the UnitCode field value

func (*Subquantity) GetUnitCodeOk

func (o *Subquantity) GetUnitCodeOk() (*int32, bool)

GetUnitCodeOk returns a tuple with the UnitCode field value and a boolean to check if the value has been set.

func (Subquantity) MarshalJSON

func (o Subquantity) MarshalJSON() ([]byte, error)

func (*Subquantity) SetQuantity

func (o *Subquantity) SetQuantity(v float32)

SetQuantity sets field value

func (*Subquantity) SetUnitCode

func (o *Subquantity) SetUnitCode(v int32)

SetUnitCode sets field value

func (Subquantity) ToMap

func (o Subquantity) ToMap() (map[string]interface{}, error)

func (*Subquantity) UnmarshalJSON

func (o *Subquantity) UnmarshalJSON(data []byte) (err error)

type Subtotal

type Subtotal struct {
	Number          *int32   `json:"number,omitempty"`
	Description     *string  `json:"description,omitempty"`
	Order           *int32   `json:"order,omitempty"`
	TaxableAmount   *float32 `json:"taxableAmount,omitempty"`
	TaxableAmount1  *float32 `json:"taxableAmount1,omitempty"`
	TaxableAmount2  *float32 `json:"taxableAmount2,omitempty"`
	TaxableAmount3  *float32 `json:"taxableAmount3,omitempty"`
	TotalITBIS      *float32 `json:"totalITBIS,omitempty"`
	Itbis1          *float32 `json:"itbis1,omitempty"`
	Itbis2          *float32 `json:"itbis2,omitempty"`
	Itbis3          *float32 `json:"itbis3,omitempty"`
	AdditionalTaxes *float32 `json:"additionalTaxes,omitempty"`
	ExemptAmount    *float32 `json:"exemptAmount,omitempty"`
	Amount          *float32 `json:"amount,omitempty"`
	Lines           *int32   `json:"lines,omitempty"`
}

Subtotal struct for Subtotal

func NewSubtotal

func NewSubtotal() *Subtotal

NewSubtotal instantiates a new Subtotal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSubtotalWithDefaults

func NewSubtotalWithDefaults() *Subtotal

NewSubtotalWithDefaults instantiates a new Subtotal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Subtotal) GetAdditionalTaxes

func (o *Subtotal) GetAdditionalTaxes() float32

GetAdditionalTaxes returns the AdditionalTaxes field value if set, zero value otherwise.

func (*Subtotal) GetAdditionalTaxesOk

func (o *Subtotal) GetAdditionalTaxesOk() (*float32, bool)

GetAdditionalTaxesOk returns a tuple with the AdditionalTaxes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetAmount

func (o *Subtotal) GetAmount() float32

GetAmount returns the Amount field value if set, zero value otherwise.

func (*Subtotal) GetAmountOk

func (o *Subtotal) GetAmountOk() (*float32, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetDescription

func (o *Subtotal) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Subtotal) GetDescriptionOk

func (o *Subtotal) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetExemptAmount

func (o *Subtotal) GetExemptAmount() float32

GetExemptAmount returns the ExemptAmount field value if set, zero value otherwise.

func (*Subtotal) GetExemptAmountOk

func (o *Subtotal) GetExemptAmountOk() (*float32, bool)

GetExemptAmountOk returns a tuple with the ExemptAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetItbis1

func (o *Subtotal) GetItbis1() float32

GetItbis1 returns the Itbis1 field value if set, zero value otherwise.

func (*Subtotal) GetItbis1Ok

func (o *Subtotal) GetItbis1Ok() (*float32, bool)

GetItbis1Ok returns a tuple with the Itbis1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetItbis2

func (o *Subtotal) GetItbis2() float32

GetItbis2 returns the Itbis2 field value if set, zero value otherwise.

func (*Subtotal) GetItbis2Ok

func (o *Subtotal) GetItbis2Ok() (*float32, bool)

GetItbis2Ok returns a tuple with the Itbis2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetItbis3

func (o *Subtotal) GetItbis3() float32

GetItbis3 returns the Itbis3 field value if set, zero value otherwise.

func (*Subtotal) GetItbis3Ok

func (o *Subtotal) GetItbis3Ok() (*float32, bool)

GetItbis3Ok returns a tuple with the Itbis3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetLines

func (o *Subtotal) GetLines() int32

GetLines returns the Lines field value if set, zero value otherwise.

func (*Subtotal) GetLinesOk

func (o *Subtotal) GetLinesOk() (*int32, bool)

GetLinesOk returns a tuple with the Lines field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetNumber

func (o *Subtotal) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*Subtotal) GetNumberOk

func (o *Subtotal) GetNumberOk() (*int32, 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.

func (*Subtotal) GetOrder added in v0.0.7

func (o *Subtotal) GetOrder() int32

GetOrder returns the Order field value if set, zero value otherwise.

func (*Subtotal) GetOrderOk added in v0.0.7

func (o *Subtotal) GetOrderOk() (*int32, bool)

GetOrderOk returns a tuple with the Order field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetTaxableAmount

func (o *Subtotal) GetTaxableAmount() float32

GetTaxableAmount returns the TaxableAmount field value if set, zero value otherwise.

func (*Subtotal) GetTaxableAmount1

func (o *Subtotal) GetTaxableAmount1() float32

GetTaxableAmount1 returns the TaxableAmount1 field value if set, zero value otherwise.

func (*Subtotal) GetTaxableAmount1Ok

func (o *Subtotal) GetTaxableAmount1Ok() (*float32, bool)

GetTaxableAmount1Ok returns a tuple with the TaxableAmount1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetTaxableAmount2

func (o *Subtotal) GetTaxableAmount2() float32

GetTaxableAmount2 returns the TaxableAmount2 field value if set, zero value otherwise.

func (*Subtotal) GetTaxableAmount2Ok

func (o *Subtotal) GetTaxableAmount2Ok() (*float32, bool)

GetTaxableAmount2Ok returns a tuple with the TaxableAmount2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetTaxableAmount3

func (o *Subtotal) GetTaxableAmount3() float32

GetTaxableAmount3 returns the TaxableAmount3 field value if set, zero value otherwise.

func (*Subtotal) GetTaxableAmount3Ok

func (o *Subtotal) GetTaxableAmount3Ok() (*float32, bool)

GetTaxableAmount3Ok returns a tuple with the TaxableAmount3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetTaxableAmountOk

func (o *Subtotal) GetTaxableAmountOk() (*float32, bool)

GetTaxableAmountOk returns a tuple with the TaxableAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) GetTotalITBIS

func (o *Subtotal) GetTotalITBIS() float32

GetTotalITBIS returns the TotalITBIS field value if set, zero value otherwise.

func (*Subtotal) GetTotalITBISOk

func (o *Subtotal) GetTotalITBISOk() (*float32, bool)

GetTotalITBISOk returns a tuple with the TotalITBIS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subtotal) HasAdditionalTaxes

func (o *Subtotal) HasAdditionalTaxes() bool

HasAdditionalTaxes returns a boolean if a field has been set.

func (*Subtotal) HasAmount added in v0.0.7

func (o *Subtotal) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*Subtotal) HasDescription

func (o *Subtotal) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Subtotal) HasExemptAmount

func (o *Subtotal) HasExemptAmount() bool

HasExemptAmount returns a boolean if a field has been set.

func (*Subtotal) HasItbis1

func (o *Subtotal) HasItbis1() bool

HasItbis1 returns a boolean if a field has been set.

func (*Subtotal) HasItbis2

func (o *Subtotal) HasItbis2() bool

HasItbis2 returns a boolean if a field has been set.

func (*Subtotal) HasItbis3

func (o *Subtotal) HasItbis3() bool

HasItbis3 returns a boolean if a field has been set.

func (*Subtotal) HasLines

func (o *Subtotal) HasLines() bool

HasLines returns a boolean if a field has been set.

func (*Subtotal) HasNumber added in v0.0.7

func (o *Subtotal) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*Subtotal) HasOrder added in v0.0.7

func (o *Subtotal) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*Subtotal) HasTaxableAmount

func (o *Subtotal) HasTaxableAmount() bool

HasTaxableAmount returns a boolean if a field has been set.

func (*Subtotal) HasTaxableAmount1

func (o *Subtotal) HasTaxableAmount1() bool

HasTaxableAmount1 returns a boolean if a field has been set.

func (*Subtotal) HasTaxableAmount2

func (o *Subtotal) HasTaxableAmount2() bool

HasTaxableAmount2 returns a boolean if a field has been set.

func (*Subtotal) HasTaxableAmount3

func (o *Subtotal) HasTaxableAmount3() bool

HasTaxableAmount3 returns a boolean if a field has been set.

func (*Subtotal) HasTotalITBIS

func (o *Subtotal) HasTotalITBIS() bool

HasTotalITBIS returns a boolean if a field has been set.

func (Subtotal) MarshalJSON

func (o Subtotal) MarshalJSON() ([]byte, error)

func (*Subtotal) SetAdditionalTaxes

func (o *Subtotal) SetAdditionalTaxes(v float32)

SetAdditionalTaxes gets a reference to the given float32 and assigns it to the AdditionalTaxes field.

func (*Subtotal) SetAmount

func (o *Subtotal) SetAmount(v float32)

SetAmount gets a reference to the given float32 and assigns it to the Amount field.

func (*Subtotal) SetDescription

func (o *Subtotal) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Subtotal) SetExemptAmount

func (o *Subtotal) SetExemptAmount(v float32)

SetExemptAmount gets a reference to the given float32 and assigns it to the ExemptAmount field.

func (*Subtotal) SetItbis1

func (o *Subtotal) SetItbis1(v float32)

SetItbis1 gets a reference to the given float32 and assigns it to the Itbis1 field.

func (*Subtotal) SetItbis2

func (o *Subtotal) SetItbis2(v float32)

SetItbis2 gets a reference to the given float32 and assigns it to the Itbis2 field.

func (*Subtotal) SetItbis3

func (o *Subtotal) SetItbis3(v float32)

SetItbis3 gets a reference to the given float32 and assigns it to the Itbis3 field.

func (*Subtotal) SetLines

func (o *Subtotal) SetLines(v int32)

SetLines gets a reference to the given int32 and assigns it to the Lines field.

func (*Subtotal) SetNumber

func (o *Subtotal) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*Subtotal) SetOrder added in v0.0.7

func (o *Subtotal) SetOrder(v int32)

SetOrder gets a reference to the given int32 and assigns it to the Order field.

func (*Subtotal) SetTaxableAmount

func (o *Subtotal) SetTaxableAmount(v float32)

SetTaxableAmount gets a reference to the given float32 and assigns it to the TaxableAmount field.

func (*Subtotal) SetTaxableAmount1

func (o *Subtotal) SetTaxableAmount1(v float32)

SetTaxableAmount1 gets a reference to the given float32 and assigns it to the TaxableAmount1 field.

func (*Subtotal) SetTaxableAmount2

func (o *Subtotal) SetTaxableAmount2(v float32)

SetTaxableAmount2 gets a reference to the given float32 and assigns it to the TaxableAmount2 field.

func (*Subtotal) SetTaxableAmount3

func (o *Subtotal) SetTaxableAmount3(v float32)

SetTaxableAmount3 gets a reference to the given float32 and assigns it to the TaxableAmount3 field.

func (*Subtotal) SetTotalITBIS

func (o *Subtotal) SetTotalITBIS(v float32)

SetTotalITBIS gets a reference to the given float32 and assigns it to the TotalITBIS field.

func (Subtotal) ToMap

func (o Subtotal) ToMap() (map[string]interface{}, error)

type TaxSequence

type TaxSequence struct {
	Id               *string              `json:"id,omitempty"`
	Type             *InvoiceTypeSequence `json:"type,omitempty"`
	StartNumber      *string              `json:"startNumber,omitempty"`
	EndNumber        *string              `json:"endNumber,omitempty"`
	CurrentNumber    *string              `json:"currentNumber,omitempty"`
	Status           *string              `json:"status,omitempty"`
	TotalNumbers     *int32               `json:"totalNumbers,omitempty"`
	UsedNumbers      *int32               `json:"usedNumbers,omitempty"`
	AvailableNumbers *int32               `json:"availableNumbers,omitempty"`
	CreatedAt        *time.Time           `json:"createdAt,omitempty"`
	ExpiresAt        *time.Time           `json:"expiresAt,omitempty"`
}

TaxSequence struct for TaxSequence

func NewTaxSequence

func NewTaxSequence() *TaxSequence

NewTaxSequence instantiates a new TaxSequence object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaxSequenceWithDefaults

func NewTaxSequenceWithDefaults() *TaxSequence

NewTaxSequenceWithDefaults instantiates a new TaxSequence object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaxSequence) GetAvailableNumbers added in v0.0.7

func (o *TaxSequence) GetAvailableNumbers() int32

GetAvailableNumbers returns the AvailableNumbers field value if set, zero value otherwise.

func (*TaxSequence) GetAvailableNumbersOk added in v0.0.7

func (o *TaxSequence) GetAvailableNumbersOk() (*int32, bool)

GetAvailableNumbersOk returns a tuple with the AvailableNumbers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetCreatedAt added in v0.0.7

func (o *TaxSequence) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*TaxSequence) GetCreatedAtOk added in v0.0.7

func (o *TaxSequence) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetCurrentNumber added in v0.0.7

func (o *TaxSequence) GetCurrentNumber() string

GetCurrentNumber returns the CurrentNumber field value if set, zero value otherwise.

func (*TaxSequence) GetCurrentNumberOk added in v0.0.7

func (o *TaxSequence) GetCurrentNumberOk() (*string, bool)

GetCurrentNumberOk returns a tuple with the CurrentNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetEndNumber added in v0.0.7

func (o *TaxSequence) GetEndNumber() string

GetEndNumber returns the EndNumber field value if set, zero value otherwise.

func (*TaxSequence) GetEndNumberOk added in v0.0.7

func (o *TaxSequence) GetEndNumberOk() (*string, bool)

GetEndNumberOk returns a tuple with the EndNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetExpiresAt added in v0.0.7

func (o *TaxSequence) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*TaxSequence) GetExpiresAtOk added in v0.0.7

func (o *TaxSequence) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetId

func (o *TaxSequence) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TaxSequence) GetIdOk

func (o *TaxSequence) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetStartNumber added in v0.0.7

func (o *TaxSequence) GetStartNumber() string

GetStartNumber returns the StartNumber field value if set, zero value otherwise.

func (*TaxSequence) GetStartNumberOk added in v0.0.7

func (o *TaxSequence) GetStartNumberOk() (*string, bool)

GetStartNumberOk returns a tuple with the StartNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetStatus added in v0.0.7

func (o *TaxSequence) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*TaxSequence) GetStatusOk added in v0.0.7

func (o *TaxSequence) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetTotalNumbers added in v0.0.7

func (o *TaxSequence) GetTotalNumbers() int32

GetTotalNumbers returns the TotalNumbers field value if set, zero value otherwise.

func (*TaxSequence) GetTotalNumbersOk added in v0.0.7

func (o *TaxSequence) GetTotalNumbersOk() (*int32, bool)

GetTotalNumbersOk returns a tuple with the TotalNumbers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetType

func (o *TaxSequence) GetType() InvoiceTypeSequence

GetType returns the Type field value if set, zero value otherwise.

func (*TaxSequence) GetTypeOk

func (o *TaxSequence) GetTypeOk() (*InvoiceTypeSequence, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) GetUsedNumbers added in v0.0.7

func (o *TaxSequence) GetUsedNumbers() int32

GetUsedNumbers returns the UsedNumbers field value if set, zero value otherwise.

func (*TaxSequence) GetUsedNumbersOk added in v0.0.7

func (o *TaxSequence) GetUsedNumbersOk() (*int32, bool)

GetUsedNumbersOk returns a tuple with the UsedNumbers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequence) HasAvailableNumbers added in v0.0.7

func (o *TaxSequence) HasAvailableNumbers() bool

HasAvailableNumbers returns a boolean if a field has been set.

func (*TaxSequence) HasCreatedAt added in v0.0.7

func (o *TaxSequence) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TaxSequence) HasCurrentNumber added in v0.0.7

func (o *TaxSequence) HasCurrentNumber() bool

HasCurrentNumber returns a boolean if a field has been set.

func (*TaxSequence) HasEndNumber added in v0.0.7

func (o *TaxSequence) HasEndNumber() bool

HasEndNumber returns a boolean if a field has been set.

func (*TaxSequence) HasExpiresAt added in v0.0.7

func (o *TaxSequence) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*TaxSequence) HasId

func (o *TaxSequence) HasId() bool

HasId returns a boolean if a field has been set.

func (*TaxSequence) HasStartNumber added in v0.0.7

func (o *TaxSequence) HasStartNumber() bool

HasStartNumber returns a boolean if a field has been set.

func (*TaxSequence) HasStatus added in v0.0.7

func (o *TaxSequence) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*TaxSequence) HasTotalNumbers added in v0.0.7

func (o *TaxSequence) HasTotalNumbers() bool

HasTotalNumbers returns a boolean if a field has been set.

func (*TaxSequence) HasType

func (o *TaxSequence) HasType() bool

HasType returns a boolean if a field has been set.

func (*TaxSequence) HasUsedNumbers added in v0.0.7

func (o *TaxSequence) HasUsedNumbers() bool

HasUsedNumbers returns a boolean if a field has been set.

func (TaxSequence) MarshalJSON

func (o TaxSequence) MarshalJSON() ([]byte, error)

func (*TaxSequence) SetAvailableNumbers added in v0.0.7

func (o *TaxSequence) SetAvailableNumbers(v int32)

SetAvailableNumbers gets a reference to the given int32 and assigns it to the AvailableNumbers field.

func (*TaxSequence) SetCreatedAt added in v0.0.7

func (o *TaxSequence) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*TaxSequence) SetCurrentNumber added in v0.0.7

func (o *TaxSequence) SetCurrentNumber(v string)

SetCurrentNumber gets a reference to the given string and assigns it to the CurrentNumber field.

func (*TaxSequence) SetEndNumber added in v0.0.7

func (o *TaxSequence) SetEndNumber(v string)

SetEndNumber gets a reference to the given string and assigns it to the EndNumber field.

func (*TaxSequence) SetExpiresAt added in v0.0.7

func (o *TaxSequence) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*TaxSequence) SetId

func (o *TaxSequence) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TaxSequence) SetStartNumber added in v0.0.7

func (o *TaxSequence) SetStartNumber(v string)

SetStartNumber gets a reference to the given string and assigns it to the StartNumber field.

func (*TaxSequence) SetStatus added in v0.0.7

func (o *TaxSequence) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*TaxSequence) SetTotalNumbers added in v0.0.7

func (o *TaxSequence) SetTotalNumbers(v int32)

SetTotalNumbers gets a reference to the given int32 and assigns it to the TotalNumbers field.

func (*TaxSequence) SetType

func (o *TaxSequence) SetType(v InvoiceTypeSequence)

SetType gets a reference to the given InvoiceTypeSequence and assigns it to the Type field.

func (*TaxSequence) SetUsedNumbers added in v0.0.7

func (o *TaxSequence) SetUsedNumbers(v int32)

SetUsedNumbers gets a reference to the given int32 and assigns it to the UsedNumbers field.

func (TaxSequence) ToMap

func (o TaxSequence) ToMap() (map[string]interface{}, error)

type TaxSequenceCreated added in v0.0.7

type TaxSequenceCreated struct {
	Id          *string              `json:"id,omitempty"`
	Type        *InvoiceTypeSequence `json:"type,omitempty"`
	From        *int32               `json:"from,omitempty"`
	To          *int32               `json:"to,omitempty"`
	Environment *Environment         `json:"environment,omitempty"`
	CreatedAt   *time.Time           `json:"createdAt,omitempty"`
}

TaxSequenceCreated struct for TaxSequenceCreated

func NewTaxSequenceCreated added in v0.0.7

func NewTaxSequenceCreated() *TaxSequenceCreated

NewTaxSequenceCreated instantiates a new TaxSequenceCreated object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaxSequenceCreatedWithDefaults added in v0.0.7

func NewTaxSequenceCreatedWithDefaults() *TaxSequenceCreated

NewTaxSequenceCreatedWithDefaults instantiates a new TaxSequenceCreated object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaxSequenceCreated) GetCreatedAt added in v0.0.7

func (o *TaxSequenceCreated) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*TaxSequenceCreated) GetCreatedAtOk added in v0.0.7

func (o *TaxSequenceCreated) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequenceCreated) GetEnvironment added in v0.0.7

func (o *TaxSequenceCreated) GetEnvironment() Environment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*TaxSequenceCreated) GetEnvironmentOk added in v0.0.7

func (o *TaxSequenceCreated) GetEnvironmentOk() (*Environment, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequenceCreated) GetFrom added in v0.0.7

func (o *TaxSequenceCreated) GetFrom() int32

GetFrom returns the From field value if set, zero value otherwise.

func (*TaxSequenceCreated) GetFromOk added in v0.0.7

func (o *TaxSequenceCreated) GetFromOk() (*int32, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequenceCreated) GetId added in v0.0.7

func (o *TaxSequenceCreated) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TaxSequenceCreated) GetIdOk added in v0.0.7

func (o *TaxSequenceCreated) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequenceCreated) GetTo added in v0.0.7

func (o *TaxSequenceCreated) GetTo() int32

GetTo returns the To field value if set, zero value otherwise.

func (*TaxSequenceCreated) GetToOk added in v0.0.7

func (o *TaxSequenceCreated) GetToOk() (*int32, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequenceCreated) GetType added in v0.0.7

GetType returns the Type field value if set, zero value otherwise.

func (*TaxSequenceCreated) GetTypeOk added in v0.0.7

func (o *TaxSequenceCreated) GetTypeOk() (*InvoiceTypeSequence, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxSequenceCreated) HasCreatedAt added in v0.0.7

func (o *TaxSequenceCreated) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TaxSequenceCreated) HasEnvironment added in v0.0.7

func (o *TaxSequenceCreated) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*TaxSequenceCreated) HasFrom added in v0.0.7

func (o *TaxSequenceCreated) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*TaxSequenceCreated) HasId added in v0.0.7

func (o *TaxSequenceCreated) HasId() bool

HasId returns a boolean if a field has been set.

func (*TaxSequenceCreated) HasTo added in v0.0.7

func (o *TaxSequenceCreated) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*TaxSequenceCreated) HasType added in v0.0.7

func (o *TaxSequenceCreated) HasType() bool

HasType returns a boolean if a field has been set.

func (TaxSequenceCreated) MarshalJSON added in v0.0.7

func (o TaxSequenceCreated) MarshalJSON() ([]byte, error)

func (*TaxSequenceCreated) SetCreatedAt added in v0.0.7

func (o *TaxSequenceCreated) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*TaxSequenceCreated) SetEnvironment added in v0.0.7

func (o *TaxSequenceCreated) SetEnvironment(v Environment)

SetEnvironment gets a reference to the given Environment and assigns it to the Environment field.

func (*TaxSequenceCreated) SetFrom added in v0.0.7

func (o *TaxSequenceCreated) SetFrom(v int32)

SetFrom gets a reference to the given int32 and assigns it to the From field.

func (*TaxSequenceCreated) SetId added in v0.0.7

func (o *TaxSequenceCreated) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TaxSequenceCreated) SetTo added in v0.0.7

func (o *TaxSequenceCreated) SetTo(v int32)

SetTo gets a reference to the given int32 and assigns it to the To field.

func (*TaxSequenceCreated) SetType added in v0.0.7

SetType gets a reference to the given InvoiceTypeSequence and assigns it to the Type field.

func (TaxSequenceCreated) ToMap added in v0.0.7

func (o TaxSequenceCreated) ToMap() (map[string]interface{}, error)

type TaxSequencesAPIService

type TaxSequencesAPIService service

TaxSequencesAPIService TaxSequencesAPI service

func (*TaxSequencesAPIService) CreateTaxSequence

CreateTaxSequence Crear nueva secuencia de NCF

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateTaxSequenceRequest

func (*TaxSequencesAPIService) CreateTaxSequenceExecute

Execute executes the request

@return CreateTaxSequence201Response

func (*TaxSequencesAPIService) GetNextNumber

GetNextNumber Obtener siguiente número fiscal disponible

Retorna el siguiente número e-NCF disponible. Úsalo como invoiceNumber al enviar.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetNextNumberRequest

func (*TaxSequencesAPIService) GetNextNumberExecute

Execute executes the request

@return GetNextNumber200Response

func (*TaxSequencesAPIService) ListTaxSequences

ListTaxSequences Listar secuencias de NCF

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListTaxSequencesRequest

func (*TaxSequencesAPIService) ListTaxSequencesExecute

Execute executes the request

@return ListTaxSequences200Response

func (*TaxSequencesAPIService) UpdateTaxSequence added in v0.0.7

UpdateTaxSequence Actualizar secuencia de NCF

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateTaxSequenceRequest

func (*TaxSequencesAPIService) UpdateTaxSequenceExecute added in v0.0.7

func (a *TaxSequencesAPIService) UpdateTaxSequenceExecute(r ApiUpdateTaxSequenceRequest) (*http.Response, error)

Execute executes the request

func (*TaxSequencesAPIService) VoidTaxSequence added in v0.0.7

VoidTaxSequence Anular rango de números fiscales

Cancela números fiscales no utilizados y notifica a la DGII.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiVoidTaxSequenceRequest

func (*TaxSequencesAPIService) VoidTaxSequenceExecute added in v0.0.7

Execute executes the request

@return VoidTaxSequence200Response

type TenantSession added in v0.0.14

type TenantSession struct {
	// contains filtered or unexported fields
}

TenantSession is a lightweight tenant-scoped view over the shared integration client.

func (*TenantSession) Client added in v0.0.14

func (s *TenantSession) Client() *APIClient

Client returns the tenant-scoped API client.

type Totals

type Totals struct {
	TaxableAmount             *ItemWithheldITBISAmount `json:"taxableAmount,omitempty"`
	TaxableAmount1            *ItemWithheldITBISAmount `json:"taxableAmount1,omitempty"`
	TaxableAmount2            *ItemWithheldITBISAmount `json:"taxableAmount2,omitempty"`
	TaxableAmount3            *ItemWithheldITBISAmount `json:"taxableAmount3,omitempty"`
	ExemptAmount              *ItemWithheldITBISAmount `json:"exemptAmount,omitempty"`
	ItbisRate1                *TotalsItbisRate1        `json:"itbisRate1,omitempty"`
	ItbisRate2                *TotalsItbisRate2        `json:"itbisRate2,omitempty"`
	ItbisRate3                *TotalsItbisRate3        `json:"itbisRate3,omitempty"`
	TotalITBIS                *ItemWithheldITBISAmount `json:"totalITBIS,omitempty"`
	Itbis1                    *ItemWithheldITBISAmount `json:"itbis1,omitempty"`
	Itbis2                    *ItemWithheldITBISAmount `json:"itbis2,omitempty"`
	Itbis3                    *ItemWithheldITBISAmount `json:"itbis3,omitempty"`
	AdditionalTaxAmount       *ItemWithheldITBISAmount `json:"additionalTaxAmount,omitempty"`
	AdditionalTaxes           []AdditionalTax          `json:"additionalTaxes,omitempty"`
	TotalAmount               *TotalsTotalAmount       `json:"totalAmount,omitempty"`
	NonBillableAmount         *ItemWithheldITBISAmount `json:"nonBillableAmount,omitempty"`
	PeriodAmount              *ItemWithheldITBISAmount `json:"periodAmount,omitempty"`
	PreviousBalance           *ItemWithheldITBISAmount `json:"previousBalance,omitempty"`
	AdvancePaymentAmount      *ItemWithheldITBISAmount `json:"advancePaymentAmount,omitempty"`
	AmountToPay               *ItemWithheldITBISAmount `json:"amountToPay,omitempty"`
	TotalWithheldITBIS        *ItemWithheldITBISAmount `json:"totalWithheldITBIS,omitempty"`
	TotalIncomeTaxWithholding *ItemWithheldITBISAmount `json:"totalIncomeTaxWithholding,omitempty"`
	TotalITBISPerception      *ItemWithheldITBISAmount `json:"totalITBISPerception,omitempty"`
	TotalISRPerception        *ItemWithheldITBISAmount `json:"totalISRPerception,omitempty"`
}

Totals struct for Totals

func NewTotals

func NewTotals() *Totals

NewTotals instantiates a new Totals object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTotalsWithDefaults

func NewTotalsWithDefaults() *Totals

NewTotalsWithDefaults instantiates a new Totals object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Totals) GetAdditionalTaxAmount

func (o *Totals) GetAdditionalTaxAmount() ItemWithheldITBISAmount

GetAdditionalTaxAmount returns the AdditionalTaxAmount field value if set, zero value otherwise.

func (*Totals) GetAdditionalTaxAmountOk

func (o *Totals) GetAdditionalTaxAmountOk() (*ItemWithheldITBISAmount, bool)

GetAdditionalTaxAmountOk returns a tuple with the AdditionalTaxAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetAdditionalTaxes

func (o *Totals) GetAdditionalTaxes() []AdditionalTax

GetAdditionalTaxes returns the AdditionalTaxes field value if set, zero value otherwise.

func (*Totals) GetAdditionalTaxesOk

func (o *Totals) GetAdditionalTaxesOk() ([]AdditionalTax, bool)

GetAdditionalTaxesOk returns a tuple with the AdditionalTaxes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetAdvancePaymentAmount

func (o *Totals) GetAdvancePaymentAmount() ItemWithheldITBISAmount

GetAdvancePaymentAmount returns the AdvancePaymentAmount field value if set, zero value otherwise.

func (*Totals) GetAdvancePaymentAmountOk

func (o *Totals) GetAdvancePaymentAmountOk() (*ItemWithheldITBISAmount, bool)

GetAdvancePaymentAmountOk returns a tuple with the AdvancePaymentAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetAmountToPay

func (o *Totals) GetAmountToPay() ItemWithheldITBISAmount

GetAmountToPay returns the AmountToPay field value if set, zero value otherwise.

func (*Totals) GetAmountToPayOk

func (o *Totals) GetAmountToPayOk() (*ItemWithheldITBISAmount, bool)

GetAmountToPayOk returns a tuple with the AmountToPay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetExemptAmount

func (o *Totals) GetExemptAmount() ItemWithheldITBISAmount

GetExemptAmount returns the ExemptAmount field value if set, zero value otherwise.

func (*Totals) GetExemptAmountOk

func (o *Totals) GetExemptAmountOk() (*ItemWithheldITBISAmount, bool)

GetExemptAmountOk returns a tuple with the ExemptAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetItbis1

func (o *Totals) GetItbis1() ItemWithheldITBISAmount

GetItbis1 returns the Itbis1 field value if set, zero value otherwise.

func (*Totals) GetItbis1Ok

func (o *Totals) GetItbis1Ok() (*ItemWithheldITBISAmount, bool)

GetItbis1Ok returns a tuple with the Itbis1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetItbis2

func (o *Totals) GetItbis2() ItemWithheldITBISAmount

GetItbis2 returns the Itbis2 field value if set, zero value otherwise.

func (*Totals) GetItbis2Ok

func (o *Totals) GetItbis2Ok() (*ItemWithheldITBISAmount, bool)

GetItbis2Ok returns a tuple with the Itbis2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetItbis3

func (o *Totals) GetItbis3() ItemWithheldITBISAmount

GetItbis3 returns the Itbis3 field value if set, zero value otherwise.

func (*Totals) GetItbis3Ok

func (o *Totals) GetItbis3Ok() (*ItemWithheldITBISAmount, bool)

GetItbis3Ok returns a tuple with the Itbis3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetItbisRate1

func (o *Totals) GetItbisRate1() TotalsItbisRate1

GetItbisRate1 returns the ItbisRate1 field value if set, zero value otherwise.

func (*Totals) GetItbisRate1Ok

func (o *Totals) GetItbisRate1Ok() (*TotalsItbisRate1, bool)

GetItbisRate1Ok returns a tuple with the ItbisRate1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetItbisRate2

func (o *Totals) GetItbisRate2() TotalsItbisRate2

GetItbisRate2 returns the ItbisRate2 field value if set, zero value otherwise.

func (*Totals) GetItbisRate2Ok

func (o *Totals) GetItbisRate2Ok() (*TotalsItbisRate2, bool)

GetItbisRate2Ok returns a tuple with the ItbisRate2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetItbisRate3

func (o *Totals) GetItbisRate3() TotalsItbisRate3

GetItbisRate3 returns the ItbisRate3 field value if set, zero value otherwise.

func (*Totals) GetItbisRate3Ok

func (o *Totals) GetItbisRate3Ok() (*TotalsItbisRate3, bool)

GetItbisRate3Ok returns a tuple with the ItbisRate3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetNonBillableAmount

func (o *Totals) GetNonBillableAmount() ItemWithheldITBISAmount

GetNonBillableAmount returns the NonBillableAmount field value if set, zero value otherwise.

func (*Totals) GetNonBillableAmountOk

func (o *Totals) GetNonBillableAmountOk() (*ItemWithheldITBISAmount, bool)

GetNonBillableAmountOk returns a tuple with the NonBillableAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetPeriodAmount

func (o *Totals) GetPeriodAmount() ItemWithheldITBISAmount

GetPeriodAmount returns the PeriodAmount field value if set, zero value otherwise.

func (*Totals) GetPeriodAmountOk

func (o *Totals) GetPeriodAmountOk() (*ItemWithheldITBISAmount, bool)

GetPeriodAmountOk returns a tuple with the PeriodAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetPreviousBalance

func (o *Totals) GetPreviousBalance() ItemWithheldITBISAmount

GetPreviousBalance returns the PreviousBalance field value if set, zero value otherwise.

func (*Totals) GetPreviousBalanceOk

func (o *Totals) GetPreviousBalanceOk() (*ItemWithheldITBISAmount, bool)

GetPreviousBalanceOk returns a tuple with the PreviousBalance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTaxableAmount

func (o *Totals) GetTaxableAmount() ItemWithheldITBISAmount

GetTaxableAmount returns the TaxableAmount field value if set, zero value otherwise.

func (*Totals) GetTaxableAmount1

func (o *Totals) GetTaxableAmount1() ItemWithheldITBISAmount

GetTaxableAmount1 returns the TaxableAmount1 field value if set, zero value otherwise.

func (*Totals) GetTaxableAmount1Ok

func (o *Totals) GetTaxableAmount1Ok() (*ItemWithheldITBISAmount, bool)

GetTaxableAmount1Ok returns a tuple with the TaxableAmount1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTaxableAmount2

func (o *Totals) GetTaxableAmount2() ItemWithheldITBISAmount

GetTaxableAmount2 returns the TaxableAmount2 field value if set, zero value otherwise.

func (*Totals) GetTaxableAmount2Ok

func (o *Totals) GetTaxableAmount2Ok() (*ItemWithheldITBISAmount, bool)

GetTaxableAmount2Ok returns a tuple with the TaxableAmount2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTaxableAmount3

func (o *Totals) GetTaxableAmount3() ItemWithheldITBISAmount

GetTaxableAmount3 returns the TaxableAmount3 field value if set, zero value otherwise.

func (*Totals) GetTaxableAmount3Ok

func (o *Totals) GetTaxableAmount3Ok() (*ItemWithheldITBISAmount, bool)

GetTaxableAmount3Ok returns a tuple with the TaxableAmount3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTaxableAmountOk

func (o *Totals) GetTaxableAmountOk() (*ItemWithheldITBISAmount, bool)

GetTaxableAmountOk returns a tuple with the TaxableAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTotalAmount

func (o *Totals) GetTotalAmount() TotalsTotalAmount

GetTotalAmount returns the TotalAmount field value if set, zero value otherwise.

func (*Totals) GetTotalAmountOk

func (o *Totals) GetTotalAmountOk() (*TotalsTotalAmount, bool)

GetTotalAmountOk returns a tuple with the TotalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTotalISRPerception

func (o *Totals) GetTotalISRPerception() ItemWithheldITBISAmount

GetTotalISRPerception returns the TotalISRPerception field value if set, zero value otherwise.

func (*Totals) GetTotalISRPerceptionOk

func (o *Totals) GetTotalISRPerceptionOk() (*ItemWithheldITBISAmount, bool)

GetTotalISRPerceptionOk returns a tuple with the TotalISRPerception field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTotalITBIS

func (o *Totals) GetTotalITBIS() ItemWithheldITBISAmount

GetTotalITBIS returns the TotalITBIS field value if set, zero value otherwise.

func (*Totals) GetTotalITBISOk

func (o *Totals) GetTotalITBISOk() (*ItemWithheldITBISAmount, bool)

GetTotalITBISOk returns a tuple with the TotalITBIS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTotalITBISPerception

func (o *Totals) GetTotalITBISPerception() ItemWithheldITBISAmount

GetTotalITBISPerception returns the TotalITBISPerception field value if set, zero value otherwise.

func (*Totals) GetTotalITBISPerceptionOk

func (o *Totals) GetTotalITBISPerceptionOk() (*ItemWithheldITBISAmount, bool)

GetTotalITBISPerceptionOk returns a tuple with the TotalITBISPerception field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTotalIncomeTaxWithholding

func (o *Totals) GetTotalIncomeTaxWithholding() ItemWithheldITBISAmount

GetTotalIncomeTaxWithholding returns the TotalIncomeTaxWithholding field value if set, zero value otherwise.

func (*Totals) GetTotalIncomeTaxWithholdingOk

func (o *Totals) GetTotalIncomeTaxWithholdingOk() (*ItemWithheldITBISAmount, bool)

GetTotalIncomeTaxWithholdingOk returns a tuple with the TotalIncomeTaxWithholding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) GetTotalWithheldITBIS

func (o *Totals) GetTotalWithheldITBIS() ItemWithheldITBISAmount

GetTotalWithheldITBIS returns the TotalWithheldITBIS field value if set, zero value otherwise.

func (*Totals) GetTotalWithheldITBISOk

func (o *Totals) GetTotalWithheldITBISOk() (*ItemWithheldITBISAmount, bool)

GetTotalWithheldITBISOk returns a tuple with the TotalWithheldITBIS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Totals) HasAdditionalTaxAmount

func (o *Totals) HasAdditionalTaxAmount() bool

HasAdditionalTaxAmount returns a boolean if a field has been set.

func (*Totals) HasAdditionalTaxes

func (o *Totals) HasAdditionalTaxes() bool

HasAdditionalTaxes returns a boolean if a field has been set.

func (*Totals) HasAdvancePaymentAmount

func (o *Totals) HasAdvancePaymentAmount() bool

HasAdvancePaymentAmount returns a boolean if a field has been set.

func (*Totals) HasAmountToPay

func (o *Totals) HasAmountToPay() bool

HasAmountToPay returns a boolean if a field has been set.

func (*Totals) HasExemptAmount

func (o *Totals) HasExemptAmount() bool

HasExemptAmount returns a boolean if a field has been set.

func (*Totals) HasItbis1

func (o *Totals) HasItbis1() bool

HasItbis1 returns a boolean if a field has been set.

func (*Totals) HasItbis2

func (o *Totals) HasItbis2() bool

HasItbis2 returns a boolean if a field has been set.

func (*Totals) HasItbis3

func (o *Totals) HasItbis3() bool

HasItbis3 returns a boolean if a field has been set.

func (*Totals) HasItbisRate1

func (o *Totals) HasItbisRate1() bool

HasItbisRate1 returns a boolean if a field has been set.

func (*Totals) HasItbisRate2

func (o *Totals) HasItbisRate2() bool

HasItbisRate2 returns a boolean if a field has been set.

func (*Totals) HasItbisRate3

func (o *Totals) HasItbisRate3() bool

HasItbisRate3 returns a boolean if a field has been set.

func (*Totals) HasNonBillableAmount

func (o *Totals) HasNonBillableAmount() bool

HasNonBillableAmount returns a boolean if a field has been set.

func (*Totals) HasPeriodAmount

func (o *Totals) HasPeriodAmount() bool

HasPeriodAmount returns a boolean if a field has been set.

func (*Totals) HasPreviousBalance

func (o *Totals) HasPreviousBalance() bool

HasPreviousBalance returns a boolean if a field has been set.

func (*Totals) HasTaxableAmount

func (o *Totals) HasTaxableAmount() bool

HasTaxableAmount returns a boolean if a field has been set.

func (*Totals) HasTaxableAmount1

func (o *Totals) HasTaxableAmount1() bool

HasTaxableAmount1 returns a boolean if a field has been set.

func (*Totals) HasTaxableAmount2

func (o *Totals) HasTaxableAmount2() bool

HasTaxableAmount2 returns a boolean if a field has been set.

func (*Totals) HasTaxableAmount3

func (o *Totals) HasTaxableAmount3() bool

HasTaxableAmount3 returns a boolean if a field has been set.

func (*Totals) HasTotalAmount added in v0.0.10

func (o *Totals) HasTotalAmount() bool

HasTotalAmount returns a boolean if a field has been set.

func (*Totals) HasTotalISRPerception

func (o *Totals) HasTotalISRPerception() bool

HasTotalISRPerception returns a boolean if a field has been set.

func (*Totals) HasTotalITBIS

func (o *Totals) HasTotalITBIS() bool

HasTotalITBIS returns a boolean if a field has been set.

func (*Totals) HasTotalITBISPerception

func (o *Totals) HasTotalITBISPerception() bool

HasTotalITBISPerception returns a boolean if a field has been set.

func (*Totals) HasTotalIncomeTaxWithholding

func (o *Totals) HasTotalIncomeTaxWithholding() bool

HasTotalIncomeTaxWithholding returns a boolean if a field has been set.

func (*Totals) HasTotalWithheldITBIS

func (o *Totals) HasTotalWithheldITBIS() bool

HasTotalWithheldITBIS returns a boolean if a field has been set.

func (Totals) MarshalJSON

func (o Totals) MarshalJSON() ([]byte, error)

func (*Totals) SetAdditionalTaxAmount

func (o *Totals) SetAdditionalTaxAmount(v ItemWithheldITBISAmount)

SetAdditionalTaxAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the AdditionalTaxAmount field.

func (*Totals) SetAdditionalTaxes

func (o *Totals) SetAdditionalTaxes(v []AdditionalTax)

SetAdditionalTaxes gets a reference to the given []AdditionalTax and assigns it to the AdditionalTaxes field.

func (*Totals) SetAdvancePaymentAmount

func (o *Totals) SetAdvancePaymentAmount(v ItemWithheldITBISAmount)

SetAdvancePaymentAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the AdvancePaymentAmount field.

func (*Totals) SetAmountToPay

func (o *Totals) SetAmountToPay(v ItemWithheldITBISAmount)

SetAmountToPay gets a reference to the given ItemWithheldITBISAmount and assigns it to the AmountToPay field.

func (*Totals) SetExemptAmount

func (o *Totals) SetExemptAmount(v ItemWithheldITBISAmount)

SetExemptAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the ExemptAmount field.

func (*Totals) SetItbis1

func (o *Totals) SetItbis1(v ItemWithheldITBISAmount)

SetItbis1 gets a reference to the given ItemWithheldITBISAmount and assigns it to the Itbis1 field.

func (*Totals) SetItbis2

func (o *Totals) SetItbis2(v ItemWithheldITBISAmount)

SetItbis2 gets a reference to the given ItemWithheldITBISAmount and assigns it to the Itbis2 field.

func (*Totals) SetItbis3

func (o *Totals) SetItbis3(v ItemWithheldITBISAmount)

SetItbis3 gets a reference to the given ItemWithheldITBISAmount and assigns it to the Itbis3 field.

func (*Totals) SetItbisRate1

func (o *Totals) SetItbisRate1(v TotalsItbisRate1)

SetItbisRate1 gets a reference to the given TotalsItbisRate1 and assigns it to the ItbisRate1 field.

func (*Totals) SetItbisRate2

func (o *Totals) SetItbisRate2(v TotalsItbisRate2)

SetItbisRate2 gets a reference to the given TotalsItbisRate2 and assigns it to the ItbisRate2 field.

func (*Totals) SetItbisRate3

func (o *Totals) SetItbisRate3(v TotalsItbisRate3)

SetItbisRate3 gets a reference to the given TotalsItbisRate3 and assigns it to the ItbisRate3 field.

func (*Totals) SetNonBillableAmount

func (o *Totals) SetNonBillableAmount(v ItemWithheldITBISAmount)

SetNonBillableAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the NonBillableAmount field.

func (*Totals) SetPeriodAmount

func (o *Totals) SetPeriodAmount(v ItemWithheldITBISAmount)

SetPeriodAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the PeriodAmount field.

func (*Totals) SetPreviousBalance

func (o *Totals) SetPreviousBalance(v ItemWithheldITBISAmount)

SetPreviousBalance gets a reference to the given ItemWithheldITBISAmount and assigns it to the PreviousBalance field.

func (*Totals) SetTaxableAmount

func (o *Totals) SetTaxableAmount(v ItemWithheldITBISAmount)

SetTaxableAmount gets a reference to the given ItemWithheldITBISAmount and assigns it to the TaxableAmount field.

func (*Totals) SetTaxableAmount1

func (o *Totals) SetTaxableAmount1(v ItemWithheldITBISAmount)

SetTaxableAmount1 gets a reference to the given ItemWithheldITBISAmount and assigns it to the TaxableAmount1 field.

func (*Totals) SetTaxableAmount2

func (o *Totals) SetTaxableAmount2(v ItemWithheldITBISAmount)

SetTaxableAmount2 gets a reference to the given ItemWithheldITBISAmount and assigns it to the TaxableAmount2 field.

func (*Totals) SetTaxableAmount3

func (o *Totals) SetTaxableAmount3(v ItemWithheldITBISAmount)

SetTaxableAmount3 gets a reference to the given ItemWithheldITBISAmount and assigns it to the TaxableAmount3 field.

func (*Totals) SetTotalAmount

func (o *Totals) SetTotalAmount(v TotalsTotalAmount)

SetTotalAmount gets a reference to the given TotalsTotalAmount and assigns it to the TotalAmount field.

func (*Totals) SetTotalISRPerception

func (o *Totals) SetTotalISRPerception(v ItemWithheldITBISAmount)

SetTotalISRPerception gets a reference to the given ItemWithheldITBISAmount and assigns it to the TotalISRPerception field.

func (*Totals) SetTotalITBIS

func (o *Totals) SetTotalITBIS(v ItemWithheldITBISAmount)

SetTotalITBIS gets a reference to the given ItemWithheldITBISAmount and assigns it to the TotalITBIS field.

func (*Totals) SetTotalITBISPerception

func (o *Totals) SetTotalITBISPerception(v ItemWithheldITBISAmount)

SetTotalITBISPerception gets a reference to the given ItemWithheldITBISAmount and assigns it to the TotalITBISPerception field.

func (*Totals) SetTotalIncomeTaxWithholding

func (o *Totals) SetTotalIncomeTaxWithholding(v ItemWithheldITBISAmount)

SetTotalIncomeTaxWithholding gets a reference to the given ItemWithheldITBISAmount and assigns it to the TotalIncomeTaxWithholding field.

func (*Totals) SetTotalWithheldITBIS

func (o *Totals) SetTotalWithheldITBIS(v ItemWithheldITBISAmount)

SetTotalWithheldITBIS gets a reference to the given ItemWithheldITBISAmount and assigns it to the TotalWithheldITBIS field.

func (Totals) ToMap

func (o Totals) ToMap() (map[string]interface{}, error)

type TotalsItbisRate1 added in v0.0.10

type TotalsItbisRate1 struct {
	Float32 *float32
	String  *string
}

TotalsItbisRate1 - struct for TotalsItbisRate1

func Float32AsTotalsItbisRate1 added in v0.0.10

func Float32AsTotalsItbisRate1(v *float32) TotalsItbisRate1

float32AsTotalsItbisRate1 is a convenience function that returns float32 wrapped in TotalsItbisRate1

func StringAsTotalsItbisRate1 added in v0.0.10

func StringAsTotalsItbisRate1(v *string) TotalsItbisRate1

stringAsTotalsItbisRate1 is a convenience function that returns string wrapped in TotalsItbisRate1

func (*TotalsItbisRate1) GetActualInstance added in v0.0.10

func (obj *TotalsItbisRate1) GetActualInstance() interface{}

Get the actual instance

func (TotalsItbisRate1) GetActualInstanceValue added in v0.0.10

func (obj TotalsItbisRate1) GetActualInstanceValue() interface{}

Get the actual instance value

func (TotalsItbisRate1) MarshalJSON added in v0.0.10

func (src TotalsItbisRate1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TotalsItbisRate1) UnmarshalJSON added in v0.0.10

func (dst *TotalsItbisRate1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type TotalsItbisRate2 added in v0.0.10

type TotalsItbisRate2 struct {
	Float32 *float32
	String  *string
}

TotalsItbisRate2 - struct for TotalsItbisRate2

func Float32AsTotalsItbisRate2 added in v0.0.10

func Float32AsTotalsItbisRate2(v *float32) TotalsItbisRate2

float32AsTotalsItbisRate2 is a convenience function that returns float32 wrapped in TotalsItbisRate2

func StringAsTotalsItbisRate2 added in v0.0.10

func StringAsTotalsItbisRate2(v *string) TotalsItbisRate2

stringAsTotalsItbisRate2 is a convenience function that returns string wrapped in TotalsItbisRate2

func (*TotalsItbisRate2) GetActualInstance added in v0.0.10

func (obj *TotalsItbisRate2) GetActualInstance() interface{}

Get the actual instance

func (TotalsItbisRate2) GetActualInstanceValue added in v0.0.10

func (obj TotalsItbisRate2) GetActualInstanceValue() interface{}

Get the actual instance value

func (TotalsItbisRate2) MarshalJSON added in v0.0.10

func (src TotalsItbisRate2) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TotalsItbisRate2) UnmarshalJSON added in v0.0.10

func (dst *TotalsItbisRate2) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type TotalsItbisRate3 added in v0.0.10

type TotalsItbisRate3 struct {
	Float32 *float32
	String  *string
}

TotalsItbisRate3 - struct for TotalsItbisRate3

func Float32AsTotalsItbisRate3 added in v0.0.10

func Float32AsTotalsItbisRate3(v *float32) TotalsItbisRate3

float32AsTotalsItbisRate3 is a convenience function that returns float32 wrapped in TotalsItbisRate3

func StringAsTotalsItbisRate3 added in v0.0.10

func StringAsTotalsItbisRate3(v *string) TotalsItbisRate3

stringAsTotalsItbisRate3 is a convenience function that returns string wrapped in TotalsItbisRate3

func (*TotalsItbisRate3) GetActualInstance added in v0.0.10

func (obj *TotalsItbisRate3) GetActualInstance() interface{}

Get the actual instance

func (TotalsItbisRate3) GetActualInstanceValue added in v0.0.10

func (obj TotalsItbisRate3) GetActualInstanceValue() interface{}

Get the actual instance value

func (TotalsItbisRate3) MarshalJSON added in v0.0.10

func (src TotalsItbisRate3) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TotalsItbisRate3) UnmarshalJSON added in v0.0.10

func (dst *TotalsItbisRate3) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type TotalsTotalAmount added in v0.0.10

type TotalsTotalAmount struct {
	Float32 *float32
	String  *string
}

TotalsTotalAmount - struct for TotalsTotalAmount

func Float32AsTotalsTotalAmount added in v0.0.10

func Float32AsTotalsTotalAmount(v *float32) TotalsTotalAmount

float32AsTotalsTotalAmount is a convenience function that returns float32 wrapped in TotalsTotalAmount

func StringAsTotalsTotalAmount added in v0.0.10

func StringAsTotalsTotalAmount(v *string) TotalsTotalAmount

stringAsTotalsTotalAmount is a convenience function that returns string wrapped in TotalsTotalAmount

func (*TotalsTotalAmount) GetActualInstance added in v0.0.10

func (obj *TotalsTotalAmount) GetActualInstance() interface{}

Get the actual instance

func (TotalsTotalAmount) GetActualInstanceValue added in v0.0.10

func (obj TotalsTotalAmount) GetActualInstanceValue() interface{}

Get the actual instance value

func (TotalsTotalAmount) MarshalJSON added in v0.0.10

func (src TotalsTotalAmount) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TotalsTotalAmount) UnmarshalJSON added in v0.0.10

func (dst *TotalsTotalAmount) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Transport

type Transport struct {
	Driver             *string `json:"driver,omitempty"`
	Document           *string `json:"document,omitempty"`
	VehicleId          *string `json:"vehicleId,omitempty"`
	LicensePlate       *string `json:"licensePlate,omitempty"`
	Route              *string `json:"route,omitempty"`
	Zone               *string `json:"zone,omitempty"`
	DeliveryNoteNumber *string `json:"deliveryNoteNumber,omitempty"`
	DestinationCountry *string `json:"destinationCountry,omitempty"`
}

Transport struct for Transport

func NewTransport

func NewTransport() *Transport

NewTransport instantiates a new Transport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransportWithDefaults

func NewTransportWithDefaults() *Transport

NewTransportWithDefaults instantiates a new Transport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Transport) GetDeliveryNoteNumber added in v0.0.7

func (o *Transport) GetDeliveryNoteNumber() string

GetDeliveryNoteNumber returns the DeliveryNoteNumber field value if set, zero value otherwise.

func (*Transport) GetDeliveryNoteNumberOk added in v0.0.7

func (o *Transport) GetDeliveryNoteNumberOk() (*string, bool)

GetDeliveryNoteNumberOk returns a tuple with the DeliveryNoteNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Transport) GetDestinationCountry added in v0.0.7

func (o *Transport) GetDestinationCountry() string

GetDestinationCountry returns the DestinationCountry field value if set, zero value otherwise.

func (*Transport) GetDestinationCountryOk added in v0.0.7

func (o *Transport) GetDestinationCountryOk() (*string, bool)

GetDestinationCountryOk returns a tuple with the DestinationCountry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Transport) GetDocument added in v0.0.7

func (o *Transport) GetDocument() string

GetDocument returns the Document field value if set, zero value otherwise.

func (*Transport) GetDocumentOk added in v0.0.7

func (o *Transport) GetDocumentOk() (*string, bool)

GetDocumentOk returns a tuple with the Document field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Transport) GetDriver

func (o *Transport) GetDriver() string

GetDriver returns the Driver field value if set, zero value otherwise.

func (*Transport) GetDriverOk

func (o *Transport) GetDriverOk() (*string, bool)

GetDriverOk returns a tuple with the Driver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Transport) GetLicensePlate

func (o *Transport) GetLicensePlate() string

GetLicensePlate returns the LicensePlate field value if set, zero value otherwise.

func (*Transport) GetLicensePlateOk

func (o *Transport) GetLicensePlateOk() (*string, bool)

GetLicensePlateOk returns a tuple with the LicensePlate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Transport) GetRoute

func (o *Transport) GetRoute() string

GetRoute returns the Route field value if set, zero value otherwise.

func (*Transport) GetRouteOk

func (o *Transport) GetRouteOk() (*string, bool)

GetRouteOk returns a tuple with the Route field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Transport) GetVehicleId

func (o *Transport) GetVehicleId() string

GetVehicleId returns the VehicleId field value if set, zero value otherwise.

func (*Transport) GetVehicleIdOk

func (o *Transport) GetVehicleIdOk() (*string, bool)

GetVehicleIdOk returns a tuple with the VehicleId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Transport) GetZone added in v0.0.7

func (o *Transport) GetZone() string

GetZone returns the Zone field value if set, zero value otherwise.

func (*Transport) GetZoneOk added in v0.0.7

func (o *Transport) GetZoneOk() (*string, bool)

GetZoneOk returns a tuple with the Zone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Transport) HasDeliveryNoteNumber added in v0.0.7

func (o *Transport) HasDeliveryNoteNumber() bool

HasDeliveryNoteNumber returns a boolean if a field has been set.

func (*Transport) HasDestinationCountry added in v0.0.7

func (o *Transport) HasDestinationCountry() bool

HasDestinationCountry returns a boolean if a field has been set.

func (*Transport) HasDocument added in v0.0.7

func (o *Transport) HasDocument() bool

HasDocument returns a boolean if a field has been set.

func (*Transport) HasDriver

func (o *Transport) HasDriver() bool

HasDriver returns a boolean if a field has been set.

func (*Transport) HasLicensePlate

func (o *Transport) HasLicensePlate() bool

HasLicensePlate returns a boolean if a field has been set.

func (*Transport) HasRoute

func (o *Transport) HasRoute() bool

HasRoute returns a boolean if a field has been set.

func (*Transport) HasVehicleId

func (o *Transport) HasVehicleId() bool

HasVehicleId returns a boolean if a field has been set.

func (*Transport) HasZone added in v0.0.7

func (o *Transport) HasZone() bool

HasZone returns a boolean if a field has been set.

func (Transport) MarshalJSON

func (o Transport) MarshalJSON() ([]byte, error)

func (*Transport) SetDeliveryNoteNumber added in v0.0.7

func (o *Transport) SetDeliveryNoteNumber(v string)

SetDeliveryNoteNumber gets a reference to the given string and assigns it to the DeliveryNoteNumber field.

func (*Transport) SetDestinationCountry added in v0.0.7

func (o *Transport) SetDestinationCountry(v string)

SetDestinationCountry gets a reference to the given string and assigns it to the DestinationCountry field.

func (*Transport) SetDocument added in v0.0.7

func (o *Transport) SetDocument(v string)

SetDocument gets a reference to the given string and assigns it to the Document field.

func (*Transport) SetDriver

func (o *Transport) SetDriver(v string)

SetDriver gets a reference to the given string and assigns it to the Driver field.

func (*Transport) SetLicensePlate

func (o *Transport) SetLicensePlate(v string)

SetLicensePlate gets a reference to the given string and assigns it to the LicensePlate field.

func (*Transport) SetRoute

func (o *Transport) SetRoute(v string)

SetRoute gets a reference to the given string and assigns it to the Route field.

func (*Transport) SetVehicleId

func (o *Transport) SetVehicleId(v string)

SetVehicleId gets a reference to the given string and assigns it to the VehicleId field.

func (*Transport) SetZone added in v0.0.7

func (o *Transport) SetZone(v string)

SetZone gets a reference to the given string and assigns it to the Zone field.

func (Transport) ToMap

func (o Transport) ToMap() (map[string]interface{}, error)

type UpdateTaxSequenceRequest added in v0.0.7

type UpdateTaxSequenceRequest struct {
	Type        *InvoiceTypeSequence `json:"type,omitempty"`
	From        *int32               `json:"from,omitempty"`
	To          *int32               `json:"to,omitempty"`
	Quantity    *int32               `json:"quantity,omitempty"`
	Expiration  *string              `json:"expiration,omitempty"`
	Environment *Environment         `json:"environment,omitempty"`
}

UpdateTaxSequenceRequest struct for UpdateTaxSequenceRequest

func NewUpdateTaxSequenceRequest added in v0.0.7

func NewUpdateTaxSequenceRequest() *UpdateTaxSequenceRequest

NewUpdateTaxSequenceRequest instantiates a new UpdateTaxSequenceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTaxSequenceRequestWithDefaults added in v0.0.7

func NewUpdateTaxSequenceRequestWithDefaults() *UpdateTaxSequenceRequest

NewUpdateTaxSequenceRequestWithDefaults instantiates a new UpdateTaxSequenceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTaxSequenceRequest) GetEnvironment added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetEnvironment() Environment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*UpdateTaxSequenceRequest) GetEnvironmentOk added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetEnvironmentOk() (*Environment, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaxSequenceRequest) GetExpiration added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*UpdateTaxSequenceRequest) GetExpirationOk added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetExpirationOk() (*string, bool)

GetExpirationOk returns a tuple with the Expiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaxSequenceRequest) GetFrom added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetFrom() int32

GetFrom returns the From field value if set, zero value otherwise.

func (*UpdateTaxSequenceRequest) GetFromOk added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetFromOk() (*int32, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaxSequenceRequest) GetQuantity added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetQuantity() int32

GetQuantity returns the Quantity field value if set, zero value otherwise.

func (*UpdateTaxSequenceRequest) GetQuantityOk added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetQuantityOk() (*int32, bool)

GetQuantityOk returns a tuple with the Quantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaxSequenceRequest) GetTo added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetTo() int32

GetTo returns the To field value if set, zero value otherwise.

func (*UpdateTaxSequenceRequest) GetToOk added in v0.0.7

func (o *UpdateTaxSequenceRequest) GetToOk() (*int32, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaxSequenceRequest) GetType added in v0.0.7

GetType returns the Type field value if set, zero value otherwise.

func (*UpdateTaxSequenceRequest) GetTypeOk added in v0.0.7

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaxSequenceRequest) HasEnvironment added in v0.0.7

func (o *UpdateTaxSequenceRequest) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*UpdateTaxSequenceRequest) HasExpiration added in v0.0.7

func (o *UpdateTaxSequenceRequest) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*UpdateTaxSequenceRequest) HasFrom added in v0.0.7

func (o *UpdateTaxSequenceRequest) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*UpdateTaxSequenceRequest) HasQuantity added in v0.0.7

func (o *UpdateTaxSequenceRequest) HasQuantity() bool

HasQuantity returns a boolean if a field has been set.

func (*UpdateTaxSequenceRequest) HasTo added in v0.0.7

func (o *UpdateTaxSequenceRequest) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*UpdateTaxSequenceRequest) HasType added in v0.0.7

func (o *UpdateTaxSequenceRequest) HasType() bool

HasType returns a boolean if a field has been set.

func (UpdateTaxSequenceRequest) MarshalJSON added in v0.0.7

func (o UpdateTaxSequenceRequest) MarshalJSON() ([]byte, error)

func (*UpdateTaxSequenceRequest) SetEnvironment added in v0.0.7

func (o *UpdateTaxSequenceRequest) SetEnvironment(v Environment)

SetEnvironment gets a reference to the given Environment and assigns it to the Environment field.

func (*UpdateTaxSequenceRequest) SetExpiration added in v0.0.7

func (o *UpdateTaxSequenceRequest) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*UpdateTaxSequenceRequest) SetFrom added in v0.0.7

func (o *UpdateTaxSequenceRequest) SetFrom(v int32)

SetFrom gets a reference to the given int32 and assigns it to the From field.

func (*UpdateTaxSequenceRequest) SetQuantity added in v0.0.7

func (o *UpdateTaxSequenceRequest) SetQuantity(v int32)

SetQuantity gets a reference to the given int32 and assigns it to the Quantity field.

func (*UpdateTaxSequenceRequest) SetTo added in v0.0.7

func (o *UpdateTaxSequenceRequest) SetTo(v int32)

SetTo gets a reference to the given int32 and assigns it to the To field.

func (*UpdateTaxSequenceRequest) SetType added in v0.0.7

SetType gets a reference to the given InvoiceTypeSequence and assigns it to the Type field.

func (UpdateTaxSequenceRequest) ToMap added in v0.0.7

func (o UpdateTaxSequenceRequest) ToMap() (map[string]interface{}, error)

type UploadCertificate201Response

type UploadCertificate201Response struct {
	Message        *string    `json:"message,omitempty"`
	Representative *string    `json:"representative,omitempty"`
	ExpirationDate *time.Time `json:"expirationDate,omitempty"`
}

UploadCertificate201Response struct for UploadCertificate201Response

func NewUploadCertificate201Response

func NewUploadCertificate201Response() *UploadCertificate201Response

NewUploadCertificate201Response instantiates a new UploadCertificate201Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadCertificate201ResponseWithDefaults

func NewUploadCertificate201ResponseWithDefaults() *UploadCertificate201Response

NewUploadCertificate201ResponseWithDefaults instantiates a new UploadCertificate201Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadCertificate201Response) GetExpirationDate

func (o *UploadCertificate201Response) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*UploadCertificate201Response) GetExpirationDateOk

func (o *UploadCertificate201Response) GetExpirationDateOk() (*time.Time, bool)

GetExpirationDateOk returns a tuple with the ExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadCertificate201Response) GetMessage

func (o *UploadCertificate201Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*UploadCertificate201Response) GetMessageOk

func (o *UploadCertificate201Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadCertificate201Response) GetRepresentative

func (o *UploadCertificate201Response) GetRepresentative() string

GetRepresentative returns the Representative field value if set, zero value otherwise.

func (*UploadCertificate201Response) GetRepresentativeOk

func (o *UploadCertificate201Response) GetRepresentativeOk() (*string, bool)

GetRepresentativeOk returns a tuple with the Representative field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadCertificate201Response) HasExpirationDate

func (o *UploadCertificate201Response) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*UploadCertificate201Response) HasMessage

func (o *UploadCertificate201Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*UploadCertificate201Response) HasRepresentative

func (o *UploadCertificate201Response) HasRepresentative() bool

HasRepresentative returns a boolean if a field has been set.

func (UploadCertificate201Response) MarshalJSON

func (o UploadCertificate201Response) MarshalJSON() ([]byte, error)

func (*UploadCertificate201Response) SetExpirationDate

func (o *UploadCertificate201Response) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*UploadCertificate201Response) SetMessage

func (o *UploadCertificate201Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UploadCertificate201Response) SetRepresentative

func (o *UploadCertificate201Response) SetRepresentative(v string)

SetRepresentative gets a reference to the given string and assigns it to the Representative field.

func (UploadCertificate201Response) ToMap

func (o UploadCertificate201Response) ToMap() (map[string]interface{}, error)

type UploadCertificateResponse

type UploadCertificateResponse struct {
	Message        *string    `json:"message,omitempty"`
	Representative *string    `json:"representative,omitempty"`
	ExpirationDate *time.Time `json:"expirationDate,omitempty"`
}

UploadCertificateResponse struct for UploadCertificateResponse

func NewUploadCertificateResponse

func NewUploadCertificateResponse() *UploadCertificateResponse

NewUploadCertificateResponse instantiates a new UploadCertificateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadCertificateResponseWithDefaults

func NewUploadCertificateResponseWithDefaults() *UploadCertificateResponse

NewUploadCertificateResponseWithDefaults instantiates a new UploadCertificateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadCertificateResponse) GetExpirationDate

func (o *UploadCertificateResponse) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*UploadCertificateResponse) GetExpirationDateOk

func (o *UploadCertificateResponse) GetExpirationDateOk() (*time.Time, bool)

GetExpirationDateOk returns a tuple with the ExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadCertificateResponse) GetMessage

func (o *UploadCertificateResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*UploadCertificateResponse) GetMessageOk

func (o *UploadCertificateResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadCertificateResponse) GetRepresentative

func (o *UploadCertificateResponse) GetRepresentative() string

GetRepresentative returns the Representative field value if set, zero value otherwise.

func (*UploadCertificateResponse) GetRepresentativeOk

func (o *UploadCertificateResponse) GetRepresentativeOk() (*string, bool)

GetRepresentativeOk returns a tuple with the Representative field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadCertificateResponse) HasExpirationDate

func (o *UploadCertificateResponse) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*UploadCertificateResponse) HasMessage

func (o *UploadCertificateResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*UploadCertificateResponse) HasRepresentative

func (o *UploadCertificateResponse) HasRepresentative() bool

HasRepresentative returns a boolean if a field has been set.

func (UploadCertificateResponse) MarshalJSON

func (o UploadCertificateResponse) MarshalJSON() ([]byte, error)

func (*UploadCertificateResponse) SetExpirationDate

func (o *UploadCertificateResponse) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*UploadCertificateResponse) SetMessage

func (o *UploadCertificateResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UploadCertificateResponse) SetRepresentative

func (o *UploadCertificateResponse) SetRepresentative(v string)

SetRepresentative gets a reference to the given string and assigns it to the Representative field.

func (UploadCertificateResponse) ToMap

func (o UploadCertificateResponse) ToMap() (map[string]interface{}, error)

type VoidTaxSequence200Response added in v0.0.7

type VoidTaxSequence200Response struct {
	Success *bool                           `json:"success,omitempty"`
	Data    *VoidTaxSequence200ResponseData `json:"data,omitempty"`
}

VoidTaxSequence200Response struct for VoidTaxSequence200Response

func NewVoidTaxSequence200Response added in v0.0.7

func NewVoidTaxSequence200Response() *VoidTaxSequence200Response

NewVoidTaxSequence200Response instantiates a new VoidTaxSequence200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVoidTaxSequence200ResponseWithDefaults added in v0.0.7

func NewVoidTaxSequence200ResponseWithDefaults() *VoidTaxSequence200Response

NewVoidTaxSequence200ResponseWithDefaults instantiates a new VoidTaxSequence200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VoidTaxSequence200Response) GetData added in v0.0.7

GetData returns the Data field value if set, zero value otherwise.

func (*VoidTaxSequence200Response) GetDataOk added in v0.0.7

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 (*VoidTaxSequence200Response) GetSuccess added in v0.0.7

func (o *VoidTaxSequence200Response) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*VoidTaxSequence200Response) GetSuccessOk added in v0.0.7

func (o *VoidTaxSequence200Response) 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 (*VoidTaxSequence200Response) HasData added in v0.0.7

func (o *VoidTaxSequence200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*VoidTaxSequence200Response) HasSuccess added in v0.0.7

func (o *VoidTaxSequence200Response) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (VoidTaxSequence200Response) MarshalJSON added in v0.0.7

func (o VoidTaxSequence200Response) MarshalJSON() ([]byte, error)

func (*VoidTaxSequence200Response) SetData added in v0.0.7

SetData gets a reference to the given VoidTaxSequence200ResponseData and assigns it to the Data field.

func (*VoidTaxSequence200Response) SetSuccess added in v0.0.7

func (o *VoidTaxSequence200Response) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (VoidTaxSequence200Response) ToMap added in v0.0.7

func (o VoidTaxSequence200Response) ToMap() (map[string]interface{}, error)

type VoidTaxSequence200ResponseData added in v0.0.7

type VoidTaxSequence200ResponseData struct {
	SequenceId    *string `json:"sequenceId,omitempty"`
	VoidedNumbers *int32  `json:"voidedNumbers,omitempty"`
	Status        *string `json:"status,omitempty"`
}

VoidTaxSequence200ResponseData struct for VoidTaxSequence200ResponseData

func NewVoidTaxSequence200ResponseData added in v0.0.7

func NewVoidTaxSequence200ResponseData() *VoidTaxSequence200ResponseData

NewVoidTaxSequence200ResponseData instantiates a new VoidTaxSequence200ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVoidTaxSequence200ResponseDataWithDefaults added in v0.0.7

func NewVoidTaxSequence200ResponseDataWithDefaults() *VoidTaxSequence200ResponseData

NewVoidTaxSequence200ResponseDataWithDefaults instantiates a new VoidTaxSequence200ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VoidTaxSequence200ResponseData) GetSequenceId added in v0.0.7

func (o *VoidTaxSequence200ResponseData) GetSequenceId() string

GetSequenceId returns the SequenceId field value if set, zero value otherwise.

func (*VoidTaxSequence200ResponseData) GetSequenceIdOk added in v0.0.7

func (o *VoidTaxSequence200ResponseData) GetSequenceIdOk() (*string, bool)

GetSequenceIdOk returns a tuple with the SequenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VoidTaxSequence200ResponseData) GetStatus added in v0.0.7

func (o *VoidTaxSequence200ResponseData) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*VoidTaxSequence200ResponseData) GetStatusOk added in v0.0.7

func (o *VoidTaxSequence200ResponseData) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VoidTaxSequence200ResponseData) GetVoidedNumbers added in v0.0.7

func (o *VoidTaxSequence200ResponseData) GetVoidedNumbers() int32

GetVoidedNumbers returns the VoidedNumbers field value if set, zero value otherwise.

func (*VoidTaxSequence200ResponseData) GetVoidedNumbersOk added in v0.0.7

func (o *VoidTaxSequence200ResponseData) GetVoidedNumbersOk() (*int32, bool)

GetVoidedNumbersOk returns a tuple with the VoidedNumbers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VoidTaxSequence200ResponseData) HasSequenceId added in v0.0.7

func (o *VoidTaxSequence200ResponseData) HasSequenceId() bool

HasSequenceId returns a boolean if a field has been set.

func (*VoidTaxSequence200ResponseData) HasStatus added in v0.0.7

func (o *VoidTaxSequence200ResponseData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*VoidTaxSequence200ResponseData) HasVoidedNumbers added in v0.0.7

func (o *VoidTaxSequence200ResponseData) HasVoidedNumbers() bool

HasVoidedNumbers returns a boolean if a field has been set.

func (VoidTaxSequence200ResponseData) MarshalJSON added in v0.0.7

func (o VoidTaxSequence200ResponseData) MarshalJSON() ([]byte, error)

func (*VoidTaxSequence200ResponseData) SetSequenceId added in v0.0.7

func (o *VoidTaxSequence200ResponseData) SetSequenceId(v string)

SetSequenceId gets a reference to the given string and assigns it to the SequenceId field.

func (*VoidTaxSequence200ResponseData) SetStatus added in v0.0.7

func (o *VoidTaxSequence200ResponseData) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*VoidTaxSequence200ResponseData) SetVoidedNumbers added in v0.0.7

func (o *VoidTaxSequence200ResponseData) SetVoidedNumbers(v int32)

SetVoidedNumbers gets a reference to the given int32 and assigns it to the VoidedNumbers field.

func (VoidTaxSequence200ResponseData) ToMap added in v0.0.7

func (o VoidTaxSequence200ResponseData) ToMap() (map[string]interface{}, error)

type VoidTaxSequenceRequest added in v0.0.7

type VoidTaxSequenceRequest struct {
	SequenceId  string `json:"sequenceId"`
	StartNumber string `json:"startNumber"`
	EndNumber   string `json:"endNumber"`
	Reason      string `json:"reason"`
}

VoidTaxSequenceRequest struct for VoidTaxSequenceRequest

func NewVoidTaxSequenceRequest added in v0.0.7

func NewVoidTaxSequenceRequest(sequenceId string, startNumber string, endNumber string, reason string) *VoidTaxSequenceRequest

NewVoidTaxSequenceRequest instantiates a new VoidTaxSequenceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVoidTaxSequenceRequestWithDefaults added in v0.0.7

func NewVoidTaxSequenceRequestWithDefaults() *VoidTaxSequenceRequest

NewVoidTaxSequenceRequestWithDefaults instantiates a new VoidTaxSequenceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VoidTaxSequenceRequest) GetEndNumber added in v0.0.7

func (o *VoidTaxSequenceRequest) GetEndNumber() string

GetEndNumber returns the EndNumber field value

func (*VoidTaxSequenceRequest) GetEndNumberOk added in v0.0.7

func (o *VoidTaxSequenceRequest) GetEndNumberOk() (*string, bool)

GetEndNumberOk returns a tuple with the EndNumber field value and a boolean to check if the value has been set.

func (*VoidTaxSequenceRequest) GetReason added in v0.0.7

func (o *VoidTaxSequenceRequest) GetReason() string

GetReason returns the Reason field value

func (*VoidTaxSequenceRequest) GetReasonOk added in v0.0.7

func (o *VoidTaxSequenceRequest) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set.

func (*VoidTaxSequenceRequest) GetSequenceId added in v0.0.7

func (o *VoidTaxSequenceRequest) GetSequenceId() string

GetSequenceId returns the SequenceId field value

func (*VoidTaxSequenceRequest) GetSequenceIdOk added in v0.0.7

func (o *VoidTaxSequenceRequest) GetSequenceIdOk() (*string, bool)

GetSequenceIdOk returns a tuple with the SequenceId field value and a boolean to check if the value has been set.

func (*VoidTaxSequenceRequest) GetStartNumber added in v0.0.7

func (o *VoidTaxSequenceRequest) GetStartNumber() string

GetStartNumber returns the StartNumber field value

func (*VoidTaxSequenceRequest) GetStartNumberOk added in v0.0.7

func (o *VoidTaxSequenceRequest) GetStartNumberOk() (*string, bool)

GetStartNumberOk returns a tuple with the StartNumber field value and a boolean to check if the value has been set.

func (VoidTaxSequenceRequest) MarshalJSON added in v0.0.7

func (o VoidTaxSequenceRequest) MarshalJSON() ([]byte, error)

func (*VoidTaxSequenceRequest) SetEndNumber added in v0.0.7

func (o *VoidTaxSequenceRequest) SetEndNumber(v string)

SetEndNumber sets field value

func (*VoidTaxSequenceRequest) SetReason added in v0.0.7

func (o *VoidTaxSequenceRequest) SetReason(v string)

SetReason sets field value

func (*VoidTaxSequenceRequest) SetSequenceId added in v0.0.7

func (o *VoidTaxSequenceRequest) SetSequenceId(v string)

SetSequenceId sets field value

func (*VoidTaxSequenceRequest) SetStartNumber added in v0.0.7

func (o *VoidTaxSequenceRequest) SetStartNumber(v string)

SetStartNumber sets field value

func (VoidTaxSequenceRequest) ToMap added in v0.0.7

func (o VoidTaxSequenceRequest) ToMap() (map[string]interface{}, error)

func (*VoidTaxSequenceRequest) UnmarshalJSON added in v0.0.7

func (o *VoidTaxSequenceRequest) UnmarshalJSON(data []byte) (err error)

type WebhookConfigDetail added in v0.0.7

type WebhookConfigDetail struct {
	Id              *string            `json:"id,omitempty"`
	Url             *string            `json:"url,omitempty"`
	Description     *string            `json:"description,omitempty"`
	EventTypes      []WebhookEventType `json:"eventTypes,omitempty"`
	IsActive        *bool              `json:"isActive,omitempty"`
	CreatedAt       *time.Time         `json:"createdAt,omitempty"`
	UpdatedAt       *time.Time         `json:"updatedAt,omitempty"`
	LastTriggeredAt NullableTime       `json:"lastTriggeredAt,omitempty"`
	Deliveries      *int32             `json:"deliveries,omitempty"`
}

WebhookConfigDetail struct for WebhookConfigDetail

func NewWebhookConfigDetail added in v0.0.7

func NewWebhookConfigDetail() *WebhookConfigDetail

NewWebhookConfigDetail instantiates a new WebhookConfigDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebhookConfigDetailWithDefaults added in v0.0.7

func NewWebhookConfigDetailWithDefaults() *WebhookConfigDetail

NewWebhookConfigDetailWithDefaults instantiates a new WebhookConfigDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebhookConfigDetail) GetCreatedAt added in v0.0.7

func (o *WebhookConfigDetail) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*WebhookConfigDetail) GetCreatedAtOk added in v0.0.7

func (o *WebhookConfigDetail) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigDetail) GetDeliveries added in v0.0.7

func (o *WebhookConfigDetail) GetDeliveries() int32

GetDeliveries returns the Deliveries field value if set, zero value otherwise.

func (*WebhookConfigDetail) GetDeliveriesOk added in v0.0.7

func (o *WebhookConfigDetail) GetDeliveriesOk() (*int32, bool)

GetDeliveriesOk returns a tuple with the Deliveries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigDetail) GetDescription added in v0.0.7

func (o *WebhookConfigDetail) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WebhookConfigDetail) GetDescriptionOk added in v0.0.7

func (o *WebhookConfigDetail) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigDetail) GetEventTypes added in v0.0.7

func (o *WebhookConfigDetail) GetEventTypes() []WebhookEventType

GetEventTypes returns the EventTypes field value if set, zero value otherwise.

func (*WebhookConfigDetail) GetEventTypesOk added in v0.0.7

func (o *WebhookConfigDetail) GetEventTypesOk() ([]WebhookEventType, bool)

GetEventTypesOk returns a tuple with the EventTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigDetail) GetId added in v0.0.7

func (o *WebhookConfigDetail) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WebhookConfigDetail) GetIdOk added in v0.0.7

func (o *WebhookConfigDetail) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigDetail) GetIsActive added in v0.0.7

func (o *WebhookConfigDetail) GetIsActive() bool

GetIsActive returns the IsActive field value if set, zero value otherwise.

func (*WebhookConfigDetail) GetIsActiveOk added in v0.0.7

func (o *WebhookConfigDetail) GetIsActiveOk() (*bool, bool)

GetIsActiveOk returns a tuple with the IsActive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigDetail) GetLastTriggeredAt added in v0.0.7

func (o *WebhookConfigDetail) GetLastTriggeredAt() time.Time

GetLastTriggeredAt returns the LastTriggeredAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebhookConfigDetail) GetLastTriggeredAtOk added in v0.0.7

func (o *WebhookConfigDetail) GetLastTriggeredAtOk() (*time.Time, bool)

GetLastTriggeredAtOk returns a tuple with the LastTriggeredAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebhookConfigDetail) GetUpdatedAt added in v0.0.7

func (o *WebhookConfigDetail) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WebhookConfigDetail) GetUpdatedAtOk added in v0.0.7

func (o *WebhookConfigDetail) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigDetail) GetUrl added in v0.0.7

func (o *WebhookConfigDetail) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*WebhookConfigDetail) GetUrlOk added in v0.0.7

func (o *WebhookConfigDetail) 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.

func (*WebhookConfigDetail) HasCreatedAt added in v0.0.7

func (o *WebhookConfigDetail) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*WebhookConfigDetail) HasDeliveries added in v0.0.7

func (o *WebhookConfigDetail) HasDeliveries() bool

HasDeliveries returns a boolean if a field has been set.

func (*WebhookConfigDetail) HasDescription added in v0.0.7

func (o *WebhookConfigDetail) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WebhookConfigDetail) HasEventTypes added in v0.0.7

func (o *WebhookConfigDetail) HasEventTypes() bool

HasEventTypes returns a boolean if a field has been set.

func (*WebhookConfigDetail) HasId added in v0.0.7

func (o *WebhookConfigDetail) HasId() bool

HasId returns a boolean if a field has been set.

func (*WebhookConfigDetail) HasIsActive added in v0.0.7

func (o *WebhookConfigDetail) HasIsActive() bool

HasIsActive returns a boolean if a field has been set.

func (*WebhookConfigDetail) HasLastTriggeredAt added in v0.0.7

func (o *WebhookConfigDetail) HasLastTriggeredAt() bool

HasLastTriggeredAt returns a boolean if a field has been set.

func (*WebhookConfigDetail) HasUpdatedAt added in v0.0.7

func (o *WebhookConfigDetail) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WebhookConfigDetail) HasUrl added in v0.0.7

func (o *WebhookConfigDetail) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (WebhookConfigDetail) MarshalJSON added in v0.0.7

func (o WebhookConfigDetail) MarshalJSON() ([]byte, error)

func (*WebhookConfigDetail) SetCreatedAt added in v0.0.7

func (o *WebhookConfigDetail) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*WebhookConfigDetail) SetDeliveries added in v0.0.7

func (o *WebhookConfigDetail) SetDeliveries(v int32)

SetDeliveries gets a reference to the given int32 and assigns it to the Deliveries field.

func (*WebhookConfigDetail) SetDescription added in v0.0.7

func (o *WebhookConfigDetail) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WebhookConfigDetail) SetEventTypes added in v0.0.7

func (o *WebhookConfigDetail) SetEventTypes(v []WebhookEventType)

SetEventTypes gets a reference to the given []WebhookEventType and assigns it to the EventTypes field.

func (*WebhookConfigDetail) SetId added in v0.0.7

func (o *WebhookConfigDetail) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WebhookConfigDetail) SetIsActive added in v0.0.7

func (o *WebhookConfigDetail) SetIsActive(v bool)

SetIsActive gets a reference to the given bool and assigns it to the IsActive field.

func (*WebhookConfigDetail) SetLastTriggeredAt added in v0.0.7

func (o *WebhookConfigDetail) SetLastTriggeredAt(v time.Time)

SetLastTriggeredAt gets a reference to the given NullableTime and assigns it to the LastTriggeredAt field.

func (*WebhookConfigDetail) SetLastTriggeredAtNil added in v0.0.7

func (o *WebhookConfigDetail) SetLastTriggeredAtNil()

SetLastTriggeredAtNil sets the value for LastTriggeredAt to be an explicit nil

func (*WebhookConfigDetail) SetUpdatedAt added in v0.0.7

func (o *WebhookConfigDetail) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*WebhookConfigDetail) SetUrl added in v0.0.7

func (o *WebhookConfigDetail) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (WebhookConfigDetail) ToMap added in v0.0.7

func (o WebhookConfigDetail) ToMap() (map[string]interface{}, error)

func (*WebhookConfigDetail) UnsetLastTriggeredAt added in v0.0.7

func (o *WebhookConfigDetail) UnsetLastTriggeredAt()

UnsetLastTriggeredAt ensures that no value is present for LastTriggeredAt, not even an explicit nil

type WebhookConfigResponse

type WebhookConfigResponse struct {
	Id              *string            `json:"id,omitempty"`
	Url             *string            `json:"url,omitempty"`
	Description     *string            `json:"description,omitempty"`
	EventTypes      []WebhookEventType `json:"eventTypes,omitempty"`
	IsActive        *bool              `json:"isActive,omitempty"`
	CreatedAt       *time.Time         `json:"createdAt,omitempty"`
	UpdatedAt       *time.Time         `json:"updatedAt,omitempty"`
	LastTriggeredAt NullableTime       `json:"lastTriggeredAt,omitempty"`
}

WebhookConfigResponse struct for WebhookConfigResponse

func NewWebhookConfigResponse

func NewWebhookConfigResponse() *WebhookConfigResponse

NewWebhookConfigResponse instantiates a new WebhookConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebhookConfigResponseWithDefaults

func NewWebhookConfigResponseWithDefaults() *WebhookConfigResponse

NewWebhookConfigResponseWithDefaults instantiates a new WebhookConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebhookConfigResponse) GetCreatedAt

func (o *WebhookConfigResponse) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*WebhookConfigResponse) GetCreatedAtOk

func (o *WebhookConfigResponse) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigResponse) GetDescription added in v0.0.7

func (o *WebhookConfigResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WebhookConfigResponse) GetDescriptionOk added in v0.0.7

func (o *WebhookConfigResponse) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigResponse) GetEventTypes

func (o *WebhookConfigResponse) GetEventTypes() []WebhookEventType

GetEventTypes returns the EventTypes field value if set, zero value otherwise.

func (*WebhookConfigResponse) GetEventTypesOk

func (o *WebhookConfigResponse) GetEventTypesOk() ([]WebhookEventType, bool)

GetEventTypesOk returns a tuple with the EventTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigResponse) GetId

func (o *WebhookConfigResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WebhookConfigResponse) GetIdOk

func (o *WebhookConfigResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigResponse) GetIsActive

func (o *WebhookConfigResponse) GetIsActive() bool

GetIsActive returns the IsActive field value if set, zero value otherwise.

func (*WebhookConfigResponse) GetIsActiveOk

func (o *WebhookConfigResponse) GetIsActiveOk() (*bool, bool)

GetIsActiveOk returns a tuple with the IsActive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigResponse) GetLastTriggeredAt

func (o *WebhookConfigResponse) GetLastTriggeredAt() time.Time

GetLastTriggeredAt returns the LastTriggeredAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WebhookConfigResponse) GetLastTriggeredAtOk

func (o *WebhookConfigResponse) GetLastTriggeredAtOk() (*time.Time, bool)

GetLastTriggeredAtOk returns a tuple with the LastTriggeredAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WebhookConfigResponse) GetUpdatedAt added in v0.0.7

func (o *WebhookConfigResponse) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*WebhookConfigResponse) GetUpdatedAtOk added in v0.0.7

func (o *WebhookConfigResponse) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookConfigResponse) GetUrl

func (o *WebhookConfigResponse) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*WebhookConfigResponse) GetUrlOk

func (o *WebhookConfigResponse) 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.

func (*WebhookConfigResponse) HasCreatedAt

func (o *WebhookConfigResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*WebhookConfigResponse) HasDescription added in v0.0.7

func (o *WebhookConfigResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WebhookConfigResponse) HasEventTypes

func (o *WebhookConfigResponse) HasEventTypes() bool

HasEventTypes returns a boolean if a field has been set.

func (*WebhookConfigResponse) HasId

func (o *WebhookConfigResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*WebhookConfigResponse) HasIsActive

func (o *WebhookConfigResponse) HasIsActive() bool

HasIsActive returns a boolean if a field has been set.

func (*WebhookConfigResponse) HasLastTriggeredAt

func (o *WebhookConfigResponse) HasLastTriggeredAt() bool

HasLastTriggeredAt returns a boolean if a field has been set.

func (*WebhookConfigResponse) HasUpdatedAt added in v0.0.7

func (o *WebhookConfigResponse) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*WebhookConfigResponse) HasUrl

func (o *WebhookConfigResponse) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (WebhookConfigResponse) MarshalJSON

func (o WebhookConfigResponse) MarshalJSON() ([]byte, error)

func (*WebhookConfigResponse) SetCreatedAt

func (o *WebhookConfigResponse) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*WebhookConfigResponse) SetDescription added in v0.0.7

func (o *WebhookConfigResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WebhookConfigResponse) SetEventTypes

func (o *WebhookConfigResponse) SetEventTypes(v []WebhookEventType)

SetEventTypes gets a reference to the given []WebhookEventType and assigns it to the EventTypes field.

func (*WebhookConfigResponse) SetId

func (o *WebhookConfigResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WebhookConfigResponse) SetIsActive

func (o *WebhookConfigResponse) SetIsActive(v bool)

SetIsActive gets a reference to the given bool and assigns it to the IsActive field.

func (*WebhookConfigResponse) SetLastTriggeredAt

func (o *WebhookConfigResponse) SetLastTriggeredAt(v time.Time)

SetLastTriggeredAt gets a reference to the given NullableTime and assigns it to the LastTriggeredAt field.

func (*WebhookConfigResponse) SetLastTriggeredAtNil

func (o *WebhookConfigResponse) SetLastTriggeredAtNil()

SetLastTriggeredAtNil sets the value for LastTriggeredAt to be an explicit nil

func (*WebhookConfigResponse) SetUpdatedAt added in v0.0.7

func (o *WebhookConfigResponse) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*WebhookConfigResponse) SetUrl

func (o *WebhookConfigResponse) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (WebhookConfigResponse) ToMap

func (o WebhookConfigResponse) ToMap() (map[string]interface{}, error)

func (*WebhookConfigResponse) UnsetLastTriggeredAt

func (o *WebhookConfigResponse) UnsetLastTriggeredAt()

UnsetLastTriggeredAt ensures that no value is present for LastTriggeredAt, not even an explicit nil

type WebhookConfigurationAPIService

type WebhookConfigurationAPIService service

WebhookConfigurationAPIService WebhookConfigurationAPI service

func (*WebhookConfigurationAPIService) GetWebhook added in v0.0.7

GetWebhook Detalle de un webhook

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param rnc RNC de la empresa (9 u 11 dígitos). En Sandbox usar valores con prefijo SBX.
@param webhookId
@return ApiGetWebhookRequest

func (*WebhookConfigurationAPIService) GetWebhookExecute added in v0.0.7

Execute executes the request

@return WebhookConfigDetail

func (*WebhookConfigurationAPIService) GetWebhookStats added in v0.0.7

func (a *WebhookConfigurationAPIService) GetWebhookStats(ctx context.Context, rnc string, webhookId string) ApiGetWebhookStatsRequest

GetWebhookStats Estadísticas de entregas del webhook

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param rnc RNC de la empresa (9 u 11 dígitos). En Sandbox usar valores con prefijo SBX.
@param webhookId
@return ApiGetWebhookStatsRequest

func (*WebhookConfigurationAPIService) GetWebhookStatsExecute added in v0.0.7

Execute executes the request

@return WebhookStats

func (*WebhookConfigurationAPIService) ListWebhooks

ListWebhooks Listar configuraciones de webhooks

Retorna todos los webhooks del RNC. Los webhooks se crean solo desde el Portal.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param rnc RNC de la empresa (9 u 11 dígitos). En Sandbox usar valores con prefijo SBX.
@return ApiListWebhooksRequest

func (*WebhookConfigurationAPIService) ListWebhooksExecute

Execute executes the request

@return []WebhookConfigResponse

type WebhookEventType

type WebhookEventType string

WebhookEventType the model 'WebhookEventType'

const (
	WEBHOOKEVENTTYPE_DOCUMENT_RECEIVED              WebhookEventType = "document.received"
	WEBHOOKEVENTTYPE_DOCUMENT_STATUS_CHANGED        WebhookEventType = "document.status_changed"
	WEBHOOKEVENTTYPE_DOCUMENT_VALIDATION_ERROR      WebhookEventType = "document.validation_error"
	WEBHOOKEVENTTYPE_DOCUMENT_CONTINGENCY_ACTIVATED WebhookEventType = "document.contingency_activated"
	WEBHOOKEVENTTYPE_COMMERCIAL_APPROVAL            WebhookEventType = "commercial.approval"
	WEBHOOKEVENTTYPE_CERTIFICATE_EXPIRING           WebhookEventType = "certificate.expiring"
	WEBHOOKEVENTTYPE_SECURITY_NEW_LOGIN             WebhookEventType = "security.new_login"
	WEBHOOKEVENTTYPE_SECURITY_API_KEY_ROTATED       WebhookEventType = "security.api_key_rotated"
	WEBHOOKEVENTTYPE_PLAN_USAGE_ALERT               WebhookEventType = "plan.usage_alert"
	WEBHOOKEVENTTYPE_PLAN_PAYMENT_FAILED            WebhookEventType = "plan.payment_failed"
	WEBHOOKEVENTTYPE_BILLING_INVOICE_READY          WebhookEventType = "billing.invoice_ready"
	WEBHOOKEVENTTYPE_SEQUENCE_DEPLETED              WebhookEventType = "sequence.depleted"
	WEBHOOKEVENTTYPE_SEQUENCE_VOIDED                WebhookEventType = "sequence.voided"
	WEBHOOKEVENTTYPE_BRANCH_CREATED                 WebhookEventType = "branch.created"
	WEBHOOKEVENTTYPE_BRANCH_STATUS_CHANGED          WebhookEventType = "branch.status_changed"
	WEBHOOKEVENTTYPE_MEMBER_INVITED                 WebhookEventType = "member.invited"
	WEBHOOKEVENTTYPE_MEMBER_JOINED                  WebhookEventType = "member.joined"
	WEBHOOKEVENTTYPE_MEMBER_REMOVED                 WebhookEventType = "member.removed"
	WEBHOOKEVENTTYPE_CERTIFICATION_COMPLETED        WebhookEventType = "certification.completed"
)

List of WebhookEventType

func NewWebhookEventTypeFromValue

func NewWebhookEventTypeFromValue(v string) (*WebhookEventType, error)

NewWebhookEventTypeFromValue returns a pointer to a valid WebhookEventType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (WebhookEventType) IsValid

func (v WebhookEventType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (WebhookEventType) Ptr

Ptr returns reference to WebhookEventType value

func (*WebhookEventType) UnmarshalJSON

func (v *WebhookEventType) UnmarshalJSON(src []byte) error

type WebhookNotificationPayload

type WebhookNotificationPayload struct {
	// ID único de la notificación. Úsalo para deduplicar entregas.
	Id    string           `json:"id"`
	Event WebhookEventType `json:"event"`
	// Fecha y hora del evento en ISO 8601.
	Timestamp time.Time `json:"timestamp"`
	// RNC de la empresa que generó el evento.
	BusinessRnc string                         `json:"businessRnc"`
	Data        WebhookNotificationPayloadData `json:"data"`
}

WebhookNotificationPayload Envelope enviado a tu URL de webhook cuando ocurre un evento. Valida la autenticidad con el header `X-Webhook-Signature: sha256=<hmac>`. Headers adicionales: `X-Webhook-Event`, `X-Webhook-ID`, `X-Webhook-Timestamp`.

func NewWebhookNotificationPayload

func NewWebhookNotificationPayload(id string, event WebhookEventType, timestamp time.Time, businessRnc string, data WebhookNotificationPayloadData) *WebhookNotificationPayload

NewWebhookNotificationPayload instantiates a new WebhookNotificationPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebhookNotificationPayloadWithDefaults

func NewWebhookNotificationPayloadWithDefaults() *WebhookNotificationPayload

NewWebhookNotificationPayloadWithDefaults instantiates a new WebhookNotificationPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebhookNotificationPayload) GetBusinessRnc

func (o *WebhookNotificationPayload) GetBusinessRnc() string

GetBusinessRnc returns the BusinessRnc field value

func (*WebhookNotificationPayload) GetBusinessRncOk

func (o *WebhookNotificationPayload) GetBusinessRncOk() (*string, bool)

GetBusinessRncOk returns a tuple with the BusinessRnc field value and a boolean to check if the value has been set.

func (*WebhookNotificationPayload) GetData

GetData returns the Data field value

func (*WebhookNotificationPayload) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*WebhookNotificationPayload) GetEvent

GetEvent returns the Event field value

func (*WebhookNotificationPayload) GetEventOk

func (o *WebhookNotificationPayload) GetEventOk() (*WebhookEventType, bool)

GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.

func (*WebhookNotificationPayload) GetId

GetId returns the Id field value

func (*WebhookNotificationPayload) GetIdOk

func (o *WebhookNotificationPayload) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*WebhookNotificationPayload) GetTimestamp

func (o *WebhookNotificationPayload) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*WebhookNotificationPayload) GetTimestampOk

func (o *WebhookNotificationPayload) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (WebhookNotificationPayload) MarshalJSON

func (o WebhookNotificationPayload) MarshalJSON() ([]byte, error)

func (*WebhookNotificationPayload) SetBusinessRnc

func (o *WebhookNotificationPayload) SetBusinessRnc(v string)

SetBusinessRnc sets field value

func (*WebhookNotificationPayload) SetData

SetData sets field value

func (*WebhookNotificationPayload) SetEvent

SetEvent sets field value

func (*WebhookNotificationPayload) SetId

func (o *WebhookNotificationPayload) SetId(v string)

SetId sets field value

func (*WebhookNotificationPayload) SetTimestamp

func (o *WebhookNotificationPayload) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (WebhookNotificationPayload) ToMap

func (o WebhookNotificationPayload) ToMap() (map[string]interface{}, error)

func (*WebhookNotificationPayload) UnmarshalJSON

func (o *WebhookNotificationPayload) UnmarshalJSON(data []byte) (err error)

type WebhookNotificationPayloadData added in v0.0.19

type WebhookNotificationPayloadData struct {
	BillingInvoiceReadyPayload     *BillingInvoiceReadyPayload
	BranchCreatedPayload           *BranchCreatedPayload
	BranchStatusChangedPayload     *BranchStatusChangedPayload
	CertificateExpiringPayload     *CertificateExpiringPayload
	CertificationCompletedPayload  *CertificationCompletedPayload
	CommercialApprovalPayload      *CommercialApprovalPayload
	ContingencyActivatedPayload    *ContingencyActivatedPayload
	DocumentReceivedPayload        *DocumentReceivedPayload
	DocumentStatusChangedPayload   *DocumentStatusChangedPayload
	DocumentValidationErrorPayload *DocumentValidationErrorPayload
	MemberInvitedPayload           *MemberInvitedPayload
	MemberJoinedPayload            *MemberJoinedPayload
	MemberRemovedPayload           *MemberRemovedPayload
	PlanPaymentFailedPayload       *PlanPaymentFailedPayload
	PlanUsageAlertPayload          *PlanUsageAlertPayload
	SecurityApiKeyRotatedPayload   *SecurityApiKeyRotatedPayload
	SecurityNewLoginPayload        *SecurityNewLoginPayload
	SequenceDepletedPayload        *SequenceDepletedPayload
	SequenceVoidedPayload          *SequenceVoidedPayload
}

WebhookNotificationPayloadData - Payload específico del evento. El tipo varía según el campo `event`: - `document.status_changed` → DocumentStatusChangedPayload - `document.received` → DocumentReceivedPayload - `document.validation_error` → DocumentValidationErrorPayload - `document.contingency_activated` → ContingencyActivatedPayload - `commercial.approval` → CommercialApprovalPayload - `certificate.expiring` → CertificateExpiringPayload - `security.new_login` → SecurityNewLoginPayload - `security.api_key_rotated` → SecurityApiKeyRotatedPayload - `plan.usage_alert` → PlanUsageAlertPayload - `plan.payment_failed` → PlanPaymentFailedPayload - `billing.invoice_ready` → BillingInvoiceReadyPayload - `sequence.depleted` → SequenceDepletedPayload - `sequence.voided` → SequenceVoidedPayload - `branch.created` → BranchCreatedPayload - `branch.status_changed` → BranchStatusChangedPayload - `member.invited` → MemberInvitedPayload - `member.joined` → MemberJoinedPayload - `member.removed` → MemberRemovedPayload - `certification.completed` → CertificationCompletedPayload

func BillingInvoiceReadyPayloadAsWebhookNotificationPayloadData added in v0.0.19

func BillingInvoiceReadyPayloadAsWebhookNotificationPayloadData(v *BillingInvoiceReadyPayload) WebhookNotificationPayloadData

BillingInvoiceReadyPayloadAsWebhookNotificationPayloadData is a convenience function that returns BillingInvoiceReadyPayload wrapped in WebhookNotificationPayloadData

func BranchCreatedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func BranchCreatedPayloadAsWebhookNotificationPayloadData(v *BranchCreatedPayload) WebhookNotificationPayloadData

BranchCreatedPayloadAsWebhookNotificationPayloadData is a convenience function that returns BranchCreatedPayload wrapped in WebhookNotificationPayloadData

func BranchStatusChangedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func BranchStatusChangedPayloadAsWebhookNotificationPayloadData(v *BranchStatusChangedPayload) WebhookNotificationPayloadData

BranchStatusChangedPayloadAsWebhookNotificationPayloadData is a convenience function that returns BranchStatusChangedPayload wrapped in WebhookNotificationPayloadData

func CertificateExpiringPayloadAsWebhookNotificationPayloadData added in v0.0.19

func CertificateExpiringPayloadAsWebhookNotificationPayloadData(v *CertificateExpiringPayload) WebhookNotificationPayloadData

CertificateExpiringPayloadAsWebhookNotificationPayloadData is a convenience function that returns CertificateExpiringPayload wrapped in WebhookNotificationPayloadData

func CertificationCompletedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func CertificationCompletedPayloadAsWebhookNotificationPayloadData(v *CertificationCompletedPayload) WebhookNotificationPayloadData

CertificationCompletedPayloadAsWebhookNotificationPayloadData is a convenience function that returns CertificationCompletedPayload wrapped in WebhookNotificationPayloadData

func CommercialApprovalPayloadAsWebhookNotificationPayloadData added in v0.0.19

func CommercialApprovalPayloadAsWebhookNotificationPayloadData(v *CommercialApprovalPayload) WebhookNotificationPayloadData

CommercialApprovalPayloadAsWebhookNotificationPayloadData is a convenience function that returns CommercialApprovalPayload wrapped in WebhookNotificationPayloadData

func ContingencyActivatedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func ContingencyActivatedPayloadAsWebhookNotificationPayloadData(v *ContingencyActivatedPayload) WebhookNotificationPayloadData

ContingencyActivatedPayloadAsWebhookNotificationPayloadData is a convenience function that returns ContingencyActivatedPayload wrapped in WebhookNotificationPayloadData

func DocumentReceivedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func DocumentReceivedPayloadAsWebhookNotificationPayloadData(v *DocumentReceivedPayload) WebhookNotificationPayloadData

DocumentReceivedPayloadAsWebhookNotificationPayloadData is a convenience function that returns DocumentReceivedPayload wrapped in WebhookNotificationPayloadData

func DocumentStatusChangedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func DocumentStatusChangedPayloadAsWebhookNotificationPayloadData(v *DocumentStatusChangedPayload) WebhookNotificationPayloadData

DocumentStatusChangedPayloadAsWebhookNotificationPayloadData is a convenience function that returns DocumentStatusChangedPayload wrapped in WebhookNotificationPayloadData

func DocumentValidationErrorPayloadAsWebhookNotificationPayloadData added in v0.0.19

func DocumentValidationErrorPayloadAsWebhookNotificationPayloadData(v *DocumentValidationErrorPayload) WebhookNotificationPayloadData

DocumentValidationErrorPayloadAsWebhookNotificationPayloadData is a convenience function that returns DocumentValidationErrorPayload wrapped in WebhookNotificationPayloadData

func MemberInvitedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func MemberInvitedPayloadAsWebhookNotificationPayloadData(v *MemberInvitedPayload) WebhookNotificationPayloadData

MemberInvitedPayloadAsWebhookNotificationPayloadData is a convenience function that returns MemberInvitedPayload wrapped in WebhookNotificationPayloadData

func MemberJoinedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func MemberJoinedPayloadAsWebhookNotificationPayloadData(v *MemberJoinedPayload) WebhookNotificationPayloadData

MemberJoinedPayloadAsWebhookNotificationPayloadData is a convenience function that returns MemberJoinedPayload wrapped in WebhookNotificationPayloadData

func MemberRemovedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func MemberRemovedPayloadAsWebhookNotificationPayloadData(v *MemberRemovedPayload) WebhookNotificationPayloadData

MemberRemovedPayloadAsWebhookNotificationPayloadData is a convenience function that returns MemberRemovedPayload wrapped in WebhookNotificationPayloadData

func PlanPaymentFailedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func PlanPaymentFailedPayloadAsWebhookNotificationPayloadData(v *PlanPaymentFailedPayload) WebhookNotificationPayloadData

PlanPaymentFailedPayloadAsWebhookNotificationPayloadData is a convenience function that returns PlanPaymentFailedPayload wrapped in WebhookNotificationPayloadData

func PlanUsageAlertPayloadAsWebhookNotificationPayloadData added in v0.0.19

func PlanUsageAlertPayloadAsWebhookNotificationPayloadData(v *PlanUsageAlertPayload) WebhookNotificationPayloadData

PlanUsageAlertPayloadAsWebhookNotificationPayloadData is a convenience function that returns PlanUsageAlertPayload wrapped in WebhookNotificationPayloadData

func SecurityApiKeyRotatedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func SecurityApiKeyRotatedPayloadAsWebhookNotificationPayloadData(v *SecurityApiKeyRotatedPayload) WebhookNotificationPayloadData

SecurityApiKeyRotatedPayloadAsWebhookNotificationPayloadData is a convenience function that returns SecurityApiKeyRotatedPayload wrapped in WebhookNotificationPayloadData

func SecurityNewLoginPayloadAsWebhookNotificationPayloadData added in v0.0.19

func SecurityNewLoginPayloadAsWebhookNotificationPayloadData(v *SecurityNewLoginPayload) WebhookNotificationPayloadData

SecurityNewLoginPayloadAsWebhookNotificationPayloadData is a convenience function that returns SecurityNewLoginPayload wrapped in WebhookNotificationPayloadData

func SequenceDepletedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func SequenceDepletedPayloadAsWebhookNotificationPayloadData(v *SequenceDepletedPayload) WebhookNotificationPayloadData

SequenceDepletedPayloadAsWebhookNotificationPayloadData is a convenience function that returns SequenceDepletedPayload wrapped in WebhookNotificationPayloadData

func SequenceVoidedPayloadAsWebhookNotificationPayloadData added in v0.0.19

func SequenceVoidedPayloadAsWebhookNotificationPayloadData(v *SequenceVoidedPayload) WebhookNotificationPayloadData

SequenceVoidedPayloadAsWebhookNotificationPayloadData is a convenience function that returns SequenceVoidedPayload wrapped in WebhookNotificationPayloadData

func (*WebhookNotificationPayloadData) GetActualInstance added in v0.0.19

func (obj *WebhookNotificationPayloadData) GetActualInstance() interface{}

Get the actual instance

func (WebhookNotificationPayloadData) GetActualInstanceValue added in v0.0.19

func (obj WebhookNotificationPayloadData) GetActualInstanceValue() interface{}

Get the actual instance value

func (WebhookNotificationPayloadData) MarshalJSON added in v0.0.19

func (src WebhookNotificationPayloadData) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WebhookNotificationPayloadData) UnmarshalJSON added in v0.0.19

func (dst *WebhookNotificationPayloadData) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type WebhookStats added in v0.0.7

type WebhookStats struct {
	WebhookId *string            `json:"webhookId,omitempty"`
	Period    *string            `json:"period,omitempty"`
	Stats     *WebhookStatsStats `json:"stats,omitempty"`
}

WebhookStats struct for WebhookStats

func NewWebhookStats added in v0.0.7

func NewWebhookStats() *WebhookStats

NewWebhookStats instantiates a new WebhookStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebhookStatsWithDefaults added in v0.0.7

func NewWebhookStatsWithDefaults() *WebhookStats

NewWebhookStatsWithDefaults instantiates a new WebhookStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebhookStats) GetPeriod added in v0.0.7

func (o *WebhookStats) GetPeriod() string

GetPeriod returns the Period field value if set, zero value otherwise.

func (*WebhookStats) GetPeriodOk added in v0.0.7

func (o *WebhookStats) GetPeriodOk() (*string, bool)

GetPeriodOk returns a tuple with the Period field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookStats) GetStats added in v0.0.7

func (o *WebhookStats) GetStats() WebhookStatsStats

GetStats returns the Stats field value if set, zero value otherwise.

func (*WebhookStats) GetStatsOk added in v0.0.7

func (o *WebhookStats) GetStatsOk() (*WebhookStatsStats, bool)

GetStatsOk returns a tuple with the Stats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookStats) GetWebhookId added in v0.0.7

func (o *WebhookStats) GetWebhookId() string

GetWebhookId returns the WebhookId field value if set, zero value otherwise.

func (*WebhookStats) GetWebhookIdOk added in v0.0.7

func (o *WebhookStats) GetWebhookIdOk() (*string, 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 (*WebhookStats) HasPeriod added in v0.0.7

func (o *WebhookStats) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*WebhookStats) HasStats added in v0.0.7

func (o *WebhookStats) HasStats() bool

HasStats returns a boolean if a field has been set.

func (*WebhookStats) HasWebhookId added in v0.0.7

func (o *WebhookStats) HasWebhookId() bool

HasWebhookId returns a boolean if a field has been set.

func (WebhookStats) MarshalJSON added in v0.0.7

func (o WebhookStats) MarshalJSON() ([]byte, error)

func (*WebhookStats) SetPeriod added in v0.0.7

func (o *WebhookStats) SetPeriod(v string)

SetPeriod gets a reference to the given string and assigns it to the Period field.

func (*WebhookStats) SetStats added in v0.0.7

func (o *WebhookStats) SetStats(v WebhookStatsStats)

SetStats gets a reference to the given WebhookStatsStats and assigns it to the Stats field.

func (*WebhookStats) SetWebhookId added in v0.0.7

func (o *WebhookStats) SetWebhookId(v string)

SetWebhookId gets a reference to the given string and assigns it to the WebhookId field.

func (WebhookStats) ToMap added in v0.0.7

func (o WebhookStats) ToMap() (map[string]interface{}, error)

type WebhookStatsStats added in v0.0.7

type WebhookStatsStats struct {
	TotalAttempts       *int32     `json:"totalAttempts,omitempty"`
	Successful          *int32     `json:"successful,omitempty"`
	Failed              *int32     `json:"failed,omitempty"`
	SuccessRate         *string    `json:"successRate,omitempty"`
	AverageResponseTime *int32     `json:"averageResponseTime,omitempty"`
	LastAttempt         *time.Time `json:"lastAttempt,omitempty"`
}

WebhookStatsStats struct for WebhookStatsStats

func NewWebhookStatsStats added in v0.0.7

func NewWebhookStatsStats() *WebhookStatsStats

NewWebhookStatsStats instantiates a new WebhookStatsStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebhookStatsStatsWithDefaults added in v0.0.7

func NewWebhookStatsStatsWithDefaults() *WebhookStatsStats

NewWebhookStatsStatsWithDefaults instantiates a new WebhookStatsStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebhookStatsStats) GetAverageResponseTime added in v0.0.7

func (o *WebhookStatsStats) GetAverageResponseTime() int32

GetAverageResponseTime returns the AverageResponseTime field value if set, zero value otherwise.

func (*WebhookStatsStats) GetAverageResponseTimeOk added in v0.0.7

func (o *WebhookStatsStats) GetAverageResponseTimeOk() (*int32, bool)

GetAverageResponseTimeOk returns a tuple with the AverageResponseTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookStatsStats) GetFailed added in v0.0.7

func (o *WebhookStatsStats) GetFailed() int32

GetFailed returns the Failed field value if set, zero value otherwise.

func (*WebhookStatsStats) GetFailedOk added in v0.0.7

func (o *WebhookStatsStats) GetFailedOk() (*int32, bool)

GetFailedOk returns a tuple with the Failed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookStatsStats) GetLastAttempt added in v0.0.7

func (o *WebhookStatsStats) GetLastAttempt() time.Time

GetLastAttempt returns the LastAttempt field value if set, zero value otherwise.

func (*WebhookStatsStats) GetLastAttemptOk added in v0.0.7

func (o *WebhookStatsStats) GetLastAttemptOk() (*time.Time, bool)

GetLastAttemptOk returns a tuple with the LastAttempt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookStatsStats) GetSuccessRate added in v0.0.7

func (o *WebhookStatsStats) GetSuccessRate() string

GetSuccessRate returns the SuccessRate field value if set, zero value otherwise.

func (*WebhookStatsStats) GetSuccessRateOk added in v0.0.7

func (o *WebhookStatsStats) GetSuccessRateOk() (*string, bool)

GetSuccessRateOk returns a tuple with the SuccessRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookStatsStats) GetSuccessful added in v0.0.7

func (o *WebhookStatsStats) GetSuccessful() int32

GetSuccessful returns the Successful field value if set, zero value otherwise.

func (*WebhookStatsStats) GetSuccessfulOk added in v0.0.7

func (o *WebhookStatsStats) GetSuccessfulOk() (*int32, bool)

GetSuccessfulOk returns a tuple with the Successful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookStatsStats) GetTotalAttempts added in v0.0.7

func (o *WebhookStatsStats) GetTotalAttempts() int32

GetTotalAttempts returns the TotalAttempts field value if set, zero value otherwise.

func (*WebhookStatsStats) GetTotalAttemptsOk added in v0.0.7

func (o *WebhookStatsStats) GetTotalAttemptsOk() (*int32, bool)

GetTotalAttemptsOk returns a tuple with the TotalAttempts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebhookStatsStats) HasAverageResponseTime added in v0.0.7

func (o *WebhookStatsStats) HasAverageResponseTime() bool

HasAverageResponseTime returns a boolean if a field has been set.

func (*WebhookStatsStats) HasFailed added in v0.0.7

func (o *WebhookStatsStats) HasFailed() bool

HasFailed returns a boolean if a field has been set.

func (*WebhookStatsStats) HasLastAttempt added in v0.0.7

func (o *WebhookStatsStats) HasLastAttempt() bool

HasLastAttempt returns a boolean if a field has been set.

func (*WebhookStatsStats) HasSuccessRate added in v0.0.7

func (o *WebhookStatsStats) HasSuccessRate() bool

HasSuccessRate returns a boolean if a field has been set.

func (*WebhookStatsStats) HasSuccessful added in v0.0.7

func (o *WebhookStatsStats) HasSuccessful() bool

HasSuccessful returns a boolean if a field has been set.

func (*WebhookStatsStats) HasTotalAttempts added in v0.0.7

func (o *WebhookStatsStats) HasTotalAttempts() bool

HasTotalAttempts returns a boolean if a field has been set.

func (WebhookStatsStats) MarshalJSON added in v0.0.7

func (o WebhookStatsStats) MarshalJSON() ([]byte, error)

func (*WebhookStatsStats) SetAverageResponseTime added in v0.0.7

func (o *WebhookStatsStats) SetAverageResponseTime(v int32)

SetAverageResponseTime gets a reference to the given int32 and assigns it to the AverageResponseTime field.

func (*WebhookStatsStats) SetFailed added in v0.0.7

func (o *WebhookStatsStats) SetFailed(v int32)

SetFailed gets a reference to the given int32 and assigns it to the Failed field.

func (*WebhookStatsStats) SetLastAttempt added in v0.0.7

func (o *WebhookStatsStats) SetLastAttempt(v time.Time)

SetLastAttempt gets a reference to the given time.Time and assigns it to the LastAttempt field.

func (*WebhookStatsStats) SetSuccessRate added in v0.0.7

func (o *WebhookStatsStats) SetSuccessRate(v string)

SetSuccessRate gets a reference to the given string and assigns it to the SuccessRate field.

func (*WebhookStatsStats) SetSuccessful added in v0.0.7

func (o *WebhookStatsStats) SetSuccessful(v int32)

SetSuccessful gets a reference to the given int32 and assigns it to the Successful field.

func (*WebhookStatsStats) SetTotalAttempts added in v0.0.7

func (o *WebhookStatsStats) SetTotalAttempts(v int32)

SetTotalAttempts gets a reference to the given int32 and assigns it to the TotalAttempts field.

func (WebhookStatsStats) ToMap added in v0.0.7

func (o WebhookStatsStats) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL