docspring

package module
v3.0.1 Latest Latest
Warning

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

Go to latest
Published: Dec 4, 2025 License: MIT Imports: 21 Imported by: 0

README

Go API client for docspring

Use DocSpring's API to programmatically fill out PDF forms, convert HTML to PDFs, merge PDFs, or request legally binding e-signatures.

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: v1
  • Package version: 3.0.1
  • Generator version: 7.16.0-DOCSPRING
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import docspring "github.com/GIT_USER_ID/GIT_REPO_ID"

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

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

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

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

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

Documentation for API Endpoints

All URIs are relative to https://sync.api.docspring.com/api/v1

Class Method HTTP request Description
ClientAPI AddFieldsToTemplate Put /templates/{template_id}/add_fields Add new fields to a Template
ClientAPI BatchGeneratePdfs Post /submissions/batches Generate multiple PDFs
ClientAPI CombinePdfs Post /combined_submissions Merge submission PDFs, template PDFs, or custom files
ClientAPI CopyTemplate Post /templates/{template_id}/copy Copy a template
ClientAPI CreateCustomFileFromUpload Post /custom_files Create a new custom file from a cached S3 upload
ClientAPI CreateDataRequestEvent Post /data_requests/{data_request_id}/events Create a new event for emailing a signee a request for signature
ClientAPI CreateDataRequestToken Post /data_requests/{data_request_id}/tokens Create a new data request token for form authentication
ClientAPI CreateFolder Post /folders/ Create a folder
ClientAPI CreateHtmlTemplate Post /templates?endpoint_variant=create_html_template Create a new HTML template
ClientAPI CreatePdfTemplate Post /templates Create a new PDF template with a form POST file upload
ClientAPI CreatePdfTemplateFromUpload Post /templates?endpoint_variant=create_template_from_cached_upload Create a new PDF template from a cached S3 file upload
ClientAPI DeleteFolder Delete /folders/{folder_id} Delete a folder
ClientAPI DeleteTemplate Delete /templates/{template_id} Delete a template
ClientAPI ExpireCombinedSubmission Delete /combined_submissions/{combined_submission_id} Expire a combined submission
ClientAPI ExpireSubmission Delete /submissions/{submission_id} Expire a PDF submission
ClientAPI GeneratePdf Post /templates/{template_id}/submissions Generate a PDF
ClientAPI GeneratePreview Post /submissions/{submission_id}/generate_preview Generate a preview PDF for partially completed data requests
ClientAPI GetCombinedSubmission Get /combined_submissions/{combined_submission_id} Check the status of a combined submission (merged PDFs)
ClientAPI GetDataRequest Get /data_requests/{data_request_id} Look up a submission data request
ClientAPI GetFullTemplate Get /templates/{template_id}?full=true Fetch the full attributes for a PDF template
ClientAPI GetPresignUrl Get /uploads/presign Get a presigned S3 URL for direct file upload
ClientAPI GetSubmission Get /submissions/{submission_id} Check the status of a PDF
ClientAPI GetSubmissionBatch Get /submissions/batches/{submission_batch_id} Check the status of a submission batch job
ClientAPI GetTemplate Get /templates/{template_id} Check the status of an uploaded template
ClientAPI GetTemplateSchema Get /templates/{template_id}/schema Fetch the JSON schema for a template
ClientAPI ListCombinedSubmissions Get /combined_submissions Get a list of all combined submissions
ClientAPI ListFolders Get /folders/ Get a list of all folders
ClientAPI ListSubmissions Get /submissions List all submissions
ClientAPI ListTemplateSubmissions Get /templates/{template_id}/submissions List all submissions for a given template
ClientAPI ListTemplates Get /templates Get a list of all templates
ClientAPI MoveFolderToFolder Post /folders/{folder_id}/move Move a folder
ClientAPI MoveTemplateToFolder Post /templates/{template_id}/move Move Template to folder
ClientAPI PublishTemplateVersion Post /templates/{template_id}/publish_version Publish a template version
ClientAPI RenameFolder Post /folders/{folder_id}/rename Rename a folder
ClientAPI RestoreTemplateVersion Post /templates/{template_id}/restore_version Restore a template version
ClientAPI TestAuthentication Get /authentication Test authentication
ClientAPI UpdateDataRequest Put /data_requests/{data_request_id} Update a submission data request
ClientAPI UpdateTemplate Put /templates/{template_id} Update a Template
ClientAPI UpdateTemplateDocument Put /templates/{template_id}?endpoint_variant=update_template_pdf_with_form_post Update a template's document with a form POST file upload
ClientAPI UpdateTemplateDocumentFromUpload Put /templates/{template_id}?endpoint_variant=update_template_pdf_with_cached_upload Update a template's document with a cached S3 file upload

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

api_token_basic
  • Type: HTTP basic authentication

Example

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

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

Functions

func CacheExpires

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

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

func IsNil

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 {
	ClientAPI *ClientAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the DocSpring API API vv1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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 AddFieldsData

type AddFieldsData struct {
	Fields []map[string]interface{} `json:"fields"`
}

AddFieldsData struct for AddFieldsData

func NewAddFieldsData

func NewAddFieldsData(fields []map[string]interface{}) *AddFieldsData

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

func NewAddFieldsDataWithDefaults

func NewAddFieldsDataWithDefaults() *AddFieldsData

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

func (*AddFieldsData) GetFields

func (o *AddFieldsData) GetFields() []map[string]interface{}

GetFields returns the Fields field value

func (*AddFieldsData) GetFieldsOk

func (o *AddFieldsData) GetFieldsOk() ([]map[string]interface{}, bool)

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

func (AddFieldsData) MarshalJSON

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

func (*AddFieldsData) SetFields

func (o *AddFieldsData) SetFields(v []map[string]interface{})

SetFields sets field value

func (AddFieldsData) ToMap

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

func (*AddFieldsData) UnmarshalJSON

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

type ApiAddFieldsToTemplateRequest

type ApiAddFieldsToTemplateRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiAddFieldsToTemplateRequest) Data

func (ApiAddFieldsToTemplateRequest) Execute

type ApiBatchGeneratePdfsRequest

type ApiBatchGeneratePdfsRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiBatchGeneratePdfsRequest) Data

func (ApiBatchGeneratePdfsRequest) Execute

func (ApiBatchGeneratePdfsRequest) Wait

Wait for submission batch to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain)

type ApiCombinePdfsRequest

type ApiCombinePdfsRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCombinePdfsRequest) Data

func (ApiCombinePdfsRequest) Execute

type ApiCopyTemplateRequest

type ApiCopyTemplateRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCopyTemplateRequest) Execute

func (ApiCopyTemplateRequest) Options

type ApiCreateCustomFileFromUploadRequest

type ApiCreateCustomFileFromUploadRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCustomFileFromUploadRequest) Data

func (ApiCreateCustomFileFromUploadRequest) Execute

type ApiCreateDataRequestEventRequest

type ApiCreateDataRequestEventRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDataRequestEventRequest) Execute

type ApiCreateDataRequestTokenRequest

type ApiCreateDataRequestTokenRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDataRequestTokenRequest) Execute

func (ApiCreateDataRequestTokenRequest) Type_

type ApiCreateFolderRequest

type ApiCreateFolderRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCreateFolderRequest) Data

func (ApiCreateFolderRequest) Execute

func (r ApiCreateFolderRequest) Execute() (*Folder, *http.Response, error)

type ApiCreateHtmlTemplateRequest

type ApiCreateHtmlTemplateRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCreateHtmlTemplateRequest) Data

func (ApiCreateHtmlTemplateRequest) Execute

type ApiCreatePdfTemplateFromUploadRequest

type ApiCreatePdfTemplateFromUploadRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCreatePdfTemplateFromUploadRequest) Data

func (ApiCreatePdfTemplateFromUploadRequest) Execute

type ApiCreatePdfTemplateRequest

type ApiCreatePdfTemplateRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiCreatePdfTemplateRequest) Execute

func (ApiCreatePdfTemplateRequest) TemplateDescription

func (r ApiCreatePdfTemplateRequest) TemplateDescription(templateDescription string) ApiCreatePdfTemplateRequest

func (ApiCreatePdfTemplateRequest) TemplateDocument

func (r ApiCreatePdfTemplateRequest) TemplateDocument(templateDocument *os.File) ApiCreatePdfTemplateRequest

func (ApiCreatePdfTemplateRequest) TemplateName

func (r ApiCreatePdfTemplateRequest) TemplateName(templateName string) ApiCreatePdfTemplateRequest

func (ApiCreatePdfTemplateRequest) TemplateParentFolderId

func (r ApiCreatePdfTemplateRequest) TemplateParentFolderId(templateParentFolderId string) ApiCreatePdfTemplateRequest

func (ApiCreatePdfTemplateRequest) Wait

Wait for template document to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain)

type ApiDeleteFolderRequest

type ApiDeleteFolderRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFolderRequest) Execute

func (r ApiDeleteFolderRequest) Execute() (*Folder, *http.Response, error)

type ApiDeleteTemplateRequest

type ApiDeleteTemplateRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTemplateRequest) Execute

func (ApiDeleteTemplateRequest) Version

type ApiExpireCombinedSubmissionRequest

type ApiExpireCombinedSubmissionRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiExpireCombinedSubmissionRequest) Execute

type ApiExpireSubmissionRequest

type ApiExpireSubmissionRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiExpireSubmissionRequest) Execute

type ApiGeneratePdfRequest

type ApiGeneratePdfRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGeneratePdfRequest) Execute

func (ApiGeneratePdfRequest) Submission

func (ApiGeneratePdfRequest) Wait

Wait for submission to be processed before returning. Set to false to return immediately. Default: true (on sync.* subdomain)

type ApiGeneratePreviewRequest

type ApiGeneratePreviewRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGeneratePreviewRequest) Execute

type ApiGetCombinedSubmissionRequest

type ApiGetCombinedSubmissionRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGetCombinedSubmissionRequest) Execute

type ApiGetDataRequestRequest

type ApiGetDataRequestRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGetDataRequestRequest) Execute

type ApiGetFullTemplateRequest

type ApiGetFullTemplateRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGetFullTemplateRequest) Execute

type ApiGetPresignUrlRequest

type ApiGetPresignUrlRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGetPresignUrlRequest) Execute

type ApiGetSubmissionBatchRequest

type ApiGetSubmissionBatchRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGetSubmissionBatchRequest) Execute

func (ApiGetSubmissionBatchRequest) IncludeSubmissions

func (r ApiGetSubmissionBatchRequest) IncludeSubmissions(includeSubmissions bool) ApiGetSubmissionBatchRequest

type ApiGetSubmissionRequest

type ApiGetSubmissionRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGetSubmissionRequest) Execute

func (ApiGetSubmissionRequest) IncludeData

func (r ApiGetSubmissionRequest) IncludeData(includeData bool) ApiGetSubmissionRequest

type ApiGetTemplateRequest

type ApiGetTemplateRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGetTemplateRequest) Execute

type ApiGetTemplateSchemaRequest

type ApiGetTemplateSchemaRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiGetTemplateSchemaRequest) Execute

type ApiListCombinedSubmissionsRequest

type ApiListCombinedSubmissionsRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiListCombinedSubmissionsRequest) Execute

func (ApiListCombinedSubmissionsRequest) Page

Default: 1

func (ApiListCombinedSubmissionsRequest) PerPage

Default: 50

type ApiListFoldersRequest

type ApiListFoldersRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiListFoldersRequest) Execute

func (r ApiListFoldersRequest) Execute() ([]Folder, *http.Response, error)

func (ApiListFoldersRequest) ParentFolderId

func (r ApiListFoldersRequest) ParentFolderId(parentFolderId string) ApiListFoldersRequest

Filter By Folder Id

type ApiListSubmissionsRequest

type ApiListSubmissionsRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiListSubmissionsRequest) CreatedAfter

func (r ApiListSubmissionsRequest) CreatedAfter(createdAfter string) ApiListSubmissionsRequest

func (ApiListSubmissionsRequest) CreatedBefore

func (r ApiListSubmissionsRequest) CreatedBefore(createdBefore string) ApiListSubmissionsRequest

func (ApiListSubmissionsRequest) Cursor

func (ApiListSubmissionsRequest) Execute

func (ApiListSubmissionsRequest) IncludeData

func (r ApiListSubmissionsRequest) IncludeData(includeData bool) ApiListSubmissionsRequest

func (ApiListSubmissionsRequest) Limit

func (ApiListSubmissionsRequest) Type_

type ApiListTemplateSubmissionsRequest

type ApiListTemplateSubmissionsRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiListTemplateSubmissionsRequest) CreatedAfter

func (ApiListTemplateSubmissionsRequest) CreatedBefore

func (ApiListTemplateSubmissionsRequest) Cursor

func (ApiListTemplateSubmissionsRequest) Execute

func (ApiListTemplateSubmissionsRequest) IncludeData

func (ApiListTemplateSubmissionsRequest) Limit

func (ApiListTemplateSubmissionsRequest) Type_

type ApiListTemplatesRequest

type ApiListTemplatesRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiListTemplatesRequest) Execute

func (ApiListTemplatesRequest) Page

Default: 1

func (ApiListTemplatesRequest) ParentFolderId

func (r ApiListTemplatesRequest) ParentFolderId(parentFolderId string) ApiListTemplatesRequest

Filter By Folder Id

func (ApiListTemplatesRequest) PerPage

Default: 50

func (ApiListTemplatesRequest) Query

Search By Name

type ApiMoveFolderToFolderRequest

type ApiMoveFolderToFolderRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiMoveFolderToFolderRequest) Data

func (ApiMoveFolderToFolderRequest) Execute

type ApiMoveTemplateToFolderRequest

type ApiMoveTemplateToFolderRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiMoveTemplateToFolderRequest) Data

func (ApiMoveTemplateToFolderRequest) Execute

type ApiPublishTemplateVersionRequest

type ApiPublishTemplateVersionRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiPublishTemplateVersionRequest) Data

func (ApiPublishTemplateVersionRequest) Execute

type ApiRenameFolderRequest

type ApiRenameFolderRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiRenameFolderRequest) Data

func (ApiRenameFolderRequest) Execute

func (r ApiRenameFolderRequest) Execute() (*Folder, *http.Response, error)

type ApiRestoreTemplateVersionRequest

type ApiRestoreTemplateVersionRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiRestoreTemplateVersionRequest) Data

func (ApiRestoreTemplateVersionRequest) Execute

type ApiTestAuthenticationRequest

type ApiTestAuthenticationRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiTestAuthenticationRequest) Execute

type ApiUpdateDataRequestRequest

type ApiUpdateDataRequestRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateDataRequestRequest) Data

func (ApiUpdateDataRequestRequest) Execute

type ApiUpdateTemplateDocumentFromUploadRequest

type ApiUpdateTemplateDocumentFromUploadRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTemplateDocumentFromUploadRequest) Data

func (ApiUpdateTemplateDocumentFromUploadRequest) Execute

type ApiUpdateTemplateDocumentRequest

type ApiUpdateTemplateDocumentRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTemplateDocumentRequest) Execute

func (ApiUpdateTemplateDocumentRequest) TemplateDocument

func (r ApiUpdateTemplateDocumentRequest) TemplateDocument(templateDocument *os.File) ApiUpdateTemplateDocumentRequest

func (ApiUpdateTemplateDocumentRequest) TemplateName

type ApiUpdateTemplateRequest

type ApiUpdateTemplateRequest struct {
	ApiService *ClientAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTemplateRequest) Data

func (ApiUpdateTemplateRequest) Execute

type BasicAuth

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

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

type BatchGeneratePdfs201Response

type BatchGeneratePdfs201Response struct {
	Status          string                   `json:"status"`
	Error           *string                  `json:"error,omitempty"`
	Errors          []string                 `json:"errors,omitempty"`
	SubmissionBatch SubmissionBatch          `json:"submission_batch"`
	Submissions     []map[string]interface{} `json:"submissions"`
}

BatchGeneratePdfs201Response struct for BatchGeneratePdfs201Response

func NewBatchGeneratePdfs201Response

func NewBatchGeneratePdfs201Response(status string, submissionBatch SubmissionBatch, submissions []map[string]interface{}) *BatchGeneratePdfs201Response

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

func NewBatchGeneratePdfs201ResponseWithDefaults

func NewBatchGeneratePdfs201ResponseWithDefaults() *BatchGeneratePdfs201Response

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

func (*BatchGeneratePdfs201Response) GetError

func (o *BatchGeneratePdfs201Response) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*BatchGeneratePdfs201Response) GetErrorOk

func (o *BatchGeneratePdfs201Response) 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 (*BatchGeneratePdfs201Response) GetErrors

func (o *BatchGeneratePdfs201Response) GetErrors() []string

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

func (*BatchGeneratePdfs201Response) GetErrorsOk

func (o *BatchGeneratePdfs201Response) GetErrorsOk() ([]string, bool)

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

func (*BatchGeneratePdfs201Response) GetStatus

func (o *BatchGeneratePdfs201Response) GetStatus() string

GetStatus returns the Status field value

func (*BatchGeneratePdfs201Response) GetStatusOk

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

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

func (*BatchGeneratePdfs201Response) GetSubmissionBatch

func (o *BatchGeneratePdfs201Response) GetSubmissionBatch() SubmissionBatch

GetSubmissionBatch returns the SubmissionBatch field value

func (*BatchGeneratePdfs201Response) GetSubmissionBatchOk

func (o *BatchGeneratePdfs201Response) GetSubmissionBatchOk() (*SubmissionBatch, bool)

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

func (*BatchGeneratePdfs201Response) GetSubmissions

func (o *BatchGeneratePdfs201Response) GetSubmissions() []map[string]interface{}

GetSubmissions returns the Submissions field value

func (*BatchGeneratePdfs201Response) GetSubmissionsOk

func (o *BatchGeneratePdfs201Response) GetSubmissionsOk() ([]map[string]interface{}, bool)

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

func (*BatchGeneratePdfs201Response) HasError

func (o *BatchGeneratePdfs201Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*BatchGeneratePdfs201Response) HasErrors

func (o *BatchGeneratePdfs201Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (BatchGeneratePdfs201Response) MarshalJSON

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

func (*BatchGeneratePdfs201Response) SetError

func (o *BatchGeneratePdfs201Response) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*BatchGeneratePdfs201Response) SetErrors

func (o *BatchGeneratePdfs201Response) SetErrors(v []string)

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

func (*BatchGeneratePdfs201Response) SetStatus

func (o *BatchGeneratePdfs201Response) SetStatus(v string)

SetStatus sets field value

func (*BatchGeneratePdfs201Response) SetSubmissionBatch

func (o *BatchGeneratePdfs201Response) SetSubmissionBatch(v SubmissionBatch)

SetSubmissionBatch sets field value

func (*BatchGeneratePdfs201Response) SetSubmissions

func (o *BatchGeneratePdfs201Response) SetSubmissions(v []map[string]interface{})

SetSubmissions sets field value

func (BatchGeneratePdfs201Response) ToMap

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

func (*BatchGeneratePdfs201Response) UnmarshalJSON

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

type ClientAPIService

type ClientAPIService service

ClientAPIService ClientAPI service

func NewClient

func NewClient(apiTokenID, apiTokenSecret string) *ClientAPIService

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. NewClient creates a new ClientAPI service with environment variable fallback

func NewClientWithBaseURL

func NewClientWithBaseURL(apiTokenID, apiTokenSecret string, baseURL *string) *ClientAPIService

NewClientWithBaseURL creates a new ClientAPI service targeting an optional baseURL If baseURL is nil or empty, the default server configuration is used.

func NewClientWithRegion

func NewClientWithRegion(apiTokenID, apiTokenSecret, region string) *ClientAPIService

NewClientWithRegion creates a new ClientAPI for a given region (e.g., "US", "EU", "Staging")

func (*ClientAPIService) AddFieldsToTemplate

func (a *ClientAPIService) AddFieldsToTemplate(ctx context.Context, templateId string) ApiAddFieldsToTemplateRequest

AddFieldsToTemplate Add new fields to a Template

Adds fields to a PDF template. Configure field types, positions, defaults, and formatting options.

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

func (*ClientAPIService) AddFieldsToTemplateExecute

Execute executes the request

@return TemplateAddFieldsResponse

func (*ClientAPIService) BatchGeneratePdfs

func (a *ClientAPIService) BatchGeneratePdfs(ctx context.Context) ApiBatchGeneratePdfsRequest

BatchGeneratePdfs Generate multiple PDFs

Generates up to 50 PDFs in a single request. Each submission can use a different template and data. Supports both synchronous (wait for all PDFs) and asynchronous processing. More efficient than individual requests when creating multiple PDFs.

See also: - [Batch and Combine PDFs](https://docspring.com/docs/api-guide/generate-pdfs/batch-generate-pdfs/) - Generate and merge PDFs in one request

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

func (*ClientAPIService) BatchGeneratePdfsExecute

Execute executes the request

@return BatchGeneratePdfs201Response

func (*ClientAPIService) CombinePdfs

CombinePdfs Merge submission PDFs, template PDFs, or custom files

Combines multiple PDFs from various sources into a single PDF file. Supports merging submission PDFs, template PDFs, custom files, other merged PDFs, and PDFs from URLs. Merges the PDFs in the order provided.

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

func (*ClientAPIService) CombinePdfsExecute

Execute executes the request

@return CreateCombinedSubmissionResponse

func (*ClientAPIService) CopyTemplate

func (a *ClientAPIService) CopyTemplate(ctx context.Context, templateId string) ApiCopyTemplateRequest

CopyTemplate Copy a template

Creates a copy of an existing template with all its fields and configuration. Optionally specify a new name and target folder. The copied template starts as a new draft that can be modified independently of the original.

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

func (*ClientAPIService) CopyTemplateExecute

Execute executes the request

@return TemplatePreview

func (*ClientAPIService) CreateCustomFileFromUpload

func (a *ClientAPIService) CreateCustomFileFromUpload(ctx context.Context) ApiCreateCustomFileFromUploadRequest

CreateCustomFileFromUpload Create a new custom file from a cached S3 upload

The Custom Files API endpoint allows you to upload PDFs to DocSpring and then merge them with other PDFs. First upload your file using the presigned URL endpoint, then use the returned cache_id to create the custom file.

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

func (*ClientAPIService) CreateCustomFileFromUploadExecute

Execute executes the request

@return CreateCustomFileResponse

func (*ClientAPIService) CreateDataRequestEvent

func (a *ClientAPIService) CreateDataRequestEvent(ctx context.Context, dataRequestId string) ApiCreateDataRequestEventRequest

CreateDataRequestEvent Create a new event for emailing a signee a request for signature

Records user notification events for data requests. Use this to create an audit trail showing when and how users were notified about data request forms. Supports email, SMS, and other notification types. Records the notification time for compliance tracking.

See also: - [Embedded Data Requests Guide](https://docspring.com/docs/guides/embedded-forms/embedded-data-requests/) - User notification workflow

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

func (*ClientAPIService) CreateDataRequestEventExecute

Execute executes the request

@return CreateSubmissionDataRequestEventResponse

func (*ClientAPIService) CreateDataRequestToken

func (a *ClientAPIService) CreateDataRequestToken(ctx context.Context, dataRequestId string) ApiCreateDataRequestTokenRequest

CreateDataRequestToken Create a new data request token for form authentication

Creates an authentication token for accessing a data request form. Tokens can be created for API access (1 hour expiration) or email links (30 day expiration). Returns a token and a pre-authenticated URL for the data request form.

See also: - [Embedded Data Requests Guide](https://docspring.com/docs/guides/embedded-forms/embedded-data-requests/)

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

func (*ClientAPIService) CreateDataRequestTokenExecute

Execute executes the request

@return CreateSubmissionDataRequestTokenResponse

func (*ClientAPIService) CreateFolder

CreateFolder Create a folder

Creates a new folder for organizing templates. Folders can be nested within other folders by providing a `parent_folder_id`. Folder names must be unique within the same parent.

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

func (*ClientAPIService) CreateFolderExecute

func (a *ClientAPIService) CreateFolderExecute(r ApiCreateFolderRequest) (*Folder, *http.Response, error)

Execute executes the request

@return Folder

func (*ClientAPIService) CreateHtmlTemplate

func (a *ClientAPIService) CreateHtmlTemplate(ctx context.Context) ApiCreateHtmlTemplateRequest

CreateHtmlTemplate Create a new HTML template

Creates a new HTML template using HTML, CSS/SCSS, and Liquid templating. Allows complete control over PDF layout and styling. Supports headers, footers, and dynamic content using Liquid syntax for field values, conditions, loops, and filters.

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

func (*ClientAPIService) CreateHtmlTemplateExecute

func (a *ClientAPIService) CreateHtmlTemplateExecute(r ApiCreateHtmlTemplateRequest) (*TemplatePreview, *http.Response, error)

Execute executes the request

@return TemplatePreview

func (*ClientAPIService) CreatePdfTemplate

func (a *ClientAPIService) CreatePdfTemplate(ctx context.Context) ApiCreatePdfTemplateRequest

CreatePdfTemplate Create a new PDF template with a form POST file upload

Creates a new PDF template by uploading a PDF file. The uploaded PDF becomes the foundation for your template, and you can then add fillable fields using the template editor. Use the wait parameter to control whether the request waits for document processing to complete.

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

func (*ClientAPIService) CreatePdfTemplateExecute

func (a *ClientAPIService) CreatePdfTemplateExecute(r ApiCreatePdfTemplateRequest) (*TemplatePreview, *http.Response, error)

Execute executes the request

@return TemplatePreview

func (*ClientAPIService) CreatePdfTemplateFromUpload

func (a *ClientAPIService) CreatePdfTemplateFromUpload(ctx context.Context) ApiCreatePdfTemplateFromUploadRequest

CreatePdfTemplateFromUpload Create a new PDF template from a cached S3 file upload

Creates a new PDF template from a file previously uploaded to S3 using a presigned URL. This two-step process allows for more reliable large file uploads by first uploading the file to S3, then creating the template using the cached upload ID.

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

func (*ClientAPIService) CreatePdfTemplateFromUploadExecute

func (a *ClientAPIService) CreatePdfTemplateFromUploadExecute(r ApiCreatePdfTemplateFromUploadRequest) (*TemplatePreview, *http.Response, error)

Execute executes the request

@return TemplatePreview

func (*ClientAPIService) DeleteFolder

func (a *ClientAPIService) DeleteFolder(ctx context.Context, folderId string) ApiDeleteFolderRequest

DeleteFolder Delete a folder

Deletes an empty folder. The folder must not contain any templates or subfolders. Move or delete all contents before attempting to delete the folder.

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

func (*ClientAPIService) DeleteFolderExecute

func (a *ClientAPIService) DeleteFolderExecute(r ApiDeleteFolderRequest) (*Folder, *http.Response, error)

Execute executes the request

@return Folder

func (*ClientAPIService) DeleteTemplate

func (a *ClientAPIService) DeleteTemplate(ctx context.Context, templateId string) ApiDeleteTemplateRequest

DeleteTemplate Delete a template

Deletes a template or a specific template version. When no version is specified, deletes the entire template including all versions. When a version is specified, deletes only that version while preserving others. Returns remaining version information.

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

func (*ClientAPIService) DeleteTemplateExecute

Execute executes the request

@return TemplateDeleteResponse

func (*ClientAPIService) ExpireCombinedSubmission

func (a *ClientAPIService) ExpireCombinedSubmission(ctx context.Context, combinedSubmissionId string) ApiExpireCombinedSubmissionRequest

ExpireCombinedSubmission Expire a combined submission

Expiring a combined submission deletes the PDF from our system. This is useful for invalidating sensitive documents.

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

func (*ClientAPIService) ExpireCombinedSubmissionExecute

func (a *ClientAPIService) ExpireCombinedSubmissionExecute(r ApiExpireCombinedSubmissionRequest) (*CombinedSubmission, *http.Response, error)

Execute executes the request

@return CombinedSubmission

func (*ClientAPIService) ExpireSubmission

func (a *ClientAPIService) ExpireSubmission(ctx context.Context, submissionId string) ApiExpireSubmissionRequest

ExpireSubmission Expire a PDF submission

Expiring a PDF submission deletes the PDF and removes the data from our database. This is useful for invalidating sensitive documents after they've been downloaded. You can also [configure a data retention policy for your submissions](https://docspring.com/docs/template-editor/settings/#expire-submissions) so that they automatically expire.

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

func (*ClientAPIService) ExpireSubmissionExecute

Execute executes the request

@return SubmissionPreview

func (*ClientAPIService) GeneratePdf

func (a *ClientAPIService) GeneratePdf(ctx context.Context, templateId string) ApiGeneratePdfRequest

GeneratePdf Generate a PDF

Creates a PDF submission by filling in a template with data. Supports both synchronous (default) and asynchronous processing. Set `wait: false` to return immediately.

See also: - [Customize the PDF Title and Filename](https://docspring.com/docs/api-guide/generate-pdfs/customize-pdf-title-and-filename/) - Set custom metadata - [Handling Truncated Text](https://docspring.com/docs/api-guide/generate-pdfs/handle-truncated-text/) - Handle text that doesn't fit in fields

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

func (*ClientAPIService) GeneratePdfExecute

Execute executes the request

@return CreateSubmissionResponse

func (*ClientAPIService) GeneratePreview

func (a *ClientAPIService) GeneratePreview(ctx context.Context, submissionId string) ApiGeneratePreviewRequest

GeneratePreview Generate a preview PDF for partially completed data requests

Generates a preview PDF for a submission with partially completed data requests. Useful for showing users what the final document will look like before all signatures or data have been collected. The preview includes any data collected so far.

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

func (*ClientAPIService) GeneratePreviewExecute

Execute executes the request

@return SuccessErrorResponse

func (*ClientAPIService) GetCombinedSubmission

func (a *ClientAPIService) GetCombinedSubmission(ctx context.Context, combinedSubmissionId string) ApiGetCombinedSubmissionRequest

GetCombinedSubmission Check the status of a combined submission (merged PDFs)

Retrieves the details and status of a combined submission. Returns processing state, download URL (if processed), metadata, and information about any integrated actions (e.g., S3 uploads).

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

func (*ClientAPIService) GetCombinedSubmissionExecute

func (a *ClientAPIService) GetCombinedSubmissionExecute(r ApiGetCombinedSubmissionRequest) (*CombinedSubmission, *http.Response, error)

Execute executes the request

@return CombinedSubmission

func (*ClientAPIService) GetDataRequest

func (a *ClientAPIService) GetDataRequest(ctx context.Context, dataRequestId string) ApiGetDataRequestRequest

GetDataRequest Look up a submission data request

Retrieves the details and status of a data request. Returns information about the request state (pending, viewed, completed), authentication details, and metadata. Includes audit information like IP address, browseruser agent, and timestamps.

See also: - [Embedded Data Requests Guide](https://docspring.com/docs/guides/embedded-forms/embedded-data-requests/) - Complete guide to data request workflow

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

func (*ClientAPIService) GetDataRequestExecute

Execute executes the request

@return SubmissionDataRequestShow

func (*ClientAPIService) GetFullTemplate

func (a *ClientAPIService) GetFullTemplate(ctx context.Context, templateId string) ApiGetFullTemplateRequest

GetFullTemplate Fetch the full attributes for a PDF template

Retrieves complete template information including fields, defaults, settings, and HTML/SCSS content. Use this to get all template data needed for automated updates or analysis. Returns more detailed information than the basic `getTemplate` endpoint.

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

func (*ClientAPIService) GetFullTemplateExecute

func (a *ClientAPIService) GetFullTemplateExecute(r ApiGetFullTemplateRequest) (*Template, *http.Response, error)

Execute executes the request

@return Template

func (*ClientAPIService) GetPresignUrl

GetPresignUrl Get a presigned S3 URL for direct file upload

Returns a presigned S3 URL for uploading files directly to our S3 bucket. Use this endpoint to upload large files before creating templates or custom files. S3 will respond with a JSON object that you can include in your DocSpring API request.

Uploaded files can be used to: - [Create templates](https://docspring.com/docs/api/#tag/templates/post/templates?endpoint_variant=create_template_from_cached_upload) - [Update templates](https://docspring.com/docs/api/#tag/templates/put/templates/{template_id}?endpoint_variant=update_template_pdf_with_cached_upload) - [Create custom files](https://docspring.com/docs/api/#tag/custom-files/post/custom_files) and then [merge them with other PDFs](https://docspring.com/docs/api/#tag/combine-pdfs/post/combined_submissions)

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

func (*ClientAPIService) GetPresignUrlExecute

Execute executes the request

@return UploadPresignResponse

func (*ClientAPIService) GetSubmission

func (a *ClientAPIService) GetSubmission(ctx context.Context, submissionId string) ApiGetSubmissionRequest

GetSubmission Check the status of a PDF

Retrieves the details and status of a PDF submission. Returns processing state, download URL (if processed), metadata, submission data (optional), and information about any integrated actions. Use this to poll for completion when using asynchronous processing.

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

func (*ClientAPIService) GetSubmissionBatch

func (a *ClientAPIService) GetSubmissionBatch(ctx context.Context, submissionBatchId string) ApiGetSubmissionBatchRequest

GetSubmissionBatch Check the status of a submission batch job

Retrieves the status and results of a batch PDF generation job. Returns processing state, completion statistics, and optionally includes all individual submission details. Use this to poll for completion when using asynchronous batch processing.

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

func (*ClientAPIService) GetSubmissionBatchExecute

Execute executes the request

@return SubmissionBatchWithSubmissions

func (*ClientAPIService) GetSubmissionExecute

func (a *ClientAPIService) GetSubmissionExecute(r ApiGetSubmissionRequest) (*Submission, *http.Response, error)

Execute executes the request

@return Submission

func (*ClientAPIService) GetTemplate

func (a *ClientAPIService) GetTemplate(ctx context.Context, templateId string) ApiGetTemplateRequest

GetTemplate Check the status of an uploaded template

Retrieves information about a template including processing status and document URL. Use this to check if template is ready to view in the template editor or generate PDFs.

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

func (*ClientAPIService) GetTemplateExecute

Execute executes the request

@return TemplatePreview

func (*ClientAPIService) GetTemplateSchema

func (a *ClientAPIService) GetTemplateSchema(ctx context.Context, templateId string) ApiGetTemplateSchemaRequest

GetTemplateSchema Fetch the JSON schema for a template

Retrieves the JSON Schema definition for a template's fields. Use this to validate data before submitting it for PDF generation, or to build dynamic forms that match the template's field structure and validation requirements.

See also: - [Generate PDFs Guide](https://docspring.com/docs/api-guide/generate-pdfs/generate-pdfs-via-api/) - Use schema to validate submission data

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

func (*ClientAPIService) GetTemplateSchemaExecute

func (a *ClientAPIService) GetTemplateSchemaExecute(r ApiGetTemplateSchemaRequest) (*JsonSchema, *http.Response, error)

Execute executes the request

@return JsonSchema

func (*ClientAPIService) ListCombinedSubmissions

func (a *ClientAPIService) ListCombinedSubmissions(ctx context.Context) ApiListCombinedSubmissionsRequest

ListCombinedSubmissions Get a list of all combined submissions

Returns a paginated list of combined submissions (merged PDFs) for your account. Includes processing status, expiration details, and download URLs for processed PDFs.

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

func (*ClientAPIService) ListCombinedSubmissionsExecute

func (a *ClientAPIService) ListCombinedSubmissionsExecute(r ApiListCombinedSubmissionsRequest) ([]CombinedSubmission, *http.Response, error)

Execute executes the request

@return []CombinedSubmission

func (*ClientAPIService) ListFolders

ListFolders Get a list of all folders

Returns a list of folders in your account. Can be filtered by parent folder ID to retrieve subfolders. Folders help organize templates and maintain a hierarchical structure.

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

func (*ClientAPIService) ListFoldersExecute

func (a *ClientAPIService) ListFoldersExecute(r ApiListFoldersRequest) ([]Folder, *http.Response, error)

Execute executes the request

@return []Folder

func (*ClientAPIService) ListSubmissions

ListSubmissions List all submissions

Returns a paginated list of all PDF submissions across all templates in your account. Can be filtered by date range and submission type (test/live). Supports cursor-based pagination and optionally includes submission data for each result.

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

func (*ClientAPIService) ListSubmissionsExecute

Execute executes the request

@return ListSubmissionsResponse

func (*ClientAPIService) ListTemplateSubmissions

func (a *ClientAPIService) ListTemplateSubmissions(ctx context.Context, templateId string) ApiListTemplateSubmissionsRequest

ListTemplateSubmissions List all submissions for a given template

Returns a paginated list of all submissions for a specific template. Can be filtered by date range, submission type (test/live), and optionally include submission data. Supports cursor-based pagination for efficient retrieval of large result sets.

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

func (*ClientAPIService) ListTemplateSubmissionsExecute

Execute executes the request

@return ListSubmissionsResponse

func (*ClientAPIService) ListTemplates

ListTemplates Get a list of all templates

Retrieves a list of your templates with search, filtering, and pagination options. Returns basic template information including ID, name, type (PDF or HTML), and folder location. Supports text search by name and filtering by parent folder.

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

func (*ClientAPIService) ListTemplatesExecute

func (a *ClientAPIService) ListTemplatesExecute(r ApiListTemplatesRequest) ([]TemplatePreview, *http.Response, error)

Execute executes the request

@return []TemplatePreview

func (*ClientAPIService) MoveFolderToFolder

func (a *ClientAPIService) MoveFolderToFolder(ctx context.Context, folderId string) ApiMoveFolderToFolderRequest

MoveFolderToFolder Move a folder

Moves a folder to a new parent folder or to the root level. All templates and subfolders within the folder are moved together. Cannot move a folder into one of its own subfolders.

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

func (*ClientAPIService) MoveFolderToFolderExecute

func (a *ClientAPIService) MoveFolderToFolderExecute(r ApiMoveFolderToFolderRequest) (*Folder, *http.Response, error)

Execute executes the request

@return Folder

func (*ClientAPIService) MoveTemplateToFolder

func (a *ClientAPIService) MoveTemplateToFolder(ctx context.Context, templateId string) ApiMoveTemplateToFolderRequest

MoveTemplateToFolder Move Template to folder

Moves a template to a different folder or to the root level. Use this to organize templates within your folders. Provide a folder ID to move to a specific folder, or `null` to move to the root level.

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

func (*ClientAPIService) MoveTemplateToFolderExecute

func (a *ClientAPIService) MoveTemplateToFolderExecute(r ApiMoveTemplateToFolderRequest) (*TemplatePreview, *http.Response, error)

Execute executes the request

@return TemplatePreview

func (*ClientAPIService) PublishTemplateVersion

func (a *ClientAPIService) PublishTemplateVersion(ctx context.Context, templateId string) ApiPublishTemplateVersionRequest

PublishTemplateVersion Publish a template version

Publishes the current draft version of a template and creates a new immutable version with semantic versioning (major.minor.patch).

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

func (*ClientAPIService) PublishTemplateVersionExecute

Execute executes the request

@return TemplatePublishVersionResponse

func (*ClientAPIService) RenameFolder

func (a *ClientAPIService) RenameFolder(ctx context.Context, folderId string) ApiRenameFolderRequest

RenameFolder Rename a folder

Renames an existing folder. The new name must be unique within the same parent folder. This operation only changes the folder name, not its location or contents.

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

func (*ClientAPIService) RenameFolderExecute

func (a *ClientAPIService) RenameFolderExecute(r ApiRenameFolderRequest) (*Folder, *http.Response, error)

Execute executes the request

@return Folder

func (*ClientAPIService) RestoreTemplateVersion

func (a *ClientAPIService) RestoreTemplateVersion(ctx context.Context, templateId string) ApiRestoreTemplateVersionRequest

RestoreTemplateVersion Restore a template version

Restores your template to a previously published version, copying that version's content and configuration to the current draft. Use this to revert changes or recover from an unwanted modification.

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

func (*ClientAPIService) RestoreTemplateVersionExecute

Execute executes the request

@return SuccessErrorResponse

func (*ClientAPIService) TestAuthentication

func (a *ClientAPIService) TestAuthentication(ctx context.Context) ApiTestAuthenticationRequest

TestAuthentication Test authentication

Checks whether your API token is valid by making an authenticated request. Returns a success response if authentication passes. This endpoint is useful for verifying credentials during setup or troubleshooting issues.

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

func (*ClientAPIService) TestAuthenticationExecute

Execute executes the request

@return SuccessErrorResponse

func (*ClientAPIService) UpdateDataRequest

func (a *ClientAPIService) UpdateDataRequest(ctx context.Context, dataRequestId string) ApiUpdateDataRequestRequest

UpdateDataRequest Update a submission data request

Updates authentication details for a data request. Use this when a user logs in to record their authentication method, provider, session information, and hashed identifiers. Updates metadata and tracks authentication state changes for auditing and compliance.

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

func (*ClientAPIService) UpdateDataRequestExecute

Execute executes the request

@return CreateSubmissionDataRequestResponse

func (*ClientAPIService) UpdateTemplate

func (a *ClientAPIService) UpdateTemplate(ctx context.Context, templateId string) ApiUpdateTemplateRequest

UpdateTemplate Update a Template

Updates template content and properties. For HTML templates, you can modify the HTML, SCSS, headers, footers, name, and description. Changes are applied to your draft template and do not affect published template versions.

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

func (*ClientAPIService) UpdateTemplateDocument

func (a *ClientAPIService) UpdateTemplateDocument(ctx context.Context, templateId string) ApiUpdateTemplateDocumentRequest

UpdateTemplateDocument Update a template's document with a form POST file upload

Upload a new PDF file to update a PDF template's document. This replaces the template's PDF while preserving all of the existing fields. If you upload a PDF with fewer pages than the current document, any fields on the removed pages will be deleted.

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

func (*ClientAPIService) UpdateTemplateDocumentExecute

Execute executes the request

@return SuccessMultipleErrorsResponse

func (*ClientAPIService) UpdateTemplateDocumentFromUpload

func (a *ClientAPIService) UpdateTemplateDocumentFromUpload(ctx context.Context, templateId string) ApiUpdateTemplateDocumentFromUploadRequest

UpdateTemplateDocumentFromUpload Update a template's document with a cached S3 file upload

Updates a PDF template's document using a cached file upload. This is a three-step process: First, request a presigned URL to upload your PDF file to our S3 bucket. Then, use that URL to upload your PDF file. Finally, submit the ID of the uploaded file to replace the template's document.

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

func (*ClientAPIService) UpdateTemplateDocumentFromUploadExecute

Execute executes the request

@return SuccessMultipleErrorsResponse

func (*ClientAPIService) UpdateTemplateExecute

Execute executes the request

@return SuccessMultipleErrorsResponse

type CombinePdfsData

type CombinePdfsData struct {
	DeleteCustomFiles *bool                    `json:"delete_custom_files,omitempty"`
	ExpiresIn         *int32                   `json:"expires_in,omitempty"`
	Metadata          map[string]interface{}   `json:"metadata,omitempty"`
	Password          *string                  `json:"password,omitempty"`
	SourcePdfs        []map[string]interface{} `json:"source_pdfs"`
	Test              *bool                    `json:"test,omitempty"`
}

CombinePdfsData struct for CombinePdfsData

func NewCombinePdfsData

func NewCombinePdfsData(sourcePdfs []map[string]interface{}) *CombinePdfsData

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

func NewCombinePdfsDataWithDefaults

func NewCombinePdfsDataWithDefaults() *CombinePdfsData

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

func (*CombinePdfsData) GetDeleteCustomFiles

func (o *CombinePdfsData) GetDeleteCustomFiles() bool

GetDeleteCustomFiles returns the DeleteCustomFiles field value if set, zero value otherwise.

func (*CombinePdfsData) GetDeleteCustomFilesOk

func (o *CombinePdfsData) GetDeleteCustomFilesOk() (*bool, bool)

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

func (*CombinePdfsData) GetExpiresIn

func (o *CombinePdfsData) GetExpiresIn() int32

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*CombinePdfsData) GetExpiresInOk

func (o *CombinePdfsData) 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 (*CombinePdfsData) GetMetadata

func (o *CombinePdfsData) GetMetadata() map[string]interface{}

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

func (*CombinePdfsData) GetMetadataOk

func (o *CombinePdfsData) GetMetadataOk() (map[string]interface{}, bool)

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

func (*CombinePdfsData) GetPassword

func (o *CombinePdfsData) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*CombinePdfsData) GetPasswordOk

func (o *CombinePdfsData) GetPasswordOk() (*string, bool)

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

func (*CombinePdfsData) GetSourcePdfs

func (o *CombinePdfsData) GetSourcePdfs() []map[string]interface{}

GetSourcePdfs returns the SourcePdfs field value

func (*CombinePdfsData) GetSourcePdfsOk

func (o *CombinePdfsData) GetSourcePdfsOk() ([]map[string]interface{}, bool)

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

func (*CombinePdfsData) GetTest

func (o *CombinePdfsData) GetTest() bool

GetTest returns the Test field value if set, zero value otherwise.

func (*CombinePdfsData) GetTestOk

func (o *CombinePdfsData) GetTestOk() (*bool, bool)

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

func (*CombinePdfsData) HasDeleteCustomFiles

func (o *CombinePdfsData) HasDeleteCustomFiles() bool

HasDeleteCustomFiles returns a boolean if a field has been set.

func (*CombinePdfsData) HasExpiresIn

func (o *CombinePdfsData) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*CombinePdfsData) HasMetadata

func (o *CombinePdfsData) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CombinePdfsData) HasPassword

func (o *CombinePdfsData) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CombinePdfsData) HasTest

func (o *CombinePdfsData) HasTest() bool

HasTest returns a boolean if a field has been set.

func (CombinePdfsData) MarshalJSON

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

func (*CombinePdfsData) SetDeleteCustomFiles

func (o *CombinePdfsData) SetDeleteCustomFiles(v bool)

SetDeleteCustomFiles gets a reference to the given bool and assigns it to the DeleteCustomFiles field.

func (*CombinePdfsData) SetExpiresIn

func (o *CombinePdfsData) SetExpiresIn(v int32)

SetExpiresIn gets a reference to the given int32 and assigns it to the ExpiresIn field.

func (*CombinePdfsData) SetMetadata

func (o *CombinePdfsData) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*CombinePdfsData) SetPassword

func (o *CombinePdfsData) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*CombinePdfsData) SetSourcePdfs

func (o *CombinePdfsData) SetSourcePdfs(v []map[string]interface{})

SetSourcePdfs sets field value

func (*CombinePdfsData) SetTest

func (o *CombinePdfsData) SetTest(v bool)

SetTest gets a reference to the given bool and assigns it to the Test field.

func (CombinePdfsData) ToMap

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

func (*CombinePdfsData) UnmarshalJSON

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

type CombinedSubmission

type CombinedSubmission struct {
	Id            NullableString             `json:"id"`
	State         string                     `json:"state"`
	Expired       bool                       `json:"expired"`
	ExpiresIn     NullableInt32              `json:"expires_in"`
	ExpiresAt     NullableString             `json:"expires_at"`
	ProcessedAt   NullableString             `json:"processed_at"`
	ErrorMessage  NullableString             `json:"error_message"`
	SubmissionIds []string                   `json:"submission_ids"`
	SourcePdfs    []map[string]interface{}   `json:"source_pdfs"`
	Metadata      map[string]interface{}     `json:"metadata"`
	Password      NullableString             `json:"password"`
	PdfHash       NullableString             `json:"pdf_hash"`
	DownloadUrl   NullableString             `json:"download_url"`
	Actions       []CombinedSubmissionAction `json:"actions"`
}

CombinedSubmission struct for CombinedSubmission

func NewCombinedSubmission

func NewCombinedSubmission(id NullableString, state string, expired bool, expiresIn NullableInt32, expiresAt NullableString, processedAt NullableString, errorMessage NullableString, submissionIds []string, sourcePdfs []map[string]interface{}, metadata map[string]interface{}, password NullableString, pdfHash NullableString, downloadUrl NullableString, actions []CombinedSubmissionAction) *CombinedSubmission

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

func NewCombinedSubmissionWithDefaults

func NewCombinedSubmissionWithDefaults() *CombinedSubmission

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

func (*CombinedSubmission) GetActions

func (o *CombinedSubmission) GetActions() []CombinedSubmissionAction

GetActions returns the Actions field value

func (*CombinedSubmission) GetActionsOk

func (o *CombinedSubmission) GetActionsOk() ([]CombinedSubmissionAction, bool)

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

func (*CombinedSubmission) GetDownloadUrl

func (o *CombinedSubmission) GetDownloadUrl() string

GetDownloadUrl returns the DownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmission) GetDownloadUrlOk

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

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

func (*CombinedSubmission) GetErrorMessage

func (o *CombinedSubmission) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmission) GetErrorMessageOk

func (o *CombinedSubmission) GetErrorMessageOk() (*string, bool)

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

func (*CombinedSubmission) GetExpired

func (o *CombinedSubmission) GetExpired() bool

GetExpired returns the Expired field value

func (*CombinedSubmission) GetExpiredOk

func (o *CombinedSubmission) GetExpiredOk() (*bool, bool)

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

func (*CombinedSubmission) GetExpiresAt

func (o *CombinedSubmission) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmission) GetExpiresAtOk

func (o *CombinedSubmission) GetExpiresAtOk() (*string, bool)

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

func (*CombinedSubmission) GetExpiresIn

func (o *CombinedSubmission) GetExpiresIn() int32

GetExpiresIn returns the ExpiresIn field value If the value is explicit nil, the zero value for int32 will be returned

func (*CombinedSubmission) GetExpiresInOk

func (o *CombinedSubmission) GetExpiresInOk() (*int32, bool)

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

func (*CombinedSubmission) GetId

func (o *CombinedSubmission) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmission) GetIdOk

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

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

func (*CombinedSubmission) GetMetadata

func (o *CombinedSubmission) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value

func (*CombinedSubmission) GetMetadataOk

func (o *CombinedSubmission) GetMetadataOk() (map[string]interface{}, bool)

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

func (*CombinedSubmission) GetPassword

func (o *CombinedSubmission) GetPassword() string

GetPassword returns the Password field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmission) GetPasswordOk

func (o *CombinedSubmission) GetPasswordOk() (*string, bool)

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

func (*CombinedSubmission) GetPdfHash

func (o *CombinedSubmission) GetPdfHash() string

GetPdfHash returns the PdfHash field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmission) GetPdfHashOk

func (o *CombinedSubmission) GetPdfHashOk() (*string, bool)

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

func (*CombinedSubmission) GetProcessedAt

func (o *CombinedSubmission) GetProcessedAt() string

GetProcessedAt returns the ProcessedAt field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmission) GetProcessedAtOk

func (o *CombinedSubmission) GetProcessedAtOk() (*string, bool)

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

func (*CombinedSubmission) GetSourcePdfs

func (o *CombinedSubmission) GetSourcePdfs() []map[string]interface{}

GetSourcePdfs returns the SourcePdfs field value

func (*CombinedSubmission) GetSourcePdfsOk

func (o *CombinedSubmission) GetSourcePdfsOk() ([]map[string]interface{}, bool)

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

func (*CombinedSubmission) GetState

func (o *CombinedSubmission) GetState() string

GetState returns the State field value

func (*CombinedSubmission) GetStateOk

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

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

func (*CombinedSubmission) GetSubmissionIds

func (o *CombinedSubmission) GetSubmissionIds() []string

GetSubmissionIds returns the SubmissionIds field value

func (*CombinedSubmission) GetSubmissionIdsOk

func (o *CombinedSubmission) GetSubmissionIdsOk() ([]string, bool)

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

func (CombinedSubmission) MarshalJSON

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

func (*CombinedSubmission) SetActions

func (o *CombinedSubmission) SetActions(v []CombinedSubmissionAction)

SetActions sets field value

func (*CombinedSubmission) SetDownloadUrl

func (o *CombinedSubmission) SetDownloadUrl(v string)

SetDownloadUrl sets field value

func (*CombinedSubmission) SetErrorMessage

func (o *CombinedSubmission) SetErrorMessage(v string)

SetErrorMessage sets field value

func (*CombinedSubmission) SetExpired

func (o *CombinedSubmission) SetExpired(v bool)

SetExpired sets field value

func (*CombinedSubmission) SetExpiresAt

func (o *CombinedSubmission) SetExpiresAt(v string)

SetExpiresAt sets field value

func (*CombinedSubmission) SetExpiresIn

func (o *CombinedSubmission) SetExpiresIn(v int32)

SetExpiresIn sets field value

func (*CombinedSubmission) SetId

func (o *CombinedSubmission) SetId(v string)

SetId sets field value

func (*CombinedSubmission) SetMetadata

func (o *CombinedSubmission) SetMetadata(v map[string]interface{})

SetMetadata sets field value

func (*CombinedSubmission) SetPassword

func (o *CombinedSubmission) SetPassword(v string)

SetPassword sets field value

func (*CombinedSubmission) SetPdfHash

func (o *CombinedSubmission) SetPdfHash(v string)

SetPdfHash sets field value

func (*CombinedSubmission) SetProcessedAt

func (o *CombinedSubmission) SetProcessedAt(v string)

SetProcessedAt sets field value

func (*CombinedSubmission) SetSourcePdfs

func (o *CombinedSubmission) SetSourcePdfs(v []map[string]interface{})

SetSourcePdfs sets field value

func (*CombinedSubmission) SetState

func (o *CombinedSubmission) SetState(v string)

SetState sets field value

func (*CombinedSubmission) SetSubmissionIds

func (o *CombinedSubmission) SetSubmissionIds(v []string)

SetSubmissionIds sets field value

func (CombinedSubmission) ToMap

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

func (*CombinedSubmission) UnmarshalJSON

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

type CombinedSubmissionAction

type CombinedSubmissionAction struct {
	Id             NullableString         `json:"id"`
	IntegrationId  NullableString         `json:"integration_id"`
	State          string                 `json:"state"`
	ActionType     NullableString         `json:"action_type"`
	ActionCategory string                 `json:"action_category"`
	ResultData     map[string]interface{} `json:"result_data"`
}

CombinedSubmissionAction struct for CombinedSubmissionAction

func NewCombinedSubmissionAction

func NewCombinedSubmissionAction(id NullableString, integrationId NullableString, state string, actionType NullableString, actionCategory string, resultData map[string]interface{}) *CombinedSubmissionAction

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

func NewCombinedSubmissionActionWithDefaults

func NewCombinedSubmissionActionWithDefaults() *CombinedSubmissionAction

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

func (*CombinedSubmissionAction) GetActionCategory

func (o *CombinedSubmissionAction) GetActionCategory() string

GetActionCategory returns the ActionCategory field value

func (*CombinedSubmissionAction) GetActionCategoryOk

func (o *CombinedSubmissionAction) GetActionCategoryOk() (*string, bool)

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

func (*CombinedSubmissionAction) GetActionType

func (o *CombinedSubmissionAction) GetActionType() string

GetActionType returns the ActionType field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmissionAction) GetActionTypeOk

func (o *CombinedSubmissionAction) GetActionTypeOk() (*string, bool)

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

func (*CombinedSubmissionAction) GetId

func (o *CombinedSubmissionAction) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmissionAction) GetIdOk

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

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

func (*CombinedSubmissionAction) GetIntegrationId

func (o *CombinedSubmissionAction) GetIntegrationId() string

GetIntegrationId returns the IntegrationId field value If the value is explicit nil, the zero value for string will be returned

func (*CombinedSubmissionAction) GetIntegrationIdOk

func (o *CombinedSubmissionAction) GetIntegrationIdOk() (*string, bool)

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

func (*CombinedSubmissionAction) GetResultData

func (o *CombinedSubmissionAction) GetResultData() map[string]interface{}

GetResultData returns the ResultData field value

func (*CombinedSubmissionAction) GetResultDataOk

func (o *CombinedSubmissionAction) GetResultDataOk() (map[string]interface{}, bool)

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

func (*CombinedSubmissionAction) GetState

func (o *CombinedSubmissionAction) GetState() string

GetState returns the State field value

func (*CombinedSubmissionAction) GetStateOk

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

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

func (CombinedSubmissionAction) MarshalJSON

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

func (*CombinedSubmissionAction) SetActionCategory

func (o *CombinedSubmissionAction) SetActionCategory(v string)

SetActionCategory sets field value

func (*CombinedSubmissionAction) SetActionType

func (o *CombinedSubmissionAction) SetActionType(v string)

SetActionType sets field value

func (*CombinedSubmissionAction) SetId

func (o *CombinedSubmissionAction) SetId(v string)

SetId sets field value

func (*CombinedSubmissionAction) SetIntegrationId

func (o *CombinedSubmissionAction) SetIntegrationId(v string)

SetIntegrationId sets field value

func (*CombinedSubmissionAction) SetResultData

func (o *CombinedSubmissionAction) SetResultData(v map[string]interface{})

SetResultData sets field value

func (*CombinedSubmissionAction) SetState

func (o *CombinedSubmissionAction) SetState(v string)

SetState sets field value

func (CombinedSubmissionAction) ToMap

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

func (*CombinedSubmissionAction) UnmarshalJSON

func (o *CombinedSubmissionAction) UnmarshalJSON(data []byte) (err 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 CopyTemplateOptions

type CopyTemplateOptions struct {
	Name           *string `json:"name,omitempty"`
	ParentFolderId string  `json:"parent_folder_id"`
}

CopyTemplateOptions struct for CopyTemplateOptions

func NewCopyTemplateOptions

func NewCopyTemplateOptions(parentFolderId string) *CopyTemplateOptions

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

func NewCopyTemplateOptionsWithDefaults

func NewCopyTemplateOptionsWithDefaults() *CopyTemplateOptions

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

func (*CopyTemplateOptions) GetName

func (o *CopyTemplateOptions) GetName() string

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

func (*CopyTemplateOptions) GetNameOk

func (o *CopyTemplateOptions) 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 (*CopyTemplateOptions) GetParentFolderId

func (o *CopyTemplateOptions) GetParentFolderId() string

GetParentFolderId returns the ParentFolderId field value

func (*CopyTemplateOptions) GetParentFolderIdOk

func (o *CopyTemplateOptions) GetParentFolderIdOk() (*string, bool)

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

func (*CopyTemplateOptions) HasName

func (o *CopyTemplateOptions) HasName() bool

HasName returns a boolean if a field has been set.

func (CopyTemplateOptions) MarshalJSON

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

func (*CopyTemplateOptions) SetName

func (o *CopyTemplateOptions) SetName(v string)

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

func (*CopyTemplateOptions) SetParentFolderId

func (o *CopyTemplateOptions) SetParentFolderId(v string)

SetParentFolderId sets field value

func (CopyTemplateOptions) ToMap

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

func (*CopyTemplateOptions) UnmarshalJSON

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

type CreateCombinedSubmissionResponse

type CreateCombinedSubmissionResponse struct {
	Status             string             `json:"status"`
	CombinedSubmission CombinedSubmission `json:"combined_submission"`
	Errors             []string           `json:"errors,omitempty"`
}

CreateCombinedSubmissionResponse struct for CreateCombinedSubmissionResponse

func NewCreateCombinedSubmissionResponse

func NewCreateCombinedSubmissionResponse(status string, combinedSubmission CombinedSubmission) *CreateCombinedSubmissionResponse

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

func NewCreateCombinedSubmissionResponseWithDefaults

func NewCreateCombinedSubmissionResponseWithDefaults() *CreateCombinedSubmissionResponse

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

func (*CreateCombinedSubmissionResponse) GetCombinedSubmission

func (o *CreateCombinedSubmissionResponse) GetCombinedSubmission() CombinedSubmission

GetCombinedSubmission returns the CombinedSubmission field value

func (*CreateCombinedSubmissionResponse) GetCombinedSubmissionOk

func (o *CreateCombinedSubmissionResponse) GetCombinedSubmissionOk() (*CombinedSubmission, bool)

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

func (*CreateCombinedSubmissionResponse) GetErrors

func (o *CreateCombinedSubmissionResponse) GetErrors() []string

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

func (*CreateCombinedSubmissionResponse) GetErrorsOk

func (o *CreateCombinedSubmissionResponse) GetErrorsOk() ([]string, bool)

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

func (*CreateCombinedSubmissionResponse) GetStatus

GetStatus returns the Status field value

func (*CreateCombinedSubmissionResponse) GetStatusOk

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

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

func (*CreateCombinedSubmissionResponse) HasErrors

func (o *CreateCombinedSubmissionResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (CreateCombinedSubmissionResponse) MarshalJSON

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

func (*CreateCombinedSubmissionResponse) SetCombinedSubmission

func (o *CreateCombinedSubmissionResponse) SetCombinedSubmission(v CombinedSubmission)

SetCombinedSubmission sets field value

func (*CreateCombinedSubmissionResponse) SetErrors

func (o *CreateCombinedSubmissionResponse) SetErrors(v []string)

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

func (*CreateCombinedSubmissionResponse) SetStatus

func (o *CreateCombinedSubmissionResponse) SetStatus(v string)

SetStatus sets field value

func (CreateCombinedSubmissionResponse) ToMap

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

func (*CreateCombinedSubmissionResponse) UnmarshalJSON

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

type CreateCustomFileData

type CreateCustomFileData struct {
	CacheId string `json:"cache_id"`
}

CreateCustomFileData struct for CreateCustomFileData

func NewCreateCustomFileData

func NewCreateCustomFileData(cacheId string) *CreateCustomFileData

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

func NewCreateCustomFileDataWithDefaults

func NewCreateCustomFileDataWithDefaults() *CreateCustomFileData

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

func (*CreateCustomFileData) GetCacheId

func (o *CreateCustomFileData) GetCacheId() string

GetCacheId returns the CacheId field value

func (*CreateCustomFileData) GetCacheIdOk

func (o *CreateCustomFileData) GetCacheIdOk() (*string, bool)

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

func (CreateCustomFileData) MarshalJSON

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

func (*CreateCustomFileData) SetCacheId

func (o *CreateCustomFileData) SetCacheId(v string)

SetCacheId sets field value

func (CreateCustomFileData) ToMap

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

func (*CreateCustomFileData) UnmarshalJSON

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

type CreateCustomFileResponse

type CreateCustomFileResponse struct {
	Status     string     `json:"status"`
	CustomFile CustomFile `json:"custom_file"`
	Errors     []string   `json:"errors,omitempty"`
}

CreateCustomFileResponse struct for CreateCustomFileResponse

func NewCreateCustomFileResponse

func NewCreateCustomFileResponse(status string, customFile CustomFile) *CreateCustomFileResponse

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

func NewCreateCustomFileResponseWithDefaults

func NewCreateCustomFileResponseWithDefaults() *CreateCustomFileResponse

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

func (*CreateCustomFileResponse) GetCustomFile

func (o *CreateCustomFileResponse) GetCustomFile() CustomFile

GetCustomFile returns the CustomFile field value

func (*CreateCustomFileResponse) GetCustomFileOk

func (o *CreateCustomFileResponse) GetCustomFileOk() (*CustomFile, bool)

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

func (*CreateCustomFileResponse) GetErrors

func (o *CreateCustomFileResponse) GetErrors() []string

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

func (*CreateCustomFileResponse) GetErrorsOk

func (o *CreateCustomFileResponse) GetErrorsOk() ([]string, bool)

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

func (*CreateCustomFileResponse) GetStatus

func (o *CreateCustomFileResponse) GetStatus() string

GetStatus returns the Status field value

func (*CreateCustomFileResponse) GetStatusOk

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

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

func (*CreateCustomFileResponse) HasErrors

func (o *CreateCustomFileResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (CreateCustomFileResponse) MarshalJSON

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

func (*CreateCustomFileResponse) SetCustomFile

func (o *CreateCustomFileResponse) SetCustomFile(v CustomFile)

SetCustomFile sets field value

func (*CreateCustomFileResponse) SetErrors

func (o *CreateCustomFileResponse) SetErrors(v []string)

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

func (*CreateCustomFileResponse) SetStatus

func (o *CreateCustomFileResponse) SetStatus(v string)

SetStatus sets field value

func (CreateCustomFileResponse) ToMap

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

func (*CreateCustomFileResponse) UnmarshalJSON

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

type CreateFolderData

type CreateFolderData struct {
	Folder map[string]interface{} `json:"folder"`
}

CreateFolderData struct for CreateFolderData

func NewCreateFolderData

func NewCreateFolderData(folder map[string]interface{}) *CreateFolderData

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

func NewCreateFolderDataWithDefaults

func NewCreateFolderDataWithDefaults() *CreateFolderData

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

func (*CreateFolderData) GetFolder

func (o *CreateFolderData) GetFolder() map[string]interface{}

GetFolder returns the Folder field value

func (*CreateFolderData) GetFolderOk

func (o *CreateFolderData) GetFolderOk() (map[string]interface{}, bool)

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

func (CreateFolderData) MarshalJSON

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

func (*CreateFolderData) SetFolder

func (o *CreateFolderData) SetFolder(v map[string]interface{})

SetFolder sets field value

func (CreateFolderData) ToMap

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

func (*CreateFolderData) UnmarshalJSON

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

type CreateHtmlTemplate

type CreateHtmlTemplate struct {
	Template map[string]interface{} `json:"template"`
}

CreateHtmlTemplate struct for CreateHtmlTemplate

func NewCreateHtmlTemplate

func NewCreateHtmlTemplate(template map[string]interface{}) *CreateHtmlTemplate

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

func NewCreateHtmlTemplateWithDefaults

func NewCreateHtmlTemplateWithDefaults() *CreateHtmlTemplate

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

func (*CreateHtmlTemplate) GetTemplate

func (o *CreateHtmlTemplate) GetTemplate() map[string]interface{}

GetTemplate returns the Template field value

func (*CreateHtmlTemplate) GetTemplateOk

func (o *CreateHtmlTemplate) GetTemplateOk() (map[string]interface{}, bool)

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

func (CreateHtmlTemplate) MarshalJSON

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

func (*CreateHtmlTemplate) SetTemplate

func (o *CreateHtmlTemplate) SetTemplate(v map[string]interface{})

SetTemplate sets field value

func (CreateHtmlTemplate) ToMap

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

func (*CreateHtmlTemplate) UnmarshalJSON

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

type CreatePdfSubmissionData

type CreatePdfSubmissionData struct {
	Data           map[string]interface{}            `json:"data"`
	DataRequests   []CreateSubmissionDataRequestData `json:"data_requests,omitempty"`
	Editable       *bool                             `json:"editable,omitempty"`
	ExpiresIn      *int32                            `json:"expires_in,omitempty"`
	FieldOverrides map[string]interface{}            `json:"field_overrides,omitempty"`
	Metadata       map[string]interface{}            `json:"metadata,omitempty"`
	Password       *string                           `json:"password,omitempty"`
	Test           *bool                             `json:"test,omitempty"`
	Version        *string                           `json:"version,omitempty"`
}

CreatePdfSubmissionData struct for CreatePdfSubmissionData

func NewCreatePdfSubmissionData

func NewCreatePdfSubmissionData(data map[string]interface{}) *CreatePdfSubmissionData

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

func NewCreatePdfSubmissionDataWithDefaults

func NewCreatePdfSubmissionDataWithDefaults() *CreatePdfSubmissionData

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

func (*CreatePdfSubmissionData) GetData

func (o *CreatePdfSubmissionData) GetData() map[string]interface{}

GetData returns the Data field value

func (*CreatePdfSubmissionData) GetDataOk

func (o *CreatePdfSubmissionData) GetDataOk() (map[string]interface{}, bool)

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

func (*CreatePdfSubmissionData) GetDataRequests

GetDataRequests returns the DataRequests field value if set, zero value otherwise.

func (*CreatePdfSubmissionData) GetDataRequestsOk

func (o *CreatePdfSubmissionData) GetDataRequestsOk() ([]CreateSubmissionDataRequestData, bool)

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

func (*CreatePdfSubmissionData) GetEditable

func (o *CreatePdfSubmissionData) GetEditable() bool

GetEditable returns the Editable field value if set, zero value otherwise.

func (*CreatePdfSubmissionData) GetEditableOk

func (o *CreatePdfSubmissionData) GetEditableOk() (*bool, bool)

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

func (*CreatePdfSubmissionData) GetExpiresIn

func (o *CreatePdfSubmissionData) GetExpiresIn() int32

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*CreatePdfSubmissionData) GetExpiresInOk

func (o *CreatePdfSubmissionData) 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 (*CreatePdfSubmissionData) GetFieldOverrides

func (o *CreatePdfSubmissionData) GetFieldOverrides() map[string]interface{}

GetFieldOverrides returns the FieldOverrides field value if set, zero value otherwise.

func (*CreatePdfSubmissionData) GetFieldOverridesOk

func (o *CreatePdfSubmissionData) GetFieldOverridesOk() (map[string]interface{}, bool)

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

func (*CreatePdfSubmissionData) GetMetadata

func (o *CreatePdfSubmissionData) GetMetadata() map[string]interface{}

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

func (*CreatePdfSubmissionData) GetMetadataOk

func (o *CreatePdfSubmissionData) GetMetadataOk() (map[string]interface{}, bool)

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

func (*CreatePdfSubmissionData) GetPassword

func (o *CreatePdfSubmissionData) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*CreatePdfSubmissionData) GetPasswordOk

func (o *CreatePdfSubmissionData) GetPasswordOk() (*string, bool)

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

func (*CreatePdfSubmissionData) GetTest

func (o *CreatePdfSubmissionData) GetTest() bool

GetTest returns the Test field value if set, zero value otherwise.

func (*CreatePdfSubmissionData) GetTestOk

func (o *CreatePdfSubmissionData) GetTestOk() (*bool, bool)

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

func (*CreatePdfSubmissionData) GetVersion

func (o *CreatePdfSubmissionData) GetVersion() string

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

func (*CreatePdfSubmissionData) GetVersionOk

func (o *CreatePdfSubmissionData) 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 (*CreatePdfSubmissionData) HasDataRequests

func (o *CreatePdfSubmissionData) HasDataRequests() bool

HasDataRequests returns a boolean if a field has been set.

func (*CreatePdfSubmissionData) HasEditable

func (o *CreatePdfSubmissionData) HasEditable() bool

HasEditable returns a boolean if a field has been set.

func (*CreatePdfSubmissionData) HasExpiresIn

func (o *CreatePdfSubmissionData) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*CreatePdfSubmissionData) HasFieldOverrides

func (o *CreatePdfSubmissionData) HasFieldOverrides() bool

HasFieldOverrides returns a boolean if a field has been set.

func (*CreatePdfSubmissionData) HasMetadata

func (o *CreatePdfSubmissionData) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CreatePdfSubmissionData) HasPassword

func (o *CreatePdfSubmissionData) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CreatePdfSubmissionData) HasTest

func (o *CreatePdfSubmissionData) HasTest() bool

HasTest returns a boolean if a field has been set.

func (*CreatePdfSubmissionData) HasVersion

func (o *CreatePdfSubmissionData) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (CreatePdfSubmissionData) MarshalJSON

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

func (*CreatePdfSubmissionData) SetData

func (o *CreatePdfSubmissionData) SetData(v map[string]interface{})

SetData sets field value

func (*CreatePdfSubmissionData) SetDataRequests

SetDataRequests gets a reference to the given []CreateSubmissionDataRequestData and assigns it to the DataRequests field.

func (*CreatePdfSubmissionData) SetEditable

func (o *CreatePdfSubmissionData) SetEditable(v bool)

SetEditable gets a reference to the given bool and assigns it to the Editable field.

func (*CreatePdfSubmissionData) SetExpiresIn

func (o *CreatePdfSubmissionData) SetExpiresIn(v int32)

SetExpiresIn gets a reference to the given int32 and assigns it to the ExpiresIn field.

func (*CreatePdfSubmissionData) SetFieldOverrides

func (o *CreatePdfSubmissionData) SetFieldOverrides(v map[string]interface{})

SetFieldOverrides gets a reference to the given map[string]interface{} and assigns it to the FieldOverrides field.

func (*CreatePdfSubmissionData) SetMetadata

func (o *CreatePdfSubmissionData) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*CreatePdfSubmissionData) SetPassword

func (o *CreatePdfSubmissionData) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*CreatePdfSubmissionData) SetTest

func (o *CreatePdfSubmissionData) SetTest(v bool)

SetTest gets a reference to the given bool and assigns it to the Test field.

func (*CreatePdfSubmissionData) SetVersion

func (o *CreatePdfSubmissionData) SetVersion(v string)

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

func (CreatePdfSubmissionData) ToMap

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

func (*CreatePdfSubmissionData) UnmarshalJSON

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

type CreatePdfTemplate

type CreatePdfTemplate struct {
	Template map[string]interface{} `json:"template"`
}

CreatePdfTemplate struct for CreatePdfTemplate

func NewCreatePdfTemplate

func NewCreatePdfTemplate(template map[string]interface{}) *CreatePdfTemplate

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

func NewCreatePdfTemplateWithDefaults

func NewCreatePdfTemplateWithDefaults() *CreatePdfTemplate

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

func (*CreatePdfTemplate) GetTemplate

func (o *CreatePdfTemplate) GetTemplate() map[string]interface{}

GetTemplate returns the Template field value

func (*CreatePdfTemplate) GetTemplateOk

func (o *CreatePdfTemplate) GetTemplateOk() (map[string]interface{}, bool)

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

func (CreatePdfTemplate) MarshalJSON

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

func (*CreatePdfTemplate) SetTemplate

func (o *CreatePdfTemplate) SetTemplate(v map[string]interface{})

SetTemplate sets field value

func (CreatePdfTemplate) ToMap

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

func (*CreatePdfTemplate) UnmarshalJSON

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

type CreateSubmissionDataRequestData

type CreateSubmissionDataRequestData struct {
	AuthPhoneNumberHash  NullableString         `json:"auth_phone_number_hash,omitempty"`
	AuthProvider         NullableString         `json:"auth_provider,omitempty"`
	AuthSecondFactorType *string                `json:"auth_second_factor_type,omitempty"`
	AuthSessionIdHash    NullableString         `json:"auth_session_id_hash,omitempty"`
	AuthSessionStartedAt NullableString         `json:"auth_session_started_at,omitempty"`
	AuthType             *string                `json:"auth_type,omitempty"`
	AuthUserIdHash       NullableString         `json:"auth_user_id_hash,omitempty"`
	AuthUsernameHash     NullableString         `json:"auth_username_hash,omitempty"`
	Email                NullableString         `json:"email,omitempty"`
	Fields               []*string              `json:"fields,omitempty"`
	Metadata             map[string]interface{} `json:"metadata,omitempty"`
	Name                 NullableString         `json:"name,omitempty"`
	Order                *int32                 `json:"order,omitempty"`
	Skipped              NullableBool           `json:"skipped,omitempty"`
}

CreateSubmissionDataRequestData struct for CreateSubmissionDataRequestData

func NewCreateSubmissionDataRequestData

func NewCreateSubmissionDataRequestData() *CreateSubmissionDataRequestData

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

func NewCreateSubmissionDataRequestDataWithDefaults

func NewCreateSubmissionDataRequestDataWithDefaults() *CreateSubmissionDataRequestData

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

func (*CreateSubmissionDataRequestData) GetAuthPhoneNumberHash

func (o *CreateSubmissionDataRequestData) GetAuthPhoneNumberHash() string

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

func (*CreateSubmissionDataRequestData) GetAuthPhoneNumberHashOk

func (o *CreateSubmissionDataRequestData) GetAuthPhoneNumberHashOk() (*string, bool)

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

func (*CreateSubmissionDataRequestData) GetAuthProvider

func (o *CreateSubmissionDataRequestData) GetAuthProvider() string

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

func (*CreateSubmissionDataRequestData) GetAuthProviderOk

func (o *CreateSubmissionDataRequestData) GetAuthProviderOk() (*string, bool)

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

func (*CreateSubmissionDataRequestData) GetAuthSecondFactorType

func (o *CreateSubmissionDataRequestData) GetAuthSecondFactorType() string

GetAuthSecondFactorType returns the AuthSecondFactorType field value if set, zero value otherwise.

func (*CreateSubmissionDataRequestData) GetAuthSecondFactorTypeOk

func (o *CreateSubmissionDataRequestData) GetAuthSecondFactorTypeOk() (*string, bool)

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

func (*CreateSubmissionDataRequestData) GetAuthSessionIdHash

func (o *CreateSubmissionDataRequestData) GetAuthSessionIdHash() string

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

func (*CreateSubmissionDataRequestData) GetAuthSessionIdHashOk

func (o *CreateSubmissionDataRequestData) GetAuthSessionIdHashOk() (*string, bool)

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

func (*CreateSubmissionDataRequestData) GetAuthSessionStartedAt

func (o *CreateSubmissionDataRequestData) GetAuthSessionStartedAt() string

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

func (*CreateSubmissionDataRequestData) GetAuthSessionStartedAtOk

func (o *CreateSubmissionDataRequestData) GetAuthSessionStartedAtOk() (*string, bool)

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

func (*CreateSubmissionDataRequestData) GetAuthType

func (o *CreateSubmissionDataRequestData) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*CreateSubmissionDataRequestData) GetAuthTypeOk

func (o *CreateSubmissionDataRequestData) 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 (*CreateSubmissionDataRequestData) GetAuthUserIdHash

func (o *CreateSubmissionDataRequestData) GetAuthUserIdHash() string

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

func (*CreateSubmissionDataRequestData) GetAuthUserIdHashOk

func (o *CreateSubmissionDataRequestData) GetAuthUserIdHashOk() (*string, bool)

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

func (*CreateSubmissionDataRequestData) GetAuthUsernameHash

func (o *CreateSubmissionDataRequestData) GetAuthUsernameHash() string

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

func (*CreateSubmissionDataRequestData) GetAuthUsernameHashOk

func (o *CreateSubmissionDataRequestData) GetAuthUsernameHashOk() (*string, bool)

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

func (*CreateSubmissionDataRequestData) GetEmail

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

func (*CreateSubmissionDataRequestData) GetEmailOk

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

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

func (*CreateSubmissionDataRequestData) GetFields

func (o *CreateSubmissionDataRequestData) GetFields() []*string

GetFields returns the Fields field value if set, zero value otherwise.

func (*CreateSubmissionDataRequestData) GetFieldsOk

func (o *CreateSubmissionDataRequestData) GetFieldsOk() ([]*string, bool)

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

func (*CreateSubmissionDataRequestData) GetMetadata

func (o *CreateSubmissionDataRequestData) GetMetadata() map[string]interface{}

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

func (*CreateSubmissionDataRequestData) GetMetadataOk

func (o *CreateSubmissionDataRequestData) GetMetadataOk() (map[string]interface{}, bool)

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

func (*CreateSubmissionDataRequestData) GetName

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

func (*CreateSubmissionDataRequestData) GetNameOk

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

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

func (*CreateSubmissionDataRequestData) GetOrder

func (o *CreateSubmissionDataRequestData) GetOrder() int32

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

func (*CreateSubmissionDataRequestData) GetOrderOk

func (o *CreateSubmissionDataRequestData) 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 (*CreateSubmissionDataRequestData) GetSkipped

func (o *CreateSubmissionDataRequestData) GetSkipped() bool

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

func (*CreateSubmissionDataRequestData) GetSkippedOk

func (o *CreateSubmissionDataRequestData) GetSkippedOk() (*bool, bool)

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

func (*CreateSubmissionDataRequestData) HasAuthPhoneNumberHash

func (o *CreateSubmissionDataRequestData) HasAuthPhoneNumberHash() bool

HasAuthPhoneNumberHash returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasAuthProvider

func (o *CreateSubmissionDataRequestData) HasAuthProvider() bool

HasAuthProvider returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasAuthSecondFactorType

func (o *CreateSubmissionDataRequestData) HasAuthSecondFactorType() bool

HasAuthSecondFactorType returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasAuthSessionIdHash

func (o *CreateSubmissionDataRequestData) HasAuthSessionIdHash() bool

HasAuthSessionIdHash returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasAuthSessionStartedAt

func (o *CreateSubmissionDataRequestData) HasAuthSessionStartedAt() bool

HasAuthSessionStartedAt returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasAuthType

func (o *CreateSubmissionDataRequestData) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasAuthUserIdHash

func (o *CreateSubmissionDataRequestData) HasAuthUserIdHash() bool

HasAuthUserIdHash returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasAuthUsernameHash

func (o *CreateSubmissionDataRequestData) HasAuthUsernameHash() bool

HasAuthUsernameHash returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasEmail

func (o *CreateSubmissionDataRequestData) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasFields

func (o *CreateSubmissionDataRequestData) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasMetadata

func (o *CreateSubmissionDataRequestData) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasName

HasName returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasOrder

func (o *CreateSubmissionDataRequestData) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestData) HasSkipped

func (o *CreateSubmissionDataRequestData) HasSkipped() bool

HasSkipped returns a boolean if a field has been set.

func (CreateSubmissionDataRequestData) MarshalJSON

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

func (*CreateSubmissionDataRequestData) SetAuthPhoneNumberHash

func (o *CreateSubmissionDataRequestData) SetAuthPhoneNumberHash(v string)

SetAuthPhoneNumberHash gets a reference to the given NullableString and assigns it to the AuthPhoneNumberHash field.

func (*CreateSubmissionDataRequestData) SetAuthPhoneNumberHashNil

func (o *CreateSubmissionDataRequestData) SetAuthPhoneNumberHashNil()

SetAuthPhoneNumberHashNil sets the value for AuthPhoneNumberHash to be an explicit nil

func (*CreateSubmissionDataRequestData) SetAuthProvider

func (o *CreateSubmissionDataRequestData) SetAuthProvider(v string)

SetAuthProvider gets a reference to the given NullableString and assigns it to the AuthProvider field.

func (*CreateSubmissionDataRequestData) SetAuthProviderNil

func (o *CreateSubmissionDataRequestData) SetAuthProviderNil()

SetAuthProviderNil sets the value for AuthProvider to be an explicit nil

func (*CreateSubmissionDataRequestData) SetAuthSecondFactorType

func (o *CreateSubmissionDataRequestData) SetAuthSecondFactorType(v string)

SetAuthSecondFactorType gets a reference to the given string and assigns it to the AuthSecondFactorType field.

func (*CreateSubmissionDataRequestData) SetAuthSessionIdHash

func (o *CreateSubmissionDataRequestData) SetAuthSessionIdHash(v string)

SetAuthSessionIdHash gets a reference to the given NullableString and assigns it to the AuthSessionIdHash field.

func (*CreateSubmissionDataRequestData) SetAuthSessionIdHashNil

func (o *CreateSubmissionDataRequestData) SetAuthSessionIdHashNil()

SetAuthSessionIdHashNil sets the value for AuthSessionIdHash to be an explicit nil

func (*CreateSubmissionDataRequestData) SetAuthSessionStartedAt

func (o *CreateSubmissionDataRequestData) SetAuthSessionStartedAt(v string)

SetAuthSessionStartedAt gets a reference to the given NullableString and assigns it to the AuthSessionStartedAt field.

func (*CreateSubmissionDataRequestData) SetAuthSessionStartedAtNil

func (o *CreateSubmissionDataRequestData) SetAuthSessionStartedAtNil()

SetAuthSessionStartedAtNil sets the value for AuthSessionStartedAt to be an explicit nil

func (*CreateSubmissionDataRequestData) SetAuthType

func (o *CreateSubmissionDataRequestData) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*CreateSubmissionDataRequestData) SetAuthUserIdHash

func (o *CreateSubmissionDataRequestData) SetAuthUserIdHash(v string)

SetAuthUserIdHash gets a reference to the given NullableString and assigns it to the AuthUserIdHash field.

func (*CreateSubmissionDataRequestData) SetAuthUserIdHashNil

func (o *CreateSubmissionDataRequestData) SetAuthUserIdHashNil()

SetAuthUserIdHashNil sets the value for AuthUserIdHash to be an explicit nil

func (*CreateSubmissionDataRequestData) SetAuthUsernameHash

func (o *CreateSubmissionDataRequestData) SetAuthUsernameHash(v string)

SetAuthUsernameHash gets a reference to the given NullableString and assigns it to the AuthUsernameHash field.

func (*CreateSubmissionDataRequestData) SetAuthUsernameHashNil

func (o *CreateSubmissionDataRequestData) SetAuthUsernameHashNil()

SetAuthUsernameHashNil sets the value for AuthUsernameHash to be an explicit nil

func (*CreateSubmissionDataRequestData) SetEmail

func (o *CreateSubmissionDataRequestData) SetEmail(v string)

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

func (*CreateSubmissionDataRequestData) SetEmailNil

func (o *CreateSubmissionDataRequestData) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*CreateSubmissionDataRequestData) SetFields

func (o *CreateSubmissionDataRequestData) SetFields(v []*string)

SetFields gets a reference to the given []*string and assigns it to the Fields field.

func (*CreateSubmissionDataRequestData) SetMetadata

func (o *CreateSubmissionDataRequestData) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*CreateSubmissionDataRequestData) SetName

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

func (*CreateSubmissionDataRequestData) SetNameNil

func (o *CreateSubmissionDataRequestData) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CreateSubmissionDataRequestData) SetOrder

func (o *CreateSubmissionDataRequestData) SetOrder(v int32)

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

func (*CreateSubmissionDataRequestData) SetSkipped

func (o *CreateSubmissionDataRequestData) SetSkipped(v bool)

SetSkipped gets a reference to the given NullableBool and assigns it to the Skipped field.

func (*CreateSubmissionDataRequestData) SetSkippedNil

func (o *CreateSubmissionDataRequestData) SetSkippedNil()

SetSkippedNil sets the value for Skipped to be an explicit nil

func (CreateSubmissionDataRequestData) ToMap

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

func (*CreateSubmissionDataRequestData) UnsetAuthPhoneNumberHash

func (o *CreateSubmissionDataRequestData) UnsetAuthPhoneNumberHash()

UnsetAuthPhoneNumberHash ensures that no value is present for AuthPhoneNumberHash, not even an explicit nil

func (*CreateSubmissionDataRequestData) UnsetAuthProvider

func (o *CreateSubmissionDataRequestData) UnsetAuthProvider()

UnsetAuthProvider ensures that no value is present for AuthProvider, not even an explicit nil

func (*CreateSubmissionDataRequestData) UnsetAuthSessionIdHash

func (o *CreateSubmissionDataRequestData) UnsetAuthSessionIdHash()

UnsetAuthSessionIdHash ensures that no value is present for AuthSessionIdHash, not even an explicit nil

func (*CreateSubmissionDataRequestData) UnsetAuthSessionStartedAt

func (o *CreateSubmissionDataRequestData) UnsetAuthSessionStartedAt()

UnsetAuthSessionStartedAt ensures that no value is present for AuthSessionStartedAt, not even an explicit nil

func (*CreateSubmissionDataRequestData) UnsetAuthUserIdHash

func (o *CreateSubmissionDataRequestData) UnsetAuthUserIdHash()

UnsetAuthUserIdHash ensures that no value is present for AuthUserIdHash, not even an explicit nil

func (*CreateSubmissionDataRequestData) UnsetAuthUsernameHash

func (o *CreateSubmissionDataRequestData) UnsetAuthUsernameHash()

UnsetAuthUsernameHash ensures that no value is present for AuthUsernameHash, not even an explicit nil

func (*CreateSubmissionDataRequestData) UnsetEmail

func (o *CreateSubmissionDataRequestData) UnsetEmail()

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

func (*CreateSubmissionDataRequestData) UnsetName

func (o *CreateSubmissionDataRequestData) UnsetName()

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

func (*CreateSubmissionDataRequestData) UnsetSkipped

func (o *CreateSubmissionDataRequestData) UnsetSkipped()

UnsetSkipped ensures that no value is present for Skipped, not even an explicit nil

type CreateSubmissionDataRequestEventRequest

type CreateSubmissionDataRequestEventRequest struct {
	EventType        string         `json:"event_type"`
	MessageRecipient NullableString `json:"message_recipient,omitempty"`
	MessageType      NullableString `json:"message_type,omitempty"`
	OccurredAt       NullableString `json:"occurred_at,omitempty"`
}

CreateSubmissionDataRequestEventRequest struct for CreateSubmissionDataRequestEventRequest

func NewCreateSubmissionDataRequestEventRequest

func NewCreateSubmissionDataRequestEventRequest(eventType string) *CreateSubmissionDataRequestEventRequest

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

func NewCreateSubmissionDataRequestEventRequestWithDefaults

func NewCreateSubmissionDataRequestEventRequestWithDefaults() *CreateSubmissionDataRequestEventRequest

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

func (*CreateSubmissionDataRequestEventRequest) GetEventType

GetEventType returns the EventType field value

func (*CreateSubmissionDataRequestEventRequest) GetEventTypeOk

func (o *CreateSubmissionDataRequestEventRequest) GetEventTypeOk() (*string, bool)

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

func (*CreateSubmissionDataRequestEventRequest) GetMessageRecipient

func (o *CreateSubmissionDataRequestEventRequest) GetMessageRecipient() string

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

func (*CreateSubmissionDataRequestEventRequest) GetMessageRecipientOk

func (o *CreateSubmissionDataRequestEventRequest) GetMessageRecipientOk() (*string, bool)

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

func (*CreateSubmissionDataRequestEventRequest) GetMessageType

func (o *CreateSubmissionDataRequestEventRequest) GetMessageType() string

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

func (*CreateSubmissionDataRequestEventRequest) GetMessageTypeOk

func (o *CreateSubmissionDataRequestEventRequest) GetMessageTypeOk() (*string, bool)

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

func (*CreateSubmissionDataRequestEventRequest) GetOccurredAt

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

func (*CreateSubmissionDataRequestEventRequest) GetOccurredAtOk

func (o *CreateSubmissionDataRequestEventRequest) GetOccurredAtOk() (*string, bool)

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

func (*CreateSubmissionDataRequestEventRequest) HasMessageRecipient

func (o *CreateSubmissionDataRequestEventRequest) HasMessageRecipient() bool

HasMessageRecipient returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestEventRequest) HasMessageType

func (o *CreateSubmissionDataRequestEventRequest) HasMessageType() bool

HasMessageType returns a boolean if a field has been set.

func (*CreateSubmissionDataRequestEventRequest) HasOccurredAt

func (o *CreateSubmissionDataRequestEventRequest) HasOccurredAt() bool

HasOccurredAt returns a boolean if a field has been set.

func (CreateSubmissionDataRequestEventRequest) MarshalJSON

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

func (*CreateSubmissionDataRequestEventRequest) SetEventType

SetEventType sets field value

func (*CreateSubmissionDataRequestEventRequest) SetMessageRecipient

func (o *CreateSubmissionDataRequestEventRequest) SetMessageRecipient(v string)

SetMessageRecipient gets a reference to the given NullableString and assigns it to the MessageRecipient field.

func (*CreateSubmissionDataRequestEventRequest) SetMessageRecipientNil

func (o *CreateSubmissionDataRequestEventRequest) SetMessageRecipientNil()

SetMessageRecipientNil sets the value for MessageRecipient to be an explicit nil

func (*CreateSubmissionDataRequestEventRequest) SetMessageType

func (o *CreateSubmissionDataRequestEventRequest) SetMessageType(v string)

SetMessageType gets a reference to the given NullableString and assigns it to the MessageType field.

func (*CreateSubmissionDataRequestEventRequest) SetMessageTypeNil

func (o *CreateSubmissionDataRequestEventRequest) SetMessageTypeNil()

SetMessageTypeNil sets the value for MessageType to be an explicit nil

func (*CreateSubmissionDataRequestEventRequest) SetOccurredAt

func (o *CreateSubmissionDataRequestEventRequest) SetOccurredAt(v string)

SetOccurredAt gets a reference to the given NullableString and assigns it to the OccurredAt field.

func (*CreateSubmissionDataRequestEventRequest) SetOccurredAtNil

func (o *CreateSubmissionDataRequestEventRequest) SetOccurredAtNil()

SetOccurredAtNil sets the value for OccurredAt to be an explicit nil

func (CreateSubmissionDataRequestEventRequest) ToMap

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

func (*CreateSubmissionDataRequestEventRequest) UnmarshalJSON

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

func (*CreateSubmissionDataRequestEventRequest) UnsetMessageRecipient

func (o *CreateSubmissionDataRequestEventRequest) UnsetMessageRecipient()

UnsetMessageRecipient ensures that no value is present for MessageRecipient, not even an explicit nil

func (*CreateSubmissionDataRequestEventRequest) UnsetMessageType

func (o *CreateSubmissionDataRequestEventRequest) UnsetMessageType()

UnsetMessageType ensures that no value is present for MessageType, not even an explicit nil

func (*CreateSubmissionDataRequestEventRequest) UnsetOccurredAt

func (o *CreateSubmissionDataRequestEventRequest) UnsetOccurredAt()

UnsetOccurredAt ensures that no value is present for OccurredAt, not even an explicit nil

type CreateSubmissionDataRequestEventResponse

type CreateSubmissionDataRequestEventResponse struct {
	Status string                     `json:"status"`
	Event  SubmissionDataRequestEvent `json:"event"`
	Errors []string                   `json:"errors,omitempty"`
}

CreateSubmissionDataRequestEventResponse struct for CreateSubmissionDataRequestEventResponse

func NewCreateSubmissionDataRequestEventResponse

func NewCreateSubmissionDataRequestEventResponse(status string, event SubmissionDataRequestEvent) *CreateSubmissionDataRequestEventResponse

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

func NewCreateSubmissionDataRequestEventResponseWithDefaults

func NewCreateSubmissionDataRequestEventResponseWithDefaults() *CreateSubmissionDataRequestEventResponse

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

func (*CreateSubmissionDataRequestEventResponse) GetErrors

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

func (*CreateSubmissionDataRequestEventResponse) GetErrorsOk

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

func (*CreateSubmissionDataRequestEventResponse) GetEvent

GetEvent returns the Event field value

func (*CreateSubmissionDataRequestEventResponse) GetEventOk

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

func (*CreateSubmissionDataRequestEventResponse) GetStatus

GetStatus returns the Status field value

func (*CreateSubmissionDataRequestEventResponse) GetStatusOk

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

func (*CreateSubmissionDataRequestEventResponse) HasErrors

HasErrors returns a boolean if a field has been set.

func (CreateSubmissionDataRequestEventResponse) MarshalJSON

func (*CreateSubmissionDataRequestEventResponse) SetErrors

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

func (*CreateSubmissionDataRequestEventResponse) SetEvent

SetEvent sets field value

func (*CreateSubmissionDataRequestEventResponse) SetStatus

SetStatus sets field value

func (CreateSubmissionDataRequestEventResponse) ToMap

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

func (*CreateSubmissionDataRequestEventResponse) UnmarshalJSON

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

type CreateSubmissionDataRequestResponse

type CreateSubmissionDataRequestResponse struct {
	Status      string                    `json:"status"`
	DataRequest SubmissionDataRequestShow `json:"data_request"`
	Errors      []string                  `json:"errors,omitempty"`
}

CreateSubmissionDataRequestResponse struct for CreateSubmissionDataRequestResponse

func NewCreateSubmissionDataRequestResponse

func NewCreateSubmissionDataRequestResponse(status string, dataRequest SubmissionDataRequestShow) *CreateSubmissionDataRequestResponse

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

func NewCreateSubmissionDataRequestResponseWithDefaults

func NewCreateSubmissionDataRequestResponseWithDefaults() *CreateSubmissionDataRequestResponse

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

func (*CreateSubmissionDataRequestResponse) GetDataRequest

GetDataRequest returns the DataRequest field value

func (*CreateSubmissionDataRequestResponse) GetDataRequestOk

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

func (*CreateSubmissionDataRequestResponse) GetErrors

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

func (*CreateSubmissionDataRequestResponse) GetErrorsOk

func (o *CreateSubmissionDataRequestResponse) GetErrorsOk() ([]string, bool)

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

func (*CreateSubmissionDataRequestResponse) GetStatus

GetStatus returns the Status field value

func (*CreateSubmissionDataRequestResponse) GetStatusOk

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

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

func (*CreateSubmissionDataRequestResponse) HasErrors

HasErrors returns a boolean if a field has been set.

func (CreateSubmissionDataRequestResponse) MarshalJSON

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

func (*CreateSubmissionDataRequestResponse) SetDataRequest

SetDataRequest sets field value

func (*CreateSubmissionDataRequestResponse) SetErrors

func (o *CreateSubmissionDataRequestResponse) SetErrors(v []string)

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

func (*CreateSubmissionDataRequestResponse) SetStatus

SetStatus sets field value

func (CreateSubmissionDataRequestResponse) ToMap

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

func (*CreateSubmissionDataRequestResponse) UnmarshalJSON

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

type CreateSubmissionDataRequestTokenResponse

type CreateSubmissionDataRequestTokenResponse struct {
	Status string                     `json:"status"`
	Token  SubmissionDataRequestToken `json:"token"`
	Errors []string                   `json:"errors,omitempty"`
}

CreateSubmissionDataRequestTokenResponse struct for CreateSubmissionDataRequestTokenResponse

func NewCreateSubmissionDataRequestTokenResponse

func NewCreateSubmissionDataRequestTokenResponse(status string, token SubmissionDataRequestToken) *CreateSubmissionDataRequestTokenResponse

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

func NewCreateSubmissionDataRequestTokenResponseWithDefaults

func NewCreateSubmissionDataRequestTokenResponseWithDefaults() *CreateSubmissionDataRequestTokenResponse

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

func (*CreateSubmissionDataRequestTokenResponse) GetErrors

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

func (*CreateSubmissionDataRequestTokenResponse) GetErrorsOk

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

func (*CreateSubmissionDataRequestTokenResponse) GetStatus

GetStatus returns the Status field value

func (*CreateSubmissionDataRequestTokenResponse) GetStatusOk

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

func (*CreateSubmissionDataRequestTokenResponse) GetToken

GetToken returns the Token field value

func (*CreateSubmissionDataRequestTokenResponse) GetTokenOk

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

func (*CreateSubmissionDataRequestTokenResponse) HasErrors

HasErrors returns a boolean if a field has been set.

func (CreateSubmissionDataRequestTokenResponse) MarshalJSON

func (*CreateSubmissionDataRequestTokenResponse) SetErrors

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

func (*CreateSubmissionDataRequestTokenResponse) SetStatus

SetStatus sets field value

func (*CreateSubmissionDataRequestTokenResponse) SetToken

SetToken sets field value

func (CreateSubmissionDataRequestTokenResponse) ToMap

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

func (*CreateSubmissionDataRequestTokenResponse) UnmarshalJSON

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

type CreateSubmissionResponse

type CreateSubmissionResponse struct {
	Status     string            `json:"status"`
	Submission SubmissionPreview `json:"submission"`
	Errors     []string          `json:"errors,omitempty"`
}

CreateSubmissionResponse struct for CreateSubmissionResponse

func NewCreateSubmissionResponse

func NewCreateSubmissionResponse(status string, submission SubmissionPreview) *CreateSubmissionResponse

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

func NewCreateSubmissionResponseWithDefaults

func NewCreateSubmissionResponseWithDefaults() *CreateSubmissionResponse

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

func (*CreateSubmissionResponse) GetErrors

func (o *CreateSubmissionResponse) GetErrors() []string

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

func (*CreateSubmissionResponse) GetErrorsOk

func (o *CreateSubmissionResponse) GetErrorsOk() ([]string, bool)

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

func (*CreateSubmissionResponse) GetStatus

func (o *CreateSubmissionResponse) GetStatus() string

GetStatus returns the Status field value

func (*CreateSubmissionResponse) GetStatusOk

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

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

func (*CreateSubmissionResponse) GetSubmission

func (o *CreateSubmissionResponse) GetSubmission() SubmissionPreview

GetSubmission returns the Submission field value

func (*CreateSubmissionResponse) GetSubmissionOk

func (o *CreateSubmissionResponse) GetSubmissionOk() (*SubmissionPreview, bool)

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

func (*CreateSubmissionResponse) HasErrors

func (o *CreateSubmissionResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (CreateSubmissionResponse) MarshalJSON

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

func (*CreateSubmissionResponse) SetErrors

func (o *CreateSubmissionResponse) SetErrors(v []string)

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

func (*CreateSubmissionResponse) SetStatus

func (o *CreateSubmissionResponse) SetStatus(v string)

SetStatus sets field value

func (*CreateSubmissionResponse) SetSubmission

func (o *CreateSubmissionResponse) SetSubmission(v SubmissionPreview)

SetSubmission sets field value

func (CreateSubmissionResponse) ToMap

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

func (*CreateSubmissionResponse) UnmarshalJSON

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

type CustomFile

type CustomFile struct {
	Id  NullableString `json:"id"`
	Url NullableString `json:"url"`
}

CustomFile struct for CustomFile

func NewCustomFile

func NewCustomFile(id NullableString, url NullableString) *CustomFile

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

func NewCustomFileWithDefaults

func NewCustomFileWithDefaults() *CustomFile

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

func (*CustomFile) GetId

func (o *CustomFile) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*CustomFile) GetIdOk

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

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

func (*CustomFile) GetUrl

func (o *CustomFile) GetUrl() string

GetUrl returns the Url field value If the value is explicit nil, the zero value for string will be returned

func (*CustomFile) GetUrlOk

func (o *CustomFile) GetUrlOk() (*string, bool)

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

func (CustomFile) MarshalJSON

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

func (*CustomFile) SetId

func (o *CustomFile) SetId(v string)

SetId sets field value

func (*CustomFile) SetUrl

func (o *CustomFile) SetUrl(v string)

SetUrl sets field value

func (CustomFile) ToMap

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

func (*CustomFile) UnmarshalJSON

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

type ErrorOrMultipleErrorsResponse

type ErrorOrMultipleErrorsResponse struct {
	Status string `json:"status"`
	// Single error message (when only one error occurred)
	Error *string `json:"error,omitempty"`
	// Array of error messages (when multiple validation errors occurred)
	Errors []string `json:"errors,omitempty"`
}

ErrorOrMultipleErrorsResponse struct for ErrorOrMultipleErrorsResponse

func NewErrorOrMultipleErrorsResponse

func NewErrorOrMultipleErrorsResponse(status string) *ErrorOrMultipleErrorsResponse

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

func NewErrorOrMultipleErrorsResponseWithDefaults

func NewErrorOrMultipleErrorsResponseWithDefaults() *ErrorOrMultipleErrorsResponse

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

func (*ErrorOrMultipleErrorsResponse) GetError

func (o *ErrorOrMultipleErrorsResponse) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorOrMultipleErrorsResponse) GetErrorOk

func (o *ErrorOrMultipleErrorsResponse) 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 (*ErrorOrMultipleErrorsResponse) GetErrors

func (o *ErrorOrMultipleErrorsResponse) GetErrors() []string

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

func (*ErrorOrMultipleErrorsResponse) GetErrorsOk

func (o *ErrorOrMultipleErrorsResponse) GetErrorsOk() ([]string, bool)

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

func (*ErrorOrMultipleErrorsResponse) GetStatus

func (o *ErrorOrMultipleErrorsResponse) GetStatus() string

GetStatus returns the Status field value

func (*ErrorOrMultipleErrorsResponse) GetStatusOk

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

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

func (*ErrorOrMultipleErrorsResponse) HasError

func (o *ErrorOrMultipleErrorsResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*ErrorOrMultipleErrorsResponse) HasErrors

func (o *ErrorOrMultipleErrorsResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (ErrorOrMultipleErrorsResponse) MarshalJSON

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

func (*ErrorOrMultipleErrorsResponse) SetError

func (o *ErrorOrMultipleErrorsResponse) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ErrorOrMultipleErrorsResponse) SetErrors

func (o *ErrorOrMultipleErrorsResponse) SetErrors(v []string)

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

func (*ErrorOrMultipleErrorsResponse) SetStatus

func (o *ErrorOrMultipleErrorsResponse) SetStatus(v string)

SetStatus sets field value

func (ErrorOrMultipleErrorsResponse) ToMap

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

func (*ErrorOrMultipleErrorsResponse) UnmarshalJSON

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

type ErrorResponse

type ErrorResponse struct {
	Status string `json:"status"`
	Error  string `json:"error"`
}

ErrorResponse struct for ErrorResponse

func NewErrorResponse

func NewErrorResponse(status string, error_ string) *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

func (o *ErrorResponse) GetError() string

GetError returns the Error field value

func (*ErrorResponse) GetErrorOk

func (o *ErrorResponse) GetErrorOk() (*string, bool)

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

func (*ErrorResponse) GetStatus

func (o *ErrorResponse) GetStatus() string

GetStatus returns the Status field value

func (*ErrorResponse) GetStatusOk

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

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

func (ErrorResponse) MarshalJSON

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

func (*ErrorResponse) SetError

func (o *ErrorResponse) SetError(v string)

SetError sets field value

func (*ErrorResponse) SetStatus

func (o *ErrorResponse) SetStatus(v string)

SetStatus sets field value

func (ErrorResponse) ToMap

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

func (*ErrorResponse) UnmarshalJSON

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

type Folder

type Folder struct {
	Id             NullableString `json:"id"`
	Name           NullableString `json:"name"`
	Path           NullableString `json:"path"`
	ParentFolderId NullableString `json:"parent_folder_id"`
}

Folder struct for Folder

func NewFolder

func NewFolder(id NullableString, name NullableString, path NullableString, parentFolderId NullableString) *Folder

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

func NewFolderWithDefaults

func NewFolderWithDefaults() *Folder

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

func (*Folder) GetId

func (o *Folder) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*Folder) GetIdOk

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

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

func (*Folder) GetName

func (o *Folder) GetName() string

GetName returns the Name field value If the value is explicit nil, the zero value for string will be returned

func (*Folder) GetNameOk

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

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

func (*Folder) GetParentFolderId

func (o *Folder) GetParentFolderId() string

GetParentFolderId returns the ParentFolderId field value If the value is explicit nil, the zero value for string will be returned

func (*Folder) GetParentFolderIdOk

func (o *Folder) GetParentFolderIdOk() (*string, bool)

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

func (*Folder) GetPath

func (o *Folder) GetPath() string

GetPath returns the Path field value If the value is explicit nil, the zero value for string will be returned

func (*Folder) GetPathOk

func (o *Folder) GetPathOk() (*string, bool)

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

func (Folder) MarshalJSON

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

func (*Folder) SetId

func (o *Folder) SetId(v string)

SetId sets field value

func (*Folder) SetName

func (o *Folder) SetName(v string)

SetName sets field value

func (*Folder) SetParentFolderId

func (o *Folder) SetParentFolderId(v string)

SetParentFolderId sets field value

func (*Folder) SetPath

func (o *Folder) SetPath(v string)

SetPath sets field value

func (Folder) ToMap

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

func (*Folder) UnmarshalJSON

func (o *Folder) UnmarshalJSON(data []byte) (err 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 JsonSchema

type JsonSchema struct {
	Schema                    *string                `json:"$schema,omitempty"`
	Id                        *string                `json:"id,omitempty"`
	Title                     *string                `json:"title,omitempty"`
	Description               *string                `json:"description,omitempty"`
	Definitions               map[string]interface{} `json:"definitions,omitempty"`
	Type                      *string                `json:"type,omitempty"`
	Properties                map[string]interface{} `json:"properties,omitempty"`
	AdditionalPropertiesField *bool                  `json:"additionalProperties,omitempty"`
	Required                  []string               `json:"required,omitempty"`
}

JsonSchema struct for JsonSchema

func NewJsonSchema

func NewJsonSchema() *JsonSchema

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

func NewJsonSchemaWithDefaults

func NewJsonSchemaWithDefaults() *JsonSchema

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

func (*JsonSchema) GetAdditionalPropertiesField

func (o *JsonSchema) GetAdditionalPropertiesField() bool

GetAdditionalPropertiesField returns the AdditionalPropertiesField field value if set, zero value otherwise.

func (*JsonSchema) GetAdditionalPropertiesFieldOk

func (o *JsonSchema) GetAdditionalPropertiesFieldOk() (*bool, bool)

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

func (*JsonSchema) GetDefinitions

func (o *JsonSchema) GetDefinitions() map[string]interface{}

GetDefinitions returns the Definitions field value if set, zero value otherwise.

func (*JsonSchema) GetDefinitionsOk

func (o *JsonSchema) GetDefinitionsOk() (map[string]interface{}, bool)

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

func (*JsonSchema) GetDescription

func (o *JsonSchema) GetDescription() string

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

func (*JsonSchema) GetDescriptionOk

func (o *JsonSchema) 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 (*JsonSchema) GetId

func (o *JsonSchema) GetId() string

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

func (*JsonSchema) GetIdOk

func (o *JsonSchema) 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 (*JsonSchema) GetProperties

func (o *JsonSchema) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*JsonSchema) GetPropertiesOk

func (o *JsonSchema) GetPropertiesOk() (map[string]interface{}, bool)

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

func (*JsonSchema) GetRequired

func (o *JsonSchema) GetRequired() []string

GetRequired returns the Required field value if set, zero value otherwise.

func (*JsonSchema) GetRequiredOk

func (o *JsonSchema) GetRequiredOk() ([]string, bool)

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

func (*JsonSchema) GetSchema

func (o *JsonSchema) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*JsonSchema) GetSchemaOk

func (o *JsonSchema) GetSchemaOk() (*string, bool)

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

func (*JsonSchema) GetTitle

func (o *JsonSchema) GetTitle() string

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

func (*JsonSchema) GetTitleOk

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

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

func (*JsonSchema) GetType

func (o *JsonSchema) GetType() string

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

func (*JsonSchema) GetTypeOk

func (o *JsonSchema) 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 (*JsonSchema) HasAdditionalPropertiesField

func (o *JsonSchema) HasAdditionalPropertiesField() bool

HasAdditionalPropertiesField returns a boolean if a field has been set.

func (*JsonSchema) HasDefinitions

func (o *JsonSchema) HasDefinitions() bool

HasDefinitions returns a boolean if a field has been set.

func (*JsonSchema) HasDescription

func (o *JsonSchema) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*JsonSchema) HasId

func (o *JsonSchema) HasId() bool

HasId returns a boolean if a field has been set.

func (*JsonSchema) HasProperties

func (o *JsonSchema) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*JsonSchema) HasRequired

func (o *JsonSchema) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*JsonSchema) HasSchema

func (o *JsonSchema) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*JsonSchema) HasTitle

func (o *JsonSchema) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*JsonSchema) HasType

func (o *JsonSchema) HasType() bool

HasType returns a boolean if a field has been set.

func (JsonSchema) MarshalJSON

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

func (*JsonSchema) SetAdditionalPropertiesField

func (o *JsonSchema) SetAdditionalPropertiesField(v bool)

SetAdditionalPropertiesField gets a reference to the given bool and assigns it to the AdditionalPropertiesField field.

func (*JsonSchema) SetDefinitions

func (o *JsonSchema) SetDefinitions(v map[string]interface{})

SetDefinitions gets a reference to the given map[string]interface{} and assigns it to the Definitions field.

func (*JsonSchema) SetDescription

func (o *JsonSchema) SetDescription(v string)

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

func (*JsonSchema) SetId

func (o *JsonSchema) SetId(v string)

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

func (*JsonSchema) SetProperties

func (o *JsonSchema) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given map[string]interface{} and assigns it to the Properties field.

func (*JsonSchema) SetRequired

func (o *JsonSchema) SetRequired(v []string)

SetRequired gets a reference to the given []string and assigns it to the Required field.

func (*JsonSchema) SetSchema

func (o *JsonSchema) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*JsonSchema) SetTitle

func (o *JsonSchema) SetTitle(v string)

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

func (*JsonSchema) SetType

func (o *JsonSchema) SetType(v string)

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

func (JsonSchema) ToMap

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

type ListSubmissionsResponse

type ListSubmissionsResponse struct {
	Submissions []Submission   `json:"submissions"`
	Limit       int32          `json:"limit"`
	NextCursor  NullableString `json:"next_cursor"`
}

ListSubmissionsResponse struct for ListSubmissionsResponse

func NewListSubmissionsResponse

func NewListSubmissionsResponse(submissions []Submission, limit int32, nextCursor NullableString) *ListSubmissionsResponse

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

func NewListSubmissionsResponseWithDefaults

func NewListSubmissionsResponseWithDefaults() *ListSubmissionsResponse

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

func (*ListSubmissionsResponse) GetLimit

func (o *ListSubmissionsResponse) GetLimit() int32

GetLimit returns the Limit field value

func (*ListSubmissionsResponse) GetLimitOk

func (o *ListSubmissionsResponse) GetLimitOk() (*int32, bool)

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

func (*ListSubmissionsResponse) GetNextCursor

func (o *ListSubmissionsResponse) GetNextCursor() string

GetNextCursor returns the NextCursor field value If the value is explicit nil, the zero value for string will be returned

func (*ListSubmissionsResponse) GetNextCursorOk

func (o *ListSubmissionsResponse) GetNextCursorOk() (*string, bool)

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

func (*ListSubmissionsResponse) GetSubmissions

func (o *ListSubmissionsResponse) GetSubmissions() []Submission

GetSubmissions returns the Submissions field value

func (*ListSubmissionsResponse) GetSubmissionsOk

func (o *ListSubmissionsResponse) GetSubmissionsOk() ([]Submission, bool)

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

func (ListSubmissionsResponse) MarshalJSON

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

func (*ListSubmissionsResponse) SetLimit

func (o *ListSubmissionsResponse) SetLimit(v int32)

SetLimit sets field value

func (*ListSubmissionsResponse) SetNextCursor

func (o *ListSubmissionsResponse) SetNextCursor(v string)

SetNextCursor sets field value

func (*ListSubmissionsResponse) SetSubmissions

func (o *ListSubmissionsResponse) SetSubmissions(v []Submission)

SetSubmissions sets field value

func (ListSubmissionsResponse) ToMap

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

func (*ListSubmissionsResponse) UnmarshalJSON

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

type MappedNullable

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

type MoveFolderData

type MoveFolderData struct {
	ParentFolderId *string `json:"parent_folder_id,omitempty"`
}

MoveFolderData struct for MoveFolderData

func NewMoveFolderData

func NewMoveFolderData() *MoveFolderData

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

func NewMoveFolderDataWithDefaults

func NewMoveFolderDataWithDefaults() *MoveFolderData

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

func (*MoveFolderData) GetParentFolderId

func (o *MoveFolderData) GetParentFolderId() string

GetParentFolderId returns the ParentFolderId field value if set, zero value otherwise.

func (*MoveFolderData) GetParentFolderIdOk

func (o *MoveFolderData) GetParentFolderIdOk() (*string, bool)

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

func (*MoveFolderData) HasParentFolderId

func (o *MoveFolderData) HasParentFolderId() bool

HasParentFolderId returns a boolean if a field has been set.

func (MoveFolderData) MarshalJSON

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

func (*MoveFolderData) SetParentFolderId

func (o *MoveFolderData) SetParentFolderId(v string)

SetParentFolderId gets a reference to the given string and assigns it to the ParentFolderId field.

func (MoveFolderData) ToMap

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

type MoveTemplateData

type MoveTemplateData struct {
	ParentFolderId string `json:"parent_folder_id"`
}

MoveTemplateData struct for MoveTemplateData

func NewMoveTemplateData

func NewMoveTemplateData(parentFolderId string) *MoveTemplateData

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

func NewMoveTemplateDataWithDefaults

func NewMoveTemplateDataWithDefaults() *MoveTemplateData

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

func (*MoveTemplateData) GetParentFolderId

func (o *MoveTemplateData) GetParentFolderId() string

GetParentFolderId returns the ParentFolderId field value

func (*MoveTemplateData) GetParentFolderIdOk

func (o *MoveTemplateData) GetParentFolderIdOk() (*string, bool)

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

func (MoveTemplateData) MarshalJSON

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

func (*MoveTemplateData) SetParentFolderId

func (o *MoveTemplateData) SetParentFolderId(v string)

SetParentFolderId sets field value

func (MoveTemplateData) ToMap

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

func (*MoveTemplateData) UnmarshalJSON

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

type MultipleErrorsResponse

type MultipleErrorsResponse struct {
	Status string   `json:"status"`
	Errors []string `json:"errors"`
}

MultipleErrorsResponse struct for MultipleErrorsResponse

func NewMultipleErrorsResponse

func NewMultipleErrorsResponse(status string, errors []string) *MultipleErrorsResponse

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

func NewMultipleErrorsResponseWithDefaults

func NewMultipleErrorsResponseWithDefaults() *MultipleErrorsResponse

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

func (*MultipleErrorsResponse) GetErrors

func (o *MultipleErrorsResponse) GetErrors() []string

GetErrors returns the Errors field value

func (*MultipleErrorsResponse) GetErrorsOk

func (o *MultipleErrorsResponse) GetErrorsOk() ([]string, bool)

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

func (*MultipleErrorsResponse) GetStatus

func (o *MultipleErrorsResponse) GetStatus() string

GetStatus returns the Status field value

func (*MultipleErrorsResponse) GetStatusOk

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

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

func (MultipleErrorsResponse) MarshalJSON

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

func (*MultipleErrorsResponse) SetErrors

func (o *MultipleErrorsResponse) SetErrors(v []string)

SetErrors sets field value

func (*MultipleErrorsResponse) SetStatus

func (o *MultipleErrorsResponse) SetStatus(v string)

SetStatus sets field value

func (MultipleErrorsResponse) ToMap

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

func (*MultipleErrorsResponse) UnmarshalJSON

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

type NullableAddFieldsData

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

func NewNullableAddFieldsData

func NewNullableAddFieldsData(val *AddFieldsData) *NullableAddFieldsData

func (NullableAddFieldsData) Get

func (NullableAddFieldsData) IsSet

func (v NullableAddFieldsData) IsSet() bool

func (NullableAddFieldsData) MarshalJSON

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

func (*NullableAddFieldsData) Set

func (v *NullableAddFieldsData) Set(val *AddFieldsData)

func (*NullableAddFieldsData) UnmarshalJSON

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

func (*NullableAddFieldsData) Unset

func (v *NullableAddFieldsData) Unset()

type NullableBatchGeneratePdfs201Response

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

func (NullableBatchGeneratePdfs201Response) Get

func (NullableBatchGeneratePdfs201Response) IsSet

func (NullableBatchGeneratePdfs201Response) MarshalJSON

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

func (*NullableBatchGeneratePdfs201Response) Set

func (*NullableBatchGeneratePdfs201Response) UnmarshalJSON

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

func (*NullableBatchGeneratePdfs201Response) Unset

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCombinePdfsData

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

func NewNullableCombinePdfsData

func NewNullableCombinePdfsData(val *CombinePdfsData) *NullableCombinePdfsData

func (NullableCombinePdfsData) Get

func (NullableCombinePdfsData) IsSet

func (v NullableCombinePdfsData) IsSet() bool

func (NullableCombinePdfsData) MarshalJSON

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

func (*NullableCombinePdfsData) Set

func (*NullableCombinePdfsData) UnmarshalJSON

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

func (*NullableCombinePdfsData) Unset

func (v *NullableCombinePdfsData) Unset()

type NullableCombinedSubmission

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

func NewNullableCombinedSubmission

func NewNullableCombinedSubmission(val *CombinedSubmission) *NullableCombinedSubmission

func (NullableCombinedSubmission) Get

func (NullableCombinedSubmission) IsSet

func (v NullableCombinedSubmission) IsSet() bool

func (NullableCombinedSubmission) MarshalJSON

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

func (*NullableCombinedSubmission) Set

func (*NullableCombinedSubmission) UnmarshalJSON

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

func (*NullableCombinedSubmission) Unset

func (v *NullableCombinedSubmission) Unset()

type NullableCombinedSubmissionAction

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

func (NullableCombinedSubmissionAction) Get

func (NullableCombinedSubmissionAction) IsSet

func (NullableCombinedSubmissionAction) MarshalJSON

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

func (*NullableCombinedSubmissionAction) Set

func (*NullableCombinedSubmissionAction) UnmarshalJSON

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

func (*NullableCombinedSubmissionAction) Unset

type NullableCopyTemplateOptions

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

func NewNullableCopyTemplateOptions

func NewNullableCopyTemplateOptions(val *CopyTemplateOptions) *NullableCopyTemplateOptions

func (NullableCopyTemplateOptions) Get

func (NullableCopyTemplateOptions) IsSet

func (NullableCopyTemplateOptions) MarshalJSON

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

func (*NullableCopyTemplateOptions) Set

func (*NullableCopyTemplateOptions) UnmarshalJSON

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

func (*NullableCopyTemplateOptions) Unset

func (v *NullableCopyTemplateOptions) Unset()

type NullableCreateCombinedSubmissionResponse

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

func (NullableCreateCombinedSubmissionResponse) Get

func (NullableCreateCombinedSubmissionResponse) IsSet

func (NullableCreateCombinedSubmissionResponse) MarshalJSON

func (*NullableCreateCombinedSubmissionResponse) Set

func (*NullableCreateCombinedSubmissionResponse) UnmarshalJSON

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

func (*NullableCreateCombinedSubmissionResponse) Unset

type NullableCreateCustomFileData

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

func NewNullableCreateCustomFileData

func NewNullableCreateCustomFileData(val *CreateCustomFileData) *NullableCreateCustomFileData

func (NullableCreateCustomFileData) Get

func (NullableCreateCustomFileData) IsSet

func (NullableCreateCustomFileData) MarshalJSON

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

func (*NullableCreateCustomFileData) Set

func (*NullableCreateCustomFileData) UnmarshalJSON

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

func (*NullableCreateCustomFileData) Unset

func (v *NullableCreateCustomFileData) Unset()

type NullableCreateCustomFileResponse

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

func (NullableCreateCustomFileResponse) Get

func (NullableCreateCustomFileResponse) IsSet

func (NullableCreateCustomFileResponse) MarshalJSON

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

func (*NullableCreateCustomFileResponse) Set

func (*NullableCreateCustomFileResponse) UnmarshalJSON

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

func (*NullableCreateCustomFileResponse) Unset

type NullableCreateFolderData

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

func NewNullableCreateFolderData

func NewNullableCreateFolderData(val *CreateFolderData) *NullableCreateFolderData

func (NullableCreateFolderData) Get

func (NullableCreateFolderData) IsSet

func (v NullableCreateFolderData) IsSet() bool

func (NullableCreateFolderData) MarshalJSON

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

func (*NullableCreateFolderData) Set

func (*NullableCreateFolderData) UnmarshalJSON

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

func (*NullableCreateFolderData) Unset

func (v *NullableCreateFolderData) Unset()

type NullableCreateHtmlTemplate

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

func NewNullableCreateHtmlTemplate

func NewNullableCreateHtmlTemplate(val *CreateHtmlTemplate) *NullableCreateHtmlTemplate

func (NullableCreateHtmlTemplate) Get

func (NullableCreateHtmlTemplate) IsSet

func (v NullableCreateHtmlTemplate) IsSet() bool

func (NullableCreateHtmlTemplate) MarshalJSON

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

func (*NullableCreateHtmlTemplate) Set

func (*NullableCreateHtmlTemplate) UnmarshalJSON

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

func (*NullableCreateHtmlTemplate) Unset

func (v *NullableCreateHtmlTemplate) Unset()

type NullableCreatePdfSubmissionData

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

func (NullableCreatePdfSubmissionData) Get

func (NullableCreatePdfSubmissionData) IsSet

func (NullableCreatePdfSubmissionData) MarshalJSON

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

func (*NullableCreatePdfSubmissionData) Set

func (*NullableCreatePdfSubmissionData) UnmarshalJSON

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

func (*NullableCreatePdfSubmissionData) Unset

type NullableCreatePdfTemplate

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

func NewNullableCreatePdfTemplate

func NewNullableCreatePdfTemplate(val *CreatePdfTemplate) *NullableCreatePdfTemplate

func (NullableCreatePdfTemplate) Get

func (NullableCreatePdfTemplate) IsSet

func (v NullableCreatePdfTemplate) IsSet() bool

func (NullableCreatePdfTemplate) MarshalJSON

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

func (*NullableCreatePdfTemplate) Set

func (*NullableCreatePdfTemplate) UnmarshalJSON

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

func (*NullableCreatePdfTemplate) Unset

func (v *NullableCreatePdfTemplate) Unset()

type NullableCreateSubmissionDataRequestData

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

func (NullableCreateSubmissionDataRequestData) Get

func (NullableCreateSubmissionDataRequestData) IsSet

func (NullableCreateSubmissionDataRequestData) MarshalJSON

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

func (*NullableCreateSubmissionDataRequestData) Set

func (*NullableCreateSubmissionDataRequestData) UnmarshalJSON

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

func (*NullableCreateSubmissionDataRequestData) Unset

type NullableCreateSubmissionDataRequestEventRequest

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

func (NullableCreateSubmissionDataRequestEventRequest) Get

func (NullableCreateSubmissionDataRequestEventRequest) IsSet

func (NullableCreateSubmissionDataRequestEventRequest) MarshalJSON

func (*NullableCreateSubmissionDataRequestEventRequest) Set

func (*NullableCreateSubmissionDataRequestEventRequest) UnmarshalJSON

func (*NullableCreateSubmissionDataRequestEventRequest) Unset

type NullableCreateSubmissionDataRequestEventResponse

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

func (NullableCreateSubmissionDataRequestEventResponse) Get

func (NullableCreateSubmissionDataRequestEventResponse) IsSet

func (NullableCreateSubmissionDataRequestEventResponse) MarshalJSON

func (*NullableCreateSubmissionDataRequestEventResponse) Set

func (*NullableCreateSubmissionDataRequestEventResponse) UnmarshalJSON

func (*NullableCreateSubmissionDataRequestEventResponse) Unset

type NullableCreateSubmissionDataRequestResponse

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

func (NullableCreateSubmissionDataRequestResponse) Get

func (NullableCreateSubmissionDataRequestResponse) IsSet

func (NullableCreateSubmissionDataRequestResponse) MarshalJSON

func (*NullableCreateSubmissionDataRequestResponse) Set

func (*NullableCreateSubmissionDataRequestResponse) UnmarshalJSON

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

func (*NullableCreateSubmissionDataRequestResponse) Unset

type NullableCreateSubmissionDataRequestTokenResponse

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

func (NullableCreateSubmissionDataRequestTokenResponse) Get

func (NullableCreateSubmissionDataRequestTokenResponse) IsSet

func (NullableCreateSubmissionDataRequestTokenResponse) MarshalJSON

func (*NullableCreateSubmissionDataRequestTokenResponse) Set

func (*NullableCreateSubmissionDataRequestTokenResponse) UnmarshalJSON

func (*NullableCreateSubmissionDataRequestTokenResponse) Unset

type NullableCreateSubmissionResponse

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

func (NullableCreateSubmissionResponse) Get

func (NullableCreateSubmissionResponse) IsSet

func (NullableCreateSubmissionResponse) MarshalJSON

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

func (*NullableCreateSubmissionResponse) Set

func (*NullableCreateSubmissionResponse) UnmarshalJSON

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

func (*NullableCreateSubmissionResponse) Unset

type NullableCustomFile

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

func NewNullableCustomFile

func NewNullableCustomFile(val *CustomFile) *NullableCustomFile

func (NullableCustomFile) Get

func (v NullableCustomFile) Get() *CustomFile

func (NullableCustomFile) IsSet

func (v NullableCustomFile) IsSet() bool

func (NullableCustomFile) MarshalJSON

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

func (*NullableCustomFile) Set

func (v *NullableCustomFile) Set(val *CustomFile)

func (*NullableCustomFile) UnmarshalJSON

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

func (*NullableCustomFile) Unset

func (v *NullableCustomFile) Unset()

type NullableErrorOrMultipleErrorsResponse

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

func (NullableErrorOrMultipleErrorsResponse) Get

func (NullableErrorOrMultipleErrorsResponse) IsSet

func (NullableErrorOrMultipleErrorsResponse) MarshalJSON

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

func (*NullableErrorOrMultipleErrorsResponse) Set

func (*NullableErrorOrMultipleErrorsResponse) UnmarshalJSON

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

func (*NullableErrorOrMultipleErrorsResponse) 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 NullableFolder

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

func NewNullableFolder

func NewNullableFolder(val *Folder) *NullableFolder

func (NullableFolder) Get

func (v NullableFolder) Get() *Folder

func (NullableFolder) IsSet

func (v NullableFolder) IsSet() bool

func (NullableFolder) MarshalJSON

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

func (*NullableFolder) Set

func (v *NullableFolder) Set(val *Folder)

func (*NullableFolder) UnmarshalJSON

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

func (*NullableFolder) Unset

func (v *NullableFolder) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableJsonSchema

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

func NewNullableJsonSchema

func NewNullableJsonSchema(val *JsonSchema) *NullableJsonSchema

func (NullableJsonSchema) Get

func (v NullableJsonSchema) Get() *JsonSchema

func (NullableJsonSchema) IsSet

func (v NullableJsonSchema) IsSet() bool

func (NullableJsonSchema) MarshalJSON

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

func (*NullableJsonSchema) Set

func (v *NullableJsonSchema) Set(val *JsonSchema)

func (*NullableJsonSchema) UnmarshalJSON

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

func (*NullableJsonSchema) Unset

func (v *NullableJsonSchema) Unset()

type NullableListSubmissionsResponse

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

func (NullableListSubmissionsResponse) Get

func (NullableListSubmissionsResponse) IsSet

func (NullableListSubmissionsResponse) MarshalJSON

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

func (*NullableListSubmissionsResponse) Set

func (*NullableListSubmissionsResponse) UnmarshalJSON

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

func (*NullableListSubmissionsResponse) Unset

type NullableMoveFolderData

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

func NewNullableMoveFolderData

func NewNullableMoveFolderData(val *MoveFolderData) *NullableMoveFolderData

func (NullableMoveFolderData) Get

func (NullableMoveFolderData) IsSet

func (v NullableMoveFolderData) IsSet() bool

func (NullableMoveFolderData) MarshalJSON

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

func (*NullableMoveFolderData) Set

func (*NullableMoveFolderData) UnmarshalJSON

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

func (*NullableMoveFolderData) Unset

func (v *NullableMoveFolderData) Unset()

type NullableMoveTemplateData

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

func NewNullableMoveTemplateData

func NewNullableMoveTemplateData(val *MoveTemplateData) *NullableMoveTemplateData

func (NullableMoveTemplateData) Get

func (NullableMoveTemplateData) IsSet

func (v NullableMoveTemplateData) IsSet() bool

func (NullableMoveTemplateData) MarshalJSON

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

func (*NullableMoveTemplateData) Set

func (*NullableMoveTemplateData) UnmarshalJSON

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

func (*NullableMoveTemplateData) Unset

func (v *NullableMoveTemplateData) Unset()

type NullableMultipleErrorsResponse

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

func (NullableMultipleErrorsResponse) Get

func (NullableMultipleErrorsResponse) IsSet

func (NullableMultipleErrorsResponse) MarshalJSON

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

func (*NullableMultipleErrorsResponse) Set

func (*NullableMultipleErrorsResponse) UnmarshalJSON

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

func (*NullableMultipleErrorsResponse) Unset

func (v *NullableMultipleErrorsResponse) Unset()

type NullablePublishVersionData

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

func NewNullablePublishVersionData

func NewNullablePublishVersionData(val *PublishVersionData) *NullablePublishVersionData

func (NullablePublishVersionData) Get

func (NullablePublishVersionData) IsSet

func (v NullablePublishVersionData) IsSet() bool

func (NullablePublishVersionData) MarshalJSON

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

func (*NullablePublishVersionData) Set

func (*NullablePublishVersionData) UnmarshalJSON

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

func (*NullablePublishVersionData) Unset

func (v *NullablePublishVersionData) Unset()

type NullableRenameFolderData

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

func NewNullableRenameFolderData

func NewNullableRenameFolderData(val *RenameFolderData) *NullableRenameFolderData

func (NullableRenameFolderData) Get

func (NullableRenameFolderData) IsSet

func (v NullableRenameFolderData) IsSet() bool

func (NullableRenameFolderData) MarshalJSON

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

func (*NullableRenameFolderData) Set

func (*NullableRenameFolderData) UnmarshalJSON

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

func (*NullableRenameFolderData) Unset

func (v *NullableRenameFolderData) Unset()

type NullableRestoreVersionData

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

func NewNullableRestoreVersionData

func NewNullableRestoreVersionData(val *RestoreVersionData) *NullableRestoreVersionData

func (NullableRestoreVersionData) Get

func (NullableRestoreVersionData) IsSet

func (v NullableRestoreVersionData) IsSet() bool

func (NullableRestoreVersionData) MarshalJSON

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

func (*NullableRestoreVersionData) Set

func (*NullableRestoreVersionData) UnmarshalJSON

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

func (*NullableRestoreVersionData) Unset

func (v *NullableRestoreVersionData) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSubmission

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

func NewNullableSubmission

func NewNullableSubmission(val *Submission) *NullableSubmission

func (NullableSubmission) Get

func (v NullableSubmission) Get() *Submission

func (NullableSubmission) IsSet

func (v NullableSubmission) IsSet() bool

func (NullableSubmission) MarshalJSON

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

func (*NullableSubmission) Set

func (v *NullableSubmission) Set(val *Submission)

func (*NullableSubmission) UnmarshalJSON

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

func (*NullableSubmission) Unset

func (v *NullableSubmission) Unset()

type NullableSubmission422Response

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

func (NullableSubmission422Response) Get

func (NullableSubmission422Response) IsSet

func (NullableSubmission422Response) MarshalJSON

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

func (*NullableSubmission422Response) Set

func (*NullableSubmission422Response) UnmarshalJSON

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

func (*NullableSubmission422Response) Unset

func (v *NullableSubmission422Response) Unset()

type NullableSubmissionAction

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

func NewNullableSubmissionAction

func NewNullableSubmissionAction(val *SubmissionAction) *NullableSubmissionAction

func (NullableSubmissionAction) Get

func (NullableSubmissionAction) IsSet

func (v NullableSubmissionAction) IsSet() bool

func (NullableSubmissionAction) MarshalJSON

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

func (*NullableSubmissionAction) Set

func (*NullableSubmissionAction) UnmarshalJSON

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

func (*NullableSubmissionAction) Unset

func (v *NullableSubmissionAction) Unset()

type NullableSubmissionBatch

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

func NewNullableSubmissionBatch

func NewNullableSubmissionBatch(val *SubmissionBatch) *NullableSubmissionBatch

func (NullableSubmissionBatch) Get

func (NullableSubmissionBatch) IsSet

func (v NullableSubmissionBatch) IsSet() bool

func (NullableSubmissionBatch) MarshalJSON

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

func (*NullableSubmissionBatch) Set

func (*NullableSubmissionBatch) UnmarshalJSON

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

func (*NullableSubmissionBatch) Unset

func (v *NullableSubmissionBatch) Unset()

type NullableSubmissionBatchData

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

func NewNullableSubmissionBatchData

func NewNullableSubmissionBatchData(val *SubmissionBatchData) *NullableSubmissionBatchData

func (NullableSubmissionBatchData) Get

func (NullableSubmissionBatchData) IsSet

func (NullableSubmissionBatchData) MarshalJSON

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

func (*NullableSubmissionBatchData) Set

func (*NullableSubmissionBatchData) UnmarshalJSON

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

func (*NullableSubmissionBatchData) Unset

func (v *NullableSubmissionBatchData) Unset()

type NullableSubmissionBatchWithSubmissions

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

func (NullableSubmissionBatchWithSubmissions) Get

func (NullableSubmissionBatchWithSubmissions) IsSet

func (NullableSubmissionBatchWithSubmissions) MarshalJSON

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

func (*NullableSubmissionBatchWithSubmissions) Set

func (*NullableSubmissionBatchWithSubmissions) UnmarshalJSON

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

func (*NullableSubmissionBatchWithSubmissions) Unset

type NullableSubmissionDataRequest

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

func (NullableSubmissionDataRequest) Get

func (NullableSubmissionDataRequest) IsSet

func (NullableSubmissionDataRequest) MarshalJSON

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

func (*NullableSubmissionDataRequest) Set

func (*NullableSubmissionDataRequest) UnmarshalJSON

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

func (*NullableSubmissionDataRequest) Unset

func (v *NullableSubmissionDataRequest) Unset()

type NullableSubmissionDataRequestEvent

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

func (NullableSubmissionDataRequestEvent) Get

func (NullableSubmissionDataRequestEvent) IsSet

func (NullableSubmissionDataRequestEvent) MarshalJSON

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

func (*NullableSubmissionDataRequestEvent) Set

func (*NullableSubmissionDataRequestEvent) UnmarshalJSON

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

func (*NullableSubmissionDataRequestEvent) Unset

type NullableSubmissionDataRequestShow

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

func (NullableSubmissionDataRequestShow) Get

func (NullableSubmissionDataRequestShow) IsSet

func (NullableSubmissionDataRequestShow) MarshalJSON

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

func (*NullableSubmissionDataRequestShow) Set

func (*NullableSubmissionDataRequestShow) UnmarshalJSON

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

func (*NullableSubmissionDataRequestShow) Unset

type NullableSubmissionDataRequestToken

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

func (NullableSubmissionDataRequestToken) Get

func (NullableSubmissionDataRequestToken) IsSet

func (NullableSubmissionDataRequestToken) MarshalJSON

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

func (*NullableSubmissionDataRequestToken) Set

func (*NullableSubmissionDataRequestToken) UnmarshalJSON

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

func (*NullableSubmissionDataRequestToken) Unset

type NullableSubmissionPreview

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

func NewNullableSubmissionPreview

func NewNullableSubmissionPreview(val *SubmissionPreview) *NullableSubmissionPreview

func (NullableSubmissionPreview) Get

func (NullableSubmissionPreview) IsSet

func (v NullableSubmissionPreview) IsSet() bool

func (NullableSubmissionPreview) MarshalJSON

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

func (*NullableSubmissionPreview) Set

func (*NullableSubmissionPreview) UnmarshalJSON

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

func (*NullableSubmissionPreview) Unset

func (v *NullableSubmissionPreview) Unset()

type NullableSuccessErrorResponse

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

func NewNullableSuccessErrorResponse

func NewNullableSuccessErrorResponse(val *SuccessErrorResponse) *NullableSuccessErrorResponse

func (NullableSuccessErrorResponse) Get

func (NullableSuccessErrorResponse) IsSet

func (NullableSuccessErrorResponse) MarshalJSON

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

func (*NullableSuccessErrorResponse) Set

func (*NullableSuccessErrorResponse) UnmarshalJSON

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

func (*NullableSuccessErrorResponse) Unset

func (v *NullableSuccessErrorResponse) Unset()

type NullableSuccessMultipleErrorsResponse

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

func (NullableSuccessMultipleErrorsResponse) Get

func (NullableSuccessMultipleErrorsResponse) IsSet

func (NullableSuccessMultipleErrorsResponse) MarshalJSON

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

func (*NullableSuccessMultipleErrorsResponse) Set

func (*NullableSuccessMultipleErrorsResponse) UnmarshalJSON

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

func (*NullableSuccessMultipleErrorsResponse) Unset

type NullableTemplate

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

func NewNullableTemplate

func NewNullableTemplate(val *Template) *NullableTemplate

func (NullableTemplate) Get

func (v NullableTemplate) Get() *Template

func (NullableTemplate) IsSet

func (v NullableTemplate) IsSet() bool

func (NullableTemplate) MarshalJSON

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

func (*NullableTemplate) Set

func (v *NullableTemplate) Set(val *Template)

func (*NullableTemplate) UnmarshalJSON

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

func (*NullableTemplate) Unset

func (v *NullableTemplate) Unset()

type NullableTemplateAddFieldsResponse

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

func (NullableTemplateAddFieldsResponse) Get

func (NullableTemplateAddFieldsResponse) IsSet

func (NullableTemplateAddFieldsResponse) MarshalJSON

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

func (*NullableTemplateAddFieldsResponse) Set

func (*NullableTemplateAddFieldsResponse) UnmarshalJSON

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

func (*NullableTemplateAddFieldsResponse) Unset

type NullableTemplateDeleteResponse

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

func (NullableTemplateDeleteResponse) Get

func (NullableTemplateDeleteResponse) IsSet

func (NullableTemplateDeleteResponse) MarshalJSON

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

func (*NullableTemplateDeleteResponse) Set

func (*NullableTemplateDeleteResponse) UnmarshalJSON

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

func (*NullableTemplateDeleteResponse) Unset

func (v *NullableTemplateDeleteResponse) Unset()

type NullableTemplatePreview

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

func NewNullableTemplatePreview

func NewNullableTemplatePreview(val *TemplatePreview) *NullableTemplatePreview

func (NullableTemplatePreview) Get

func (NullableTemplatePreview) IsSet

func (v NullableTemplatePreview) IsSet() bool

func (NullableTemplatePreview) MarshalJSON

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

func (*NullableTemplatePreview) Set

func (*NullableTemplatePreview) UnmarshalJSON

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

func (*NullableTemplatePreview) Unset

func (v *NullableTemplatePreview) Unset()

type NullableTemplatePublishVersionResponse

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

func (NullableTemplatePublishVersionResponse) Get

func (NullableTemplatePublishVersionResponse) IsSet

func (NullableTemplatePublishVersionResponse) MarshalJSON

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

func (*NullableTemplatePublishVersionResponse) Set

func (*NullableTemplatePublishVersionResponse) UnmarshalJSON

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

func (*NullableTemplatePublishVersionResponse) 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 NullableUpdateHtmlTemplate

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

func NewNullableUpdateHtmlTemplate

func NewNullableUpdateHtmlTemplate(val *UpdateHtmlTemplate) *NullableUpdateHtmlTemplate

func (NullableUpdateHtmlTemplate) Get

func (NullableUpdateHtmlTemplate) IsSet

func (v NullableUpdateHtmlTemplate) IsSet() bool

func (NullableUpdateHtmlTemplate) MarshalJSON

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

func (*NullableUpdateHtmlTemplate) Set

func (*NullableUpdateHtmlTemplate) UnmarshalJSON

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

func (*NullableUpdateHtmlTemplate) Unset

func (v *NullableUpdateHtmlTemplate) Unset()

type NullableUpdatePdfTemplate

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

func NewNullableUpdatePdfTemplate

func NewNullableUpdatePdfTemplate(val *UpdatePdfTemplate) *NullableUpdatePdfTemplate

func (NullableUpdatePdfTemplate) Get

func (NullableUpdatePdfTemplate) IsSet

func (v NullableUpdatePdfTemplate) IsSet() bool

func (NullableUpdatePdfTemplate) MarshalJSON

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

func (*NullableUpdatePdfTemplate) Set

func (*NullableUpdatePdfTemplate) UnmarshalJSON

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

func (*NullableUpdatePdfTemplate) Unset

func (v *NullableUpdatePdfTemplate) Unset()

type NullableUpdateSubmissionDataRequestData

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

func (NullableUpdateSubmissionDataRequestData) Get

func (NullableUpdateSubmissionDataRequestData) IsSet

func (NullableUpdateSubmissionDataRequestData) MarshalJSON

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

func (*NullableUpdateSubmissionDataRequestData) Set

func (*NullableUpdateSubmissionDataRequestData) UnmarshalJSON

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

func (*NullableUpdateSubmissionDataRequestData) Unset

type NullableUploadPresignResponse

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

func (NullableUploadPresignResponse) Get

func (NullableUploadPresignResponse) IsSet

func (NullableUploadPresignResponse) MarshalJSON

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

func (*NullableUploadPresignResponse) Set

func (*NullableUploadPresignResponse) UnmarshalJSON

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

func (*NullableUploadPresignResponse) Unset

func (v *NullableUploadPresignResponse) Unset()

type PublishVersionData

type PublishVersionData struct {
	Description *string `json:"description,omitempty"`
	VersionType string  `json:"version_type"`
}

PublishVersionData struct for PublishVersionData

func NewPublishVersionData

func NewPublishVersionData(versionType string) *PublishVersionData

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

func NewPublishVersionDataWithDefaults

func NewPublishVersionDataWithDefaults() *PublishVersionData

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

func (*PublishVersionData) GetDescription

func (o *PublishVersionData) GetDescription() string

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

func (*PublishVersionData) GetDescriptionOk

func (o *PublishVersionData) 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 (*PublishVersionData) GetVersionType

func (o *PublishVersionData) GetVersionType() string

GetVersionType returns the VersionType field value

func (*PublishVersionData) GetVersionTypeOk

func (o *PublishVersionData) GetVersionTypeOk() (*string, bool)

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

func (*PublishVersionData) HasDescription

func (o *PublishVersionData) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (PublishVersionData) MarshalJSON

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

func (*PublishVersionData) SetDescription

func (o *PublishVersionData) SetDescription(v string)

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

func (*PublishVersionData) SetVersionType

func (o *PublishVersionData) SetVersionType(v string)

SetVersionType sets field value

func (PublishVersionData) ToMap

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

func (*PublishVersionData) UnmarshalJSON

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

type RenameFolderData

type RenameFolderData struct {
	Name string `json:"name"`
}

RenameFolderData struct for RenameFolderData

func NewRenameFolderData

func NewRenameFolderData(name string) *RenameFolderData

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

func NewRenameFolderDataWithDefaults

func NewRenameFolderDataWithDefaults() *RenameFolderData

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

func (*RenameFolderData) GetName

func (o *RenameFolderData) GetName() string

GetName returns the Name field value

func (*RenameFolderData) GetNameOk

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

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

func (RenameFolderData) MarshalJSON

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

func (*RenameFolderData) SetName

func (o *RenameFolderData) SetName(v string)

SetName sets field value

func (RenameFolderData) ToMap

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

func (*RenameFolderData) UnmarshalJSON

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

type RestoreVersionData

type RestoreVersionData struct {
	Version string `json:"version"`
}

RestoreVersionData struct for RestoreVersionData

func NewRestoreVersionData

func NewRestoreVersionData(version string) *RestoreVersionData

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

func NewRestoreVersionDataWithDefaults

func NewRestoreVersionDataWithDefaults() *RestoreVersionData

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

func (*RestoreVersionData) GetVersion

func (o *RestoreVersionData) GetVersion() string

GetVersion returns the Version field value

func (*RestoreVersionData) GetVersionOk

func (o *RestoreVersionData) GetVersionOk() (*string, bool)

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

func (RestoreVersionData) MarshalJSON

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

func (*RestoreVersionData) SetVersion

func (o *RestoreVersionData) SetVersion(v string)

SetVersion sets field value

func (RestoreVersionData) ToMap

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

func (*RestoreVersionData) UnmarshalJSON

func (o *RestoreVersionData) 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 Submission

type Submission struct {
	BatchId               NullableString          `json:"batch_id"`
	DataRequests          []SubmissionDataRequest `json:"data_requests"`
	Editable              NullableBool            `json:"editable"`
	Expired               bool                    `json:"expired"`
	ExpiresAt             NullableString          `json:"expires_at"`
	Id                    NullableString          `json:"id"`
	JsonSchemaErrors      []string                `json:"json_schema_errors"`
	Metadata              map[string]interface{}  `json:"metadata"`
	Password              NullableString          `json:"password"`
	ProcessedAt           NullableString          `json:"processed_at"`
	State                 string                  `json:"state"`
	TemplateId            NullableString          `json:"template_id"`
	TemplateType          string                  `json:"template_type"`
	TemplateVersion       NullableString          `json:"template_version"`
	Test                  bool                    `json:"test"`
	TruncatedText         map[string]interface{}  `json:"truncated_text"`
	PdfHash               NullableString          `json:"pdf_hash"`
	DownloadUrl           NullableString          `json:"download_url"`
	PermanentDownloadUrl  NullableString          `json:"permanent_download_url"`
	PreviewDownloadUrl    NullableString          `json:"preview_download_url"`
	PreviewGeneratedAt    NullableString          `json:"preview_generated_at"`
	AuditTrailDownloadUrl NullableString          `json:"audit_trail_download_url"`
	Actions               []SubmissionAction      `json:"actions"`
	Source                string                  `json:"source"`
	Referrer              NullableString          `json:"referrer"`
	Data                  map[string]interface{}  `json:"data"`
}

Submission struct for Submission

func NewSubmission

func NewSubmission(batchId NullableString, dataRequests []SubmissionDataRequest, editable NullableBool, expired bool, expiresAt NullableString, id NullableString, jsonSchemaErrors []string, metadata map[string]interface{}, password NullableString, processedAt NullableString, state string, templateId NullableString, templateType string, templateVersion NullableString, test bool, truncatedText map[string]interface{}, pdfHash NullableString, downloadUrl NullableString, permanentDownloadUrl NullableString, previewDownloadUrl NullableString, previewGeneratedAt NullableString, auditTrailDownloadUrl NullableString, actions []SubmissionAction, source string, referrer NullableString, data map[string]interface{}) *Submission

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

func NewSubmissionWithDefaults

func NewSubmissionWithDefaults() *Submission

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

func (*Submission) GetActions

func (o *Submission) GetActions() []SubmissionAction

GetActions returns the Actions field value

func (*Submission) GetActionsOk

func (o *Submission) GetActionsOk() ([]SubmissionAction, bool)

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

func (*Submission) GetAuditTrailDownloadUrl

func (o *Submission) GetAuditTrailDownloadUrl() string

GetAuditTrailDownloadUrl returns the AuditTrailDownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetAuditTrailDownloadUrlOk

func (o *Submission) GetAuditTrailDownloadUrlOk() (*string, bool)

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

func (*Submission) GetBatchId

func (o *Submission) GetBatchId() string

GetBatchId returns the BatchId field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetBatchIdOk

func (o *Submission) GetBatchIdOk() (*string, bool)

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

func (*Submission) GetData

func (o *Submission) GetData() map[string]interface{}

GetData returns the Data field value If the value is explicit nil, the zero value for map[string]interface{} will be returned

func (*Submission) GetDataOk

func (o *Submission) GetDataOk() (map[string]interface{}, bool)

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

func (*Submission) GetDataRequests

func (o *Submission) GetDataRequests() []SubmissionDataRequest

GetDataRequests returns the DataRequests field value

func (*Submission) GetDataRequestsOk

func (o *Submission) GetDataRequestsOk() ([]SubmissionDataRequest, bool)

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

func (*Submission) GetDownloadUrl

func (o *Submission) GetDownloadUrl() string

GetDownloadUrl returns the DownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetDownloadUrlOk

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

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

func (*Submission) GetEditable

func (o *Submission) GetEditable() bool

GetEditable returns the Editable field value If the value is explicit nil, the zero value for bool will be returned

func (*Submission) GetEditableOk

func (o *Submission) GetEditableOk() (*bool, bool)

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

func (*Submission) GetExpired

func (o *Submission) GetExpired() bool

GetExpired returns the Expired field value

func (*Submission) GetExpiredOk

func (o *Submission) GetExpiredOk() (*bool, bool)

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

func (*Submission) GetExpiresAt

func (o *Submission) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetExpiresAtOk

func (o *Submission) GetExpiresAtOk() (*string, bool)

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

func (*Submission) GetId

func (o *Submission) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetIdOk

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

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

func (*Submission) GetJsonSchemaErrors

func (o *Submission) GetJsonSchemaErrors() []string

GetJsonSchemaErrors returns the JsonSchemaErrors field value If the value is explicit nil, the zero value for []string will be returned

func (*Submission) GetJsonSchemaErrorsOk

func (o *Submission) GetJsonSchemaErrorsOk() ([]string, bool)

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

func (*Submission) GetMetadata

func (o *Submission) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value

func (*Submission) GetMetadataOk

func (o *Submission) GetMetadataOk() (map[string]interface{}, bool)

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

func (*Submission) GetPassword

func (o *Submission) GetPassword() string

GetPassword returns the Password field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetPasswordOk

func (o *Submission) GetPasswordOk() (*string, bool)

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

func (*Submission) GetPdfHash

func (o *Submission) GetPdfHash() string

GetPdfHash returns the PdfHash field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetPdfHashOk

func (o *Submission) GetPdfHashOk() (*string, bool)

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

func (*Submission) GetPermanentDownloadUrl

func (o *Submission) GetPermanentDownloadUrl() string

GetPermanentDownloadUrl returns the PermanentDownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetPermanentDownloadUrlOk

func (o *Submission) GetPermanentDownloadUrlOk() (*string, bool)

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

func (*Submission) GetPreviewDownloadUrl

func (o *Submission) GetPreviewDownloadUrl() string

GetPreviewDownloadUrl returns the PreviewDownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetPreviewDownloadUrlOk

func (o *Submission) GetPreviewDownloadUrlOk() (*string, bool)

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

func (*Submission) GetPreviewGeneratedAt

func (o *Submission) GetPreviewGeneratedAt() string

GetPreviewGeneratedAt returns the PreviewGeneratedAt field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetPreviewGeneratedAtOk

func (o *Submission) GetPreviewGeneratedAtOk() (*string, bool)

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

func (*Submission) GetProcessedAt

func (o *Submission) GetProcessedAt() string

GetProcessedAt returns the ProcessedAt field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetProcessedAtOk

func (o *Submission) GetProcessedAtOk() (*string, bool)

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

func (*Submission) GetReferrer

func (o *Submission) GetReferrer() string

GetReferrer returns the Referrer field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetReferrerOk

func (o *Submission) GetReferrerOk() (*string, bool)

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

func (*Submission) GetSource

func (o *Submission) GetSource() string

GetSource returns the Source field value

func (*Submission) GetSourceOk

func (o *Submission) GetSourceOk() (*string, bool)

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

func (*Submission) GetState

func (o *Submission) GetState() string

GetState returns the State field value

func (*Submission) GetStateOk

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

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

func (*Submission) GetTemplateId

func (o *Submission) GetTemplateId() string

GetTemplateId returns the TemplateId field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetTemplateIdOk

func (o *Submission) GetTemplateIdOk() (*string, bool)

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

func (*Submission) GetTemplateType

func (o *Submission) GetTemplateType() string

GetTemplateType returns the TemplateType field value

func (*Submission) GetTemplateTypeOk

func (o *Submission) GetTemplateTypeOk() (*string, bool)

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

func (*Submission) GetTemplateVersion

func (o *Submission) GetTemplateVersion() string

GetTemplateVersion returns the TemplateVersion field value If the value is explicit nil, the zero value for string will be returned

func (*Submission) GetTemplateVersionOk

func (o *Submission) GetTemplateVersionOk() (*string, bool)

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

func (*Submission) GetTest

func (o *Submission) GetTest() bool

GetTest returns the Test field value

func (*Submission) GetTestOk

func (o *Submission) GetTestOk() (*bool, bool)

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

func (*Submission) GetTruncatedText

func (o *Submission) GetTruncatedText() map[string]interface{}

GetTruncatedText returns the TruncatedText field value If the value is explicit nil, the zero value for map[string]interface{} will be returned

func (*Submission) GetTruncatedTextOk

func (o *Submission) GetTruncatedTextOk() (map[string]interface{}, bool)

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

func (Submission) MarshalJSON

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

func (*Submission) SetActions

func (o *Submission) SetActions(v []SubmissionAction)

SetActions sets field value

func (*Submission) SetAuditTrailDownloadUrl

func (o *Submission) SetAuditTrailDownloadUrl(v string)

SetAuditTrailDownloadUrl sets field value

func (*Submission) SetBatchId

func (o *Submission) SetBatchId(v string)

SetBatchId sets field value

func (*Submission) SetData

func (o *Submission) SetData(v map[string]interface{})

SetData sets field value

func (*Submission) SetDataRequests

func (o *Submission) SetDataRequests(v []SubmissionDataRequest)

SetDataRequests sets field value

func (*Submission) SetDownloadUrl

func (o *Submission) SetDownloadUrl(v string)

SetDownloadUrl sets field value

func (*Submission) SetEditable

func (o *Submission) SetEditable(v bool)

SetEditable sets field value

func (*Submission) SetExpired

func (o *Submission) SetExpired(v bool)

SetExpired sets field value

func (*Submission) SetExpiresAt

func (o *Submission) SetExpiresAt(v string)

SetExpiresAt sets field value

func (*Submission) SetId

func (o *Submission) SetId(v string)

SetId sets field value

func (*Submission) SetJsonSchemaErrors

func (o *Submission) SetJsonSchemaErrors(v []string)

SetJsonSchemaErrors sets field value

func (*Submission) SetMetadata

func (o *Submission) SetMetadata(v map[string]interface{})

SetMetadata sets field value

func (*Submission) SetPassword

func (o *Submission) SetPassword(v string)

SetPassword sets field value

func (*Submission) SetPdfHash

func (o *Submission) SetPdfHash(v string)

SetPdfHash sets field value

func (*Submission) SetPermanentDownloadUrl

func (o *Submission) SetPermanentDownloadUrl(v string)

SetPermanentDownloadUrl sets field value

func (*Submission) SetPreviewDownloadUrl

func (o *Submission) SetPreviewDownloadUrl(v string)

SetPreviewDownloadUrl sets field value

func (*Submission) SetPreviewGeneratedAt

func (o *Submission) SetPreviewGeneratedAt(v string)

SetPreviewGeneratedAt sets field value

func (*Submission) SetProcessedAt

func (o *Submission) SetProcessedAt(v string)

SetProcessedAt sets field value

func (*Submission) SetReferrer

func (o *Submission) SetReferrer(v string)

SetReferrer sets field value

func (*Submission) SetSource

func (o *Submission) SetSource(v string)

SetSource sets field value

func (*Submission) SetState

func (o *Submission) SetState(v string)

SetState sets field value

func (*Submission) SetTemplateId

func (o *Submission) SetTemplateId(v string)

SetTemplateId sets field value

func (*Submission) SetTemplateType

func (o *Submission) SetTemplateType(v string)

SetTemplateType sets field value

func (*Submission) SetTemplateVersion

func (o *Submission) SetTemplateVersion(v string)

SetTemplateVersion sets field value

func (*Submission) SetTest

func (o *Submission) SetTest(v bool)

SetTest sets field value

func (*Submission) SetTruncatedText

func (o *Submission) SetTruncatedText(v map[string]interface{})

SetTruncatedText sets field value

func (Submission) ToMap

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

func (*Submission) UnmarshalJSON

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

type Submission422Response

type Submission422Response struct {
	Status string `json:"status"`
	// Single error message (for non-validation errors)
	Error      *string            `json:"error,omitempty"`
	Submission *SubmissionPreview `json:"submission,omitempty"`
	// Array of validation error messages (when submission data is invalid)
	Errors []string `json:"errors,omitempty"`
}

Submission422Response struct for Submission422Response

func NewSubmission422Response

func NewSubmission422Response(status string) *Submission422Response

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

func NewSubmission422ResponseWithDefaults

func NewSubmission422ResponseWithDefaults() *Submission422Response

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

func (*Submission422Response) GetError

func (o *Submission422Response) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*Submission422Response) GetErrorOk

func (o *Submission422Response) 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 (*Submission422Response) GetErrors

func (o *Submission422Response) GetErrors() []string

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

func (*Submission422Response) GetErrorsOk

func (o *Submission422Response) GetErrorsOk() ([]string, bool)

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

func (*Submission422Response) GetStatus

func (o *Submission422Response) GetStatus() string

GetStatus returns the Status field value

func (*Submission422Response) GetStatusOk

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

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

func (*Submission422Response) GetSubmission

func (o *Submission422Response) GetSubmission() SubmissionPreview

GetSubmission returns the Submission field value if set, zero value otherwise.

func (*Submission422Response) GetSubmissionOk

func (o *Submission422Response) GetSubmissionOk() (*SubmissionPreview, bool)

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

func (*Submission422Response) HasError

func (o *Submission422Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*Submission422Response) HasErrors

func (o *Submission422Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*Submission422Response) HasSubmission

func (o *Submission422Response) HasSubmission() bool

HasSubmission returns a boolean if a field has been set.

func (Submission422Response) MarshalJSON

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

func (*Submission422Response) SetError

func (o *Submission422Response) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*Submission422Response) SetErrors

func (o *Submission422Response) SetErrors(v []string)

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

func (*Submission422Response) SetStatus

func (o *Submission422Response) SetStatus(v string)

SetStatus sets field value

func (*Submission422Response) SetSubmission

func (o *Submission422Response) SetSubmission(v SubmissionPreview)

SetSubmission gets a reference to the given SubmissionPreview and assigns it to the Submission field.

func (Submission422Response) ToMap

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

func (*Submission422Response) UnmarshalJSON

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

type SubmissionAction

type SubmissionAction struct {
	Id             NullableString         `json:"id"`
	IntegrationId  NullableString         `json:"integration_id"`
	State          string                 `json:"state"`
	ActionType     string                 `json:"action_type"`
	ActionCategory string                 `json:"action_category"`
	ResultData     map[string]interface{} `json:"result_data"`
}

SubmissionAction struct for SubmissionAction

func NewSubmissionAction

func NewSubmissionAction(id NullableString, integrationId NullableString, state string, actionType string, actionCategory string, resultData map[string]interface{}) *SubmissionAction

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

func NewSubmissionActionWithDefaults

func NewSubmissionActionWithDefaults() *SubmissionAction

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

func (*SubmissionAction) GetActionCategory

func (o *SubmissionAction) GetActionCategory() string

GetActionCategory returns the ActionCategory field value

func (*SubmissionAction) GetActionCategoryOk

func (o *SubmissionAction) GetActionCategoryOk() (*string, bool)

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

func (*SubmissionAction) GetActionType

func (o *SubmissionAction) GetActionType() string

GetActionType returns the ActionType field value

func (*SubmissionAction) GetActionTypeOk

func (o *SubmissionAction) GetActionTypeOk() (*string, bool)

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

func (*SubmissionAction) GetId

func (o *SubmissionAction) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionAction) GetIdOk

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

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

func (*SubmissionAction) GetIntegrationId

func (o *SubmissionAction) GetIntegrationId() string

GetIntegrationId returns the IntegrationId field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionAction) GetIntegrationIdOk

func (o *SubmissionAction) GetIntegrationIdOk() (*string, bool)

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

func (*SubmissionAction) GetResultData

func (o *SubmissionAction) GetResultData() map[string]interface{}

GetResultData returns the ResultData field value

func (*SubmissionAction) GetResultDataOk

func (o *SubmissionAction) GetResultDataOk() (map[string]interface{}, bool)

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

func (*SubmissionAction) GetState

func (o *SubmissionAction) GetState() string

GetState returns the State field value

func (*SubmissionAction) GetStateOk

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

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

func (SubmissionAction) MarshalJSON

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

func (*SubmissionAction) SetActionCategory

func (o *SubmissionAction) SetActionCategory(v string)

SetActionCategory sets field value

func (*SubmissionAction) SetActionType

func (o *SubmissionAction) SetActionType(v string)

SetActionType sets field value

func (*SubmissionAction) SetId

func (o *SubmissionAction) SetId(v string)

SetId sets field value

func (*SubmissionAction) SetIntegrationId

func (o *SubmissionAction) SetIntegrationId(v string)

SetIntegrationId sets field value

func (*SubmissionAction) SetResultData

func (o *SubmissionAction) SetResultData(v map[string]interface{})

SetResultData sets field value

func (*SubmissionAction) SetState

func (o *SubmissionAction) SetState(v string)

SetState sets field value

func (SubmissionAction) ToMap

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

func (*SubmissionAction) UnmarshalJSON

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

type SubmissionBatch

type SubmissionBatch struct {
	Id                   NullableString         `json:"id"`
	State                string                 `json:"state"`
	Metadata             map[string]interface{} `json:"metadata"`
	ProcessedAt          NullableString         `json:"processed_at"`
	TotalCount           int32                  `json:"total_count"`
	PendingCount         int32                  `json:"pending_count"`
	ErrorCount           int32                  `json:"error_count"`
	CompletionPercentage float32                `json:"completion_percentage"`
}

SubmissionBatch struct for SubmissionBatch

func NewSubmissionBatch

func NewSubmissionBatch(id NullableString, state string, metadata map[string]interface{}, processedAt NullableString, totalCount int32, pendingCount int32, errorCount int32, completionPercentage float32) *SubmissionBatch

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

func NewSubmissionBatchWithDefaults

func NewSubmissionBatchWithDefaults() *SubmissionBatch

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

func (*SubmissionBatch) GetCompletionPercentage

func (o *SubmissionBatch) GetCompletionPercentage() float32

GetCompletionPercentage returns the CompletionPercentage field value

func (*SubmissionBatch) GetCompletionPercentageOk

func (o *SubmissionBatch) GetCompletionPercentageOk() (*float32, bool)

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

func (*SubmissionBatch) GetErrorCount

func (o *SubmissionBatch) GetErrorCount() int32

GetErrorCount returns the ErrorCount field value

func (*SubmissionBatch) GetErrorCountOk

func (o *SubmissionBatch) GetErrorCountOk() (*int32, bool)

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

func (*SubmissionBatch) GetId

func (o *SubmissionBatch) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionBatch) GetIdOk

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

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

func (*SubmissionBatch) GetMetadata

func (o *SubmissionBatch) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value

func (*SubmissionBatch) GetMetadataOk

func (o *SubmissionBatch) GetMetadataOk() (map[string]interface{}, bool)

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

func (*SubmissionBatch) GetPendingCount

func (o *SubmissionBatch) GetPendingCount() int32

GetPendingCount returns the PendingCount field value

func (*SubmissionBatch) GetPendingCountOk

func (o *SubmissionBatch) GetPendingCountOk() (*int32, bool)

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

func (*SubmissionBatch) GetProcessedAt

func (o *SubmissionBatch) GetProcessedAt() string

GetProcessedAt returns the ProcessedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionBatch) GetProcessedAtOk

func (o *SubmissionBatch) GetProcessedAtOk() (*string, bool)

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

func (*SubmissionBatch) GetState

func (o *SubmissionBatch) GetState() string

GetState returns the State field value

func (*SubmissionBatch) GetStateOk

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

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

func (*SubmissionBatch) GetTotalCount

func (o *SubmissionBatch) GetTotalCount() int32

GetTotalCount returns the TotalCount field value

func (*SubmissionBatch) GetTotalCountOk

func (o *SubmissionBatch) GetTotalCountOk() (*int32, bool)

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

func (SubmissionBatch) MarshalJSON

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

func (*SubmissionBatch) SetCompletionPercentage

func (o *SubmissionBatch) SetCompletionPercentage(v float32)

SetCompletionPercentage sets field value

func (*SubmissionBatch) SetErrorCount

func (o *SubmissionBatch) SetErrorCount(v int32)

SetErrorCount sets field value

func (*SubmissionBatch) SetId

func (o *SubmissionBatch) SetId(v string)

SetId sets field value

func (*SubmissionBatch) SetMetadata

func (o *SubmissionBatch) SetMetadata(v map[string]interface{})

SetMetadata sets field value

func (*SubmissionBatch) SetPendingCount

func (o *SubmissionBatch) SetPendingCount(v int32)

SetPendingCount sets field value

func (*SubmissionBatch) SetProcessedAt

func (o *SubmissionBatch) SetProcessedAt(v string)

SetProcessedAt sets field value

func (*SubmissionBatch) SetState

func (o *SubmissionBatch) SetState(v string)

SetState sets field value

func (*SubmissionBatch) SetTotalCount

func (o *SubmissionBatch) SetTotalCount(v int32)

SetTotalCount sets field value

func (SubmissionBatch) ToMap

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

func (*SubmissionBatch) UnmarshalJSON

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

type SubmissionBatchData

type SubmissionBatchData struct {
	Metadata        map[string]interface{}   `json:"metadata,omitempty"`
	Submissions     []map[string]interface{} `json:"submissions"`
	TemplateId      NullableString           `json:"template_id,omitempty"`
	TemplateVersion NullableString           `json:"template_version,omitempty"`
	Test            *bool                    `json:"test,omitempty"`
}

SubmissionBatchData struct for SubmissionBatchData

func NewSubmissionBatchData

func NewSubmissionBatchData(submissions []map[string]interface{}) *SubmissionBatchData

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

func NewSubmissionBatchDataWithDefaults

func NewSubmissionBatchDataWithDefaults() *SubmissionBatchData

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

func (*SubmissionBatchData) GetMetadata

func (o *SubmissionBatchData) GetMetadata() map[string]interface{}

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

func (*SubmissionBatchData) GetMetadataOk

func (o *SubmissionBatchData) GetMetadataOk() (map[string]interface{}, bool)

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

func (*SubmissionBatchData) GetSubmissions

func (o *SubmissionBatchData) GetSubmissions() []map[string]interface{}

GetSubmissions returns the Submissions field value

func (*SubmissionBatchData) GetSubmissionsOk

func (o *SubmissionBatchData) GetSubmissionsOk() ([]map[string]interface{}, bool)

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

func (*SubmissionBatchData) GetTemplateId

func (o *SubmissionBatchData) GetTemplateId() string

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

func (*SubmissionBatchData) GetTemplateIdOk

func (o *SubmissionBatchData) GetTemplateIdOk() (*string, bool)

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

func (*SubmissionBatchData) GetTemplateVersion

func (o *SubmissionBatchData) GetTemplateVersion() string

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

func (*SubmissionBatchData) GetTemplateVersionOk

func (o *SubmissionBatchData) GetTemplateVersionOk() (*string, bool)

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

func (*SubmissionBatchData) GetTest

func (o *SubmissionBatchData) GetTest() bool

GetTest returns the Test field value if set, zero value otherwise.

func (*SubmissionBatchData) GetTestOk

func (o *SubmissionBatchData) GetTestOk() (*bool, bool)

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

func (*SubmissionBatchData) HasMetadata

func (o *SubmissionBatchData) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*SubmissionBatchData) HasTemplateId

func (o *SubmissionBatchData) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*SubmissionBatchData) HasTemplateVersion

func (o *SubmissionBatchData) HasTemplateVersion() bool

HasTemplateVersion returns a boolean if a field has been set.

func (*SubmissionBatchData) HasTest

func (o *SubmissionBatchData) HasTest() bool

HasTest returns a boolean if a field has been set.

func (SubmissionBatchData) MarshalJSON

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

func (*SubmissionBatchData) SetMetadata

func (o *SubmissionBatchData) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*SubmissionBatchData) SetSubmissions

func (o *SubmissionBatchData) SetSubmissions(v []map[string]interface{})

SetSubmissions sets field value

func (*SubmissionBatchData) SetTemplateId

func (o *SubmissionBatchData) SetTemplateId(v string)

SetTemplateId gets a reference to the given NullableString and assigns it to the TemplateId field.

func (*SubmissionBatchData) SetTemplateIdNil

func (o *SubmissionBatchData) SetTemplateIdNil()

SetTemplateIdNil sets the value for TemplateId to be an explicit nil

func (*SubmissionBatchData) SetTemplateVersion

func (o *SubmissionBatchData) SetTemplateVersion(v string)

SetTemplateVersion gets a reference to the given NullableString and assigns it to the TemplateVersion field.

func (*SubmissionBatchData) SetTemplateVersionNil

func (o *SubmissionBatchData) SetTemplateVersionNil()

SetTemplateVersionNil sets the value for TemplateVersion to be an explicit nil

func (*SubmissionBatchData) SetTest

func (o *SubmissionBatchData) SetTest(v bool)

SetTest gets a reference to the given bool and assigns it to the Test field.

func (SubmissionBatchData) ToMap

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

func (*SubmissionBatchData) UnmarshalJSON

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

func (*SubmissionBatchData) UnsetTemplateId

func (o *SubmissionBatchData) UnsetTemplateId()

UnsetTemplateId ensures that no value is present for TemplateId, not even an explicit nil

func (*SubmissionBatchData) UnsetTemplateVersion

func (o *SubmissionBatchData) UnsetTemplateVersion()

UnsetTemplateVersion ensures that no value is present for TemplateVersion, not even an explicit nil

type SubmissionBatchWithSubmissions

type SubmissionBatchWithSubmissions struct {
	Id                   NullableString         `json:"id"`
	State                string                 `json:"state"`
	Metadata             map[string]interface{} `json:"metadata"`
	ProcessedAt          NullableString         `json:"processed_at"`
	TotalCount           int32                  `json:"total_count"`
	PendingCount         int32                  `json:"pending_count"`
	ErrorCount           int32                  `json:"error_count"`
	CompletionPercentage float32                `json:"completion_percentage"`
	Submissions          []SubmissionPreview    `json:"submissions,omitempty"`
}

SubmissionBatchWithSubmissions struct for SubmissionBatchWithSubmissions

func NewSubmissionBatchWithSubmissions

func NewSubmissionBatchWithSubmissions(id NullableString, state string, metadata map[string]interface{}, processedAt NullableString, totalCount int32, pendingCount int32, errorCount int32, completionPercentage float32) *SubmissionBatchWithSubmissions

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

func NewSubmissionBatchWithSubmissionsWithDefaults

func NewSubmissionBatchWithSubmissionsWithDefaults() *SubmissionBatchWithSubmissions

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

func (*SubmissionBatchWithSubmissions) GetCompletionPercentage

func (o *SubmissionBatchWithSubmissions) GetCompletionPercentage() float32

GetCompletionPercentage returns the CompletionPercentage field value

func (*SubmissionBatchWithSubmissions) GetCompletionPercentageOk

func (o *SubmissionBatchWithSubmissions) GetCompletionPercentageOk() (*float32, bool)

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

func (*SubmissionBatchWithSubmissions) GetErrorCount

func (o *SubmissionBatchWithSubmissions) GetErrorCount() int32

GetErrorCount returns the ErrorCount field value

func (*SubmissionBatchWithSubmissions) GetErrorCountOk

func (o *SubmissionBatchWithSubmissions) GetErrorCountOk() (*int32, bool)

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

func (*SubmissionBatchWithSubmissions) GetId

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionBatchWithSubmissions) GetIdOk

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

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

func (*SubmissionBatchWithSubmissions) GetMetadata

func (o *SubmissionBatchWithSubmissions) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value

func (*SubmissionBatchWithSubmissions) GetMetadataOk

func (o *SubmissionBatchWithSubmissions) GetMetadataOk() (map[string]interface{}, bool)

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

func (*SubmissionBatchWithSubmissions) GetPendingCount

func (o *SubmissionBatchWithSubmissions) GetPendingCount() int32

GetPendingCount returns the PendingCount field value

func (*SubmissionBatchWithSubmissions) GetPendingCountOk

func (o *SubmissionBatchWithSubmissions) GetPendingCountOk() (*int32, bool)

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

func (*SubmissionBatchWithSubmissions) GetProcessedAt

func (o *SubmissionBatchWithSubmissions) GetProcessedAt() string

GetProcessedAt returns the ProcessedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionBatchWithSubmissions) GetProcessedAtOk

func (o *SubmissionBatchWithSubmissions) GetProcessedAtOk() (*string, bool)

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

func (*SubmissionBatchWithSubmissions) GetState

func (o *SubmissionBatchWithSubmissions) GetState() string

GetState returns the State field value

func (*SubmissionBatchWithSubmissions) GetStateOk

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

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

func (*SubmissionBatchWithSubmissions) GetSubmissions

func (o *SubmissionBatchWithSubmissions) GetSubmissions() []SubmissionPreview

GetSubmissions returns the Submissions field value if set, zero value otherwise.

func (*SubmissionBatchWithSubmissions) GetSubmissionsOk

func (o *SubmissionBatchWithSubmissions) GetSubmissionsOk() ([]SubmissionPreview, bool)

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

func (*SubmissionBatchWithSubmissions) GetTotalCount

func (o *SubmissionBatchWithSubmissions) GetTotalCount() int32

GetTotalCount returns the TotalCount field value

func (*SubmissionBatchWithSubmissions) GetTotalCountOk

func (o *SubmissionBatchWithSubmissions) GetTotalCountOk() (*int32, bool)

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

func (*SubmissionBatchWithSubmissions) HasSubmissions

func (o *SubmissionBatchWithSubmissions) HasSubmissions() bool

HasSubmissions returns a boolean if a field has been set.

func (SubmissionBatchWithSubmissions) MarshalJSON

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

func (*SubmissionBatchWithSubmissions) SetCompletionPercentage

func (o *SubmissionBatchWithSubmissions) SetCompletionPercentage(v float32)

SetCompletionPercentage sets field value

func (*SubmissionBatchWithSubmissions) SetErrorCount

func (o *SubmissionBatchWithSubmissions) SetErrorCount(v int32)

SetErrorCount sets field value

func (*SubmissionBatchWithSubmissions) SetId

SetId sets field value

func (*SubmissionBatchWithSubmissions) SetMetadata

func (o *SubmissionBatchWithSubmissions) SetMetadata(v map[string]interface{})

SetMetadata sets field value

func (*SubmissionBatchWithSubmissions) SetPendingCount

func (o *SubmissionBatchWithSubmissions) SetPendingCount(v int32)

SetPendingCount sets field value

func (*SubmissionBatchWithSubmissions) SetProcessedAt

func (o *SubmissionBatchWithSubmissions) SetProcessedAt(v string)

SetProcessedAt sets field value

func (*SubmissionBatchWithSubmissions) SetState

func (o *SubmissionBatchWithSubmissions) SetState(v string)

SetState sets field value

func (*SubmissionBatchWithSubmissions) SetSubmissions

func (o *SubmissionBatchWithSubmissions) SetSubmissions(v []SubmissionPreview)

SetSubmissions gets a reference to the given []SubmissionPreview and assigns it to the Submissions field.

func (*SubmissionBatchWithSubmissions) SetTotalCount

func (o *SubmissionBatchWithSubmissions) SetTotalCount(v int32)

SetTotalCount sets field value

func (SubmissionBatchWithSubmissions) ToMap

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

func (*SubmissionBatchWithSubmissions) UnmarshalJSON

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

type SubmissionDataRequest

type SubmissionDataRequest struct {
	Id                   NullableString         `json:"id"`
	Email                NullableString         `json:"email"`
	Name                 NullableString         `json:"name"`
	Order                NullableInt32          `json:"order"`
	SortOrder            int32                  `json:"sort_order"`
	Fields               []string               `json:"fields"`
	Metadata             map[string]interface{} `json:"metadata"`
	State                string                 `json:"state"`
	ViewedAt             NullableString         `json:"viewed_at"`
	CompletedAt          NullableString         `json:"completed_at"`
	Data                 map[string]interface{} `json:"data"`
	AuthType             string                 `json:"auth_type"`
	AuthSecondFactorType string                 `json:"auth_second_factor_type"`
	AuthProvider         NullableString         `json:"auth_provider"`
	AuthSessionStartedAt NullableString         `json:"auth_session_started_at"`
	AuthSessionIdHash    NullableString         `json:"auth_session_id_hash"`
	AuthUserIdHash       NullableString         `json:"auth_user_id_hash"`
	AuthUsernameHash     NullableString         `json:"auth_username_hash"`
	AuthPhoneNumberHash  NullableString         `json:"auth_phone_number_hash"`
	IpAddress            NullableString         `json:"ip_address"`
	UserAgent            NullableString         `json:"user_agent"`
}

SubmissionDataRequest struct for SubmissionDataRequest

func NewSubmissionDataRequest

func NewSubmissionDataRequest(id NullableString, email NullableString, name NullableString, order NullableInt32, sortOrder int32, fields []string, metadata map[string]interface{}, state string, viewedAt NullableString, completedAt NullableString, data map[string]interface{}, authType string, authSecondFactorType string, authProvider NullableString, authSessionStartedAt NullableString, authSessionIdHash NullableString, authUserIdHash NullableString, authUsernameHash NullableString, authPhoneNumberHash NullableString, ipAddress NullableString, userAgent NullableString) *SubmissionDataRequest

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

func NewSubmissionDataRequestWithDefaults

func NewSubmissionDataRequestWithDefaults() *SubmissionDataRequest

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

func (*SubmissionDataRequest) GetAuthPhoneNumberHash

func (o *SubmissionDataRequest) GetAuthPhoneNumberHash() string

GetAuthPhoneNumberHash returns the AuthPhoneNumberHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetAuthPhoneNumberHashOk

func (o *SubmissionDataRequest) GetAuthPhoneNumberHashOk() (*string, bool)

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

func (*SubmissionDataRequest) GetAuthProvider

func (o *SubmissionDataRequest) GetAuthProvider() string

GetAuthProvider returns the AuthProvider field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetAuthProviderOk

func (o *SubmissionDataRequest) GetAuthProviderOk() (*string, bool)

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

func (*SubmissionDataRequest) GetAuthSecondFactorType

func (o *SubmissionDataRequest) GetAuthSecondFactorType() string

GetAuthSecondFactorType returns the AuthSecondFactorType field value

func (*SubmissionDataRequest) GetAuthSecondFactorTypeOk

func (o *SubmissionDataRequest) GetAuthSecondFactorTypeOk() (*string, bool)

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

func (*SubmissionDataRequest) GetAuthSessionIdHash

func (o *SubmissionDataRequest) GetAuthSessionIdHash() string

GetAuthSessionIdHash returns the AuthSessionIdHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetAuthSessionIdHashOk

func (o *SubmissionDataRequest) GetAuthSessionIdHashOk() (*string, bool)

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

func (*SubmissionDataRequest) GetAuthSessionStartedAt

func (o *SubmissionDataRequest) GetAuthSessionStartedAt() string

GetAuthSessionStartedAt returns the AuthSessionStartedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetAuthSessionStartedAtOk

func (o *SubmissionDataRequest) GetAuthSessionStartedAtOk() (*string, bool)

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

func (*SubmissionDataRequest) GetAuthType

func (o *SubmissionDataRequest) GetAuthType() string

GetAuthType returns the AuthType field value

func (*SubmissionDataRequest) GetAuthTypeOk

func (o *SubmissionDataRequest) GetAuthTypeOk() (*string, bool)

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

func (*SubmissionDataRequest) GetAuthUserIdHash

func (o *SubmissionDataRequest) GetAuthUserIdHash() string

GetAuthUserIdHash returns the AuthUserIdHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetAuthUserIdHashOk

func (o *SubmissionDataRequest) GetAuthUserIdHashOk() (*string, bool)

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

func (*SubmissionDataRequest) GetAuthUsernameHash

func (o *SubmissionDataRequest) GetAuthUsernameHash() string

GetAuthUsernameHash returns the AuthUsernameHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetAuthUsernameHashOk

func (o *SubmissionDataRequest) GetAuthUsernameHashOk() (*string, bool)

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

func (*SubmissionDataRequest) GetCompletedAt

func (o *SubmissionDataRequest) GetCompletedAt() string

GetCompletedAt returns the CompletedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetCompletedAtOk

func (o *SubmissionDataRequest) GetCompletedAtOk() (*string, bool)

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

func (*SubmissionDataRequest) GetData

func (o *SubmissionDataRequest) GetData() map[string]interface{}

GetData returns the Data field value If the value is explicit nil, the zero value for map[string]interface{} will be returned

func (*SubmissionDataRequest) GetDataOk

func (o *SubmissionDataRequest) GetDataOk() (map[string]interface{}, bool)

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

func (*SubmissionDataRequest) GetEmail

func (o *SubmissionDataRequest) GetEmail() string

GetEmail returns the Email field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetEmailOk

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

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

func (*SubmissionDataRequest) GetFields

func (o *SubmissionDataRequest) GetFields() []string

GetFields returns the Fields field value If the value is explicit nil, the zero value for []string will be returned

func (*SubmissionDataRequest) GetFieldsOk

func (o *SubmissionDataRequest) GetFieldsOk() ([]string, bool)

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

func (*SubmissionDataRequest) GetId

func (o *SubmissionDataRequest) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetIdOk

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

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

func (*SubmissionDataRequest) GetIpAddress

func (o *SubmissionDataRequest) GetIpAddress() string

GetIpAddress returns the IpAddress field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetIpAddressOk

func (o *SubmissionDataRequest) GetIpAddressOk() (*string, bool)

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

func (*SubmissionDataRequest) GetMetadata

func (o *SubmissionDataRequest) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value If the value is explicit nil, the zero value for map[string]interface{} will be returned

func (*SubmissionDataRequest) GetMetadataOk

func (o *SubmissionDataRequest) GetMetadataOk() (map[string]interface{}, bool)

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

func (*SubmissionDataRequest) GetName

func (o *SubmissionDataRequest) GetName() string

GetName returns the Name field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetNameOk

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

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

func (*SubmissionDataRequest) GetOrder

func (o *SubmissionDataRequest) GetOrder() int32

GetOrder returns the Order field value If the value is explicit nil, the zero value for int32 will be returned

func (*SubmissionDataRequest) GetOrderOk

func (o *SubmissionDataRequest) GetOrderOk() (*int32, bool)

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

func (*SubmissionDataRequest) GetSortOrder

func (o *SubmissionDataRequest) GetSortOrder() int32

GetSortOrder returns the SortOrder field value

func (*SubmissionDataRequest) GetSortOrderOk

func (o *SubmissionDataRequest) GetSortOrderOk() (*int32, bool)

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

func (*SubmissionDataRequest) GetState

func (o *SubmissionDataRequest) GetState() string

GetState returns the State field value

func (*SubmissionDataRequest) GetStateOk

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

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

func (*SubmissionDataRequest) GetUserAgent

func (o *SubmissionDataRequest) GetUserAgent() string

GetUserAgent returns the UserAgent field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetUserAgentOk

func (o *SubmissionDataRequest) GetUserAgentOk() (*string, bool)

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

func (*SubmissionDataRequest) GetViewedAt

func (o *SubmissionDataRequest) GetViewedAt() string

GetViewedAt returns the ViewedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequest) GetViewedAtOk

func (o *SubmissionDataRequest) GetViewedAtOk() (*string, bool)

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

func (SubmissionDataRequest) MarshalJSON

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

func (*SubmissionDataRequest) SetAuthPhoneNumberHash

func (o *SubmissionDataRequest) SetAuthPhoneNumberHash(v string)

SetAuthPhoneNumberHash sets field value

func (*SubmissionDataRequest) SetAuthProvider

func (o *SubmissionDataRequest) SetAuthProvider(v string)

SetAuthProvider sets field value

func (*SubmissionDataRequest) SetAuthSecondFactorType

func (o *SubmissionDataRequest) SetAuthSecondFactorType(v string)

SetAuthSecondFactorType sets field value

func (*SubmissionDataRequest) SetAuthSessionIdHash

func (o *SubmissionDataRequest) SetAuthSessionIdHash(v string)

SetAuthSessionIdHash sets field value

func (*SubmissionDataRequest) SetAuthSessionStartedAt

func (o *SubmissionDataRequest) SetAuthSessionStartedAt(v string)

SetAuthSessionStartedAt sets field value

func (*SubmissionDataRequest) SetAuthType

func (o *SubmissionDataRequest) SetAuthType(v string)

SetAuthType sets field value

func (*SubmissionDataRequest) SetAuthUserIdHash

func (o *SubmissionDataRequest) SetAuthUserIdHash(v string)

SetAuthUserIdHash sets field value

func (*SubmissionDataRequest) SetAuthUsernameHash

func (o *SubmissionDataRequest) SetAuthUsernameHash(v string)

SetAuthUsernameHash sets field value

func (*SubmissionDataRequest) SetCompletedAt

func (o *SubmissionDataRequest) SetCompletedAt(v string)

SetCompletedAt sets field value

func (*SubmissionDataRequest) SetData

func (o *SubmissionDataRequest) SetData(v map[string]interface{})

SetData sets field value

func (*SubmissionDataRequest) SetEmail

func (o *SubmissionDataRequest) SetEmail(v string)

SetEmail sets field value

func (*SubmissionDataRequest) SetFields

func (o *SubmissionDataRequest) SetFields(v []string)

SetFields sets field value

func (*SubmissionDataRequest) SetId

func (o *SubmissionDataRequest) SetId(v string)

SetId sets field value

func (*SubmissionDataRequest) SetIpAddress

func (o *SubmissionDataRequest) SetIpAddress(v string)

SetIpAddress sets field value

func (*SubmissionDataRequest) SetMetadata

func (o *SubmissionDataRequest) SetMetadata(v map[string]interface{})

SetMetadata sets field value

func (*SubmissionDataRequest) SetName

func (o *SubmissionDataRequest) SetName(v string)

SetName sets field value

func (*SubmissionDataRequest) SetOrder

func (o *SubmissionDataRequest) SetOrder(v int32)

SetOrder sets field value

func (*SubmissionDataRequest) SetSortOrder

func (o *SubmissionDataRequest) SetSortOrder(v int32)

SetSortOrder sets field value

func (*SubmissionDataRequest) SetState

func (o *SubmissionDataRequest) SetState(v string)

SetState sets field value

func (*SubmissionDataRequest) SetUserAgent

func (o *SubmissionDataRequest) SetUserAgent(v string)

SetUserAgent sets field value

func (*SubmissionDataRequest) SetViewedAt

func (o *SubmissionDataRequest) SetViewedAt(v string)

SetViewedAt sets field value

func (SubmissionDataRequest) ToMap

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

func (*SubmissionDataRequest) UnmarshalJSON

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

type SubmissionDataRequestEvent

type SubmissionDataRequestEvent struct {
	Id                      NullableString `json:"id"`
	SubmissionId            NullableString `json:"submission_id"`
	SubmissionDataRequestId NullableString `json:"submission_data_request_id"`
	EventType               string         `json:"event_type"`
	MessageType             NullableString `json:"message_type"`
	MessageRecipient        NullableString `json:"message_recipient"`
	OccurredAt              NullableString `json:"occurred_at"`
}

SubmissionDataRequestEvent struct for SubmissionDataRequestEvent

func NewSubmissionDataRequestEvent

func NewSubmissionDataRequestEvent(id NullableString, submissionId NullableString, submissionDataRequestId NullableString, eventType string, messageType NullableString, messageRecipient NullableString, occurredAt NullableString) *SubmissionDataRequestEvent

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

func NewSubmissionDataRequestEventWithDefaults

func NewSubmissionDataRequestEventWithDefaults() *SubmissionDataRequestEvent

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

func (*SubmissionDataRequestEvent) GetEventType

func (o *SubmissionDataRequestEvent) GetEventType() string

GetEventType returns the EventType field value

func (*SubmissionDataRequestEvent) GetEventTypeOk

func (o *SubmissionDataRequestEvent) GetEventTypeOk() (*string, bool)

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

func (*SubmissionDataRequestEvent) GetId

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestEvent) GetIdOk

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

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

func (*SubmissionDataRequestEvent) GetMessageRecipient

func (o *SubmissionDataRequestEvent) GetMessageRecipient() string

GetMessageRecipient returns the MessageRecipient field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestEvent) GetMessageRecipientOk

func (o *SubmissionDataRequestEvent) GetMessageRecipientOk() (*string, bool)

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

func (*SubmissionDataRequestEvent) GetMessageType

func (o *SubmissionDataRequestEvent) GetMessageType() string

GetMessageType returns the MessageType field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestEvent) GetMessageTypeOk

func (o *SubmissionDataRequestEvent) GetMessageTypeOk() (*string, bool)

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

func (*SubmissionDataRequestEvent) GetOccurredAt

func (o *SubmissionDataRequestEvent) GetOccurredAt() string

GetOccurredAt returns the OccurredAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestEvent) GetOccurredAtOk

func (o *SubmissionDataRequestEvent) GetOccurredAtOk() (*string, bool)

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

func (*SubmissionDataRequestEvent) GetSubmissionDataRequestId

func (o *SubmissionDataRequestEvent) GetSubmissionDataRequestId() string

GetSubmissionDataRequestId returns the SubmissionDataRequestId field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestEvent) GetSubmissionDataRequestIdOk

func (o *SubmissionDataRequestEvent) GetSubmissionDataRequestIdOk() (*string, bool)

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

func (*SubmissionDataRequestEvent) GetSubmissionId

func (o *SubmissionDataRequestEvent) GetSubmissionId() string

GetSubmissionId returns the SubmissionId field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestEvent) GetSubmissionIdOk

func (o *SubmissionDataRequestEvent) GetSubmissionIdOk() (*string, bool)

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

func (SubmissionDataRequestEvent) MarshalJSON

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

func (*SubmissionDataRequestEvent) SetEventType

func (o *SubmissionDataRequestEvent) SetEventType(v string)

SetEventType sets field value

func (*SubmissionDataRequestEvent) SetId

func (o *SubmissionDataRequestEvent) SetId(v string)

SetId sets field value

func (*SubmissionDataRequestEvent) SetMessageRecipient

func (o *SubmissionDataRequestEvent) SetMessageRecipient(v string)

SetMessageRecipient sets field value

func (*SubmissionDataRequestEvent) SetMessageType

func (o *SubmissionDataRequestEvent) SetMessageType(v string)

SetMessageType sets field value

func (*SubmissionDataRequestEvent) SetOccurredAt

func (o *SubmissionDataRequestEvent) SetOccurredAt(v string)

SetOccurredAt sets field value

func (*SubmissionDataRequestEvent) SetSubmissionDataRequestId

func (o *SubmissionDataRequestEvent) SetSubmissionDataRequestId(v string)

SetSubmissionDataRequestId sets field value

func (*SubmissionDataRequestEvent) SetSubmissionId

func (o *SubmissionDataRequestEvent) SetSubmissionId(v string)

SetSubmissionId sets field value

func (SubmissionDataRequestEvent) ToMap

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

func (*SubmissionDataRequestEvent) UnmarshalJSON

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

type SubmissionDataRequestShow

type SubmissionDataRequestShow struct {
	Id                   NullableString         `json:"id"`
	Email                NullableString         `json:"email"`
	Name                 NullableString         `json:"name"`
	Order                NullableInt32          `json:"order"`
	SortOrder            int32                  `json:"sort_order"`
	Fields               []string               `json:"fields"`
	Metadata             map[string]interface{} `json:"metadata"`
	State                string                 `json:"state"`
	ViewedAt             NullableString         `json:"viewed_at"`
	CompletedAt          NullableString         `json:"completed_at"`
	Data                 map[string]interface{} `json:"data"`
	AuthType             string                 `json:"auth_type"`
	AuthSecondFactorType string                 `json:"auth_second_factor_type"`
	AuthProvider         NullableString         `json:"auth_provider"`
	AuthSessionStartedAt NullableString         `json:"auth_session_started_at"`
	AuthSessionIdHash    NullableString         `json:"auth_session_id_hash"`
	AuthUserIdHash       NullableString         `json:"auth_user_id_hash"`
	AuthUsernameHash     NullableString         `json:"auth_username_hash"`
	AuthPhoneNumberHash  NullableString         `json:"auth_phone_number_hash"`
	IpAddress            NullableString         `json:"ip_address"`
	UserAgent            NullableString         `json:"user_agent"`
	SubmissionId         NullableString         `json:"submission_id"`
}

SubmissionDataRequestShow struct for SubmissionDataRequestShow

func NewSubmissionDataRequestShow

func NewSubmissionDataRequestShow(id NullableString, email NullableString, name NullableString, order NullableInt32, sortOrder int32, fields []string, metadata map[string]interface{}, state string, viewedAt NullableString, completedAt NullableString, data map[string]interface{}, authType string, authSecondFactorType string, authProvider NullableString, authSessionStartedAt NullableString, authSessionIdHash NullableString, authUserIdHash NullableString, authUsernameHash NullableString, authPhoneNumberHash NullableString, ipAddress NullableString, userAgent NullableString, submissionId NullableString) *SubmissionDataRequestShow

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

func NewSubmissionDataRequestShowWithDefaults

func NewSubmissionDataRequestShowWithDefaults() *SubmissionDataRequestShow

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

func (*SubmissionDataRequestShow) GetAuthPhoneNumberHash

func (o *SubmissionDataRequestShow) GetAuthPhoneNumberHash() string

GetAuthPhoneNumberHash returns the AuthPhoneNumberHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetAuthPhoneNumberHashOk

func (o *SubmissionDataRequestShow) GetAuthPhoneNumberHashOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetAuthProvider

func (o *SubmissionDataRequestShow) GetAuthProvider() string

GetAuthProvider returns the AuthProvider field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetAuthProviderOk

func (o *SubmissionDataRequestShow) GetAuthProviderOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetAuthSecondFactorType

func (o *SubmissionDataRequestShow) GetAuthSecondFactorType() string

GetAuthSecondFactorType returns the AuthSecondFactorType field value

func (*SubmissionDataRequestShow) GetAuthSecondFactorTypeOk

func (o *SubmissionDataRequestShow) GetAuthSecondFactorTypeOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetAuthSessionIdHash

func (o *SubmissionDataRequestShow) GetAuthSessionIdHash() string

GetAuthSessionIdHash returns the AuthSessionIdHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetAuthSessionIdHashOk

func (o *SubmissionDataRequestShow) GetAuthSessionIdHashOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetAuthSessionStartedAt

func (o *SubmissionDataRequestShow) GetAuthSessionStartedAt() string

GetAuthSessionStartedAt returns the AuthSessionStartedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetAuthSessionStartedAtOk

func (o *SubmissionDataRequestShow) GetAuthSessionStartedAtOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetAuthType

func (o *SubmissionDataRequestShow) GetAuthType() string

GetAuthType returns the AuthType field value

func (*SubmissionDataRequestShow) GetAuthTypeOk

func (o *SubmissionDataRequestShow) GetAuthTypeOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetAuthUserIdHash

func (o *SubmissionDataRequestShow) GetAuthUserIdHash() string

GetAuthUserIdHash returns the AuthUserIdHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetAuthUserIdHashOk

func (o *SubmissionDataRequestShow) GetAuthUserIdHashOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetAuthUsernameHash

func (o *SubmissionDataRequestShow) GetAuthUsernameHash() string

GetAuthUsernameHash returns the AuthUsernameHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetAuthUsernameHashOk

func (o *SubmissionDataRequestShow) GetAuthUsernameHashOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetCompletedAt

func (o *SubmissionDataRequestShow) GetCompletedAt() string

GetCompletedAt returns the CompletedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetCompletedAtOk

func (o *SubmissionDataRequestShow) GetCompletedAtOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetData

func (o *SubmissionDataRequestShow) GetData() map[string]interface{}

GetData returns the Data field value If the value is explicit nil, the zero value for map[string]interface{} will be returned

func (*SubmissionDataRequestShow) GetDataOk

func (o *SubmissionDataRequestShow) GetDataOk() (map[string]interface{}, bool)

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

func (*SubmissionDataRequestShow) GetEmail

func (o *SubmissionDataRequestShow) GetEmail() string

GetEmail returns the Email field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetEmailOk

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

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

func (*SubmissionDataRequestShow) GetFields

func (o *SubmissionDataRequestShow) GetFields() []string

GetFields returns the Fields field value If the value is explicit nil, the zero value for []string will be returned

func (*SubmissionDataRequestShow) GetFieldsOk

func (o *SubmissionDataRequestShow) GetFieldsOk() ([]string, bool)

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

func (*SubmissionDataRequestShow) GetId

func (o *SubmissionDataRequestShow) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetIdOk

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

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

func (*SubmissionDataRequestShow) GetIpAddress

func (o *SubmissionDataRequestShow) GetIpAddress() string

GetIpAddress returns the IpAddress field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetIpAddressOk

func (o *SubmissionDataRequestShow) GetIpAddressOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetMetadata

func (o *SubmissionDataRequestShow) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value If the value is explicit nil, the zero value for map[string]interface{} will be returned

func (*SubmissionDataRequestShow) GetMetadataOk

func (o *SubmissionDataRequestShow) GetMetadataOk() (map[string]interface{}, bool)

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

func (*SubmissionDataRequestShow) GetName

func (o *SubmissionDataRequestShow) GetName() string

GetName returns the Name field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetNameOk

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

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

func (*SubmissionDataRequestShow) GetOrder

func (o *SubmissionDataRequestShow) GetOrder() int32

GetOrder returns the Order field value If the value is explicit nil, the zero value for int32 will be returned

func (*SubmissionDataRequestShow) GetOrderOk

func (o *SubmissionDataRequestShow) GetOrderOk() (*int32, bool)

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

func (*SubmissionDataRequestShow) GetSortOrder

func (o *SubmissionDataRequestShow) GetSortOrder() int32

GetSortOrder returns the SortOrder field value

func (*SubmissionDataRequestShow) GetSortOrderOk

func (o *SubmissionDataRequestShow) GetSortOrderOk() (*int32, bool)

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

func (*SubmissionDataRequestShow) GetState

func (o *SubmissionDataRequestShow) GetState() string

GetState returns the State field value

func (*SubmissionDataRequestShow) GetStateOk

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

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

func (*SubmissionDataRequestShow) GetSubmissionId

func (o *SubmissionDataRequestShow) GetSubmissionId() string

GetSubmissionId returns the SubmissionId field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetSubmissionIdOk

func (o *SubmissionDataRequestShow) GetSubmissionIdOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetUserAgent

func (o *SubmissionDataRequestShow) GetUserAgent() string

GetUserAgent returns the UserAgent field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetUserAgentOk

func (o *SubmissionDataRequestShow) GetUserAgentOk() (*string, bool)

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

func (*SubmissionDataRequestShow) GetViewedAt

func (o *SubmissionDataRequestShow) GetViewedAt() string

GetViewedAt returns the ViewedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestShow) GetViewedAtOk

func (o *SubmissionDataRequestShow) GetViewedAtOk() (*string, bool)

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

func (SubmissionDataRequestShow) MarshalJSON

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

func (*SubmissionDataRequestShow) SetAuthPhoneNumberHash

func (o *SubmissionDataRequestShow) SetAuthPhoneNumberHash(v string)

SetAuthPhoneNumberHash sets field value

func (*SubmissionDataRequestShow) SetAuthProvider

func (o *SubmissionDataRequestShow) SetAuthProvider(v string)

SetAuthProvider sets field value

func (*SubmissionDataRequestShow) SetAuthSecondFactorType

func (o *SubmissionDataRequestShow) SetAuthSecondFactorType(v string)

SetAuthSecondFactorType sets field value

func (*SubmissionDataRequestShow) SetAuthSessionIdHash

func (o *SubmissionDataRequestShow) SetAuthSessionIdHash(v string)

SetAuthSessionIdHash sets field value

func (*SubmissionDataRequestShow) SetAuthSessionStartedAt

func (o *SubmissionDataRequestShow) SetAuthSessionStartedAt(v string)

SetAuthSessionStartedAt sets field value

func (*SubmissionDataRequestShow) SetAuthType

func (o *SubmissionDataRequestShow) SetAuthType(v string)

SetAuthType sets field value

func (*SubmissionDataRequestShow) SetAuthUserIdHash

func (o *SubmissionDataRequestShow) SetAuthUserIdHash(v string)

SetAuthUserIdHash sets field value

func (*SubmissionDataRequestShow) SetAuthUsernameHash

func (o *SubmissionDataRequestShow) SetAuthUsernameHash(v string)

SetAuthUsernameHash sets field value

func (*SubmissionDataRequestShow) SetCompletedAt

func (o *SubmissionDataRequestShow) SetCompletedAt(v string)

SetCompletedAt sets field value

func (*SubmissionDataRequestShow) SetData

func (o *SubmissionDataRequestShow) SetData(v map[string]interface{})

SetData sets field value

func (*SubmissionDataRequestShow) SetEmail

func (o *SubmissionDataRequestShow) SetEmail(v string)

SetEmail sets field value

func (*SubmissionDataRequestShow) SetFields

func (o *SubmissionDataRequestShow) SetFields(v []string)

SetFields sets field value

func (*SubmissionDataRequestShow) SetId

func (o *SubmissionDataRequestShow) SetId(v string)

SetId sets field value

func (*SubmissionDataRequestShow) SetIpAddress

func (o *SubmissionDataRequestShow) SetIpAddress(v string)

SetIpAddress sets field value

func (*SubmissionDataRequestShow) SetMetadata

func (o *SubmissionDataRequestShow) SetMetadata(v map[string]interface{})

SetMetadata sets field value

func (*SubmissionDataRequestShow) SetName

func (o *SubmissionDataRequestShow) SetName(v string)

SetName sets field value

func (*SubmissionDataRequestShow) SetOrder

func (o *SubmissionDataRequestShow) SetOrder(v int32)

SetOrder sets field value

func (*SubmissionDataRequestShow) SetSortOrder

func (o *SubmissionDataRequestShow) SetSortOrder(v int32)

SetSortOrder sets field value

func (*SubmissionDataRequestShow) SetState

func (o *SubmissionDataRequestShow) SetState(v string)

SetState sets field value

func (*SubmissionDataRequestShow) SetSubmissionId

func (o *SubmissionDataRequestShow) SetSubmissionId(v string)

SetSubmissionId sets field value

func (*SubmissionDataRequestShow) SetUserAgent

func (o *SubmissionDataRequestShow) SetUserAgent(v string)

SetUserAgent sets field value

func (*SubmissionDataRequestShow) SetViewedAt

func (o *SubmissionDataRequestShow) SetViewedAt(v string)

SetViewedAt sets field value

func (SubmissionDataRequestShow) ToMap

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

func (*SubmissionDataRequestShow) UnmarshalJSON

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

type SubmissionDataRequestToken

type SubmissionDataRequestToken struct {
	Id             NullableString `json:"id"`
	Secret         string         `json:"secret"`
	ExpiresAt      NullableString `json:"expires_at"`
	DataRequestUrl NullableString `json:"data_request_url"`
}

SubmissionDataRequestToken struct for SubmissionDataRequestToken

func NewSubmissionDataRequestToken

func NewSubmissionDataRequestToken(id NullableString, secret string, expiresAt NullableString, dataRequestUrl NullableString) *SubmissionDataRequestToken

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

func NewSubmissionDataRequestTokenWithDefaults

func NewSubmissionDataRequestTokenWithDefaults() *SubmissionDataRequestToken

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

func (*SubmissionDataRequestToken) GetDataRequestUrl

func (o *SubmissionDataRequestToken) GetDataRequestUrl() string

GetDataRequestUrl returns the DataRequestUrl field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestToken) GetDataRequestUrlOk

func (o *SubmissionDataRequestToken) GetDataRequestUrlOk() (*string, bool)

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

func (*SubmissionDataRequestToken) GetExpiresAt

func (o *SubmissionDataRequestToken) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestToken) GetExpiresAtOk

func (o *SubmissionDataRequestToken) GetExpiresAtOk() (*string, bool)

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

func (*SubmissionDataRequestToken) GetId

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionDataRequestToken) GetIdOk

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

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

func (*SubmissionDataRequestToken) GetSecret

func (o *SubmissionDataRequestToken) GetSecret() string

GetSecret returns the Secret field value

func (*SubmissionDataRequestToken) GetSecretOk

func (o *SubmissionDataRequestToken) GetSecretOk() (*string, bool)

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

func (SubmissionDataRequestToken) MarshalJSON

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

func (*SubmissionDataRequestToken) SetDataRequestUrl

func (o *SubmissionDataRequestToken) SetDataRequestUrl(v string)

SetDataRequestUrl sets field value

func (*SubmissionDataRequestToken) SetExpiresAt

func (o *SubmissionDataRequestToken) SetExpiresAt(v string)

SetExpiresAt sets field value

func (*SubmissionDataRequestToken) SetId

func (o *SubmissionDataRequestToken) SetId(v string)

SetId sets field value

func (*SubmissionDataRequestToken) SetSecret

func (o *SubmissionDataRequestToken) SetSecret(v string)

SetSecret sets field value

func (SubmissionDataRequestToken) ToMap

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

func (*SubmissionDataRequestToken) UnmarshalJSON

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

type SubmissionPreview

type SubmissionPreview struct {
	BatchId               NullableString          `json:"batch_id"`
	DataRequests          []SubmissionDataRequest `json:"data_requests"`
	Editable              NullableBool            `json:"editable"`
	Expired               bool                    `json:"expired"`
	ExpiresAt             NullableString          `json:"expires_at"`
	Id                    NullableString          `json:"id"`
	JsonSchemaErrors      []string                `json:"json_schema_errors"`
	Metadata              map[string]interface{}  `json:"metadata"`
	Password              NullableString          `json:"password"`
	ProcessedAt           NullableString          `json:"processed_at"`
	State                 string                  `json:"state"`
	TemplateId            NullableString          `json:"template_id"`
	TemplateType          string                  `json:"template_type"`
	TemplateVersion       NullableString          `json:"template_version"`
	Test                  bool                    `json:"test"`
	TruncatedText         map[string]interface{}  `json:"truncated_text"`
	PdfHash               NullableString          `json:"pdf_hash"`
	DownloadUrl           NullableString          `json:"download_url"`
	PermanentDownloadUrl  NullableString          `json:"permanent_download_url"`
	PreviewDownloadUrl    NullableString          `json:"preview_download_url"`
	PreviewGeneratedAt    NullableString          `json:"preview_generated_at"`
	AuditTrailDownloadUrl NullableString          `json:"audit_trail_download_url"`
	Actions               []SubmissionAction      `json:"actions"`
}

SubmissionPreview struct for SubmissionPreview

func NewSubmissionPreview

func NewSubmissionPreview(batchId NullableString, dataRequests []SubmissionDataRequest, editable NullableBool, expired bool, expiresAt NullableString, id NullableString, jsonSchemaErrors []string, metadata map[string]interface{}, password NullableString, processedAt NullableString, state string, templateId NullableString, templateType string, templateVersion NullableString, test bool, truncatedText map[string]interface{}, pdfHash NullableString, downloadUrl NullableString, permanentDownloadUrl NullableString, previewDownloadUrl NullableString, previewGeneratedAt NullableString, auditTrailDownloadUrl NullableString, actions []SubmissionAction) *SubmissionPreview

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

func NewSubmissionPreviewWithDefaults

func NewSubmissionPreviewWithDefaults() *SubmissionPreview

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

func (*SubmissionPreview) GetActions

func (o *SubmissionPreview) GetActions() []SubmissionAction

GetActions returns the Actions field value

func (*SubmissionPreview) GetActionsOk

func (o *SubmissionPreview) GetActionsOk() ([]SubmissionAction, bool)

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

func (*SubmissionPreview) GetAuditTrailDownloadUrl

func (o *SubmissionPreview) GetAuditTrailDownloadUrl() string

GetAuditTrailDownloadUrl returns the AuditTrailDownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetAuditTrailDownloadUrlOk

func (o *SubmissionPreview) GetAuditTrailDownloadUrlOk() (*string, bool)

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

func (*SubmissionPreview) GetBatchId

func (o *SubmissionPreview) GetBatchId() string

GetBatchId returns the BatchId field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetBatchIdOk

func (o *SubmissionPreview) GetBatchIdOk() (*string, bool)

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

func (*SubmissionPreview) GetDataRequests

func (o *SubmissionPreview) GetDataRequests() []SubmissionDataRequest

GetDataRequests returns the DataRequests field value

func (*SubmissionPreview) GetDataRequestsOk

func (o *SubmissionPreview) GetDataRequestsOk() ([]SubmissionDataRequest, bool)

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

func (*SubmissionPreview) GetDownloadUrl

func (o *SubmissionPreview) GetDownloadUrl() string

GetDownloadUrl returns the DownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetDownloadUrlOk

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

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

func (*SubmissionPreview) GetEditable

func (o *SubmissionPreview) GetEditable() bool

GetEditable returns the Editable field value If the value is explicit nil, the zero value for bool will be returned

func (*SubmissionPreview) GetEditableOk

func (o *SubmissionPreview) GetEditableOk() (*bool, bool)

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

func (*SubmissionPreview) GetExpired

func (o *SubmissionPreview) GetExpired() bool

GetExpired returns the Expired field value

func (*SubmissionPreview) GetExpiredOk

func (o *SubmissionPreview) GetExpiredOk() (*bool, bool)

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

func (*SubmissionPreview) GetExpiresAt

func (o *SubmissionPreview) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetExpiresAtOk

func (o *SubmissionPreview) GetExpiresAtOk() (*string, bool)

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

func (*SubmissionPreview) GetId

func (o *SubmissionPreview) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetIdOk

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

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

func (*SubmissionPreview) GetJsonSchemaErrors

func (o *SubmissionPreview) GetJsonSchemaErrors() []string

GetJsonSchemaErrors returns the JsonSchemaErrors field value If the value is explicit nil, the zero value for []string will be returned

func (*SubmissionPreview) GetJsonSchemaErrorsOk

func (o *SubmissionPreview) GetJsonSchemaErrorsOk() ([]string, bool)

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

func (*SubmissionPreview) GetMetadata

func (o *SubmissionPreview) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value

func (*SubmissionPreview) GetMetadataOk

func (o *SubmissionPreview) GetMetadataOk() (map[string]interface{}, bool)

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

func (*SubmissionPreview) GetPassword

func (o *SubmissionPreview) GetPassword() string

GetPassword returns the Password field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetPasswordOk

func (o *SubmissionPreview) GetPasswordOk() (*string, bool)

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

func (*SubmissionPreview) GetPdfHash

func (o *SubmissionPreview) GetPdfHash() string

GetPdfHash returns the PdfHash field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetPdfHashOk

func (o *SubmissionPreview) GetPdfHashOk() (*string, bool)

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

func (*SubmissionPreview) GetPermanentDownloadUrl

func (o *SubmissionPreview) GetPermanentDownloadUrl() string

GetPermanentDownloadUrl returns the PermanentDownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetPermanentDownloadUrlOk

func (o *SubmissionPreview) GetPermanentDownloadUrlOk() (*string, bool)

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

func (*SubmissionPreview) GetPreviewDownloadUrl

func (o *SubmissionPreview) GetPreviewDownloadUrl() string

GetPreviewDownloadUrl returns the PreviewDownloadUrl field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetPreviewDownloadUrlOk

func (o *SubmissionPreview) GetPreviewDownloadUrlOk() (*string, bool)

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

func (*SubmissionPreview) GetPreviewGeneratedAt

func (o *SubmissionPreview) GetPreviewGeneratedAt() string

GetPreviewGeneratedAt returns the PreviewGeneratedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetPreviewGeneratedAtOk

func (o *SubmissionPreview) GetPreviewGeneratedAtOk() (*string, bool)

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

func (*SubmissionPreview) GetProcessedAt

func (o *SubmissionPreview) GetProcessedAt() string

GetProcessedAt returns the ProcessedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetProcessedAtOk

func (o *SubmissionPreview) GetProcessedAtOk() (*string, bool)

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

func (*SubmissionPreview) GetState

func (o *SubmissionPreview) GetState() string

GetState returns the State field value

func (*SubmissionPreview) GetStateOk

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

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

func (*SubmissionPreview) GetTemplateId

func (o *SubmissionPreview) GetTemplateId() string

GetTemplateId returns the TemplateId field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetTemplateIdOk

func (o *SubmissionPreview) GetTemplateIdOk() (*string, bool)

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

func (*SubmissionPreview) GetTemplateType

func (o *SubmissionPreview) GetTemplateType() string

GetTemplateType returns the TemplateType field value

func (*SubmissionPreview) GetTemplateTypeOk

func (o *SubmissionPreview) GetTemplateTypeOk() (*string, bool)

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

func (*SubmissionPreview) GetTemplateVersion

func (o *SubmissionPreview) GetTemplateVersion() string

GetTemplateVersion returns the TemplateVersion field value If the value is explicit nil, the zero value for string will be returned

func (*SubmissionPreview) GetTemplateVersionOk

func (o *SubmissionPreview) GetTemplateVersionOk() (*string, bool)

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

func (*SubmissionPreview) GetTest

func (o *SubmissionPreview) GetTest() bool

GetTest returns the Test field value

func (*SubmissionPreview) GetTestOk

func (o *SubmissionPreview) GetTestOk() (*bool, bool)

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

func (*SubmissionPreview) GetTruncatedText

func (o *SubmissionPreview) GetTruncatedText() map[string]interface{}

GetTruncatedText returns the TruncatedText field value If the value is explicit nil, the zero value for map[string]interface{} will be returned

func (*SubmissionPreview) GetTruncatedTextOk

func (o *SubmissionPreview) GetTruncatedTextOk() (map[string]interface{}, bool)

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

func (SubmissionPreview) MarshalJSON

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

func (*SubmissionPreview) SetActions

func (o *SubmissionPreview) SetActions(v []SubmissionAction)

SetActions sets field value

func (*SubmissionPreview) SetAuditTrailDownloadUrl

func (o *SubmissionPreview) SetAuditTrailDownloadUrl(v string)

SetAuditTrailDownloadUrl sets field value

func (*SubmissionPreview) SetBatchId

func (o *SubmissionPreview) SetBatchId(v string)

SetBatchId sets field value

func (*SubmissionPreview) SetDataRequests

func (o *SubmissionPreview) SetDataRequests(v []SubmissionDataRequest)

SetDataRequests sets field value

func (*SubmissionPreview) SetDownloadUrl

func (o *SubmissionPreview) SetDownloadUrl(v string)

SetDownloadUrl sets field value

func (*SubmissionPreview) SetEditable

func (o *SubmissionPreview) SetEditable(v bool)

SetEditable sets field value

func (*SubmissionPreview) SetExpired

func (o *SubmissionPreview) SetExpired(v bool)

SetExpired sets field value

func (*SubmissionPreview) SetExpiresAt

func (o *SubmissionPreview) SetExpiresAt(v string)

SetExpiresAt sets field value

func (*SubmissionPreview) SetId

func (o *SubmissionPreview) SetId(v string)

SetId sets field value

func (*SubmissionPreview) SetJsonSchemaErrors

func (o *SubmissionPreview) SetJsonSchemaErrors(v []string)

SetJsonSchemaErrors sets field value

func (*SubmissionPreview) SetMetadata

func (o *SubmissionPreview) SetMetadata(v map[string]interface{})

SetMetadata sets field value

func (*SubmissionPreview) SetPassword

func (o *SubmissionPreview) SetPassword(v string)

SetPassword sets field value

func (*SubmissionPreview) SetPdfHash

func (o *SubmissionPreview) SetPdfHash(v string)

SetPdfHash sets field value

func (*SubmissionPreview) SetPermanentDownloadUrl

func (o *SubmissionPreview) SetPermanentDownloadUrl(v string)

SetPermanentDownloadUrl sets field value

func (*SubmissionPreview) SetPreviewDownloadUrl

func (o *SubmissionPreview) SetPreviewDownloadUrl(v string)

SetPreviewDownloadUrl sets field value

func (*SubmissionPreview) SetPreviewGeneratedAt

func (o *SubmissionPreview) SetPreviewGeneratedAt(v string)

SetPreviewGeneratedAt sets field value

func (*SubmissionPreview) SetProcessedAt

func (o *SubmissionPreview) SetProcessedAt(v string)

SetProcessedAt sets field value

func (*SubmissionPreview) SetState

func (o *SubmissionPreview) SetState(v string)

SetState sets field value

func (*SubmissionPreview) SetTemplateId

func (o *SubmissionPreview) SetTemplateId(v string)

SetTemplateId sets field value

func (*SubmissionPreview) SetTemplateType

func (o *SubmissionPreview) SetTemplateType(v string)

SetTemplateType sets field value

func (*SubmissionPreview) SetTemplateVersion

func (o *SubmissionPreview) SetTemplateVersion(v string)

SetTemplateVersion sets field value

func (*SubmissionPreview) SetTest

func (o *SubmissionPreview) SetTest(v bool)

SetTest sets field value

func (*SubmissionPreview) SetTruncatedText

func (o *SubmissionPreview) SetTruncatedText(v map[string]interface{})

SetTruncatedText sets field value

func (SubmissionPreview) ToMap

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

func (*SubmissionPreview) UnmarshalJSON

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

type SuccessErrorResponse

type SuccessErrorResponse struct {
	Status string  `json:"status"`
	Error  *string `json:"error,omitempty"`
}

SuccessErrorResponse struct for SuccessErrorResponse

func NewSuccessErrorResponse

func NewSuccessErrorResponse(status string) *SuccessErrorResponse

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

func NewSuccessErrorResponseWithDefaults

func NewSuccessErrorResponseWithDefaults() *SuccessErrorResponse

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

func (*SuccessErrorResponse) GetError

func (o *SuccessErrorResponse) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*SuccessErrorResponse) GetErrorOk

func (o *SuccessErrorResponse) 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 (*SuccessErrorResponse) GetStatus

func (o *SuccessErrorResponse) GetStatus() string

GetStatus returns the Status field value

func (*SuccessErrorResponse) GetStatusOk

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

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

func (*SuccessErrorResponse) HasError

func (o *SuccessErrorResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (SuccessErrorResponse) MarshalJSON

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

func (*SuccessErrorResponse) SetError

func (o *SuccessErrorResponse) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*SuccessErrorResponse) SetStatus

func (o *SuccessErrorResponse) SetStatus(v string)

SetStatus sets field value

func (SuccessErrorResponse) ToMap

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

func (*SuccessErrorResponse) UnmarshalJSON

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

type SuccessMultipleErrorsResponse

type SuccessMultipleErrorsResponse struct {
	Status string   `json:"status"`
	Errors []string `json:"errors,omitempty"`
}

SuccessMultipleErrorsResponse struct for SuccessMultipleErrorsResponse

func NewSuccessMultipleErrorsResponse

func NewSuccessMultipleErrorsResponse(status string) *SuccessMultipleErrorsResponse

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

func NewSuccessMultipleErrorsResponseWithDefaults

func NewSuccessMultipleErrorsResponseWithDefaults() *SuccessMultipleErrorsResponse

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

func (*SuccessMultipleErrorsResponse) GetErrors

func (o *SuccessMultipleErrorsResponse) GetErrors() []string

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

func (*SuccessMultipleErrorsResponse) GetErrorsOk

func (o *SuccessMultipleErrorsResponse) GetErrorsOk() ([]string, bool)

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

func (*SuccessMultipleErrorsResponse) GetStatus

func (o *SuccessMultipleErrorsResponse) GetStatus() string

GetStatus returns the Status field value

func (*SuccessMultipleErrorsResponse) GetStatusOk

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

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

func (*SuccessMultipleErrorsResponse) HasErrors

func (o *SuccessMultipleErrorsResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (SuccessMultipleErrorsResponse) MarshalJSON

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

func (*SuccessMultipleErrorsResponse) SetErrors

func (o *SuccessMultipleErrorsResponse) SetErrors(v []string)

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

func (*SuccessMultipleErrorsResponse) SetStatus

func (o *SuccessMultipleErrorsResponse) SetStatus(v string)

SetStatus sets field value

func (SuccessMultipleErrorsResponse) ToMap

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

func (*SuccessMultipleErrorsResponse) UnmarshalJSON

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

type Template

type Template struct {
	AddDataRequestSubmissionIdFooters    bool                     `json:"add_data_request_submission_id_footers"`
	AllowAdditionalProperties            bool                     `json:"allow_additional_properties"`
	Description                          NullableString           `json:"description"`
	DocumentFilename                     NullableString           `json:"document_filename"`
	DocumentMd5                          NullableString           `json:"document_md5"`
	DocumentParseError                   bool                     `json:"document_parse_error"`
	DocumentProcessed                    bool                     `json:"document_processed"`
	DocumentState                        string                   `json:"document_state"`
	DocumentUrl                          NullableString           `json:"document_url"`
	EditableSubmissions                  bool                     `json:"editable_submissions"`
	EmbedDomains                         NullableString           `json:"embed_domains"`
	EncryptPdfsPassword                  NullableString           `json:"encrypt_pdfs_password"`
	EncryptPdfs                          bool                     `json:"encrypt_pdfs"`
	ExpirationInterval                   string                   `json:"expiration_interval"`
	ExpireAfter                          int32                    `json:"expire_after"`
	ExpireSubmissions                    bool                     `json:"expire_submissions"`
	ExternalPredefinedFieldsTemplateId   NullableString           `json:"external_predefined_fields_template_id"`
	ExternalPredefinedFieldsTemplateName NullableString           `json:"external_predefined_fields_template_name"`
	FirstTemplate                        bool                     `json:"first_template"`
	Id                                   NullableString           `json:"id"`
	Locked                               bool                     `json:"locked"`
	MergeAuditTrailPdf                   bool                     `json:"merge_audit_trail_pdf"`
	Name                                 NullableString           `json:"name"`
	PageCount                            int32                    `json:"page_count"`
	PageDimensions                       [][]float32              `json:"page_dimensions"`
	ParentFolderId                       NullableString           `json:"parent_folder_id"`
	Path                                 NullableString           `json:"path"`
	PermanentDocumentUrl                 NullableString           `json:"permanent_document_url"`
	PublicSubmissions                    bool                     `json:"public_submissions"`
	PublicWebForm                        bool                     `json:"public_web_form"`
	RedirectUrl                          NullableString           `json:"redirect_url"`
	SlackWebhookUrl                      NullableString           `json:"slack_webhook_url"`
	TemplateType                         string                   `json:"template_type"`
	UpdatedAt                            NullableString           `json:"updated_at"`
	VersionPublishedAt                   NullableString           `json:"version_published_at"`
	Version                              NullableString           `json:"version"`
	WebhookUrl                           NullableString           `json:"webhook_url"`
	Demo                                 bool                     `json:"demo"`
	LatestVersion                        NullableString           `json:"latest_version"`
	LastChangedAt                        NullableString           `json:"last_changed_at"`
	LastChangedByType                    NullableString           `json:"last_changed_by_type"`
	LastChangedById                      NullableString           `json:"last_changed_by_id"`
	Defaults                             map[string]interface{}   `json:"defaults"`
	FieldOrder                           [][]float32              `json:"field_order"`
	Fields                               map[string]interface{}   `json:"fields"`
	FooterHtml                           NullableString           `json:"footer_html"`
	HeaderHtml                           NullableString           `json:"header_html"`
	HtmlEngineOptions                    map[string]interface{}   `json:"html_engine_options"`
	Html                                 NullableString           `json:"html"`
	PredefinedFields                     []map[string]interface{} `json:"predefined_fields"`
	Scss                                 NullableString           `json:"scss"`
	SharedFieldData                      map[string]interface{}   `json:"shared_field_data"`
	Versions                             []map[string]interface{} `json:"versions"`
}

Template struct for Template

func NewTemplate

func NewTemplate(addDataRequestSubmissionIdFooters bool, allowAdditionalProperties bool, description NullableString, documentFilename NullableString, documentMd5 NullableString, documentParseError bool, documentProcessed bool, documentState string, documentUrl NullableString, editableSubmissions bool, embedDomains NullableString, encryptPdfsPassword NullableString, encryptPdfs bool, expirationInterval string, expireAfter int32, expireSubmissions bool, externalPredefinedFieldsTemplateId NullableString, externalPredefinedFieldsTemplateName NullableString, firstTemplate bool, id NullableString, locked bool, mergeAuditTrailPdf bool, name NullableString, pageCount int32, pageDimensions [][]float32, parentFolderId NullableString, path NullableString, permanentDocumentUrl NullableString, publicSubmissions bool, publicWebForm bool, redirectUrl NullableString, slackWebhookUrl NullableString, templateType string, updatedAt NullableString, versionPublishedAt NullableString, version NullableString, webhookUrl NullableString, demo bool, latestVersion NullableString, lastChangedAt NullableString, lastChangedByType NullableString, lastChangedById NullableString, defaults map[string]interface{}, fieldOrder [][]float32, fields map[string]interface{}, footerHtml NullableString, headerHtml NullableString, htmlEngineOptions map[string]interface{}, html NullableString, predefinedFields []map[string]interface{}, scss NullableString, sharedFieldData map[string]interface{}, versions []map[string]interface{}) *Template

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

func NewTemplateWithDefaults

func NewTemplateWithDefaults() *Template

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

func (*Template) GetAddDataRequestSubmissionIdFooters

func (o *Template) GetAddDataRequestSubmissionIdFooters() bool

GetAddDataRequestSubmissionIdFooters returns the AddDataRequestSubmissionIdFooters field value

func (*Template) GetAddDataRequestSubmissionIdFootersOk

func (o *Template) GetAddDataRequestSubmissionIdFootersOk() (*bool, bool)

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

func (*Template) GetAllowAdditionalProperties

func (o *Template) GetAllowAdditionalProperties() bool

GetAllowAdditionalProperties returns the AllowAdditionalProperties field value

func (*Template) GetAllowAdditionalPropertiesOk

func (o *Template) GetAllowAdditionalPropertiesOk() (*bool, bool)

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

func (*Template) GetDefaults

func (o *Template) GetDefaults() map[string]interface{}

GetDefaults returns the Defaults field value

func (*Template) GetDefaultsOk

func (o *Template) GetDefaultsOk() (map[string]interface{}, bool)

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

func (*Template) GetDemo

func (o *Template) GetDemo() bool

GetDemo returns the Demo field value

func (*Template) GetDemoOk

func (o *Template) GetDemoOk() (*bool, bool)

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

func (*Template) GetDescription

func (o *Template) GetDescription() string

GetDescription returns the Description field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetDescriptionOk

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

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

func (*Template) GetDocumentFilename

func (o *Template) GetDocumentFilename() string

GetDocumentFilename returns the DocumentFilename field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetDocumentFilenameOk

func (o *Template) GetDocumentFilenameOk() (*string, bool)

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

func (*Template) GetDocumentMd5

func (o *Template) GetDocumentMd5() string

GetDocumentMd5 returns the DocumentMd5 field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetDocumentMd5Ok

func (o *Template) GetDocumentMd5Ok() (*string, bool)

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

func (*Template) GetDocumentParseError

func (o *Template) GetDocumentParseError() bool

GetDocumentParseError returns the DocumentParseError field value

func (*Template) GetDocumentParseErrorOk

func (o *Template) GetDocumentParseErrorOk() (*bool, bool)

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

func (*Template) GetDocumentProcessed

func (o *Template) GetDocumentProcessed() bool

GetDocumentProcessed returns the DocumentProcessed field value

func (*Template) GetDocumentProcessedOk

func (o *Template) GetDocumentProcessedOk() (*bool, bool)

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

func (*Template) GetDocumentState

func (o *Template) GetDocumentState() string

GetDocumentState returns the DocumentState field value

func (*Template) GetDocumentStateOk

func (o *Template) GetDocumentStateOk() (*string, bool)

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

func (*Template) GetDocumentUrl

func (o *Template) GetDocumentUrl() string

GetDocumentUrl returns the DocumentUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetDocumentUrlOk

func (o *Template) GetDocumentUrlOk() (*string, bool)

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

func (*Template) GetEditableSubmissions

func (o *Template) GetEditableSubmissions() bool

GetEditableSubmissions returns the EditableSubmissions field value

func (*Template) GetEditableSubmissionsOk

func (o *Template) GetEditableSubmissionsOk() (*bool, bool)

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

func (*Template) GetEmbedDomains

func (o *Template) GetEmbedDomains() string

GetEmbedDomains returns the EmbedDomains field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetEmbedDomainsOk

func (o *Template) GetEmbedDomainsOk() (*string, bool)

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

func (*Template) GetEncryptPdfs

func (o *Template) GetEncryptPdfs() bool

GetEncryptPdfs returns the EncryptPdfs field value

func (*Template) GetEncryptPdfsOk

func (o *Template) GetEncryptPdfsOk() (*bool, bool)

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

func (*Template) GetEncryptPdfsPassword

func (o *Template) GetEncryptPdfsPassword() string

GetEncryptPdfsPassword returns the EncryptPdfsPassword field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetEncryptPdfsPasswordOk

func (o *Template) GetEncryptPdfsPasswordOk() (*string, bool)

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

func (*Template) GetExpirationInterval

func (o *Template) GetExpirationInterval() string

GetExpirationInterval returns the ExpirationInterval field value

func (*Template) GetExpirationIntervalOk

func (o *Template) GetExpirationIntervalOk() (*string, bool)

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

func (*Template) GetExpireAfter

func (o *Template) GetExpireAfter() int32

GetExpireAfter returns the ExpireAfter field value

func (*Template) GetExpireAfterOk

func (o *Template) GetExpireAfterOk() (*int32, bool)

GetExpireAfterOk returns a tuple with the ExpireAfter field value and a boolean to check if the value has been set.

func (*Template) GetExpireSubmissions

func (o *Template) GetExpireSubmissions() bool

GetExpireSubmissions returns the ExpireSubmissions field value

func (*Template) GetExpireSubmissionsOk

func (o *Template) GetExpireSubmissionsOk() (*bool, bool)

GetExpireSubmissionsOk returns a tuple with the ExpireSubmissions field value and a boolean to check if the value has been set.

func (*Template) GetExternalPredefinedFieldsTemplateId

func (o *Template) GetExternalPredefinedFieldsTemplateId() string

GetExternalPredefinedFieldsTemplateId returns the ExternalPredefinedFieldsTemplateId field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetExternalPredefinedFieldsTemplateIdOk

func (o *Template) GetExternalPredefinedFieldsTemplateIdOk() (*string, bool)

GetExternalPredefinedFieldsTemplateIdOk returns a tuple with the ExternalPredefinedFieldsTemplateId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetExternalPredefinedFieldsTemplateName

func (o *Template) GetExternalPredefinedFieldsTemplateName() string

GetExternalPredefinedFieldsTemplateName returns the ExternalPredefinedFieldsTemplateName field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetExternalPredefinedFieldsTemplateNameOk

func (o *Template) GetExternalPredefinedFieldsTemplateNameOk() (*string, bool)

GetExternalPredefinedFieldsTemplateNameOk returns a tuple with the ExternalPredefinedFieldsTemplateName field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetFieldOrder

func (o *Template) GetFieldOrder() [][]float32

GetFieldOrder returns the FieldOrder field value

func (*Template) GetFieldOrderOk

func (o *Template) GetFieldOrderOk() ([][]float32, bool)

GetFieldOrderOk returns a tuple with the FieldOrder field value and a boolean to check if the value has been set.

func (*Template) GetFields

func (o *Template) GetFields() map[string]interface{}

GetFields returns the Fields field value

func (*Template) GetFieldsOk

func (o *Template) GetFieldsOk() (map[string]interface{}, bool)

GetFieldsOk returns a tuple with the Fields field value and a boolean to check if the value has been set.

func (*Template) GetFirstTemplate

func (o *Template) GetFirstTemplate() bool

GetFirstTemplate returns the FirstTemplate field value

func (*Template) GetFirstTemplateOk

func (o *Template) GetFirstTemplateOk() (*bool, bool)

GetFirstTemplateOk returns a tuple with the FirstTemplate field value and a boolean to check if the value has been set.

func (*Template) GetFooterHtml

func (o *Template) GetFooterHtml() string

GetFooterHtml returns the FooterHtml field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetFooterHtmlOk

func (o *Template) GetFooterHtmlOk() (*string, bool)

GetFooterHtmlOk returns a tuple with the FooterHtml field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetHeaderHtml

func (o *Template) GetHeaderHtml() string

GetHeaderHtml returns the HeaderHtml field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetHeaderHtmlOk

func (o *Template) GetHeaderHtmlOk() (*string, bool)

GetHeaderHtmlOk returns a tuple with the HeaderHtml field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetHtml

func (o *Template) GetHtml() string

GetHtml returns the Html field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetHtmlEngineOptions

func (o *Template) GetHtmlEngineOptions() map[string]interface{}

GetHtmlEngineOptions returns the HtmlEngineOptions field value

func (*Template) GetHtmlEngineOptionsOk

func (o *Template) GetHtmlEngineOptionsOk() (map[string]interface{}, bool)

GetHtmlEngineOptionsOk returns a tuple with the HtmlEngineOptions field value and a boolean to check if the value has been set.

func (*Template) GetHtmlOk

func (o *Template) GetHtmlOk() (*string, bool)

GetHtmlOk returns a tuple with the Html field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetId

func (o *Template) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetIdOk

func (o *Template) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetLastChangedAt

func (o *Template) GetLastChangedAt() string

GetLastChangedAt returns the LastChangedAt field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetLastChangedAtOk

func (o *Template) GetLastChangedAtOk() (*string, bool)

GetLastChangedAtOk returns a tuple with the LastChangedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetLastChangedById

func (o *Template) GetLastChangedById() string

GetLastChangedById returns the LastChangedById field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetLastChangedByIdOk

func (o *Template) GetLastChangedByIdOk() (*string, bool)

GetLastChangedByIdOk returns a tuple with the LastChangedById field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetLastChangedByType

func (o *Template) GetLastChangedByType() string

GetLastChangedByType returns the LastChangedByType field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetLastChangedByTypeOk

func (o *Template) GetLastChangedByTypeOk() (*string, bool)

GetLastChangedByTypeOk returns a tuple with the LastChangedByType field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetLatestVersion

func (o *Template) GetLatestVersion() string

GetLatestVersion returns the LatestVersion field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetLatestVersionOk

func (o *Template) GetLatestVersionOk() (*string, bool)

GetLatestVersionOk returns a tuple with the LatestVersion field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetLocked

func (o *Template) GetLocked() bool

GetLocked returns the Locked field value

func (*Template) GetLockedOk

func (o *Template) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value and a boolean to check if the value has been set.

func (*Template) GetMergeAuditTrailPdf

func (o *Template) GetMergeAuditTrailPdf() bool

GetMergeAuditTrailPdf returns the MergeAuditTrailPdf field value

func (*Template) GetMergeAuditTrailPdfOk

func (o *Template) GetMergeAuditTrailPdfOk() (*bool, bool)

GetMergeAuditTrailPdfOk returns a tuple with the MergeAuditTrailPdf field value and a boolean to check if the value has been set.

func (*Template) GetName

func (o *Template) GetName() string

GetName returns the Name field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetNameOk

func (o *Template) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetPageCount

func (o *Template) GetPageCount() int32

GetPageCount returns the PageCount field value

func (*Template) GetPageCountOk

func (o *Template) GetPageCountOk() (*int32, bool)

GetPageCountOk returns a tuple with the PageCount field value and a boolean to check if the value has been set.

func (*Template) GetPageDimensions

func (o *Template) GetPageDimensions() [][]float32

GetPageDimensions returns the PageDimensions field value If the value is explicit nil, the zero value for [][]float32 will be returned

func (*Template) GetPageDimensionsOk

func (o *Template) GetPageDimensionsOk() ([][]float32, bool)

GetPageDimensionsOk returns a tuple with the PageDimensions field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetParentFolderId

func (o *Template) GetParentFolderId() string

GetParentFolderId returns the ParentFolderId field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetParentFolderIdOk

func (o *Template) GetParentFolderIdOk() (*string, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetPath

func (o *Template) GetPath() string

GetPath returns the Path field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetPathOk

func (o *Template) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetPermanentDocumentUrl

func (o *Template) GetPermanentDocumentUrl() string

GetPermanentDocumentUrl returns the PermanentDocumentUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetPermanentDocumentUrlOk

func (o *Template) GetPermanentDocumentUrlOk() (*string, bool)

GetPermanentDocumentUrlOk returns a tuple with the PermanentDocumentUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetPredefinedFields

func (o *Template) GetPredefinedFields() []map[string]interface{}

GetPredefinedFields returns the PredefinedFields field value

func (*Template) GetPredefinedFieldsOk

func (o *Template) GetPredefinedFieldsOk() ([]map[string]interface{}, bool)

GetPredefinedFieldsOk returns a tuple with the PredefinedFields field value and a boolean to check if the value has been set.

func (*Template) GetPublicSubmissions

func (o *Template) GetPublicSubmissions() bool

GetPublicSubmissions returns the PublicSubmissions field value

func (*Template) GetPublicSubmissionsOk

func (o *Template) GetPublicSubmissionsOk() (*bool, bool)

GetPublicSubmissionsOk returns a tuple with the PublicSubmissions field value and a boolean to check if the value has been set.

func (*Template) GetPublicWebForm

func (o *Template) GetPublicWebForm() bool

GetPublicWebForm returns the PublicWebForm field value

func (*Template) GetPublicWebFormOk

func (o *Template) GetPublicWebFormOk() (*bool, bool)

GetPublicWebFormOk returns a tuple with the PublicWebForm field value and a boolean to check if the value has been set.

func (*Template) GetRedirectUrl

func (o *Template) GetRedirectUrl() string

GetRedirectUrl returns the RedirectUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetRedirectUrlOk

func (o *Template) GetRedirectUrlOk() (*string, bool)

GetRedirectUrlOk returns a tuple with the RedirectUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetScss

func (o *Template) GetScss() string

GetScss returns the Scss field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetScssOk

func (o *Template) GetScssOk() (*string, bool)

GetScssOk returns a tuple with the Scss field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetSharedFieldData

func (o *Template) GetSharedFieldData() map[string]interface{}

GetSharedFieldData returns the SharedFieldData field value

func (*Template) GetSharedFieldDataOk

func (o *Template) GetSharedFieldDataOk() (map[string]interface{}, bool)

GetSharedFieldDataOk returns a tuple with the SharedFieldData field value and a boolean to check if the value has been set.

func (*Template) GetSlackWebhookUrl

func (o *Template) GetSlackWebhookUrl() string

GetSlackWebhookUrl returns the SlackWebhookUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetSlackWebhookUrlOk

func (o *Template) GetSlackWebhookUrlOk() (*string, bool)

GetSlackWebhookUrlOk returns a tuple with the SlackWebhookUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetTemplateType

func (o *Template) GetTemplateType() string

GetTemplateType returns the TemplateType field value

func (*Template) GetTemplateTypeOk

func (o *Template) GetTemplateTypeOk() (*string, bool)

GetTemplateTypeOk returns a tuple with the TemplateType field value and a boolean to check if the value has been set.

func (*Template) GetUpdatedAt

func (o *Template) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetUpdatedAtOk

func (o *Template) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetVersion

func (o *Template) GetVersion() string

GetVersion returns the Version field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetVersionOk

func (o *Template) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetVersionPublishedAt

func (o *Template) GetVersionPublishedAt() string

GetVersionPublishedAt returns the VersionPublishedAt field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetVersionPublishedAtOk

func (o *Template) GetVersionPublishedAtOk() (*string, bool)

GetVersionPublishedAtOk returns a tuple with the VersionPublishedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Template) GetVersions

func (o *Template) GetVersions() []map[string]interface{}

GetVersions returns the Versions field value

func (*Template) GetVersionsOk

func (o *Template) GetVersionsOk() ([]map[string]interface{}, bool)

GetVersionsOk returns a tuple with the Versions field value and a boolean to check if the value has been set.

func (*Template) GetWebhookUrl

func (o *Template) GetWebhookUrl() string

GetWebhookUrl returns the WebhookUrl field value If the value is explicit nil, the zero value for string will be returned

func (*Template) GetWebhookUrlOk

func (o *Template) GetWebhookUrlOk() (*string, bool)

GetWebhookUrlOk returns a tuple with the WebhookUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (Template) MarshalJSON

func (o Template) MarshalJSON() ([]byte, error)

func (*Template) SetAddDataRequestSubmissionIdFooters

func (o *Template) SetAddDataRequestSubmissionIdFooters(v bool)

SetAddDataRequestSubmissionIdFooters sets field value

func (*Template) SetAllowAdditionalProperties

func (o *Template) SetAllowAdditionalProperties(v bool)

SetAllowAdditionalProperties sets field value

func (*Template) SetDefaults

func (o *Template) SetDefaults(v map[string]interface{})

SetDefaults sets field value

func (*Template) SetDemo

func (o *Template) SetDemo(v bool)

SetDemo sets field value

func (*Template) SetDescription

func (o *Template) SetDescription(v string)

SetDescription sets field value

func (*Template) SetDocumentFilename

func (o *Template) SetDocumentFilename(v string)

SetDocumentFilename sets field value

func (*Template) SetDocumentMd5

func (o *Template) SetDocumentMd5(v string)

SetDocumentMd5 sets field value

func (*Template) SetDocumentParseError

func (o *Template) SetDocumentParseError(v bool)

SetDocumentParseError sets field value

func (*Template) SetDocumentProcessed

func (o *Template) SetDocumentProcessed(v bool)

SetDocumentProcessed sets field value

func (*Template) SetDocumentState

func (o *Template) SetDocumentState(v string)

SetDocumentState sets field value

func (*Template) SetDocumentUrl

func (o *Template) SetDocumentUrl(v string)

SetDocumentUrl sets field value

func (*Template) SetEditableSubmissions

func (o *Template) SetEditableSubmissions(v bool)

SetEditableSubmissions sets field value

func (*Template) SetEmbedDomains

func (o *Template) SetEmbedDomains(v string)

SetEmbedDomains sets field value

func (*Template) SetEncryptPdfs

func (o *Template) SetEncryptPdfs(v bool)

SetEncryptPdfs sets field value

func (*Template) SetEncryptPdfsPassword

func (o *Template) SetEncryptPdfsPassword(v string)

SetEncryptPdfsPassword sets field value

func (*Template) SetExpirationInterval

func (o *Template) SetExpirationInterval(v string)

SetExpirationInterval sets field value

func (*Template) SetExpireAfter

func (o *Template) SetExpireAfter(v int32)

SetExpireAfter sets field value

func (*Template) SetExpireSubmissions

func (o *Template) SetExpireSubmissions(v bool)

SetExpireSubmissions sets field value

func (*Template) SetExternalPredefinedFieldsTemplateId

func (o *Template) SetExternalPredefinedFieldsTemplateId(v string)

SetExternalPredefinedFieldsTemplateId sets field value

func (*Template) SetExternalPredefinedFieldsTemplateName

func (o *Template) SetExternalPredefinedFieldsTemplateName(v string)

SetExternalPredefinedFieldsTemplateName sets field value

func (*Template) SetFieldOrder

func (o *Template) SetFieldOrder(v [][]float32)

SetFieldOrder sets field value

func (*Template) SetFields

func (o *Template) SetFields(v map[string]interface{})

SetFields sets field value

func (*Template) SetFirstTemplate

func (o *Template) SetFirstTemplate(v bool)

SetFirstTemplate sets field value

func (*Template) SetFooterHtml

func (o *Template) SetFooterHtml(v string)

SetFooterHtml sets field value

func (*Template) SetHeaderHtml

func (o *Template) SetHeaderHtml(v string)

SetHeaderHtml sets field value

func (*Template) SetHtml

func (o *Template) SetHtml(v string)

SetHtml sets field value

func (*Template) SetHtmlEngineOptions

func (o *Template) SetHtmlEngineOptions(v map[string]interface{})

SetHtmlEngineOptions sets field value

func (*Template) SetId

func (o *Template) SetId(v string)

SetId sets field value

func (*Template) SetLastChangedAt

func (o *Template) SetLastChangedAt(v string)

SetLastChangedAt sets field value

func (*Template) SetLastChangedById

func (o *Template) SetLastChangedById(v string)

SetLastChangedById sets field value

func (*Template) SetLastChangedByType

func (o *Template) SetLastChangedByType(v string)

SetLastChangedByType sets field value

func (*Template) SetLatestVersion

func (o *Template) SetLatestVersion(v string)

SetLatestVersion sets field value

func (*Template) SetLocked

func (o *Template) SetLocked(v bool)

SetLocked sets field value

func (*Template) SetMergeAuditTrailPdf

func (o *Template) SetMergeAuditTrailPdf(v bool)

SetMergeAuditTrailPdf sets field value

func (*Template) SetName

func (o *Template) SetName(v string)

SetName sets field value

func (*Template) SetPageCount

func (o *Template) SetPageCount(v int32)

SetPageCount sets field value

func (*Template) SetPageDimensions

func (o *Template) SetPageDimensions(v [][]float32)

SetPageDimensions sets field value

func (*Template) SetParentFolderId

func (o *Template) SetParentFolderId(v string)

SetParentFolderId sets field value

func (*Template) SetPath

func (o *Template) SetPath(v string)

SetPath sets field value

func (*Template) SetPermanentDocumentUrl

func (o *Template) SetPermanentDocumentUrl(v string)

SetPermanentDocumentUrl sets field value

func (*Template) SetPredefinedFields

func (o *Template) SetPredefinedFields(v []map[string]interface{})

SetPredefinedFields sets field value

func (*Template) SetPublicSubmissions

func (o *Template) SetPublicSubmissions(v bool)

SetPublicSubmissions sets field value

func (*Template) SetPublicWebForm

func (o *Template) SetPublicWebForm(v bool)

SetPublicWebForm sets field value

func (*Template) SetRedirectUrl

func (o *Template) SetRedirectUrl(v string)

SetRedirectUrl sets field value

func (*Template) SetScss

func (o *Template) SetScss(v string)

SetScss sets field value

func (*Template) SetSharedFieldData

func (o *Template) SetSharedFieldData(v map[string]interface{})

SetSharedFieldData sets field value

func (*Template) SetSlackWebhookUrl

func (o *Template) SetSlackWebhookUrl(v string)

SetSlackWebhookUrl sets field value

func (*Template) SetTemplateType

func (o *Template) SetTemplateType(v string)

SetTemplateType sets field value

func (*Template) SetUpdatedAt

func (o *Template) SetUpdatedAt(v string)

SetUpdatedAt sets field value

func (*Template) SetVersion

func (o *Template) SetVersion(v string)

SetVersion sets field value

func (*Template) SetVersionPublishedAt

func (o *Template) SetVersionPublishedAt(v string)

SetVersionPublishedAt sets field value

func (*Template) SetVersions

func (o *Template) SetVersions(v []map[string]interface{})

SetVersions sets field value

func (*Template) SetWebhookUrl

func (o *Template) SetWebhookUrl(v string)

SetWebhookUrl sets field value

func (Template) ToMap

func (o Template) ToMap() (map[string]interface{}, error)

func (*Template) UnmarshalJSON

func (o *Template) UnmarshalJSON(data []byte) (err error)

type TemplateAddFieldsResponse

type TemplateAddFieldsResponse struct {
	Status      string   `json:"status"`
	Errors      []string `json:"errors,omitempty"`
	NewFieldIds []int32  `json:"new_field_ids,omitempty"`
}

TemplateAddFieldsResponse struct for TemplateAddFieldsResponse

func NewTemplateAddFieldsResponse

func NewTemplateAddFieldsResponse(status string) *TemplateAddFieldsResponse

NewTemplateAddFieldsResponse instantiates a new TemplateAddFieldsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateAddFieldsResponseWithDefaults

func NewTemplateAddFieldsResponseWithDefaults() *TemplateAddFieldsResponse

NewTemplateAddFieldsResponseWithDefaults instantiates a new TemplateAddFieldsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateAddFieldsResponse) GetErrors

func (o *TemplateAddFieldsResponse) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*TemplateAddFieldsResponse) GetErrorsOk

func (o *TemplateAddFieldsResponse) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAddFieldsResponse) GetNewFieldIds

func (o *TemplateAddFieldsResponse) GetNewFieldIds() []int32

GetNewFieldIds returns the NewFieldIds field value if set, zero value otherwise.

func (*TemplateAddFieldsResponse) GetNewFieldIdsOk

func (o *TemplateAddFieldsResponse) GetNewFieldIdsOk() ([]int32, bool)

GetNewFieldIdsOk returns a tuple with the NewFieldIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateAddFieldsResponse) GetStatus

func (o *TemplateAddFieldsResponse) GetStatus() string

GetStatus returns the Status field value

func (*TemplateAddFieldsResponse) GetStatusOk

func (o *TemplateAddFieldsResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*TemplateAddFieldsResponse) HasErrors

func (o *TemplateAddFieldsResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*TemplateAddFieldsResponse) HasNewFieldIds

func (o *TemplateAddFieldsResponse) HasNewFieldIds() bool

HasNewFieldIds returns a boolean if a field has been set.

func (TemplateAddFieldsResponse) MarshalJSON

func (o TemplateAddFieldsResponse) MarshalJSON() ([]byte, error)

func (*TemplateAddFieldsResponse) SetErrors

func (o *TemplateAddFieldsResponse) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (*TemplateAddFieldsResponse) SetNewFieldIds

func (o *TemplateAddFieldsResponse) SetNewFieldIds(v []int32)

SetNewFieldIds gets a reference to the given []int32 and assigns it to the NewFieldIds field.

func (*TemplateAddFieldsResponse) SetStatus

func (o *TemplateAddFieldsResponse) SetStatus(v string)

SetStatus sets field value

func (TemplateAddFieldsResponse) ToMap

func (o TemplateAddFieldsResponse) ToMap() (map[string]interface{}, error)

func (*TemplateAddFieldsResponse) UnmarshalJSON

func (o *TemplateAddFieldsResponse) UnmarshalJSON(data []byte) (err error)

type TemplateDeleteResponse

type TemplateDeleteResponse struct {
	Status        string                   `json:"status"`
	Errors        []string                 `json:"errors,omitempty"`
	LatestVersion NullableString           `json:"latest_version,omitempty"`
	Versions      []map[string]interface{} `json:"versions,omitempty"`
}

TemplateDeleteResponse struct for TemplateDeleteResponse

func NewTemplateDeleteResponse

func NewTemplateDeleteResponse(status string) *TemplateDeleteResponse

NewTemplateDeleteResponse instantiates a new TemplateDeleteResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateDeleteResponseWithDefaults

func NewTemplateDeleteResponseWithDefaults() *TemplateDeleteResponse

NewTemplateDeleteResponseWithDefaults instantiates a new TemplateDeleteResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateDeleteResponse) GetErrors

func (o *TemplateDeleteResponse) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*TemplateDeleteResponse) GetErrorsOk

func (o *TemplateDeleteResponse) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateDeleteResponse) GetLatestVersion

func (o *TemplateDeleteResponse) GetLatestVersion() string

GetLatestVersion returns the LatestVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TemplateDeleteResponse) GetLatestVersionOk

func (o *TemplateDeleteResponse) GetLatestVersionOk() (*string, bool)

GetLatestVersionOk returns a tuple with the LatestVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplateDeleteResponse) GetStatus

func (o *TemplateDeleteResponse) GetStatus() string

GetStatus returns the Status field value

func (*TemplateDeleteResponse) GetStatusOk

func (o *TemplateDeleteResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*TemplateDeleteResponse) GetVersions

func (o *TemplateDeleteResponse) GetVersions() []map[string]interface{}

GetVersions returns the Versions field value if set, zero value otherwise.

func (*TemplateDeleteResponse) GetVersionsOk

func (o *TemplateDeleteResponse) GetVersionsOk() ([]map[string]interface{}, bool)

GetVersionsOk returns a tuple with the Versions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateDeleteResponse) HasErrors

func (o *TemplateDeleteResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*TemplateDeleteResponse) HasLatestVersion

func (o *TemplateDeleteResponse) HasLatestVersion() bool

HasLatestVersion returns a boolean if a field has been set.

func (*TemplateDeleteResponse) HasVersions

func (o *TemplateDeleteResponse) HasVersions() bool

HasVersions returns a boolean if a field has been set.

func (TemplateDeleteResponse) MarshalJSON

func (o TemplateDeleteResponse) MarshalJSON() ([]byte, error)

func (*TemplateDeleteResponse) SetErrors

func (o *TemplateDeleteResponse) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (*TemplateDeleteResponse) SetLatestVersion

func (o *TemplateDeleteResponse) SetLatestVersion(v string)

SetLatestVersion gets a reference to the given NullableString and assigns it to the LatestVersion field.

func (*TemplateDeleteResponse) SetLatestVersionNil

func (o *TemplateDeleteResponse) SetLatestVersionNil()

SetLatestVersionNil sets the value for LatestVersion to be an explicit nil

func (*TemplateDeleteResponse) SetStatus

func (o *TemplateDeleteResponse) SetStatus(v string)

SetStatus sets field value

func (*TemplateDeleteResponse) SetVersions

func (o *TemplateDeleteResponse) SetVersions(v []map[string]interface{})

SetVersions gets a reference to the given []map[string]interface{} and assigns it to the Versions field.

func (TemplateDeleteResponse) ToMap

func (o TemplateDeleteResponse) ToMap() (map[string]interface{}, error)

func (*TemplateDeleteResponse) UnmarshalJSON

func (o *TemplateDeleteResponse) UnmarshalJSON(data []byte) (err error)

func (*TemplateDeleteResponse) UnsetLatestVersion

func (o *TemplateDeleteResponse) UnsetLatestVersion()

UnsetLatestVersion ensures that no value is present for LatestVersion, not even an explicit nil

type TemplatePreview

type TemplatePreview struct {
	AddDataRequestSubmissionIdFooters    bool           `json:"add_data_request_submission_id_footers"`
	AllowAdditionalProperties            bool           `json:"allow_additional_properties"`
	Description                          NullableString `json:"description"`
	DocumentFilename                     NullableString `json:"document_filename"`
	DocumentMd5                          NullableString `json:"document_md5"`
	DocumentParseError                   bool           `json:"document_parse_error"`
	DocumentProcessed                    bool           `json:"document_processed"`
	DocumentState                        string         `json:"document_state"`
	DocumentUrl                          NullableString `json:"document_url"`
	EditableSubmissions                  bool           `json:"editable_submissions"`
	EmbedDomains                         NullableString `json:"embed_domains"`
	EncryptPdfsPassword                  NullableString `json:"encrypt_pdfs_password"`
	EncryptPdfs                          bool           `json:"encrypt_pdfs"`
	ExpirationInterval                   string         `json:"expiration_interval"`
	ExpireAfter                          int32          `json:"expire_after"`
	ExpireSubmissions                    bool           `json:"expire_submissions"`
	ExternalPredefinedFieldsTemplateId   NullableString `json:"external_predefined_fields_template_id"`
	ExternalPredefinedFieldsTemplateName NullableString `json:"external_predefined_fields_template_name"`
	FirstTemplate                        bool           `json:"first_template"`
	Id                                   NullableString `json:"id"`
	Locked                               bool           `json:"locked"`
	MergeAuditTrailPdf                   bool           `json:"merge_audit_trail_pdf"`
	Name                                 NullableString `json:"name"`
	PageCount                            int32          `json:"page_count"`
	PageDimensions                       [][]float32    `json:"page_dimensions"`
	ParentFolderId                       NullableString `json:"parent_folder_id"`
	Path                                 NullableString `json:"path"`
	PermanentDocumentUrl                 NullableString `json:"permanent_document_url"`
	PublicSubmissions                    bool           `json:"public_submissions"`
	PublicWebForm                        bool           `json:"public_web_form"`
	RedirectUrl                          NullableString `json:"redirect_url"`
	SlackWebhookUrl                      NullableString `json:"slack_webhook_url"`
	TemplateType                         string         `json:"template_type"`
	UpdatedAt                            NullableString `json:"updated_at"`
	VersionPublishedAt                   NullableString `json:"version_published_at"`
	Version                              NullableString `json:"version"`
	WebhookUrl                           NullableString `json:"webhook_url"`
	Demo                                 bool           `json:"demo"`
	LatestVersion                        NullableString `json:"latest_version"`
	LastChangedAt                        NullableString `json:"last_changed_at"`
	LastChangedByType                    NullableString `json:"last_changed_by_type"`
	LastChangedById                      NullableString `json:"last_changed_by_id"`
}

TemplatePreview struct for TemplatePreview

func NewTemplatePreview

func NewTemplatePreview(addDataRequestSubmissionIdFooters bool, allowAdditionalProperties bool, description NullableString, documentFilename NullableString, documentMd5 NullableString, documentParseError bool, documentProcessed bool, documentState string, documentUrl NullableString, editableSubmissions bool, embedDomains NullableString, encryptPdfsPassword NullableString, encryptPdfs bool, expirationInterval string, expireAfter int32, expireSubmissions bool, externalPredefinedFieldsTemplateId NullableString, externalPredefinedFieldsTemplateName NullableString, firstTemplate bool, id NullableString, locked bool, mergeAuditTrailPdf bool, name NullableString, pageCount int32, pageDimensions [][]float32, parentFolderId NullableString, path NullableString, permanentDocumentUrl NullableString, publicSubmissions bool, publicWebForm bool, redirectUrl NullableString, slackWebhookUrl NullableString, templateType string, updatedAt NullableString, versionPublishedAt NullableString, version NullableString, webhookUrl NullableString, demo bool, latestVersion NullableString, lastChangedAt NullableString, lastChangedByType NullableString, lastChangedById NullableString) *TemplatePreview

NewTemplatePreview instantiates a new TemplatePreview object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplatePreviewWithDefaults

func NewTemplatePreviewWithDefaults() *TemplatePreview

NewTemplatePreviewWithDefaults instantiates a new TemplatePreview object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplatePreview) GetAddDataRequestSubmissionIdFooters

func (o *TemplatePreview) GetAddDataRequestSubmissionIdFooters() bool

GetAddDataRequestSubmissionIdFooters returns the AddDataRequestSubmissionIdFooters field value

func (*TemplatePreview) GetAddDataRequestSubmissionIdFootersOk

func (o *TemplatePreview) GetAddDataRequestSubmissionIdFootersOk() (*bool, bool)

GetAddDataRequestSubmissionIdFootersOk returns a tuple with the AddDataRequestSubmissionIdFooters field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetAllowAdditionalProperties

func (o *TemplatePreview) GetAllowAdditionalProperties() bool

GetAllowAdditionalProperties returns the AllowAdditionalProperties field value

func (*TemplatePreview) GetAllowAdditionalPropertiesOk

func (o *TemplatePreview) GetAllowAdditionalPropertiesOk() (*bool, bool)

GetAllowAdditionalPropertiesOk returns a tuple with the AllowAdditionalProperties field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetDemo

func (o *TemplatePreview) GetDemo() bool

GetDemo returns the Demo field value

func (*TemplatePreview) GetDemoOk

func (o *TemplatePreview) GetDemoOk() (*bool, bool)

GetDemoOk returns a tuple with the Demo field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetDescription

func (o *TemplatePreview) GetDescription() string

GetDescription returns the Description field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetDescriptionOk

func (o *TemplatePreview) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetDocumentFilename

func (o *TemplatePreview) GetDocumentFilename() string

GetDocumentFilename returns the DocumentFilename field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetDocumentFilenameOk

func (o *TemplatePreview) GetDocumentFilenameOk() (*string, bool)

GetDocumentFilenameOk returns a tuple with the DocumentFilename field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetDocumentMd5

func (o *TemplatePreview) GetDocumentMd5() string

GetDocumentMd5 returns the DocumentMd5 field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetDocumentMd5Ok

func (o *TemplatePreview) GetDocumentMd5Ok() (*string, bool)

GetDocumentMd5Ok returns a tuple with the DocumentMd5 field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetDocumentParseError

func (o *TemplatePreview) GetDocumentParseError() bool

GetDocumentParseError returns the DocumentParseError field value

func (*TemplatePreview) GetDocumentParseErrorOk

func (o *TemplatePreview) GetDocumentParseErrorOk() (*bool, bool)

GetDocumentParseErrorOk returns a tuple with the DocumentParseError field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetDocumentProcessed

func (o *TemplatePreview) GetDocumentProcessed() bool

GetDocumentProcessed returns the DocumentProcessed field value

func (*TemplatePreview) GetDocumentProcessedOk

func (o *TemplatePreview) GetDocumentProcessedOk() (*bool, bool)

GetDocumentProcessedOk returns a tuple with the DocumentProcessed field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetDocumentState

func (o *TemplatePreview) GetDocumentState() string

GetDocumentState returns the DocumentState field value

func (*TemplatePreview) GetDocumentStateOk

func (o *TemplatePreview) GetDocumentStateOk() (*string, bool)

GetDocumentStateOk returns a tuple with the DocumentState field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetDocumentUrl

func (o *TemplatePreview) GetDocumentUrl() string

GetDocumentUrl returns the DocumentUrl field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetDocumentUrlOk

func (o *TemplatePreview) GetDocumentUrlOk() (*string, bool)

GetDocumentUrlOk returns a tuple with the DocumentUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetEditableSubmissions

func (o *TemplatePreview) GetEditableSubmissions() bool

GetEditableSubmissions returns the EditableSubmissions field value

func (*TemplatePreview) GetEditableSubmissionsOk

func (o *TemplatePreview) GetEditableSubmissionsOk() (*bool, bool)

GetEditableSubmissionsOk returns a tuple with the EditableSubmissions field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetEmbedDomains

func (o *TemplatePreview) GetEmbedDomains() string

GetEmbedDomains returns the EmbedDomains field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetEmbedDomainsOk

func (o *TemplatePreview) GetEmbedDomainsOk() (*string, bool)

GetEmbedDomainsOk returns a tuple with the EmbedDomains field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetEncryptPdfs

func (o *TemplatePreview) GetEncryptPdfs() bool

GetEncryptPdfs returns the EncryptPdfs field value

func (*TemplatePreview) GetEncryptPdfsOk

func (o *TemplatePreview) GetEncryptPdfsOk() (*bool, bool)

GetEncryptPdfsOk returns a tuple with the EncryptPdfs field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetEncryptPdfsPassword

func (o *TemplatePreview) GetEncryptPdfsPassword() string

GetEncryptPdfsPassword returns the EncryptPdfsPassword field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetEncryptPdfsPasswordOk

func (o *TemplatePreview) GetEncryptPdfsPasswordOk() (*string, bool)

GetEncryptPdfsPasswordOk returns a tuple with the EncryptPdfsPassword field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetExpirationInterval

func (o *TemplatePreview) GetExpirationInterval() string

GetExpirationInterval returns the ExpirationInterval field value

func (*TemplatePreview) GetExpirationIntervalOk

func (o *TemplatePreview) GetExpirationIntervalOk() (*string, bool)

GetExpirationIntervalOk returns a tuple with the ExpirationInterval field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetExpireAfter

func (o *TemplatePreview) GetExpireAfter() int32

GetExpireAfter returns the ExpireAfter field value

func (*TemplatePreview) GetExpireAfterOk

func (o *TemplatePreview) GetExpireAfterOk() (*int32, bool)

GetExpireAfterOk returns a tuple with the ExpireAfter field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetExpireSubmissions

func (o *TemplatePreview) GetExpireSubmissions() bool

GetExpireSubmissions returns the ExpireSubmissions field value

func (*TemplatePreview) GetExpireSubmissionsOk

func (o *TemplatePreview) GetExpireSubmissionsOk() (*bool, bool)

GetExpireSubmissionsOk returns a tuple with the ExpireSubmissions field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetExternalPredefinedFieldsTemplateId

func (o *TemplatePreview) GetExternalPredefinedFieldsTemplateId() string

GetExternalPredefinedFieldsTemplateId returns the ExternalPredefinedFieldsTemplateId field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetExternalPredefinedFieldsTemplateIdOk

func (o *TemplatePreview) GetExternalPredefinedFieldsTemplateIdOk() (*string, bool)

GetExternalPredefinedFieldsTemplateIdOk returns a tuple with the ExternalPredefinedFieldsTemplateId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetExternalPredefinedFieldsTemplateName

func (o *TemplatePreview) GetExternalPredefinedFieldsTemplateName() string

GetExternalPredefinedFieldsTemplateName returns the ExternalPredefinedFieldsTemplateName field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetExternalPredefinedFieldsTemplateNameOk

func (o *TemplatePreview) GetExternalPredefinedFieldsTemplateNameOk() (*string, bool)

GetExternalPredefinedFieldsTemplateNameOk returns a tuple with the ExternalPredefinedFieldsTemplateName field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetFirstTemplate

func (o *TemplatePreview) GetFirstTemplate() bool

GetFirstTemplate returns the FirstTemplate field value

func (*TemplatePreview) GetFirstTemplateOk

func (o *TemplatePreview) GetFirstTemplateOk() (*bool, bool)

GetFirstTemplateOk returns a tuple with the FirstTemplate field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetId

func (o *TemplatePreview) GetId() string

GetId returns the Id field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetIdOk

func (o *TemplatePreview) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetLastChangedAt

func (o *TemplatePreview) GetLastChangedAt() string

GetLastChangedAt returns the LastChangedAt field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetLastChangedAtOk

func (o *TemplatePreview) GetLastChangedAtOk() (*string, bool)

GetLastChangedAtOk returns a tuple with the LastChangedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetLastChangedById

func (o *TemplatePreview) GetLastChangedById() string

GetLastChangedById returns the LastChangedById field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetLastChangedByIdOk

func (o *TemplatePreview) GetLastChangedByIdOk() (*string, bool)

GetLastChangedByIdOk returns a tuple with the LastChangedById field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetLastChangedByType

func (o *TemplatePreview) GetLastChangedByType() string

GetLastChangedByType returns the LastChangedByType field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetLastChangedByTypeOk

func (o *TemplatePreview) GetLastChangedByTypeOk() (*string, bool)

GetLastChangedByTypeOk returns a tuple with the LastChangedByType field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetLatestVersion

func (o *TemplatePreview) GetLatestVersion() string

GetLatestVersion returns the LatestVersion field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetLatestVersionOk

func (o *TemplatePreview) GetLatestVersionOk() (*string, bool)

GetLatestVersionOk returns a tuple with the LatestVersion field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetLocked

func (o *TemplatePreview) GetLocked() bool

GetLocked returns the Locked field value

func (*TemplatePreview) GetLockedOk

func (o *TemplatePreview) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetMergeAuditTrailPdf

func (o *TemplatePreview) GetMergeAuditTrailPdf() bool

GetMergeAuditTrailPdf returns the MergeAuditTrailPdf field value

func (*TemplatePreview) GetMergeAuditTrailPdfOk

func (o *TemplatePreview) GetMergeAuditTrailPdfOk() (*bool, bool)

GetMergeAuditTrailPdfOk returns a tuple with the MergeAuditTrailPdf field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetName

func (o *TemplatePreview) GetName() string

GetName returns the Name field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetNameOk

func (o *TemplatePreview) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetPageCount

func (o *TemplatePreview) GetPageCount() int32

GetPageCount returns the PageCount field value

func (*TemplatePreview) GetPageCountOk

func (o *TemplatePreview) GetPageCountOk() (*int32, bool)

GetPageCountOk returns a tuple with the PageCount field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetPageDimensions

func (o *TemplatePreview) GetPageDimensions() [][]float32

GetPageDimensions returns the PageDimensions field value If the value is explicit nil, the zero value for [][]float32 will be returned

func (*TemplatePreview) GetPageDimensionsOk

func (o *TemplatePreview) GetPageDimensionsOk() ([][]float32, bool)

GetPageDimensionsOk returns a tuple with the PageDimensions field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetParentFolderId

func (o *TemplatePreview) GetParentFolderId() string

GetParentFolderId returns the ParentFolderId field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetParentFolderIdOk

func (o *TemplatePreview) GetParentFolderIdOk() (*string, bool)

GetParentFolderIdOk returns a tuple with the ParentFolderId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetPath

func (o *TemplatePreview) GetPath() string

GetPath returns the Path field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetPathOk

func (o *TemplatePreview) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetPermanentDocumentUrl

func (o *TemplatePreview) GetPermanentDocumentUrl() string

GetPermanentDocumentUrl returns the PermanentDocumentUrl field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetPermanentDocumentUrlOk

func (o *TemplatePreview) GetPermanentDocumentUrlOk() (*string, bool)

GetPermanentDocumentUrlOk returns a tuple with the PermanentDocumentUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetPublicSubmissions

func (o *TemplatePreview) GetPublicSubmissions() bool

GetPublicSubmissions returns the PublicSubmissions field value

func (*TemplatePreview) GetPublicSubmissionsOk

func (o *TemplatePreview) GetPublicSubmissionsOk() (*bool, bool)

GetPublicSubmissionsOk returns a tuple with the PublicSubmissions field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetPublicWebForm

func (o *TemplatePreview) GetPublicWebForm() bool

GetPublicWebForm returns the PublicWebForm field value

func (*TemplatePreview) GetPublicWebFormOk

func (o *TemplatePreview) GetPublicWebFormOk() (*bool, bool)

GetPublicWebFormOk returns a tuple with the PublicWebForm field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetRedirectUrl

func (o *TemplatePreview) GetRedirectUrl() string

GetRedirectUrl returns the RedirectUrl field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetRedirectUrlOk

func (o *TemplatePreview) GetRedirectUrlOk() (*string, bool)

GetRedirectUrlOk returns a tuple with the RedirectUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetSlackWebhookUrl

func (o *TemplatePreview) GetSlackWebhookUrl() string

GetSlackWebhookUrl returns the SlackWebhookUrl field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetSlackWebhookUrlOk

func (o *TemplatePreview) GetSlackWebhookUrlOk() (*string, bool)

GetSlackWebhookUrlOk returns a tuple with the SlackWebhookUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetTemplateType

func (o *TemplatePreview) GetTemplateType() string

GetTemplateType returns the TemplateType field value

func (*TemplatePreview) GetTemplateTypeOk

func (o *TemplatePreview) GetTemplateTypeOk() (*string, bool)

GetTemplateTypeOk returns a tuple with the TemplateType field value and a boolean to check if the value has been set.

func (*TemplatePreview) GetUpdatedAt

func (o *TemplatePreview) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetUpdatedAtOk

func (o *TemplatePreview) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetVersion

func (o *TemplatePreview) GetVersion() string

GetVersion returns the Version field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetVersionOk

func (o *TemplatePreview) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetVersionPublishedAt

func (o *TemplatePreview) GetVersionPublishedAt() string

GetVersionPublishedAt returns the VersionPublishedAt field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetVersionPublishedAtOk

func (o *TemplatePreview) GetVersionPublishedAtOk() (*string, bool)

GetVersionPublishedAtOk returns a tuple with the VersionPublishedAt field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TemplatePreview) GetWebhookUrl

func (o *TemplatePreview) GetWebhookUrl() string

GetWebhookUrl returns the WebhookUrl field value If the value is explicit nil, the zero value for string will be returned

func (*TemplatePreview) GetWebhookUrlOk

func (o *TemplatePreview) GetWebhookUrlOk() (*string, bool)

GetWebhookUrlOk returns a tuple with the WebhookUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (TemplatePreview) MarshalJSON

func (o TemplatePreview) MarshalJSON() ([]byte, error)

func (*TemplatePreview) SetAddDataRequestSubmissionIdFooters

func (o *TemplatePreview) SetAddDataRequestSubmissionIdFooters(v bool)

SetAddDataRequestSubmissionIdFooters sets field value

func (*TemplatePreview) SetAllowAdditionalProperties

func (o *TemplatePreview) SetAllowAdditionalProperties(v bool)

SetAllowAdditionalProperties sets field value

func (*TemplatePreview) SetDemo

func (o *TemplatePreview) SetDemo(v bool)

SetDemo sets field value

func (*TemplatePreview) SetDescription

func (o *TemplatePreview) SetDescription(v string)

SetDescription sets field value

func (*TemplatePreview) SetDocumentFilename

func (o *TemplatePreview) SetDocumentFilename(v string)

SetDocumentFilename sets field value

func (*TemplatePreview) SetDocumentMd5

func (o *TemplatePreview) SetDocumentMd5(v string)

SetDocumentMd5 sets field value

func (*TemplatePreview) SetDocumentParseError

func (o *TemplatePreview) SetDocumentParseError(v bool)

SetDocumentParseError sets field value

func (*TemplatePreview) SetDocumentProcessed

func (o *TemplatePreview) SetDocumentProcessed(v bool)

SetDocumentProcessed sets field value

func (*TemplatePreview) SetDocumentState

func (o *TemplatePreview) SetDocumentState(v string)

SetDocumentState sets field value

func (*TemplatePreview) SetDocumentUrl

func (o *TemplatePreview) SetDocumentUrl(v string)

SetDocumentUrl sets field value

func (*TemplatePreview) SetEditableSubmissions

func (o *TemplatePreview) SetEditableSubmissions(v bool)

SetEditableSubmissions sets field value

func (*TemplatePreview) SetEmbedDomains

func (o *TemplatePreview) SetEmbedDomains(v string)

SetEmbedDomains sets field value

func (*TemplatePreview) SetEncryptPdfs

func (o *TemplatePreview) SetEncryptPdfs(v bool)

SetEncryptPdfs sets field value

func (*TemplatePreview) SetEncryptPdfsPassword

func (o *TemplatePreview) SetEncryptPdfsPassword(v string)

SetEncryptPdfsPassword sets field value

func (*TemplatePreview) SetExpirationInterval

func (o *TemplatePreview) SetExpirationInterval(v string)

SetExpirationInterval sets field value

func (*TemplatePreview) SetExpireAfter

func (o *TemplatePreview) SetExpireAfter(v int32)

SetExpireAfter sets field value

func (*TemplatePreview) SetExpireSubmissions

func (o *TemplatePreview) SetExpireSubmissions(v bool)

SetExpireSubmissions sets field value

func (*TemplatePreview) SetExternalPredefinedFieldsTemplateId

func (o *TemplatePreview) SetExternalPredefinedFieldsTemplateId(v string)

SetExternalPredefinedFieldsTemplateId sets field value

func (*TemplatePreview) SetExternalPredefinedFieldsTemplateName

func (o *TemplatePreview) SetExternalPredefinedFieldsTemplateName(v string)

SetExternalPredefinedFieldsTemplateName sets field value

func (*TemplatePreview) SetFirstTemplate

func (o *TemplatePreview) SetFirstTemplate(v bool)

SetFirstTemplate sets field value

func (*TemplatePreview) SetId

func (o *TemplatePreview) SetId(v string)

SetId sets field value

func (*TemplatePreview) SetLastChangedAt

func (o *TemplatePreview) SetLastChangedAt(v string)

SetLastChangedAt sets field value

func (*TemplatePreview) SetLastChangedById

func (o *TemplatePreview) SetLastChangedById(v string)

SetLastChangedById sets field value

func (*TemplatePreview) SetLastChangedByType

func (o *TemplatePreview) SetLastChangedByType(v string)

SetLastChangedByType sets field value

func (*TemplatePreview) SetLatestVersion

func (o *TemplatePreview) SetLatestVersion(v string)

SetLatestVersion sets field value

func (*TemplatePreview) SetLocked

func (o *TemplatePreview) SetLocked(v bool)

SetLocked sets field value

func (*TemplatePreview) SetMergeAuditTrailPdf

func (o *TemplatePreview) SetMergeAuditTrailPdf(v bool)

SetMergeAuditTrailPdf sets field value

func (*TemplatePreview) SetName

func (o *TemplatePreview) SetName(v string)

SetName sets field value

func (*TemplatePreview) SetPageCount

func (o *TemplatePreview) SetPageCount(v int32)

SetPageCount sets field value

func (*TemplatePreview) SetPageDimensions

func (o *TemplatePreview) SetPageDimensions(v [][]float32)

SetPageDimensions sets field value

func (*TemplatePreview) SetParentFolderId

func (o *TemplatePreview) SetParentFolderId(v string)

SetParentFolderId sets field value

func (*TemplatePreview) SetPath

func (o *TemplatePreview) SetPath(v string)

SetPath sets field value

func (*TemplatePreview) SetPermanentDocumentUrl

func (o *TemplatePreview) SetPermanentDocumentUrl(v string)

SetPermanentDocumentUrl sets field value

func (*TemplatePreview) SetPublicSubmissions

func (o *TemplatePreview) SetPublicSubmissions(v bool)

SetPublicSubmissions sets field value

func (*TemplatePreview) SetPublicWebForm

func (o *TemplatePreview) SetPublicWebForm(v bool)

SetPublicWebForm sets field value

func (*TemplatePreview) SetRedirectUrl

func (o *TemplatePreview) SetRedirectUrl(v string)

SetRedirectUrl sets field value

func (*TemplatePreview) SetSlackWebhookUrl

func (o *TemplatePreview) SetSlackWebhookUrl(v string)

SetSlackWebhookUrl sets field value

func (*TemplatePreview) SetTemplateType

func (o *TemplatePreview) SetTemplateType(v string)

SetTemplateType sets field value

func (*TemplatePreview) SetUpdatedAt

func (o *TemplatePreview) SetUpdatedAt(v string)

SetUpdatedAt sets field value

func (*TemplatePreview) SetVersion

func (o *TemplatePreview) SetVersion(v string)

SetVersion sets field value

func (*TemplatePreview) SetVersionPublishedAt

func (o *TemplatePreview) SetVersionPublishedAt(v string)

SetVersionPublishedAt sets field value

func (*TemplatePreview) SetWebhookUrl

func (o *TemplatePreview) SetWebhookUrl(v string)

SetWebhookUrl sets field value

func (TemplatePreview) ToMap

func (o TemplatePreview) ToMap() (map[string]interface{}, error)

func (*TemplatePreview) UnmarshalJSON

func (o *TemplatePreview) UnmarshalJSON(data []byte) (err error)

type TemplatePublishVersionResponse

type TemplatePublishVersionResponse struct {
	Status string                 `json:"status"`
	Result map[string]interface{} `json:"result"`
	Errors []string               `json:"errors,omitempty"`
}

TemplatePublishVersionResponse struct for TemplatePublishVersionResponse

func NewTemplatePublishVersionResponse

func NewTemplatePublishVersionResponse(status string, result map[string]interface{}) *TemplatePublishVersionResponse

NewTemplatePublishVersionResponse instantiates a new TemplatePublishVersionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplatePublishVersionResponseWithDefaults

func NewTemplatePublishVersionResponseWithDefaults() *TemplatePublishVersionResponse

NewTemplatePublishVersionResponseWithDefaults instantiates a new TemplatePublishVersionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplatePublishVersionResponse) GetErrors

func (o *TemplatePublishVersionResponse) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*TemplatePublishVersionResponse) GetErrorsOk

func (o *TemplatePublishVersionResponse) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplatePublishVersionResponse) GetResult

func (o *TemplatePublishVersionResponse) GetResult() map[string]interface{}

GetResult returns the Result field value

func (*TemplatePublishVersionResponse) GetResultOk

func (o *TemplatePublishVersionResponse) GetResultOk() (map[string]interface{}, bool)

GetResultOk returns a tuple with the Result field value and a boolean to check if the value has been set.

func (*TemplatePublishVersionResponse) GetStatus

func (o *TemplatePublishVersionResponse) GetStatus() string

GetStatus returns the Status field value

func (*TemplatePublishVersionResponse) GetStatusOk

func (o *TemplatePublishVersionResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*TemplatePublishVersionResponse) HasErrors

func (o *TemplatePublishVersionResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (TemplatePublishVersionResponse) MarshalJSON

func (o TemplatePublishVersionResponse) MarshalJSON() ([]byte, error)

func (*TemplatePublishVersionResponse) SetErrors

func (o *TemplatePublishVersionResponse) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (*TemplatePublishVersionResponse) SetResult

func (o *TemplatePublishVersionResponse) SetResult(v map[string]interface{})

SetResult sets field value

func (*TemplatePublishVersionResponse) SetStatus

func (o *TemplatePublishVersionResponse) SetStatus(v string)

SetStatus sets field value

func (TemplatePublishVersionResponse) ToMap

func (o TemplatePublishVersionResponse) ToMap() (map[string]interface{}, error)

func (*TemplatePublishVersionResponse) UnmarshalJSON

func (o *TemplatePublishVersionResponse) UnmarshalJSON(data []byte) (err error)

type UpdateHtmlTemplate

type UpdateHtmlTemplate struct {
	Template map[string]interface{} `json:"template"`
}

UpdateHtmlTemplate struct for UpdateHtmlTemplate

func NewUpdateHtmlTemplate

func NewUpdateHtmlTemplate(template map[string]interface{}) *UpdateHtmlTemplate

NewUpdateHtmlTemplate instantiates a new UpdateHtmlTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateHtmlTemplateWithDefaults

func NewUpdateHtmlTemplateWithDefaults() *UpdateHtmlTemplate

NewUpdateHtmlTemplateWithDefaults instantiates a new UpdateHtmlTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateHtmlTemplate) GetTemplate

func (o *UpdateHtmlTemplate) GetTemplate() map[string]interface{}

GetTemplate returns the Template field value

func (*UpdateHtmlTemplate) GetTemplateOk

func (o *UpdateHtmlTemplate) GetTemplateOk() (map[string]interface{}, bool)

GetTemplateOk returns a tuple with the Template field value and a boolean to check if the value has been set.

func (UpdateHtmlTemplate) MarshalJSON

func (o UpdateHtmlTemplate) MarshalJSON() ([]byte, error)

func (*UpdateHtmlTemplate) SetTemplate

func (o *UpdateHtmlTemplate) SetTemplate(v map[string]interface{})

SetTemplate sets field value

func (UpdateHtmlTemplate) ToMap

func (o UpdateHtmlTemplate) ToMap() (map[string]interface{}, error)

func (*UpdateHtmlTemplate) UnmarshalJSON

func (o *UpdateHtmlTemplate) UnmarshalJSON(data []byte) (err error)

type UpdatePdfTemplate

type UpdatePdfTemplate struct {
	Template map[string]interface{} `json:"template"`
}

UpdatePdfTemplate struct for UpdatePdfTemplate

func NewUpdatePdfTemplate

func NewUpdatePdfTemplate(template map[string]interface{}) *UpdatePdfTemplate

NewUpdatePdfTemplate instantiates a new UpdatePdfTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePdfTemplateWithDefaults

func NewUpdatePdfTemplateWithDefaults() *UpdatePdfTemplate

NewUpdatePdfTemplateWithDefaults instantiates a new UpdatePdfTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePdfTemplate) GetTemplate

func (o *UpdatePdfTemplate) GetTemplate() map[string]interface{}

GetTemplate returns the Template field value

func (*UpdatePdfTemplate) GetTemplateOk

func (o *UpdatePdfTemplate) GetTemplateOk() (map[string]interface{}, bool)

GetTemplateOk returns a tuple with the Template field value and a boolean to check if the value has been set.

func (UpdatePdfTemplate) MarshalJSON

func (o UpdatePdfTemplate) MarshalJSON() ([]byte, error)

func (*UpdatePdfTemplate) SetTemplate

func (o *UpdatePdfTemplate) SetTemplate(v map[string]interface{})

SetTemplate sets field value

func (UpdatePdfTemplate) ToMap

func (o UpdatePdfTemplate) ToMap() (map[string]interface{}, error)

func (*UpdatePdfTemplate) UnmarshalJSON

func (o *UpdatePdfTemplate) UnmarshalJSON(data []byte) (err error)

type UpdateSubmissionDataRequestData

type UpdateSubmissionDataRequestData struct {
	AuthPhoneNumberHash  NullableString         `json:"auth_phone_number_hash,omitempty"`
	AuthProvider         NullableString         `json:"auth_provider,omitempty"`
	AuthSecondFactorType NullableString         `json:"auth_second_factor_type,omitempty"`
	AuthSessionIdHash    NullableString         `json:"auth_session_id_hash,omitempty"`
	AuthSessionStartedAt NullableString         `json:"auth_session_started_at,omitempty"`
	AuthType             *string                `json:"auth_type,omitempty"`
	AuthUserIdHash       NullableString         `json:"auth_user_id_hash,omitempty"`
	AuthUsernameHash     NullableString         `json:"auth_username_hash,omitempty"`
	Email                NullableString         `json:"email,omitempty"`
	Fields               []string               `json:"fields,omitempty"`
	Metadata             map[string]interface{} `json:"metadata,omitempty"`
	Name                 NullableString         `json:"name,omitempty"`
	Order                *int32                 `json:"order,omitempty"`
}

UpdateSubmissionDataRequestData struct for UpdateSubmissionDataRequestData

func NewUpdateSubmissionDataRequestData

func NewUpdateSubmissionDataRequestData() *UpdateSubmissionDataRequestData

NewUpdateSubmissionDataRequestData instantiates a new UpdateSubmissionDataRequestData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateSubmissionDataRequestDataWithDefaults

func NewUpdateSubmissionDataRequestDataWithDefaults() *UpdateSubmissionDataRequestData

NewUpdateSubmissionDataRequestDataWithDefaults instantiates a new UpdateSubmissionDataRequestData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateSubmissionDataRequestData) GetAuthPhoneNumberHash

func (o *UpdateSubmissionDataRequestData) GetAuthPhoneNumberHash() string

GetAuthPhoneNumberHash returns the AuthPhoneNumberHash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetAuthPhoneNumberHashOk

func (o *UpdateSubmissionDataRequestData) GetAuthPhoneNumberHashOk() (*string, bool)

GetAuthPhoneNumberHashOk returns a tuple with the AuthPhoneNumberHash field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetAuthProvider

func (o *UpdateSubmissionDataRequestData) GetAuthProvider() string

GetAuthProvider returns the AuthProvider field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetAuthProviderOk

func (o *UpdateSubmissionDataRequestData) GetAuthProviderOk() (*string, bool)

GetAuthProviderOk returns a tuple with the AuthProvider field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetAuthSecondFactorType

func (o *UpdateSubmissionDataRequestData) GetAuthSecondFactorType() string

GetAuthSecondFactorType returns the AuthSecondFactorType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetAuthSecondFactorTypeOk

func (o *UpdateSubmissionDataRequestData) GetAuthSecondFactorTypeOk() (*string, bool)

GetAuthSecondFactorTypeOk returns a tuple with the AuthSecondFactorType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetAuthSessionIdHash

func (o *UpdateSubmissionDataRequestData) GetAuthSessionIdHash() string

GetAuthSessionIdHash returns the AuthSessionIdHash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetAuthSessionIdHashOk

func (o *UpdateSubmissionDataRequestData) GetAuthSessionIdHashOk() (*string, bool)

GetAuthSessionIdHashOk returns a tuple with the AuthSessionIdHash field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetAuthSessionStartedAt

func (o *UpdateSubmissionDataRequestData) GetAuthSessionStartedAt() string

GetAuthSessionStartedAt returns the AuthSessionStartedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetAuthSessionStartedAtOk

func (o *UpdateSubmissionDataRequestData) GetAuthSessionStartedAtOk() (*string, bool)

GetAuthSessionStartedAtOk returns a tuple with the AuthSessionStartedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetAuthType

func (o *UpdateSubmissionDataRequestData) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*UpdateSubmissionDataRequestData) GetAuthTypeOk

func (o *UpdateSubmissionDataRequestData) 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 (*UpdateSubmissionDataRequestData) GetAuthUserIdHash

func (o *UpdateSubmissionDataRequestData) GetAuthUserIdHash() string

GetAuthUserIdHash returns the AuthUserIdHash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetAuthUserIdHashOk

func (o *UpdateSubmissionDataRequestData) GetAuthUserIdHashOk() (*string, bool)

GetAuthUserIdHashOk returns a tuple with the AuthUserIdHash field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetAuthUsernameHash

func (o *UpdateSubmissionDataRequestData) GetAuthUsernameHash() string

GetAuthUsernameHash returns the AuthUsernameHash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetAuthUsernameHashOk

func (o *UpdateSubmissionDataRequestData) GetAuthUsernameHashOk() (*string, bool)

GetAuthUsernameHashOk returns a tuple with the AuthUsernameHash field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetEmail

GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetEmailOk

func (o *UpdateSubmissionDataRequestData) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetFields

func (o *UpdateSubmissionDataRequestData) GetFields() []string

GetFields returns the Fields field value if set, zero value otherwise.

func (*UpdateSubmissionDataRequestData) GetFieldsOk

func (o *UpdateSubmissionDataRequestData) GetFieldsOk() ([]string, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSubmissionDataRequestData) GetMetadata

func (o *UpdateSubmissionDataRequestData) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*UpdateSubmissionDataRequestData) GetMetadataOk

func (o *UpdateSubmissionDataRequestData) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSubmissionDataRequestData) GetName

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateSubmissionDataRequestData) GetNameOk

func (o *UpdateSubmissionDataRequestData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateSubmissionDataRequestData) GetOrder

func (o *UpdateSubmissionDataRequestData) GetOrder() int32

GetOrder returns the Order field value if set, zero value otherwise.

func (*UpdateSubmissionDataRequestData) GetOrderOk

func (o *UpdateSubmissionDataRequestData) 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 (*UpdateSubmissionDataRequestData) HasAuthPhoneNumberHash

func (o *UpdateSubmissionDataRequestData) HasAuthPhoneNumberHash() bool

HasAuthPhoneNumberHash returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasAuthProvider

func (o *UpdateSubmissionDataRequestData) HasAuthProvider() bool

HasAuthProvider returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasAuthSecondFactorType

func (o *UpdateSubmissionDataRequestData) HasAuthSecondFactorType() bool

HasAuthSecondFactorType returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasAuthSessionIdHash

func (o *UpdateSubmissionDataRequestData) HasAuthSessionIdHash() bool

HasAuthSessionIdHash returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasAuthSessionStartedAt

func (o *UpdateSubmissionDataRequestData) HasAuthSessionStartedAt() bool

HasAuthSessionStartedAt returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasAuthType

func (o *UpdateSubmissionDataRequestData) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasAuthUserIdHash

func (o *UpdateSubmissionDataRequestData) HasAuthUserIdHash() bool

HasAuthUserIdHash returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasAuthUsernameHash

func (o *UpdateSubmissionDataRequestData) HasAuthUsernameHash() bool

HasAuthUsernameHash returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasEmail

func (o *UpdateSubmissionDataRequestData) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasFields

func (o *UpdateSubmissionDataRequestData) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasMetadata

func (o *UpdateSubmissionDataRequestData) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasName

HasName returns a boolean if a field has been set.

func (*UpdateSubmissionDataRequestData) HasOrder

func (o *UpdateSubmissionDataRequestData) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (UpdateSubmissionDataRequestData) MarshalJSON

func (o UpdateSubmissionDataRequestData) MarshalJSON() ([]byte, error)

func (*UpdateSubmissionDataRequestData) SetAuthPhoneNumberHash

func (o *UpdateSubmissionDataRequestData) SetAuthPhoneNumberHash(v string)

SetAuthPhoneNumberHash gets a reference to the given NullableString and assigns it to the AuthPhoneNumberHash field.

func (*UpdateSubmissionDataRequestData) SetAuthPhoneNumberHashNil

func (o *UpdateSubmissionDataRequestData) SetAuthPhoneNumberHashNil()

SetAuthPhoneNumberHashNil sets the value for AuthPhoneNumberHash to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetAuthProvider

func (o *UpdateSubmissionDataRequestData) SetAuthProvider(v string)

SetAuthProvider gets a reference to the given NullableString and assigns it to the AuthProvider field.

func (*UpdateSubmissionDataRequestData) SetAuthProviderNil

func (o *UpdateSubmissionDataRequestData) SetAuthProviderNil()

SetAuthProviderNil sets the value for AuthProvider to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetAuthSecondFactorType

func (o *UpdateSubmissionDataRequestData) SetAuthSecondFactorType(v string)

SetAuthSecondFactorType gets a reference to the given NullableString and assigns it to the AuthSecondFactorType field.

func (*UpdateSubmissionDataRequestData) SetAuthSecondFactorTypeNil

func (o *UpdateSubmissionDataRequestData) SetAuthSecondFactorTypeNil()

SetAuthSecondFactorTypeNil sets the value for AuthSecondFactorType to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetAuthSessionIdHash

func (o *UpdateSubmissionDataRequestData) SetAuthSessionIdHash(v string)

SetAuthSessionIdHash gets a reference to the given NullableString and assigns it to the AuthSessionIdHash field.

func (*UpdateSubmissionDataRequestData) SetAuthSessionIdHashNil

func (o *UpdateSubmissionDataRequestData) SetAuthSessionIdHashNil()

SetAuthSessionIdHashNil sets the value for AuthSessionIdHash to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetAuthSessionStartedAt

func (o *UpdateSubmissionDataRequestData) SetAuthSessionStartedAt(v string)

SetAuthSessionStartedAt gets a reference to the given NullableString and assigns it to the AuthSessionStartedAt field.

func (*UpdateSubmissionDataRequestData) SetAuthSessionStartedAtNil

func (o *UpdateSubmissionDataRequestData) SetAuthSessionStartedAtNil()

SetAuthSessionStartedAtNil sets the value for AuthSessionStartedAt to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetAuthType

func (o *UpdateSubmissionDataRequestData) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*UpdateSubmissionDataRequestData) SetAuthUserIdHash

func (o *UpdateSubmissionDataRequestData) SetAuthUserIdHash(v string)

SetAuthUserIdHash gets a reference to the given NullableString and assigns it to the AuthUserIdHash field.

func (*UpdateSubmissionDataRequestData) SetAuthUserIdHashNil

func (o *UpdateSubmissionDataRequestData) SetAuthUserIdHashNil()

SetAuthUserIdHashNil sets the value for AuthUserIdHash to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetAuthUsernameHash

func (o *UpdateSubmissionDataRequestData) SetAuthUsernameHash(v string)

SetAuthUsernameHash gets a reference to the given NullableString and assigns it to the AuthUsernameHash field.

func (*UpdateSubmissionDataRequestData) SetAuthUsernameHashNil

func (o *UpdateSubmissionDataRequestData) SetAuthUsernameHashNil()

SetAuthUsernameHashNil sets the value for AuthUsernameHash to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetEmail

func (o *UpdateSubmissionDataRequestData) SetEmail(v string)

SetEmail gets a reference to the given NullableString and assigns it to the Email field.

func (*UpdateSubmissionDataRequestData) SetEmailNil

func (o *UpdateSubmissionDataRequestData) SetEmailNil()

SetEmailNil sets the value for Email to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetFields

func (o *UpdateSubmissionDataRequestData) SetFields(v []string)

SetFields gets a reference to the given []string and assigns it to the Fields field.

func (*UpdateSubmissionDataRequestData) SetMetadata

func (o *UpdateSubmissionDataRequestData) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*UpdateSubmissionDataRequestData) SetName

SetName gets a reference to the given NullableString and assigns it to the Name field.

func (*UpdateSubmissionDataRequestData) SetNameNil

func (o *UpdateSubmissionDataRequestData) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*UpdateSubmissionDataRequestData) SetOrder

func (o *UpdateSubmissionDataRequestData) SetOrder(v int32)

SetOrder gets a reference to the given int32 and assigns it to the Order field.

func (UpdateSubmissionDataRequestData) ToMap

func (o UpdateSubmissionDataRequestData) ToMap() (map[string]interface{}, error)

func (*UpdateSubmissionDataRequestData) UnsetAuthPhoneNumberHash

func (o *UpdateSubmissionDataRequestData) UnsetAuthPhoneNumberHash()

UnsetAuthPhoneNumberHash ensures that no value is present for AuthPhoneNumberHash, not even an explicit nil

func (*UpdateSubmissionDataRequestData) UnsetAuthProvider

func (o *UpdateSubmissionDataRequestData) UnsetAuthProvider()

UnsetAuthProvider ensures that no value is present for AuthProvider, not even an explicit nil

func (*UpdateSubmissionDataRequestData) UnsetAuthSecondFactorType

func (o *UpdateSubmissionDataRequestData) UnsetAuthSecondFactorType()

UnsetAuthSecondFactorType ensures that no value is present for AuthSecondFactorType, not even an explicit nil

func (*UpdateSubmissionDataRequestData) UnsetAuthSessionIdHash

func (o *UpdateSubmissionDataRequestData) UnsetAuthSessionIdHash()

UnsetAuthSessionIdHash ensures that no value is present for AuthSessionIdHash, not even an explicit nil

func (*UpdateSubmissionDataRequestData) UnsetAuthSessionStartedAt

func (o *UpdateSubmissionDataRequestData) UnsetAuthSessionStartedAt()

UnsetAuthSessionStartedAt ensures that no value is present for AuthSessionStartedAt, not even an explicit nil

func (*UpdateSubmissionDataRequestData) UnsetAuthUserIdHash

func (o *UpdateSubmissionDataRequestData) UnsetAuthUserIdHash()

UnsetAuthUserIdHash ensures that no value is present for AuthUserIdHash, not even an explicit nil

func (*UpdateSubmissionDataRequestData) UnsetAuthUsernameHash

func (o *UpdateSubmissionDataRequestData) UnsetAuthUsernameHash()

UnsetAuthUsernameHash ensures that no value is present for AuthUsernameHash, not even an explicit nil

func (*UpdateSubmissionDataRequestData) UnsetEmail

func (o *UpdateSubmissionDataRequestData) UnsetEmail()

UnsetEmail ensures that no value is present for Email, not even an explicit nil

func (*UpdateSubmissionDataRequestData) UnsetName

func (o *UpdateSubmissionDataRequestData) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type UploadPresignResponse

type UploadPresignResponse struct {
	Fields  map[string]interface{} `json:"fields"`
	Headers map[string]interface{} `json:"headers"`
	Url     string                 `json:"url"`
	Method  *string                `json:"method,omitempty"`
}

UploadPresignResponse struct for UploadPresignResponse

func NewUploadPresignResponse

func NewUploadPresignResponse(fields map[string]interface{}, headers map[string]interface{}, url string) *UploadPresignResponse

NewUploadPresignResponse instantiates a new UploadPresignResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadPresignResponseWithDefaults

func NewUploadPresignResponseWithDefaults() *UploadPresignResponse

NewUploadPresignResponseWithDefaults instantiates a new UploadPresignResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadPresignResponse) GetFields

func (o *UploadPresignResponse) GetFields() map[string]interface{}

GetFields returns the Fields field value

func (*UploadPresignResponse) GetFieldsOk

func (o *UploadPresignResponse) GetFieldsOk() (map[string]interface{}, bool)

GetFieldsOk returns a tuple with the Fields field value and a boolean to check if the value has been set.

func (*UploadPresignResponse) GetHeaders

func (o *UploadPresignResponse) GetHeaders() map[string]interface{}

GetHeaders returns the Headers field value

func (*UploadPresignResponse) GetHeadersOk

func (o *UploadPresignResponse) GetHeadersOk() (map[string]interface{}, bool)

GetHeadersOk returns a tuple with the Headers field value and a boolean to check if the value has been set.

func (*UploadPresignResponse) GetMethod

func (o *UploadPresignResponse) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*UploadPresignResponse) GetMethodOk

func (o *UploadPresignResponse) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadPresignResponse) GetUrl

func (o *UploadPresignResponse) GetUrl() string

GetUrl returns the Url field value

func (*UploadPresignResponse) GetUrlOk

func (o *UploadPresignResponse) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*UploadPresignResponse) HasMethod

func (o *UploadPresignResponse) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (UploadPresignResponse) MarshalJSON

func (o UploadPresignResponse) MarshalJSON() ([]byte, error)

func (*UploadPresignResponse) SetFields

func (o *UploadPresignResponse) SetFields(v map[string]interface{})

SetFields sets field value

func (*UploadPresignResponse) SetHeaders

func (o *UploadPresignResponse) SetHeaders(v map[string]interface{})

SetHeaders sets field value

func (*UploadPresignResponse) SetMethod

func (o *UploadPresignResponse) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*UploadPresignResponse) SetUrl

func (o *UploadPresignResponse) SetUrl(v string)

SetUrl sets field value

func (UploadPresignResponse) ToMap

func (o UploadPresignResponse) ToMap() (map[string]interface{}, error)

func (*UploadPresignResponse) UnmarshalJSON

func (o *UploadPresignResponse) UnmarshalJSON(data []byte) (err error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL