gridly

package module
v0.0.0-...-7d5e240 Latest Latest
Warning

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

Go to latest
Published: May 15, 2024 License: MIT Imports: 22 Imported by: 0

README

Go API client for gridly

Gridly API documentation

Overview

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

  • API version: 4.33.0
  • Package version: 1.3.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://www.gridly.com

Installation

Install the following dependencies:

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

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

import gridly "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 sw.ContextServerIndex of type int.

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://api.gridly.com

Class Method HTTP request Description
BranchApi Create Post /v1/branches create
BranchApi CreateDiffCheck Post /v1/branches/diffcheck createDiffCheck
BranchApi Delete Delete /v1/branches/{branchId} delete
BranchApi Get Get /v1/branches/{branchId} get
BranchApi GetDiffCheck Get /v1/branches/diffcheck/{taskId} getDiffCheck
BranchApi List Get /v1/branches list
BranchApi Merge Post /v1/branches/{branchId}/merge merge
DatabaseApi Create Post /v1/databases create
DatabaseApi Delete Delete /v1/databases/{dbId} delete
DatabaseApi Duplicate Post /v1/databases/{dbId}/duplicate duplicate
DatabaseApi Get Get /v1/databases/{dbId} get
DatabaseApi List Get /v1/databases list
DatabaseApi Update Put /v1/databases/{dbId} update
GlossaryApi Create Post /v1/glossaries Create a new glossary
GlossaryApi Delete Delete /v1/glossaries/{id} Delete a glossary
GlossaryApi ExportFile Get /v1/glossaries/{id}/export Export a glossary
GlossaryApi Get Get /v1/glossaries/{id} get glossary info
GlossaryApi GetAll Get /v1/glossaries List all glossaries
GlossaryApi ImportFile Post /v1/glossaries/{id}/import Import a glossary from file
GlossaryApi Update Put /v1/glossaries/{id} Update glossary info
GridApi Create Post /v1/grids create
GridApi CreateCategory Post /v1/grids/{gridId}/settings/categories createCategory
GridApi Delete Delete /v1/grids/{gridId} delete
GridApi DeleteCategory Delete /v1/grids/{gridId}/settings/categories/{categoryId} deleteCategory
GridApi DeleteFile Delete /v1/grids/{gridId}/settings/categories/{categoryId}/files/{fileId} deleteFile
GridApi Get Get /v1/grids/{gridId} get
GridApi GetSetting Get /v1/grids/{gridId}/settings getSetting
GridApi List Get /v1/grids list
GridApi ListFiles Get /v1/grids/{gridId}/settings/files listFiles
GridApi ListTemplateGrids Get /v1/template-grids listTemplateGrids
GridApi Update Patch /v1/grids/{gridId} update
GridApi UpdateCategory Put /v1/grids/{gridId}/settings/categories/{categoryId} updateCategory
GridApi UpdateSetting Patch /v1/grids/{gridId}/settings updateSetting
GridApi UploadSettingFile Post /v1/grids/{gridId}/settings/categories/{categoryId}/files uploadSettingFile
PathApi Create Post /v1/views/{viewId}/paths create
PathApi Delete Delete /v1/views/{viewId}/paths delete
PathApi List Get /v1/views/{viewId}/paths/tree list
PathApi Move Post /v1/views/{viewId}/paths/move move
PathApi Update Put /v1/views/{viewId}/paths/{path} update
ProjectApi Create Post /v1/projects create
ProjectApi Delete Delete /v1/projects/{projectId} delete
ProjectApi FindOne Get /v1/projects/{projectId} findOne
ProjectApi List Get /v1/projects list
ProjectApi Update Put /v1/projects/{projectId} update
RecordApi Create Post /v1/views/{viewId}/records create
RecordApi Delete Delete /v1/views/{viewId}/records delete
RecordApi Fetch Get /v1/views/{viewId}/records fetch
RecordApi FetchHistories Get /v1/views/{viewId}/records/{recordId}/histories fetchHistories
RecordApi Update Patch /v1/views/{viewId}/records update
RecordApi UpdateRecord Patch /v1/views/{viewId}/records/{id} updateRecord
ShareViewApi Create Put /v1/views/{viewId}/shares create
ShareViewApi Delete Delete /v1/views/{viewId}/shares delete
ShareViewApi Get Get /v1/views/{viewId}/shares get
TaskApi Get Get /v1/tasks/{taskId} get
TransmemApi Cleanup Put /v1/transmems/{tmId}/cleanup Erases all the translation data of the provided tmId
TransmemApi Create Post /v1/transmems Create a new translation memory
TransmemApi CreateWithFile Post /v1/transmems/upload Create a new translation memory by uploading tmx file
TransmemApi Delete Delete /v1/transmems/{tmId} Delete a translation memory by id
TransmemApi Export Get /v1/transmems/{tmId}/export Export translation memory tmx file
TransmemApi Get Get /v1/transmems/{tmId} Get translation memory info by id
TransmemApi ImportTmx Post /v1/transmems/{tmId}/import Import a translation memory from tmx file
TransmemApi ListTM Get /v1/transmems List all available translation memories or create default one if there is no translation memory
TransmemApi Update Put /v1/transmems/{tmId} Update a translation memory
ViewApi Create Post /v1/views create
ViewApi Export Get /v1/views/{viewId}/export export
ViewApi Get Get /v1/views/{viewId} get
ViewApi GetStatistic Get /v1/views/{viewId}/statistic getStatistic
ViewApi ImportView Post /v1/views/{viewId}/import importView
ViewApi List Get /v1/views list
ViewApi Merge Post /v1/views/{viewId}/merge merge
ViewColumnApi Add Post /v1/views/{viewId}/columns/{columnId}/add add
ViewColumnApi BulkCreate Post /v1/views/{viewId}/columns/bulk bulkCreate
ViewColumnApi Create Post /v1/views/{viewId}/columns create
ViewColumnApi Delete Delete /v1/views/{viewId}/columns/{columnId} delete
ViewColumnApi Get Get /v1/views/{viewId}/columns/{columnId} get
ViewColumnApi Remove Post /v1/views/{viewId}/columns/{columnId}/remove remove
ViewColumnApi Update Patch /v1/views/{viewId}/columns/{columnId} update
ViewDependencyApi Create Post /v1/views/{viewId}/dependencies create
ViewDependencyApi Delete Delete /v1/views/{viewId}/dependencies delete
ViewDependencyApi DeleteById Delete /v1/views/{viewId}/dependencies/{dependencyId} deleteById
ViewDependencyApi Get Get /v1/views/{viewId}/dependencies/{dependencyId} get
ViewDependencyApi List Get /v1/views/{viewId}/dependencies list
ViewDependencyApi Update Put /v1/views/{viewId}/dependencies/{dependencyId} update
ViewFileApi Delete Delete /v1/views/{viewId}/files delete
ViewFileApi Download Get /v1/views/{viewId}/files/{fileId} download
ViewFileApi Upload Post /v1/views/{viewId}/files upload
ViewFileApi UploadZip Post /v1/views/{viewId}/files/zip uploadZip

Documentation For Models

Documentation For Authorization

ApiKey
  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

Documentation for Utility Methods

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

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

Author

support@gridly.com

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedExportFileHeaderEnumValues = []ExportFileHeader{
	"none",
	"columnName",
	"columnId",
}

All allowed values of ExportFileHeader enum

View Source
var AllowedExportFormatEnumValues = []ExportFormat{
	"tmx",
	"csv",
	"xlsx",
}

All allowed values of ExportFormat enum

View Source
var AllowedFetchFileOptionEnumValues = []FetchFileOption{
	"all",
	"id",
	"name",
}

All allowed values of FetchFileOption enum

View Source
var AllowedGlossaryExportFormatEnumValues = []GlossaryExportFormat{
	"csv",
	"xls",
	"xlsx",
	"tbx",
}

All allowed values of GlossaryExportFormat enum

View Source
var AllowedImportOptionEnumValues = []ImportOption{
	"ADD",
	"UPDATE",
	"UPDATE_ONLY",
}

All allowed values of ImportOption enum

View Source
var AllowedTranslationStatusEnumValues = []TranslationStatus{
	"upToDate",
	"outOfDate",
	"unset",
}

All allowed values of TranslationStatus enum

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	BranchApi *BranchApiService

	DatabaseApi *DatabaseApiService

	GlossaryApi *GlossaryApiService

	GridApi *GridApiService

	PathApi *PathApiService

	ProjectApi *ProjectApiService

	RecordApi *RecordApiService

	ShareViewApi *ShareViewApiService

	TaskApi *TaskApiService

	TransmemApi *TransmemApiService

	ViewApi *ViewApiService

	ViewColumnApi *ViewColumnApiService

	ViewDependencyApi *ViewDependencyApiService

	ViewFileApi *ViewFileApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Gridly API API v4.33.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AddViewColumn

type AddViewColumn struct {
	Id               *string         `json:"id,omitempty"`
	Editable         *bool           `json:"editable,omitempty"`
	Name             *string         `json:"name,omitempty"`
	Description      *string         `json:"description,omitempty"`
	Type             *string         `json:"type,omitempty"`
	LanguageCode     *string         `json:"languageCode,omitempty"`
	LocalizationType *string         `json:"localizationType,omitempty"`
	NumberFormat     *NumberFormat   `json:"numberFormat,omitempty"`
	SelectionOptions []string        `json:"selectionOptions,omitempty"`
	Reference        *Reference      `json:"reference,omitempty"`
	Formula          *Formula        `json:"formula,omitempty"`
	DateTimeFormat   *DateTimeFormat `json:"dateTimeFormat,omitempty"`
}

AddViewColumn struct for AddViewColumn

func NewAddViewColumn

func NewAddViewColumn() *AddViewColumn

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

func NewAddViewColumnWithDefaults

func NewAddViewColumnWithDefaults() *AddViewColumn

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

func (*AddViewColumn) GetDateTimeFormat

func (o *AddViewColumn) GetDateTimeFormat() DateTimeFormat

GetDateTimeFormat returns the DateTimeFormat field value if set, zero value otherwise.

func (*AddViewColumn) GetDateTimeFormatOk

func (o *AddViewColumn) GetDateTimeFormatOk() (*DateTimeFormat, bool)

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

func (*AddViewColumn) GetDescription

func (o *AddViewColumn) GetDescription() string

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

func (*AddViewColumn) GetDescriptionOk

func (o *AddViewColumn) 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 (*AddViewColumn) GetEditable

func (o *AddViewColumn) GetEditable() bool

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

func (*AddViewColumn) GetEditableOk

func (o *AddViewColumn) 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 (*AddViewColumn) GetFormula

func (o *AddViewColumn) GetFormula() Formula

GetFormula returns the Formula field value if set, zero value otherwise.

func (*AddViewColumn) GetFormulaOk

func (o *AddViewColumn) GetFormulaOk() (*Formula, bool)

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

func (*AddViewColumn) GetId

func (o *AddViewColumn) GetId() string

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

func (*AddViewColumn) GetIdOk

func (o *AddViewColumn) 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 (*AddViewColumn) GetLanguageCode

func (o *AddViewColumn) GetLanguageCode() string

GetLanguageCode returns the LanguageCode field value if set, zero value otherwise.

func (*AddViewColumn) GetLanguageCodeOk

func (o *AddViewColumn) GetLanguageCodeOk() (*string, bool)

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

func (*AddViewColumn) GetLocalizationType

func (o *AddViewColumn) GetLocalizationType() string

GetLocalizationType returns the LocalizationType field value if set, zero value otherwise.

func (*AddViewColumn) GetLocalizationTypeOk

func (o *AddViewColumn) GetLocalizationTypeOk() (*string, bool)

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

func (*AddViewColumn) GetName

func (o *AddViewColumn) GetName() string

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

func (*AddViewColumn) GetNameOk

func (o *AddViewColumn) 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 (*AddViewColumn) GetNumberFormat

func (o *AddViewColumn) GetNumberFormat() NumberFormat

GetNumberFormat returns the NumberFormat field value if set, zero value otherwise.

func (*AddViewColumn) GetNumberFormatOk

func (o *AddViewColumn) GetNumberFormatOk() (*NumberFormat, bool)

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

func (*AddViewColumn) GetReference

func (o *AddViewColumn) GetReference() Reference

GetReference returns the Reference field value if set, zero value otherwise.

func (*AddViewColumn) GetReferenceOk

func (o *AddViewColumn) GetReferenceOk() (*Reference, bool)

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

func (*AddViewColumn) GetSelectionOptions

func (o *AddViewColumn) GetSelectionOptions() []string

GetSelectionOptions returns the SelectionOptions field value if set, zero value otherwise.

func (*AddViewColumn) GetSelectionOptionsOk

func (o *AddViewColumn) GetSelectionOptionsOk() ([]string, bool)

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

func (*AddViewColumn) GetType

func (o *AddViewColumn) GetType() string

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

func (*AddViewColumn) GetTypeOk

func (o *AddViewColumn) 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 (*AddViewColumn) HasDateTimeFormat

func (o *AddViewColumn) HasDateTimeFormat() bool

HasDateTimeFormat returns a boolean if a field has been set.

func (*AddViewColumn) HasDescription

func (o *AddViewColumn) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AddViewColumn) HasEditable

func (o *AddViewColumn) HasEditable() bool

HasEditable returns a boolean if a field has been set.

func (*AddViewColumn) HasFormula

func (o *AddViewColumn) HasFormula() bool

HasFormula returns a boolean if a field has been set.

func (*AddViewColumn) HasId

func (o *AddViewColumn) HasId() bool

HasId returns a boolean if a field has been set.

func (*AddViewColumn) HasLanguageCode

func (o *AddViewColumn) HasLanguageCode() bool

HasLanguageCode returns a boolean if a field has been set.

func (*AddViewColumn) HasLocalizationType

func (o *AddViewColumn) HasLocalizationType() bool

HasLocalizationType returns a boolean if a field has been set.

func (*AddViewColumn) HasName

func (o *AddViewColumn) HasName() bool

HasName returns a boolean if a field has been set.

func (*AddViewColumn) HasNumberFormat

func (o *AddViewColumn) HasNumberFormat() bool

HasNumberFormat returns a boolean if a field has been set.

func (*AddViewColumn) HasReference

func (o *AddViewColumn) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*AddViewColumn) HasSelectionOptions

func (o *AddViewColumn) HasSelectionOptions() bool

HasSelectionOptions returns a boolean if a field has been set.

func (*AddViewColumn) HasType

func (o *AddViewColumn) HasType() bool

HasType returns a boolean if a field has been set.

func (AddViewColumn) MarshalJSON

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

func (*AddViewColumn) SetDateTimeFormat

func (o *AddViewColumn) SetDateTimeFormat(v DateTimeFormat)

SetDateTimeFormat gets a reference to the given DateTimeFormat and assigns it to the DateTimeFormat field.

func (*AddViewColumn) SetDescription

func (o *AddViewColumn) SetDescription(v string)

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

func (*AddViewColumn) SetEditable

func (o *AddViewColumn) SetEditable(v bool)

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

func (*AddViewColumn) SetFormula

func (o *AddViewColumn) SetFormula(v Formula)

SetFormula gets a reference to the given Formula and assigns it to the Formula field.

func (*AddViewColumn) SetId

func (o *AddViewColumn) SetId(v string)

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

func (*AddViewColumn) SetLanguageCode

func (o *AddViewColumn) SetLanguageCode(v string)

SetLanguageCode gets a reference to the given string and assigns it to the LanguageCode field.

func (*AddViewColumn) SetLocalizationType

func (o *AddViewColumn) SetLocalizationType(v string)

SetLocalizationType gets a reference to the given string and assigns it to the LocalizationType field.

func (*AddViewColumn) SetName

func (o *AddViewColumn) SetName(v string)

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

func (*AddViewColumn) SetNumberFormat

func (o *AddViewColumn) SetNumberFormat(v NumberFormat)

SetNumberFormat gets a reference to the given NumberFormat and assigns it to the NumberFormat field.

func (*AddViewColumn) SetReference

func (o *AddViewColumn) SetReference(v Reference)

SetReference gets a reference to the given Reference and assigns it to the Reference field.

func (*AddViewColumn) SetSelectionOptions

func (o *AddViewColumn) SetSelectionOptions(v []string)

SetSelectionOptions gets a reference to the given []string and assigns it to the SelectionOptions field.

func (*AddViewColumn) SetType

func (o *AddViewColumn) SetType(v string)

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

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 Branch

type Branch struct {
	Id                   *string            `json:"id,omitempty"`
	Columns              []ViewColumn       `json:"columns,omitempty"`
	DefaultAccessViewId  *string            `json:"defaultAccessViewId,omitempty"`
	Description          *string            `json:"description,omitempty"`
	Metadata             *map[string]string `json:"metadata,omitempty"`
	Name                 *string            `json:"name,omitempty"`
	RecordIdentifierType *string            `json:"recordIdentifierType,omitempty"`
	Status               *string            `json:"status,omitempty"`
	IsMaster             *bool              `json:"isMaster,omitempty"`
}

Branch struct for Branch

func NewBranch

func NewBranch() *Branch

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

func NewBranchWithDefaults

func NewBranchWithDefaults() *Branch

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

func (*Branch) GetColumns

func (o *Branch) GetColumns() []ViewColumn

GetColumns returns the Columns field value if set, zero value otherwise.

func (*Branch) GetColumnsOk

func (o *Branch) GetColumnsOk() ([]ViewColumn, bool)

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

func (*Branch) GetDefaultAccessViewId

func (o *Branch) GetDefaultAccessViewId() string

GetDefaultAccessViewId returns the DefaultAccessViewId field value if set, zero value otherwise.

func (*Branch) GetDefaultAccessViewIdOk

func (o *Branch) GetDefaultAccessViewIdOk() (*string, bool)

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

func (*Branch) GetDescription

func (o *Branch) GetDescription() string

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

func (*Branch) GetDescriptionOk

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

func (o *Branch) GetId() string

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

func (*Branch) GetIdOk

func (o *Branch) 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 (*Branch) GetIsMaster

func (o *Branch) GetIsMaster() bool

GetIsMaster returns the IsMaster field value if set, zero value otherwise.

func (*Branch) GetIsMasterOk

func (o *Branch) GetIsMasterOk() (*bool, bool)

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

func (*Branch) GetMetadata

func (o *Branch) GetMetadata() map[string]string

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

func (*Branch) GetMetadataOk

func (o *Branch) GetMetadataOk() (*map[string]string, bool)

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

func (*Branch) GetName

func (o *Branch) GetName() string

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

func (*Branch) GetNameOk

func (o *Branch) 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 (*Branch) GetRecordIdentifierType

func (o *Branch) GetRecordIdentifierType() string

GetRecordIdentifierType returns the RecordIdentifierType field value if set, zero value otherwise.

func (*Branch) GetRecordIdentifierTypeOk

func (o *Branch) GetRecordIdentifierTypeOk() (*string, bool)

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

func (*Branch) GetStatus

func (o *Branch) GetStatus() string

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

func (*Branch) GetStatusOk

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

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

func (*Branch) HasColumns

func (o *Branch) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (*Branch) HasDefaultAccessViewId

func (o *Branch) HasDefaultAccessViewId() bool

HasDefaultAccessViewId returns a boolean if a field has been set.

func (*Branch) HasDescription

func (o *Branch) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Branch) HasId

func (o *Branch) HasId() bool

HasId returns a boolean if a field has been set.

func (*Branch) HasIsMaster

func (o *Branch) HasIsMaster() bool

HasIsMaster returns a boolean if a field has been set.

func (*Branch) HasMetadata

func (o *Branch) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Branch) HasName

func (o *Branch) HasName() bool

HasName returns a boolean if a field has been set.

func (*Branch) HasRecordIdentifierType

func (o *Branch) HasRecordIdentifierType() bool

HasRecordIdentifierType returns a boolean if a field has been set.

func (*Branch) HasStatus

func (o *Branch) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Branch) MarshalJSON

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

func (*Branch) SetColumns

func (o *Branch) SetColumns(v []ViewColumn)

SetColumns gets a reference to the given []ViewColumn and assigns it to the Columns field.

func (*Branch) SetDefaultAccessViewId

func (o *Branch) SetDefaultAccessViewId(v string)

SetDefaultAccessViewId gets a reference to the given string and assigns it to the DefaultAccessViewId field.

func (*Branch) SetDescription

func (o *Branch) SetDescription(v string)

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

func (*Branch) SetId

func (o *Branch) SetId(v string)

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

func (*Branch) SetIsMaster

func (o *Branch) SetIsMaster(v bool)

SetIsMaster gets a reference to the given bool and assigns it to the IsMaster field.

func (*Branch) SetMetadata

func (o *Branch) SetMetadata(v map[string]string)

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

func (*Branch) SetName

func (o *Branch) SetName(v string)

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

func (*Branch) SetRecordIdentifierType

func (o *Branch) SetRecordIdentifierType(v string)

SetRecordIdentifierType gets a reference to the given string and assigns it to the RecordIdentifierType field.

func (*Branch) SetStatus

func (o *Branch) SetStatus(v string)

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

type BranchApiCreateDiffCheckRequest

type BranchApiCreateDiffCheckRequest struct {
	ApiService *BranchApiService
	// contains filtered or unexported fields
}

func (BranchApiCreateDiffCheckRequest) DestinationViewId

func (r BranchApiCreateDiffCheckRequest) DestinationViewId(destinationViewId string) BranchApiCreateDiffCheckRequest

destinationViewId

func (BranchApiCreateDiffCheckRequest) Execute

func (BranchApiCreateDiffCheckRequest) SourceViewId

sourceViewId

type BranchApiCreateRequest

type BranchApiCreateRequest struct {
	ApiService *BranchApiService
	// contains filtered or unexported fields
}

func (BranchApiCreateRequest) BranchId

branchId

func (BranchApiCreateRequest) CreateBranch

func (r BranchApiCreateRequest) CreateBranch(createBranch CreateBranch) BranchApiCreateRequest

func (BranchApiCreateRequest) Execute

func (r BranchApiCreateRequest) Execute() (*Branch, *http.Response, error)

func (BranchApiCreateRequest) GridId

gridId

type BranchApiDeleteRequest

type BranchApiDeleteRequest struct {
	ApiService *BranchApiService
	// contains filtered or unexported fields
}

func (BranchApiDeleteRequest) Execute

func (r BranchApiDeleteRequest) Execute() (*http.Response, error)

type BranchApiGetDiffCheckRequest

type BranchApiGetDiffCheckRequest struct {
	ApiService *BranchApiService
	// contains filtered or unexported fields
}

func (BranchApiGetDiffCheckRequest) Execute

func (BranchApiGetDiffCheckRequest) MergeRecordOptions

func (r BranchApiGetDiffCheckRequest) MergeRecordOptions(mergeRecordOptions []string) BranchApiGetDiffCheckRequest

mergeRecordOptions

func (BranchApiGetDiffCheckRequest) Page

page

func (BranchApiGetDiffCheckRequest) Query

query

type BranchApiGetRequest

type BranchApiGetRequest struct {
	ApiService *BranchApiService
	// contains filtered or unexported fields
}

func (BranchApiGetRequest) Execute

func (r BranchApiGetRequest) Execute() (*Branch, *http.Response, error)

type BranchApiListRequest

type BranchApiListRequest struct {
	ApiService *BranchApiService
	// contains filtered or unexported fields
}

func (BranchApiListRequest) Execute

func (r BranchApiListRequest) Execute() ([]Branch, *http.Response, error)

func (BranchApiListRequest) GridId

gridId

type BranchApiMergeRequest

type BranchApiMergeRequest struct {
	ApiService *BranchApiService
	// contains filtered or unexported fields
}

func (BranchApiMergeRequest) DestinationBranchId

func (r BranchApiMergeRequest) DestinationBranchId(destinationBranchId string) BranchApiMergeRequest

destinationBranchId

func (BranchApiMergeRequest) Execute

func (r BranchApiMergeRequest) Execute() (*Task, *http.Response, error)

func (BranchApiMergeRequest) MergeBranchRequest

func (r BranchApiMergeRequest) MergeBranchRequest(mergeBranchRequest MergeBranchRequest) BranchApiMergeRequest

func (BranchApiMergeRequest) MergeRecordOptions

func (r BranchApiMergeRequest) MergeRecordOptions(mergeRecordOptions []string) BranchApiMergeRequest

mergeRecordOptions

type BranchApiService

type BranchApiService service

BranchApiService BranchApi service

func (*BranchApiService) Create

Create create

create

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

func (*BranchApiService) CreateDiffCheck

CreateDiffCheck createDiffCheck

createDiffCheck

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

func (*BranchApiService) CreateDiffCheckExecute

func (a *BranchApiService) CreateDiffCheckExecute(r BranchApiCreateDiffCheckRequest) (*Task, *http.Response, error)

Execute executes the request

@return Task

func (*BranchApiService) CreateExecute

Execute executes the request

@return Branch

func (*BranchApiService) Delete

Delete delete

delete

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

func (*BranchApiService) DeleteExecute

func (a *BranchApiService) DeleteExecute(r BranchApiDeleteRequest) (*http.Response, error)

Execute executes the request

func (*BranchApiService) Get

Get get

get

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

func (*BranchApiService) GetDiffCheck

GetDiffCheck getDiffCheck

getDiffCheck

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

func (*BranchApiService) GetDiffCheckExecute

Execute executes the request

@return []BranchDiffRecord

func (*BranchApiService) GetExecute

Execute executes the request

@return Branch

func (*BranchApiService) List

List list

list

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

func (*BranchApiService) ListExecute

Execute executes the request

@return []Branch

func (*BranchApiService) Merge

Merge merge

merge

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

func (*BranchApiService) MergeExecute

func (a *BranchApiService) MergeExecute(r BranchApiMergeRequest) (*Task, *http.Response, error)

Execute executes the request

@return Task

type BranchDiffCell

type BranchDiffCell struct {
	SourceDependencyStatus      *string                `json:"sourceDependencyStatus,omitempty"`
	DestinationDependencyStatus *string                `json:"destinationDependencyStatus,omitempty"`
	SourceSourceStatus          *string                `json:"sourceSourceStatus,omitempty"`
	DestinationSourceStatus     *string                `json:"destinationSourceStatus,omitempty"`
	SourceLengthSetting         *int32                 `json:"sourceLengthSetting,omitempty"`
	DestinationLengthSetting    *int32                 `json:"destinationLengthSetting,omitempty"`
	Status                      *string                `json:"status,omitempty"`
	ColumnId                    *string                `json:"columnId,omitempty"`
	SourceValue                 map[string]interface{} `json:"sourceValue,omitempty"`
	DestinationValue            map[string]interface{} `json:"destinationValue,omitempty"`
}

BranchDiffCell struct for BranchDiffCell

func NewBranchDiffCell

func NewBranchDiffCell() *BranchDiffCell

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

func NewBranchDiffCellWithDefaults

func NewBranchDiffCellWithDefaults() *BranchDiffCell

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

func (*BranchDiffCell) GetColumnId

func (o *BranchDiffCell) GetColumnId() string

GetColumnId returns the ColumnId field value if set, zero value otherwise.

func (*BranchDiffCell) GetColumnIdOk

func (o *BranchDiffCell) GetColumnIdOk() (*string, bool)

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

func (*BranchDiffCell) GetDestinationDependencyStatus

func (o *BranchDiffCell) GetDestinationDependencyStatus() string

GetDestinationDependencyStatus returns the DestinationDependencyStatus field value if set, zero value otherwise.

func (*BranchDiffCell) GetDestinationDependencyStatusOk

func (o *BranchDiffCell) GetDestinationDependencyStatusOk() (*string, bool)

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

func (*BranchDiffCell) GetDestinationLengthSetting

func (o *BranchDiffCell) GetDestinationLengthSetting() int32

GetDestinationLengthSetting returns the DestinationLengthSetting field value if set, zero value otherwise.

func (*BranchDiffCell) GetDestinationLengthSettingOk

func (o *BranchDiffCell) GetDestinationLengthSettingOk() (*int32, bool)

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

func (*BranchDiffCell) GetDestinationSourceStatus

func (o *BranchDiffCell) GetDestinationSourceStatus() string

GetDestinationSourceStatus returns the DestinationSourceStatus field value if set, zero value otherwise.

func (*BranchDiffCell) GetDestinationSourceStatusOk

func (o *BranchDiffCell) GetDestinationSourceStatusOk() (*string, bool)

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

func (*BranchDiffCell) GetDestinationValue

func (o *BranchDiffCell) GetDestinationValue() map[string]interface{}

GetDestinationValue returns the DestinationValue field value if set, zero value otherwise.

func (*BranchDiffCell) GetDestinationValueOk

func (o *BranchDiffCell) GetDestinationValueOk() (map[string]interface{}, bool)

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

func (*BranchDiffCell) GetSourceDependencyStatus

func (o *BranchDiffCell) GetSourceDependencyStatus() string

GetSourceDependencyStatus returns the SourceDependencyStatus field value if set, zero value otherwise.

func (*BranchDiffCell) GetSourceDependencyStatusOk

func (o *BranchDiffCell) GetSourceDependencyStatusOk() (*string, bool)

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

func (*BranchDiffCell) GetSourceLengthSetting

func (o *BranchDiffCell) GetSourceLengthSetting() int32

GetSourceLengthSetting returns the SourceLengthSetting field value if set, zero value otherwise.

func (*BranchDiffCell) GetSourceLengthSettingOk

func (o *BranchDiffCell) GetSourceLengthSettingOk() (*int32, bool)

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

func (*BranchDiffCell) GetSourceSourceStatus

func (o *BranchDiffCell) GetSourceSourceStatus() string

GetSourceSourceStatus returns the SourceSourceStatus field value if set, zero value otherwise.

func (*BranchDiffCell) GetSourceSourceStatusOk

func (o *BranchDiffCell) GetSourceSourceStatusOk() (*string, bool)

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

func (*BranchDiffCell) GetSourceValue

func (o *BranchDiffCell) GetSourceValue() map[string]interface{}

GetSourceValue returns the SourceValue field value if set, zero value otherwise.

func (*BranchDiffCell) GetSourceValueOk

func (o *BranchDiffCell) GetSourceValueOk() (map[string]interface{}, bool)

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

func (*BranchDiffCell) GetStatus

func (o *BranchDiffCell) GetStatus() string

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

func (*BranchDiffCell) GetStatusOk

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

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

func (*BranchDiffCell) HasColumnId

func (o *BranchDiffCell) HasColumnId() bool

HasColumnId returns a boolean if a field has been set.

func (*BranchDiffCell) HasDestinationDependencyStatus

func (o *BranchDiffCell) HasDestinationDependencyStatus() bool

HasDestinationDependencyStatus returns a boolean if a field has been set.

func (*BranchDiffCell) HasDestinationLengthSetting

func (o *BranchDiffCell) HasDestinationLengthSetting() bool

HasDestinationLengthSetting returns a boolean if a field has been set.

func (*BranchDiffCell) HasDestinationSourceStatus

func (o *BranchDiffCell) HasDestinationSourceStatus() bool

HasDestinationSourceStatus returns a boolean if a field has been set.

func (*BranchDiffCell) HasDestinationValue

func (o *BranchDiffCell) HasDestinationValue() bool

HasDestinationValue returns a boolean if a field has been set.

func (*BranchDiffCell) HasSourceDependencyStatus

func (o *BranchDiffCell) HasSourceDependencyStatus() bool

HasSourceDependencyStatus returns a boolean if a field has been set.

func (*BranchDiffCell) HasSourceLengthSetting

func (o *BranchDiffCell) HasSourceLengthSetting() bool

HasSourceLengthSetting returns a boolean if a field has been set.

func (*BranchDiffCell) HasSourceSourceStatus

func (o *BranchDiffCell) HasSourceSourceStatus() bool

HasSourceSourceStatus returns a boolean if a field has been set.

func (*BranchDiffCell) HasSourceValue

func (o *BranchDiffCell) HasSourceValue() bool

HasSourceValue returns a boolean if a field has been set.

func (*BranchDiffCell) HasStatus

func (o *BranchDiffCell) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (BranchDiffCell) MarshalJSON

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

func (*BranchDiffCell) SetColumnId

func (o *BranchDiffCell) SetColumnId(v string)

SetColumnId gets a reference to the given string and assigns it to the ColumnId field.

func (*BranchDiffCell) SetDestinationDependencyStatus

func (o *BranchDiffCell) SetDestinationDependencyStatus(v string)

SetDestinationDependencyStatus gets a reference to the given string and assigns it to the DestinationDependencyStatus field.

func (*BranchDiffCell) SetDestinationLengthSetting

func (o *BranchDiffCell) SetDestinationLengthSetting(v int32)

SetDestinationLengthSetting gets a reference to the given int32 and assigns it to the DestinationLengthSetting field.

func (*BranchDiffCell) SetDestinationSourceStatus

func (o *BranchDiffCell) SetDestinationSourceStatus(v string)

SetDestinationSourceStatus gets a reference to the given string and assigns it to the DestinationSourceStatus field.

func (*BranchDiffCell) SetDestinationValue

func (o *BranchDiffCell) SetDestinationValue(v map[string]interface{})

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

func (*BranchDiffCell) SetSourceDependencyStatus

func (o *BranchDiffCell) SetSourceDependencyStatus(v string)

SetSourceDependencyStatus gets a reference to the given string and assigns it to the SourceDependencyStatus field.

func (*BranchDiffCell) SetSourceLengthSetting

func (o *BranchDiffCell) SetSourceLengthSetting(v int32)

SetSourceLengthSetting gets a reference to the given int32 and assigns it to the SourceLengthSetting field.

func (*BranchDiffCell) SetSourceSourceStatus

func (o *BranchDiffCell) SetSourceSourceStatus(v string)

SetSourceSourceStatus gets a reference to the given string and assigns it to the SourceSourceStatus field.

func (*BranchDiffCell) SetSourceValue

func (o *BranchDiffCell) SetSourceValue(v map[string]interface{})

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

func (*BranchDiffCell) SetStatus

func (o *BranchDiffCell) SetStatus(v string)

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

type BranchDiffRecord

type BranchDiffRecord struct {
	Id               *string          `json:"id,omitempty"`
	Path             *string          `json:"path,omitempty"`
	Status           *string          `json:"status,omitempty"`
	Cells            []BranchDiffCell `json:"cells,omitempty"`
	LastModifiedBy   *string          `json:"lastModifiedBy,omitempty"`
	LastModifiedTime *time.Time       `json:"lastModifiedTime,omitempty"`
}

BranchDiffRecord struct for BranchDiffRecord

func NewBranchDiffRecord

func NewBranchDiffRecord() *BranchDiffRecord

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

func NewBranchDiffRecordWithDefaults

func NewBranchDiffRecordWithDefaults() *BranchDiffRecord

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

func (*BranchDiffRecord) GetCells

func (o *BranchDiffRecord) GetCells() []BranchDiffCell

GetCells returns the Cells field value if set, zero value otherwise.

func (*BranchDiffRecord) GetCellsOk

func (o *BranchDiffRecord) GetCellsOk() ([]BranchDiffCell, bool)

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

func (*BranchDiffRecord) GetId

func (o *BranchDiffRecord) GetId() string

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

func (*BranchDiffRecord) GetIdOk

func (o *BranchDiffRecord) 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 (*BranchDiffRecord) GetLastModifiedBy

func (o *BranchDiffRecord) GetLastModifiedBy() string

GetLastModifiedBy returns the LastModifiedBy field value if set, zero value otherwise.

func (*BranchDiffRecord) GetLastModifiedByOk

func (o *BranchDiffRecord) GetLastModifiedByOk() (*string, bool)

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

func (*BranchDiffRecord) GetLastModifiedTime

func (o *BranchDiffRecord) GetLastModifiedTime() time.Time

GetLastModifiedTime returns the LastModifiedTime field value if set, zero value otherwise.

func (*BranchDiffRecord) GetLastModifiedTimeOk

func (o *BranchDiffRecord) GetLastModifiedTimeOk() (*time.Time, bool)

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

func (*BranchDiffRecord) GetPath

func (o *BranchDiffRecord) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*BranchDiffRecord) GetPathOk

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

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

func (*BranchDiffRecord) GetStatus

func (o *BranchDiffRecord) GetStatus() string

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

func (*BranchDiffRecord) GetStatusOk

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

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

func (*BranchDiffRecord) HasCells

func (o *BranchDiffRecord) HasCells() bool

HasCells returns a boolean if a field has been set.

func (*BranchDiffRecord) HasId

func (o *BranchDiffRecord) HasId() bool

HasId returns a boolean if a field has been set.

func (*BranchDiffRecord) HasLastModifiedBy

func (o *BranchDiffRecord) HasLastModifiedBy() bool

HasLastModifiedBy returns a boolean if a field has been set.

func (*BranchDiffRecord) HasLastModifiedTime

func (o *BranchDiffRecord) HasLastModifiedTime() bool

HasLastModifiedTime returns a boolean if a field has been set.

func (*BranchDiffRecord) HasPath

func (o *BranchDiffRecord) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*BranchDiffRecord) HasStatus

func (o *BranchDiffRecord) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (BranchDiffRecord) MarshalJSON

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

func (*BranchDiffRecord) SetCells

func (o *BranchDiffRecord) SetCells(v []BranchDiffCell)

SetCells gets a reference to the given []BranchDiffCell and assigns it to the Cells field.

func (*BranchDiffRecord) SetId

func (o *BranchDiffRecord) SetId(v string)

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

func (*BranchDiffRecord) SetLastModifiedBy

func (o *BranchDiffRecord) SetLastModifiedBy(v string)

SetLastModifiedBy gets a reference to the given string and assigns it to the LastModifiedBy field.

func (*BranchDiffRecord) SetLastModifiedTime

func (o *BranchDiffRecord) SetLastModifiedTime(v time.Time)

SetLastModifiedTime gets a reference to the given time.Time and assigns it to the LastModifiedTime field.

func (*BranchDiffRecord) SetPath

func (o *BranchDiffRecord) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*BranchDiffRecord) SetStatus

func (o *BranchDiffRecord) SetStatus(v string)

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

type Cell

type Cell struct {
	ColumnId         *string      `json:"columnId,omitempty"`
	DependencyStatus *string      `json:"dependencyStatus,omitempty"`
	LengthLimit      *int32       `json:"lengthLimit,omitempty"`
	ReferencedIds    []string     `json:"referencedIds,omitempty"`
	SourceStatus     *string      `json:"sourceStatus,omitempty"`
	Tm               *bool        `json:"tm,omitempty"`
	Value            *interface{} `json:"value,omitempty"`
}

Cell struct for Cell

func NewCell

func NewCell() *Cell

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

func NewCellWithDefaults

func NewCellWithDefaults() *Cell

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

func (*Cell) GetColumnId

func (o *Cell) GetColumnId() string

GetColumnId returns the ColumnId field value if set, zero value otherwise.

func (*Cell) GetColumnIdOk

func (o *Cell) GetColumnIdOk() (*string, bool)

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

func (*Cell) GetDependencyStatus

func (o *Cell) GetDependencyStatus() string

GetDependencyStatus returns the DependencyStatus field value if set, zero value otherwise.

func (*Cell) GetDependencyStatusOk

func (o *Cell) GetDependencyStatusOk() (*string, bool)

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

func (*Cell) GetLengthLimit

func (o *Cell) GetLengthLimit() int32

GetLengthLimit returns the LengthLimit field value if set, zero value otherwise.

func (*Cell) GetLengthLimitOk

func (o *Cell) GetLengthLimitOk() (*int32, bool)

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

func (*Cell) GetReferencedIds

func (o *Cell) GetReferencedIds() []string

GetReferencedIds returns the ReferencedIds field value if set, zero value otherwise.

func (*Cell) GetReferencedIdsOk

func (o *Cell) GetReferencedIdsOk() ([]string, bool)

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

func (*Cell) GetSourceStatus

func (o *Cell) GetSourceStatus() string

GetSourceStatus returns the SourceStatus field value if set, zero value otherwise.

func (*Cell) GetSourceStatusOk

func (o *Cell) GetSourceStatusOk() (*string, bool)

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

func (*Cell) GetTm

func (o *Cell) GetTm() bool

GetTm returns the Tm field value if set, zero value otherwise.

func (*Cell) GetTmOk

func (o *Cell) GetTmOk() (*bool, bool)

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

func (*Cell) GetValue

func (o *Cell) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*Cell) GetValueOk

func (o *Cell) GetValueOk() (*interface{}, bool)

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

func (*Cell) HasColumnId

func (o *Cell) HasColumnId() bool

HasColumnId returns a boolean if a field has been set.

func (*Cell) HasDependencyStatus

func (o *Cell) HasDependencyStatus() bool

HasDependencyStatus returns a boolean if a field has been set.

func (*Cell) HasLengthLimit

func (o *Cell) HasLengthLimit() bool

HasLengthLimit returns a boolean if a field has been set.

func (*Cell) HasReferencedIds

func (o *Cell) HasReferencedIds() bool

HasReferencedIds returns a boolean if a field has been set.

func (*Cell) HasSourceStatus

func (o *Cell) HasSourceStatus() bool

HasSourceStatus returns a boolean if a field has been set.

func (*Cell) HasTm

func (o *Cell) HasTm() bool

HasTm returns a boolean if a field has been set.

func (*Cell) HasValue

func (o *Cell) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Cell) MarshalJSON

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

func (*Cell) SetColumnId

func (o *Cell) SetColumnId(v string)

SetColumnId gets a reference to the given string and assigns it to the ColumnId field.

func (*Cell) SetDependencyStatus

func (o *Cell) SetDependencyStatus(v string)

SetDependencyStatus gets a reference to the given string and assigns it to the DependencyStatus field.

func (*Cell) SetLengthLimit

func (o *Cell) SetLengthLimit(v int32)

SetLengthLimit gets a reference to the given int32 and assigns it to the LengthLimit field.

func (*Cell) SetReferencedIds

func (o *Cell) SetReferencedIds(v []string)

SetReferencedIds gets a reference to the given []string and assigns it to the ReferencedIds field.

func (*Cell) SetSourceStatus

func (o *Cell) SetSourceStatus(v string)

SetSourceStatus gets a reference to the given string and assigns it to the SourceStatus field.

func (*Cell) SetTm

func (o *Cell) SetTm(v bool)

SetTm gets a reference to the given bool and assigns it to the Tm field.

func (*Cell) SetValue

func (o *Cell) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

type CellHistory

type CellHistory struct {
	DependencyStatus *string                `json:"dependencyStatus,omitempty"`
	SourceStatus     *string                `json:"sourceStatus,omitempty"`
	ColumnId         *string                `json:"columnId,omitempty"`
	Value            map[string]interface{} `json:"value,omitempty"`
}

CellHistory struct for CellHistory

func NewCellHistory

func NewCellHistory() *CellHistory

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

func NewCellHistoryWithDefaults

func NewCellHistoryWithDefaults() *CellHistory

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

func (*CellHistory) GetColumnId

func (o *CellHistory) GetColumnId() string

GetColumnId returns the ColumnId field value if set, zero value otherwise.

func (*CellHistory) GetColumnIdOk

func (o *CellHistory) GetColumnIdOk() (*string, bool)

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

func (*CellHistory) GetDependencyStatus

func (o *CellHistory) GetDependencyStatus() string

GetDependencyStatus returns the DependencyStatus field value if set, zero value otherwise.

func (*CellHistory) GetDependencyStatusOk

func (o *CellHistory) GetDependencyStatusOk() (*string, bool)

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

func (*CellHistory) GetSourceStatus

func (o *CellHistory) GetSourceStatus() string

GetSourceStatus returns the SourceStatus field value if set, zero value otherwise.

func (*CellHistory) GetSourceStatusOk

func (o *CellHistory) GetSourceStatusOk() (*string, bool)

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

func (*CellHistory) GetValue

func (o *CellHistory) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*CellHistory) GetValueOk

func (o *CellHistory) GetValueOk() (map[string]interface{}, bool)

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

func (*CellHistory) HasColumnId

func (o *CellHistory) HasColumnId() bool

HasColumnId returns a boolean if a field has been set.

func (*CellHistory) HasDependencyStatus

func (o *CellHistory) HasDependencyStatus() bool

HasDependencyStatus returns a boolean if a field has been set.

func (*CellHistory) HasSourceStatus

func (o *CellHistory) HasSourceStatus() bool

HasSourceStatus returns a boolean if a field has been set.

func (*CellHistory) HasValue

func (o *CellHistory) HasValue() bool

HasValue returns a boolean if a field has been set.

func (CellHistory) MarshalJSON

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

func (*CellHistory) SetColumnId

func (o *CellHistory) SetColumnId(v string)

SetColumnId gets a reference to the given string and assigns it to the ColumnId field.

func (*CellHistory) SetDependencyStatus

func (o *CellHistory) SetDependencyStatus(v string)

SetDependencyStatus gets a reference to the given string and assigns it to the DependencyStatus field.

func (*CellHistory) SetSourceStatus

func (o *CellHistory) SetSourceStatus(v string)

SetSourceStatus gets a reference to the given string and assigns it to the SourceStatus field.

func (*CellHistory) SetValue

func (o *CellHistory) SetValue(v map[string]interface{})

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

type ColumnReference

type ColumnReference struct {
	Grid          *ReferencedGrid   `json:"grid,omitempty"`
	Column        *ReferencedColumn `json:"column,omitempty"`
	Branch        *ReferencedGrid   `json:"branch,omitempty"`
	Type          *string           `json:"type,omitempty"`
	SelectionType *string           `json:"selectionType,omitempty"`
}

ColumnReference struct for ColumnReference

func NewColumnReference

func NewColumnReference() *ColumnReference

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

func NewColumnReferenceWithDefaults

func NewColumnReferenceWithDefaults() *ColumnReference

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

func (*ColumnReference) GetBranch

func (o *ColumnReference) GetBranch() ReferencedGrid

GetBranch returns the Branch field value if set, zero value otherwise.

func (*ColumnReference) GetBranchOk

func (o *ColumnReference) GetBranchOk() (*ReferencedGrid, bool)

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

func (*ColumnReference) GetColumn

func (o *ColumnReference) GetColumn() ReferencedColumn

GetColumn returns the Column field value if set, zero value otherwise.

func (*ColumnReference) GetColumnOk

func (o *ColumnReference) GetColumnOk() (*ReferencedColumn, bool)

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

func (*ColumnReference) GetGrid

func (o *ColumnReference) GetGrid() ReferencedGrid

GetGrid returns the Grid field value if set, zero value otherwise.

func (*ColumnReference) GetGridOk

func (o *ColumnReference) GetGridOk() (*ReferencedGrid, bool)

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

func (*ColumnReference) GetSelectionType

func (o *ColumnReference) GetSelectionType() string

GetSelectionType returns the SelectionType field value if set, zero value otherwise.

func (*ColumnReference) GetSelectionTypeOk

func (o *ColumnReference) GetSelectionTypeOk() (*string, bool)

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

func (*ColumnReference) GetType

func (o *ColumnReference) GetType() string

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

func (*ColumnReference) GetTypeOk

func (o *ColumnReference) 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 (*ColumnReference) HasBranch

func (o *ColumnReference) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*ColumnReference) HasColumn

func (o *ColumnReference) HasColumn() bool

HasColumn returns a boolean if a field has been set.

func (*ColumnReference) HasGrid

func (o *ColumnReference) HasGrid() bool

HasGrid returns a boolean if a field has been set.

func (*ColumnReference) HasSelectionType

func (o *ColumnReference) HasSelectionType() bool

HasSelectionType returns a boolean if a field has been set.

func (*ColumnReference) HasType

func (o *ColumnReference) HasType() bool

HasType returns a boolean if a field has been set.

func (ColumnReference) MarshalJSON

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

func (*ColumnReference) SetBranch

func (o *ColumnReference) SetBranch(v ReferencedGrid)

SetBranch gets a reference to the given ReferencedGrid and assigns it to the Branch field.

func (*ColumnReference) SetColumn

func (o *ColumnReference) SetColumn(v ReferencedColumn)

SetColumn gets a reference to the given ReferencedColumn and assigns it to the Column field.

func (*ColumnReference) SetGrid

func (o *ColumnReference) SetGrid(v ReferencedGrid)

SetGrid gets a reference to the given ReferencedGrid and assigns it to the Grid field.

func (*ColumnReference) SetSelectionType

func (o *ColumnReference) SetSelectionType(v string)

SetSelectionType gets a reference to the given string and assigns it to the SelectionType field.

func (*ColumnReference) SetType

func (o *ColumnReference) SetType(v string)

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

type ColumnStatistic

type ColumnStatistic struct {
	RecordCount *TranslationCount `json:"recordCount,omitempty"`
	WordCount   *TranslationCount `json:"wordCount,omitempty"`
}

ColumnStatistic struct for ColumnStatistic

func NewColumnStatistic

func NewColumnStatistic() *ColumnStatistic

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

func NewColumnStatisticWithDefaults

func NewColumnStatisticWithDefaults() *ColumnStatistic

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

func (*ColumnStatistic) GetRecordCount

func (o *ColumnStatistic) GetRecordCount() TranslationCount

GetRecordCount returns the RecordCount field value if set, zero value otherwise.

func (*ColumnStatistic) GetRecordCountOk

func (o *ColumnStatistic) GetRecordCountOk() (*TranslationCount, bool)

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

func (*ColumnStatistic) GetWordCount

func (o *ColumnStatistic) GetWordCount() TranslationCount

GetWordCount returns the WordCount field value if set, zero value otherwise.

func (*ColumnStatistic) GetWordCountOk

func (o *ColumnStatistic) GetWordCountOk() (*TranslationCount, bool)

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

func (*ColumnStatistic) HasRecordCount

func (o *ColumnStatistic) HasRecordCount() bool

HasRecordCount returns a boolean if a field has been set.

func (*ColumnStatistic) HasWordCount

func (o *ColumnStatistic) HasWordCount() bool

HasWordCount returns a boolean if a field has been set.

func (ColumnStatistic) MarshalJSON

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

func (*ColumnStatistic) SetRecordCount

func (o *ColumnStatistic) SetRecordCount(v TranslationCount)

SetRecordCount gets a reference to the given TranslationCount and assigns it to the RecordCount field.

func (*ColumnStatistic) SetWordCount

func (o *ColumnStatistic) SetWordCount(v TranslationCount)

SetWordCount gets a reference to the given TranslationCount and assigns it to the WordCount field.

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 CreateBranch

type CreateBranch struct {
	Name               string                            `json:"name"`
	Description        *string                           `json:"description,omitempty"`
	CustomProperties   map[string]map[string]interface{} `json:"customProperties,omitempty"`
	InheritGroupAccess *bool                             `json:"inheritGroupAccess,omitempty"`
	InheritAutomation  *bool                             `json:"inheritAutomation,omitempty"`
	ViewId             *string                           `json:"viewId,omitempty"`
}

CreateBranch struct for CreateBranch

func NewCreateBranch

func NewCreateBranch(name string) *CreateBranch

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

func NewCreateBranchWithDefaults

func NewCreateBranchWithDefaults() *CreateBranch

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

func (*CreateBranch) GetCustomProperties

func (o *CreateBranch) GetCustomProperties() map[string]map[string]interface{}

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*CreateBranch) GetCustomPropertiesOk

func (o *CreateBranch) GetCustomPropertiesOk() (map[string]map[string]interface{}, bool)

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

func (*CreateBranch) GetDescription

func (o *CreateBranch) GetDescription() string

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

func (*CreateBranch) GetDescriptionOk

func (o *CreateBranch) 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 (*CreateBranch) GetInheritAutomation

func (o *CreateBranch) GetInheritAutomation() bool

GetInheritAutomation returns the InheritAutomation field value if set, zero value otherwise.

func (*CreateBranch) GetInheritAutomationOk

func (o *CreateBranch) GetInheritAutomationOk() (*bool, bool)

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

func (*CreateBranch) GetInheritGroupAccess

func (o *CreateBranch) GetInheritGroupAccess() bool

GetInheritGroupAccess returns the InheritGroupAccess field value if set, zero value otherwise.

func (*CreateBranch) GetInheritGroupAccessOk

func (o *CreateBranch) GetInheritGroupAccessOk() (*bool, bool)

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

func (*CreateBranch) GetName

func (o *CreateBranch) GetName() string

GetName returns the Name field value

func (*CreateBranch) GetNameOk

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

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

func (*CreateBranch) GetViewId

func (o *CreateBranch) GetViewId() string

GetViewId returns the ViewId field value if set, zero value otherwise.

func (*CreateBranch) GetViewIdOk

func (o *CreateBranch) GetViewIdOk() (*string, bool)

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

func (*CreateBranch) HasCustomProperties

func (o *CreateBranch) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*CreateBranch) HasDescription

func (o *CreateBranch) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateBranch) HasInheritAutomation

func (o *CreateBranch) HasInheritAutomation() bool

HasInheritAutomation returns a boolean if a field has been set.

func (*CreateBranch) HasInheritGroupAccess

func (o *CreateBranch) HasInheritGroupAccess() bool

HasInheritGroupAccess returns a boolean if a field has been set.

func (*CreateBranch) HasViewId

func (o *CreateBranch) HasViewId() bool

HasViewId returns a boolean if a field has been set.

func (CreateBranch) MarshalJSON

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

func (*CreateBranch) SetCustomProperties

func (o *CreateBranch) SetCustomProperties(v map[string]map[string]interface{})

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

func (*CreateBranch) SetDescription

func (o *CreateBranch) SetDescription(v string)

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

func (*CreateBranch) SetInheritAutomation

func (o *CreateBranch) SetInheritAutomation(v bool)

SetInheritAutomation gets a reference to the given bool and assigns it to the InheritAutomation field.

func (*CreateBranch) SetInheritGroupAccess

func (o *CreateBranch) SetInheritGroupAccess(v bool)

SetInheritGroupAccess gets a reference to the given bool and assigns it to the InheritGroupAccess field.

func (*CreateBranch) SetName

func (o *CreateBranch) SetName(v string)

SetName sets field value

func (*CreateBranch) SetViewId

func (o *CreateBranch) SetViewId(v string)

SetViewId gets a reference to the given string and assigns it to the ViewId field.

type CreateColumn

type CreateColumn struct {
	Id               *string         `json:"id,omitempty"`
	Name             string          `json:"name"`
	Description      *string         `json:"description,omitempty"`
	Type             string          `json:"type"`
	Editable         *bool           `json:"editable,omitempty"`
	LanguageCode     *string         `json:"languageCode,omitempty"`
	LocalizationType *string         `json:"localizationType,omitempty"`
	NumberFormat     *NumberFormat   `json:"numberFormat,omitempty"`
	SelectionOptions []string        `json:"selectionOptions,omitempty"`
	Reference        *Reference      `json:"reference,omitempty"`
	Formula          *Formula        `json:"formula,omitempty"`
	DateTimeFormat   *DateTimeFormat `json:"dateTimeFormat,omitempty"`
}

CreateColumn struct for CreateColumn

func NewCreateColumn

func NewCreateColumn(name string, type_ string) *CreateColumn

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

func NewCreateColumnWithDefaults

func NewCreateColumnWithDefaults() *CreateColumn

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

func (*CreateColumn) GetDateTimeFormat

func (o *CreateColumn) GetDateTimeFormat() DateTimeFormat

GetDateTimeFormat returns the DateTimeFormat field value if set, zero value otherwise.

func (*CreateColumn) GetDateTimeFormatOk

func (o *CreateColumn) GetDateTimeFormatOk() (*DateTimeFormat, bool)

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

func (*CreateColumn) GetDescription

func (o *CreateColumn) GetDescription() string

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

func (*CreateColumn) GetDescriptionOk

func (o *CreateColumn) 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 (*CreateColumn) GetEditable

func (o *CreateColumn) GetEditable() bool

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

func (*CreateColumn) GetEditableOk

func (o *CreateColumn) 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 (*CreateColumn) GetFormula

func (o *CreateColumn) GetFormula() Formula

GetFormula returns the Formula field value if set, zero value otherwise.

func (*CreateColumn) GetFormulaOk

func (o *CreateColumn) GetFormulaOk() (*Formula, bool)

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

func (*CreateColumn) GetId

func (o *CreateColumn) GetId() string

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

func (*CreateColumn) GetIdOk

func (o *CreateColumn) 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 (*CreateColumn) GetLanguageCode

func (o *CreateColumn) GetLanguageCode() string

GetLanguageCode returns the LanguageCode field value if set, zero value otherwise.

func (*CreateColumn) GetLanguageCodeOk

func (o *CreateColumn) GetLanguageCodeOk() (*string, bool)

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

func (*CreateColumn) GetLocalizationType

func (o *CreateColumn) GetLocalizationType() string

GetLocalizationType returns the LocalizationType field value if set, zero value otherwise.

func (*CreateColumn) GetLocalizationTypeOk

func (o *CreateColumn) GetLocalizationTypeOk() (*string, bool)

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

func (*CreateColumn) GetName

func (o *CreateColumn) GetName() string

GetName returns the Name field value

func (*CreateColumn) GetNameOk

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

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

func (*CreateColumn) GetNumberFormat

func (o *CreateColumn) GetNumberFormat() NumberFormat

GetNumberFormat returns the NumberFormat field value if set, zero value otherwise.

func (*CreateColumn) GetNumberFormatOk

func (o *CreateColumn) GetNumberFormatOk() (*NumberFormat, bool)

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

func (*CreateColumn) GetReference

func (o *CreateColumn) GetReference() Reference

GetReference returns the Reference field value if set, zero value otherwise.

func (*CreateColumn) GetReferenceOk

func (o *CreateColumn) GetReferenceOk() (*Reference, bool)

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

func (*CreateColumn) GetSelectionOptions

func (o *CreateColumn) GetSelectionOptions() []string

GetSelectionOptions returns the SelectionOptions field value if set, zero value otherwise.

func (*CreateColumn) GetSelectionOptionsOk

func (o *CreateColumn) GetSelectionOptionsOk() ([]string, bool)

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

func (*CreateColumn) GetType

func (o *CreateColumn) GetType() string

GetType returns the Type field value

func (*CreateColumn) GetTypeOk

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

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

func (*CreateColumn) HasDateTimeFormat

func (o *CreateColumn) HasDateTimeFormat() bool

HasDateTimeFormat returns a boolean if a field has been set.

func (*CreateColumn) HasDescription

func (o *CreateColumn) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateColumn) HasEditable

func (o *CreateColumn) HasEditable() bool

HasEditable returns a boolean if a field has been set.

func (*CreateColumn) HasFormula

func (o *CreateColumn) HasFormula() bool

HasFormula returns a boolean if a field has been set.

func (*CreateColumn) HasId

func (o *CreateColumn) HasId() bool

HasId returns a boolean if a field has been set.

func (*CreateColumn) HasLanguageCode

func (o *CreateColumn) HasLanguageCode() bool

HasLanguageCode returns a boolean if a field has been set.

func (*CreateColumn) HasLocalizationType

func (o *CreateColumn) HasLocalizationType() bool

HasLocalizationType returns a boolean if a field has been set.

func (*CreateColumn) HasNumberFormat

func (o *CreateColumn) HasNumberFormat() bool

HasNumberFormat returns a boolean if a field has been set.

func (*CreateColumn) HasReference

func (o *CreateColumn) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*CreateColumn) HasSelectionOptions

func (o *CreateColumn) HasSelectionOptions() bool

HasSelectionOptions returns a boolean if a field has been set.

func (CreateColumn) MarshalJSON

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

func (*CreateColumn) SetDateTimeFormat

func (o *CreateColumn) SetDateTimeFormat(v DateTimeFormat)

SetDateTimeFormat gets a reference to the given DateTimeFormat and assigns it to the DateTimeFormat field.

func (*CreateColumn) SetDescription

func (o *CreateColumn) SetDescription(v string)

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

func (*CreateColumn) SetEditable

func (o *CreateColumn) SetEditable(v bool)

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

func (*CreateColumn) SetFormula

func (o *CreateColumn) SetFormula(v Formula)

SetFormula gets a reference to the given Formula and assigns it to the Formula field.

func (*CreateColumn) SetId

func (o *CreateColumn) SetId(v string)

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

func (*CreateColumn) SetLanguageCode

func (o *CreateColumn) SetLanguageCode(v string)

SetLanguageCode gets a reference to the given string and assigns it to the LanguageCode field.

func (*CreateColumn) SetLocalizationType

func (o *CreateColumn) SetLocalizationType(v string)

SetLocalizationType gets a reference to the given string and assigns it to the LocalizationType field.

func (*CreateColumn) SetName

func (o *CreateColumn) SetName(v string)

SetName sets field value

func (*CreateColumn) SetNumberFormat

func (o *CreateColumn) SetNumberFormat(v NumberFormat)

SetNumberFormat gets a reference to the given NumberFormat and assigns it to the NumberFormat field.

func (*CreateColumn) SetReference

func (o *CreateColumn) SetReference(v Reference)

SetReference gets a reference to the given Reference and assigns it to the Reference field.

func (*CreateColumn) SetSelectionOptions

func (o *CreateColumn) SetSelectionOptions(v []string)

SetSelectionOptions gets a reference to the given []string and assigns it to the SelectionOptions field.

func (*CreateColumn) SetType

func (o *CreateColumn) SetType(v string)

SetType sets field value

type CreateDatabase

type CreateDatabase struct {
	Name             string  `json:"name"`
	Description      *string `json:"description,omitempty"`
	EnableGuidRecord *bool   `json:"enableGuidRecord,omitempty"`
	Id               *string `json:"id,omitempty"`
}

CreateDatabase body

func NewCreateDatabase

func NewCreateDatabase(name string) *CreateDatabase

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

func NewCreateDatabaseWithDefaults

func NewCreateDatabaseWithDefaults() *CreateDatabase

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

func (*CreateDatabase) GetDescription

func (o *CreateDatabase) GetDescription() string

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

func (*CreateDatabase) GetDescriptionOk

func (o *CreateDatabase) 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 (*CreateDatabase) GetEnableGuidRecord

func (o *CreateDatabase) GetEnableGuidRecord() bool

GetEnableGuidRecord returns the EnableGuidRecord field value if set, zero value otherwise.

func (*CreateDatabase) GetEnableGuidRecordOk

func (o *CreateDatabase) GetEnableGuidRecordOk() (*bool, bool)

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

func (*CreateDatabase) GetId

func (o *CreateDatabase) GetId() string

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

func (*CreateDatabase) GetIdOk

func (o *CreateDatabase) 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 (*CreateDatabase) GetName

func (o *CreateDatabase) GetName() string

GetName returns the Name field value

func (*CreateDatabase) GetNameOk

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

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

func (*CreateDatabase) HasDescription

func (o *CreateDatabase) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateDatabase) HasEnableGuidRecord

func (o *CreateDatabase) HasEnableGuidRecord() bool

HasEnableGuidRecord returns a boolean if a field has been set.

func (*CreateDatabase) HasId

func (o *CreateDatabase) HasId() bool

HasId returns a boolean if a field has been set.

func (CreateDatabase) MarshalJSON

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

func (*CreateDatabase) SetDescription

func (o *CreateDatabase) SetDescription(v string)

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

func (*CreateDatabase) SetEnableGuidRecord

func (o *CreateDatabase) SetEnableGuidRecord(v bool)

SetEnableGuidRecord gets a reference to the given bool and assigns it to the EnableGuidRecord field.

func (*CreateDatabase) SetId

func (o *CreateDatabase) SetId(v string)

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

func (*CreateDatabase) SetName

func (o *CreateDatabase) SetName(v string)

SetName sets field value

type CreateDependency

type CreateDependency struct {
	Id             *string `json:"id,omitempty"`
	TargetColumnId string  `json:"targetColumnId"`
	SourceColumnId string  `json:"sourceColumnId"`
}

CreateDependency struct for CreateDependency

func NewCreateDependency

func NewCreateDependency(targetColumnId string, sourceColumnId string) *CreateDependency

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

func NewCreateDependencyWithDefaults

func NewCreateDependencyWithDefaults() *CreateDependency

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

func (*CreateDependency) GetId

func (o *CreateDependency) GetId() string

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

func (*CreateDependency) GetIdOk

func (o *CreateDependency) 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 (*CreateDependency) GetSourceColumnId

func (o *CreateDependency) GetSourceColumnId() string

GetSourceColumnId returns the SourceColumnId field value

func (*CreateDependency) GetSourceColumnIdOk

func (o *CreateDependency) GetSourceColumnIdOk() (*string, bool)

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

func (*CreateDependency) GetTargetColumnId

func (o *CreateDependency) GetTargetColumnId() string

GetTargetColumnId returns the TargetColumnId field value

func (*CreateDependency) GetTargetColumnIdOk

func (o *CreateDependency) GetTargetColumnIdOk() (*string, bool)

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

func (*CreateDependency) HasId

func (o *CreateDependency) HasId() bool

HasId returns a boolean if a field has been set.

func (CreateDependency) MarshalJSON

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

func (*CreateDependency) SetId

func (o *CreateDependency) SetId(v string)

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

func (*CreateDependency) SetSourceColumnId

func (o *CreateDependency) SetSourceColumnId(v string)

SetSourceColumnId sets field value

func (*CreateDependency) SetTargetColumnId

func (o *CreateDependency) SetTargetColumnId(v string)

SetTargetColumnId sets field value

type CreateFileCategory

type CreateFileCategory struct {
	Name string `json:"name"`
}

CreateFileCategory struct for CreateFileCategory

func NewCreateFileCategory

func NewCreateFileCategory(name string) *CreateFileCategory

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

func NewCreateFileCategoryWithDefaults

func NewCreateFileCategoryWithDefaults() *CreateFileCategory

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

func (*CreateFileCategory) GetName

func (o *CreateFileCategory) GetName() string

GetName returns the Name field value

func (*CreateFileCategory) GetNameOk

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

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

func (CreateFileCategory) MarshalJSON

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

func (*CreateFileCategory) SetName

func (o *CreateFileCategory) SetName(v string)

SetName sets field value

type CreateGlossary

type CreateGlossary struct {
	Name        string            `json:"name"`
	Description *string           `json:"description,omitempty"`
	Langs       []string          `json:"langs,omitempty"`
	Projects    []GlossaryProject `json:"projects,omitempty"`
}

CreateGlossary struct for CreateGlossary

func NewCreateGlossary

func NewCreateGlossary(name string) *CreateGlossary

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

func NewCreateGlossaryWithDefaults

func NewCreateGlossaryWithDefaults() *CreateGlossary

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

func (*CreateGlossary) GetDescription

func (o *CreateGlossary) GetDescription() string

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

func (*CreateGlossary) GetDescriptionOk

func (o *CreateGlossary) 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 (*CreateGlossary) GetLangs

func (o *CreateGlossary) GetLangs() []string

GetLangs returns the Langs field value if set, zero value otherwise.

func (*CreateGlossary) GetLangsOk

func (o *CreateGlossary) GetLangsOk() ([]string, bool)

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

func (*CreateGlossary) GetName

func (o *CreateGlossary) GetName() string

GetName returns the Name field value

func (*CreateGlossary) GetNameOk

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

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

func (*CreateGlossary) GetProjects

func (o *CreateGlossary) GetProjects() []GlossaryProject

GetProjects returns the Projects field value if set, zero value otherwise.

func (*CreateGlossary) GetProjectsOk

func (o *CreateGlossary) GetProjectsOk() ([]GlossaryProject, bool)

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

func (*CreateGlossary) HasDescription

func (o *CreateGlossary) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateGlossary) HasLangs

func (o *CreateGlossary) HasLangs() bool

HasLangs returns a boolean if a field has been set.

func (*CreateGlossary) HasProjects

func (o *CreateGlossary) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (CreateGlossary) MarshalJSON

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

func (*CreateGlossary) SetDescription

func (o *CreateGlossary) SetDescription(v string)

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

func (*CreateGlossary) SetLangs

func (o *CreateGlossary) SetLangs(v []string)

SetLangs gets a reference to the given []string and assigns it to the Langs field.

func (*CreateGlossary) SetName

func (o *CreateGlossary) SetName(v string)

SetName sets field value

func (*CreateGlossary) SetProjects

func (o *CreateGlossary) SetProjects(v []GlossaryProject)

SetProjects gets a reference to the given []GlossaryProject and assigns it to the Projects field.

type CreateGrid

type CreateGrid struct {
	Id                   *string            `json:"id,omitempty"`
	Name                 string             `json:"name"`
	TemplateGridId       *string            `json:"templateGridId,omitempty"`
	RecordIdentifierType *string            `json:"recordIdentifierType,omitempty"`
	Columns              []CreateColumn     `json:"columns,omitempty"`
	Metadata             *map[string]string `json:"metadata,omitempty"`
}

CreateGrid struct for CreateGrid

func NewCreateGrid

func NewCreateGrid(name string) *CreateGrid

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

func NewCreateGridWithDefaults

func NewCreateGridWithDefaults() *CreateGrid

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

func (*CreateGrid) GetColumns

func (o *CreateGrid) GetColumns() []CreateColumn

GetColumns returns the Columns field value if set, zero value otherwise.

func (*CreateGrid) GetColumnsOk

func (o *CreateGrid) GetColumnsOk() ([]CreateColumn, bool)

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

func (*CreateGrid) GetId

func (o *CreateGrid) GetId() string

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

func (*CreateGrid) GetIdOk

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

func (o *CreateGrid) GetMetadata() map[string]string

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

func (*CreateGrid) GetMetadataOk

func (o *CreateGrid) GetMetadataOk() (*map[string]string, bool)

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

func (*CreateGrid) GetName

func (o *CreateGrid) GetName() string

GetName returns the Name field value

func (*CreateGrid) GetNameOk

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

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

func (*CreateGrid) GetRecordIdentifierType

func (o *CreateGrid) GetRecordIdentifierType() string

GetRecordIdentifierType returns the RecordIdentifierType field value if set, zero value otherwise.

func (*CreateGrid) GetRecordIdentifierTypeOk

func (o *CreateGrid) GetRecordIdentifierTypeOk() (*string, bool)

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

func (*CreateGrid) GetTemplateGridId

func (o *CreateGrid) GetTemplateGridId() string

GetTemplateGridId returns the TemplateGridId field value if set, zero value otherwise.

func (*CreateGrid) GetTemplateGridIdOk

func (o *CreateGrid) GetTemplateGridIdOk() (*string, bool)

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

func (*CreateGrid) HasColumns

func (o *CreateGrid) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (*CreateGrid) HasId

func (o *CreateGrid) HasId() bool

HasId returns a boolean if a field has been set.

func (*CreateGrid) HasMetadata

func (o *CreateGrid) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*CreateGrid) HasRecordIdentifierType

func (o *CreateGrid) HasRecordIdentifierType() bool

HasRecordIdentifierType returns a boolean if a field has been set.

func (*CreateGrid) HasTemplateGridId

func (o *CreateGrid) HasTemplateGridId() bool

HasTemplateGridId returns a boolean if a field has been set.

func (CreateGrid) MarshalJSON

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

func (*CreateGrid) SetColumns

func (o *CreateGrid) SetColumns(v []CreateColumn)

SetColumns gets a reference to the given []CreateColumn and assigns it to the Columns field.

func (*CreateGrid) SetId

func (o *CreateGrid) SetId(v string)

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

func (*CreateGrid) SetMetadata

func (o *CreateGrid) SetMetadata(v map[string]string)

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

func (*CreateGrid) SetName

func (o *CreateGrid) SetName(v string)

SetName sets field value

func (*CreateGrid) SetRecordIdentifierType

func (o *CreateGrid) SetRecordIdentifierType(v string)

SetRecordIdentifierType gets a reference to the given string and assigns it to the RecordIdentifierType field.

func (*CreateGrid) SetTemplateGridId

func (o *CreateGrid) SetTemplateGridId(v string)

SetTemplateGridId gets a reference to the given string and assigns it to the TemplateGridId field.

type CreatePath

type CreatePath struct {
	ParentPath *string  `json:"parentPath,omitempty"`
	Paths      []string `json:"paths,omitempty"`
}

CreatePath struct for CreatePath

func NewCreatePath

func NewCreatePath() *CreatePath

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

func NewCreatePathWithDefaults

func NewCreatePathWithDefaults() *CreatePath

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

func (*CreatePath) GetParentPath

func (o *CreatePath) GetParentPath() string

GetParentPath returns the ParentPath field value if set, zero value otherwise.

func (*CreatePath) GetParentPathOk

func (o *CreatePath) GetParentPathOk() (*string, bool)

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

func (*CreatePath) GetPaths

func (o *CreatePath) GetPaths() []string

GetPaths returns the Paths field value if set, zero value otherwise.

func (*CreatePath) GetPathsOk

func (o *CreatePath) GetPathsOk() ([]string, bool)

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

func (*CreatePath) HasParentPath

func (o *CreatePath) HasParentPath() bool

HasParentPath returns a boolean if a field has been set.

func (*CreatePath) HasPaths

func (o *CreatePath) HasPaths() bool

HasPaths returns a boolean if a field has been set.

func (CreatePath) MarshalJSON

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

func (*CreatePath) SetParentPath

func (o *CreatePath) SetParentPath(v string)

SetParentPath gets a reference to the given string and assigns it to the ParentPath field.

func (*CreatePath) SetPaths

func (o *CreatePath) SetPaths(v []string)

SetPaths gets a reference to the given []string and assigns it to the Paths field.

type CreateProject

type CreateProject struct {
	Name        string  `json:"name"`
	Description *string `json:"description,omitempty"`
}

CreateProject struct for CreateProject

func NewCreateProject

func NewCreateProject(name string) *CreateProject

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

func NewCreateProjectWithDefaults

func NewCreateProjectWithDefaults() *CreateProject

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

func (*CreateProject) GetDescription

func (o *CreateProject) GetDescription() string

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

func (*CreateProject) GetDescriptionOk

func (o *CreateProject) 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 (*CreateProject) GetName

func (o *CreateProject) GetName() string

GetName returns the Name field value

func (*CreateProject) GetNameOk

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

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

func (*CreateProject) HasDescription

func (o *CreateProject) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (CreateProject) MarshalJSON

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

func (*CreateProject) SetDescription

func (o *CreateProject) SetDescription(v string)

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

func (*CreateProject) SetName

func (o *CreateProject) SetName(v string)

SetName sets field value

type CreateShareView

type CreateShareView struct {
	IncludeGridHistory *bool `json:"includeGridHistory,omitempty"`
}

CreateShareView struct for CreateShareView

func NewCreateShareView

func NewCreateShareView() *CreateShareView

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

func NewCreateShareViewWithDefaults

func NewCreateShareViewWithDefaults() *CreateShareView

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

func (*CreateShareView) GetIncludeGridHistory

func (o *CreateShareView) GetIncludeGridHistory() bool

GetIncludeGridHistory returns the IncludeGridHistory field value if set, zero value otherwise.

func (*CreateShareView) GetIncludeGridHistoryOk

func (o *CreateShareView) GetIncludeGridHistoryOk() (*bool, bool)

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

func (*CreateShareView) HasIncludeGridHistory

func (o *CreateShareView) HasIncludeGridHistory() bool

HasIncludeGridHistory returns a boolean if a field has been set.

func (CreateShareView) MarshalJSON

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

func (*CreateShareView) SetIncludeGridHistory

func (o *CreateShareView) SetIncludeGridHistory(v bool)

SetIncludeGridHistory gets a reference to the given bool and assigns it to the IncludeGridHistory field.

type CreateTransMem

type CreateTransMem struct {
	Name                      string             `json:"name"`
	Description               *string            `json:"description,omitempty"`
	ProjectIds                []int64            `json:"projectIds,omitempty"`
	FuzzyMatch                *bool              `json:"fuzzyMatch,omitempty"`
	IsDisabled                *bool              `json:"isDisabled,omitempty"`
	IsPausedConsuming         *bool              `json:"isPausedConsuming,omitempty"`
	ContextLookup             *bool              `json:"contextLookup,omitempty"`
	PopulateTranslationStatus *TranslationStatus `json:"populateTranslationStatus,omitempty"`
	AllowAlternative          *bool              `json:"allowAlternative,omitempty"`
}

CreateTransMem struct for CreateTransMem

func NewCreateTransMem

func NewCreateTransMem(name string) *CreateTransMem

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

func NewCreateTransMemWithDefaults

func NewCreateTransMemWithDefaults() *CreateTransMem

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

func (*CreateTransMem) GetAllowAlternative

func (o *CreateTransMem) GetAllowAlternative() bool

GetAllowAlternative returns the AllowAlternative field value if set, zero value otherwise.

func (*CreateTransMem) GetAllowAlternativeOk

func (o *CreateTransMem) GetAllowAlternativeOk() (*bool, bool)

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

func (*CreateTransMem) GetContextLookup

func (o *CreateTransMem) GetContextLookup() bool

GetContextLookup returns the ContextLookup field value if set, zero value otherwise.

func (*CreateTransMem) GetContextLookupOk

func (o *CreateTransMem) GetContextLookupOk() (*bool, bool)

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

func (*CreateTransMem) GetDescription

func (o *CreateTransMem) GetDescription() string

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

func (*CreateTransMem) GetDescriptionOk

func (o *CreateTransMem) 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 (*CreateTransMem) GetFuzzyMatch

func (o *CreateTransMem) GetFuzzyMatch() bool

GetFuzzyMatch returns the FuzzyMatch field value if set, zero value otherwise.

func (*CreateTransMem) GetFuzzyMatchOk

func (o *CreateTransMem) GetFuzzyMatchOk() (*bool, bool)

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

func (*CreateTransMem) GetIsDisabled

func (o *CreateTransMem) GetIsDisabled() bool

GetIsDisabled returns the IsDisabled field value if set, zero value otherwise.

func (*CreateTransMem) GetIsDisabledOk

func (o *CreateTransMem) GetIsDisabledOk() (*bool, bool)

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

func (*CreateTransMem) GetIsPausedConsuming

func (o *CreateTransMem) GetIsPausedConsuming() bool

GetIsPausedConsuming returns the IsPausedConsuming field value if set, zero value otherwise.

func (*CreateTransMem) GetIsPausedConsumingOk

func (o *CreateTransMem) GetIsPausedConsumingOk() (*bool, bool)

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

func (*CreateTransMem) GetName

func (o *CreateTransMem) GetName() string

GetName returns the Name field value

func (*CreateTransMem) GetNameOk

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

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

func (*CreateTransMem) GetPopulateTranslationStatus

func (o *CreateTransMem) GetPopulateTranslationStatus() TranslationStatus

GetPopulateTranslationStatus returns the PopulateTranslationStatus field value if set, zero value otherwise.

func (*CreateTransMem) GetPopulateTranslationStatusOk

func (o *CreateTransMem) GetPopulateTranslationStatusOk() (*TranslationStatus, bool)

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

func (*CreateTransMem) GetProjectIds

func (o *CreateTransMem) GetProjectIds() []int64

GetProjectIds returns the ProjectIds field value if set, zero value otherwise.

func (*CreateTransMem) GetProjectIdsOk

func (o *CreateTransMem) GetProjectIdsOk() ([]int64, bool)

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

func (*CreateTransMem) HasAllowAlternative

func (o *CreateTransMem) HasAllowAlternative() bool

HasAllowAlternative returns a boolean if a field has been set.

func (*CreateTransMem) HasContextLookup

func (o *CreateTransMem) HasContextLookup() bool

HasContextLookup returns a boolean if a field has been set.

func (*CreateTransMem) HasDescription

func (o *CreateTransMem) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateTransMem) HasFuzzyMatch

func (o *CreateTransMem) HasFuzzyMatch() bool

HasFuzzyMatch returns a boolean if a field has been set.

func (*CreateTransMem) HasIsDisabled

func (o *CreateTransMem) HasIsDisabled() bool

HasIsDisabled returns a boolean if a field has been set.

func (*CreateTransMem) HasIsPausedConsuming

func (o *CreateTransMem) HasIsPausedConsuming() bool

HasIsPausedConsuming returns a boolean if a field has been set.

func (*CreateTransMem) HasPopulateTranslationStatus

func (o *CreateTransMem) HasPopulateTranslationStatus() bool

HasPopulateTranslationStatus returns a boolean if a field has been set.

func (*CreateTransMem) HasProjectIds

func (o *CreateTransMem) HasProjectIds() bool

HasProjectIds returns a boolean if a field has been set.

func (CreateTransMem) MarshalJSON

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

func (*CreateTransMem) SetAllowAlternative

func (o *CreateTransMem) SetAllowAlternative(v bool)

SetAllowAlternative gets a reference to the given bool and assigns it to the AllowAlternative field.

func (*CreateTransMem) SetContextLookup

func (o *CreateTransMem) SetContextLookup(v bool)

SetContextLookup gets a reference to the given bool and assigns it to the ContextLookup field.

func (*CreateTransMem) SetDescription

func (o *CreateTransMem) SetDescription(v string)

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

func (*CreateTransMem) SetFuzzyMatch

func (o *CreateTransMem) SetFuzzyMatch(v bool)

SetFuzzyMatch gets a reference to the given bool and assigns it to the FuzzyMatch field.

func (*CreateTransMem) SetIsDisabled

func (o *CreateTransMem) SetIsDisabled(v bool)

SetIsDisabled gets a reference to the given bool and assigns it to the IsDisabled field.

func (*CreateTransMem) SetIsPausedConsuming

func (o *CreateTransMem) SetIsPausedConsuming(v bool)

SetIsPausedConsuming gets a reference to the given bool and assigns it to the IsPausedConsuming field.

func (*CreateTransMem) SetName

func (o *CreateTransMem) SetName(v string)

SetName sets field value

func (*CreateTransMem) SetPopulateTranslationStatus

func (o *CreateTransMem) SetPopulateTranslationStatus(v TranslationStatus)

SetPopulateTranslationStatus gets a reference to the given TranslationStatus and assigns it to the PopulateTranslationStatus field.

func (*CreateTransMem) SetProjectIds

func (o *CreateTransMem) SetProjectIds(v []int64)

SetProjectIds gets a reference to the given []int64 and assigns it to the ProjectIds field.

type CreateView

type CreateView struct {
	Name    *string         `json:"name,omitempty"`
	GridId  *string         `json:"gridId,omitempty"`
	Columns []AddViewColumn `json:"columns,omitempty"`
}

CreateView struct for CreateView

func NewCreateView

func NewCreateView() *CreateView

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

func NewCreateViewWithDefaults

func NewCreateViewWithDefaults() *CreateView

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

func (*CreateView) GetColumns

func (o *CreateView) GetColumns() []AddViewColumn

GetColumns returns the Columns field value if set, zero value otherwise.

func (*CreateView) GetColumnsOk

func (o *CreateView) GetColumnsOk() ([]AddViewColumn, bool)

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

func (*CreateView) GetGridId

func (o *CreateView) GetGridId() string

GetGridId returns the GridId field value if set, zero value otherwise.

func (*CreateView) GetGridIdOk

func (o *CreateView) GetGridIdOk() (*string, bool)

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

func (*CreateView) GetName

func (o *CreateView) GetName() string

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

func (*CreateView) GetNameOk

func (o *CreateView) 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 (*CreateView) HasColumns

func (o *CreateView) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (*CreateView) HasGridId

func (o *CreateView) HasGridId() bool

HasGridId returns a boolean if a field has been set.

func (*CreateView) HasName

func (o *CreateView) HasName() bool

HasName returns a boolean if a field has been set.

func (CreateView) MarshalJSON

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

func (*CreateView) SetColumns

func (o *CreateView) SetColumns(v []AddViewColumn)

SetColumns gets a reference to the given []AddViewColumn and assigns it to the Columns field.

func (*CreateView) SetGridId

func (o *CreateView) SetGridId(v string)

SetGridId gets a reference to the given string and assigns it to the GridId field.

func (*CreateView) SetName

func (o *CreateView) SetName(v string)

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

type Database

type Database struct {
	Id          *string  `json:"id,omitempty"`
	Name        *string  `json:"name,omitempty"`
	Description *string  `json:"description,omitempty"`
	ProjectId   *int64   `json:"projectId,omitempty"`
	Grids       []Grid   `json:"grids,omitempty"`
	Views       []View   `json:"views,omitempty"`
	Project     *Project `json:"project,omitempty"`
	Groups      []Group  `json:"groups,omitempty"`
}

Database struct for Database

func NewDatabase

func NewDatabase() *Database

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

func NewDatabaseWithDefaults

func NewDatabaseWithDefaults() *Database

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

func (*Database) GetDescription

func (o *Database) GetDescription() string

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

func (*Database) GetDescriptionOk

func (o *Database) 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 (*Database) GetGrids

func (o *Database) GetGrids() []Grid

GetGrids returns the Grids field value if set, zero value otherwise.

func (*Database) GetGridsOk

func (o *Database) GetGridsOk() ([]Grid, bool)

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

func (*Database) GetGroups

func (o *Database) GetGroups() []Group

GetGroups returns the Groups field value if set, zero value otherwise.

func (*Database) GetGroupsOk

func (o *Database) GetGroupsOk() ([]Group, bool)

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

func (*Database) GetId

func (o *Database) GetId() string

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

func (*Database) GetIdOk

func (o *Database) 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 (*Database) GetName

func (o *Database) GetName() string

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

func (*Database) GetNameOk

func (o *Database) 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 (*Database) GetProject

func (o *Database) GetProject() Project

GetProject returns the Project field value if set, zero value otherwise.

func (*Database) GetProjectId

func (o *Database) GetProjectId() int64

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*Database) GetProjectIdOk

func (o *Database) GetProjectIdOk() (*int64, bool)

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

func (*Database) GetProjectOk

func (o *Database) GetProjectOk() (*Project, bool)

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

func (*Database) GetViews

func (o *Database) GetViews() []View

GetViews returns the Views field value if set, zero value otherwise.

func (*Database) GetViewsOk

func (o *Database) GetViewsOk() ([]View, bool)

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

func (*Database) HasDescription

func (o *Database) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Database) HasGrids

func (o *Database) HasGrids() bool

HasGrids returns a boolean if a field has been set.

func (*Database) HasGroups

func (o *Database) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*Database) HasId

func (o *Database) HasId() bool

HasId returns a boolean if a field has been set.

func (*Database) HasName

func (o *Database) HasName() bool

HasName returns a boolean if a field has been set.

func (*Database) HasProject

func (o *Database) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*Database) HasProjectId

func (o *Database) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*Database) HasViews

func (o *Database) HasViews() bool

HasViews returns a boolean if a field has been set.

func (Database) MarshalJSON

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

func (*Database) SetDescription

func (o *Database) SetDescription(v string)

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

func (*Database) SetGrids

func (o *Database) SetGrids(v []Grid)

SetGrids gets a reference to the given []Grid and assigns it to the Grids field.

func (*Database) SetGroups

func (o *Database) SetGroups(v []Group)

SetGroups gets a reference to the given []Group and assigns it to the Groups field.

func (*Database) SetId

func (o *Database) SetId(v string)

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

func (*Database) SetName

func (o *Database) SetName(v string)

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

func (*Database) SetProject

func (o *Database) SetProject(v Project)

SetProject gets a reference to the given Project and assigns it to the Project field.

func (*Database) SetProjectId

func (o *Database) SetProjectId(v int64)

SetProjectId gets a reference to the given int64 and assigns it to the ProjectId field.

func (*Database) SetViews

func (o *Database) SetViews(v []View)

SetViews gets a reference to the given []View and assigns it to the Views field.

type DatabaseApiCreateRequest

type DatabaseApiCreateRequest struct {
	ApiService *DatabaseApiService
	// contains filtered or unexported fields
}

func (DatabaseApiCreateRequest) Body

body

func (DatabaseApiCreateRequest) Execute

func (DatabaseApiCreateRequest) ProjectId

projectId

type DatabaseApiDeleteRequest

type DatabaseApiDeleteRequest struct {
	ApiService *DatabaseApiService
	// contains filtered or unexported fields
}

func (DatabaseApiDeleteRequest) Execute

func (r DatabaseApiDeleteRequest) Execute() (*http.Response, error)

type DatabaseApiDuplicateRequest

type DatabaseApiDuplicateRequest struct {
	ApiService *DatabaseApiService
	// contains filtered or unexported fields
}

func (DatabaseApiDuplicateRequest) Body

body

func (DatabaseApiDuplicateRequest) Execute

func (DatabaseApiDuplicateRequest) ProjectId

projectId

type DatabaseApiGetRequest

type DatabaseApiGetRequest struct {
	ApiService *DatabaseApiService
	// contains filtered or unexported fields
}

func (DatabaseApiGetRequest) Execute

func (r DatabaseApiGetRequest) Execute() (*Database, *http.Response, error)

type DatabaseApiListRequest

type DatabaseApiListRequest struct {
	ApiService *DatabaseApiService
	// contains filtered or unexported fields
}

func (DatabaseApiListRequest) Execute

func (r DatabaseApiListRequest) Execute() ([]Database, *http.Response, error)

func (DatabaseApiListRequest) Expand

expand

func (DatabaseApiListRequest) Page

page

func (DatabaseApiListRequest) ProjectId

func (r DatabaseApiListRequest) ProjectId(projectId int64) DatabaseApiListRequest

projectId

func (DatabaseApiListRequest) Search

search

func (DatabaseApiListRequest) Sort

sort

type DatabaseApiService

type DatabaseApiService service

DatabaseApiService DatabaseApi service

func (*DatabaseApiService) Create

Create create

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

func (*DatabaseApiService) CreateExecute

Execute executes the request

@return Database

func (*DatabaseApiService) Delete

Delete delete

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

func (*DatabaseApiService) DeleteExecute

Execute executes the request

func (*DatabaseApiService) Duplicate

Duplicate duplicate

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

func (*DatabaseApiService) DuplicateExecute

Execute executes the request

@return Database

func (*DatabaseApiService) Get

Get get

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

func (*DatabaseApiService) GetExecute

Execute executes the request

@return Database

func (*DatabaseApiService) List

List list

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

func (*DatabaseApiService) ListExecute

Execute executes the request

@return []Database

func (*DatabaseApiService) Update

Update update

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

func (*DatabaseApiService) UpdateExecute

Execute executes the request

@return Database

type DatabaseApiUpdateRequest

type DatabaseApiUpdateRequest struct {
	ApiService *DatabaseApiService
	// contains filtered or unexported fields
}

func (DatabaseApiUpdateRequest) Body

body

func (DatabaseApiUpdateRequest) Execute

type DateTimeFormat

type DateTimeFormat struct {
	DateFormat   *string `json:"dateFormat,omitempty"`
	TimeFormat   *string `json:"timeFormat,omitempty"`
	ZoneOffset   *string `json:"zoneOffset,omitempty"`
	ShowTimeZone *bool   `json:"showTimeZone,omitempty"`
}

DateTimeFormat struct for DateTimeFormat

func NewDateTimeFormat

func NewDateTimeFormat() *DateTimeFormat

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

func NewDateTimeFormatWithDefaults

func NewDateTimeFormatWithDefaults() *DateTimeFormat

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

func (*DateTimeFormat) GetDateFormat

func (o *DateTimeFormat) GetDateFormat() string

GetDateFormat returns the DateFormat field value if set, zero value otherwise.

func (*DateTimeFormat) GetDateFormatOk

func (o *DateTimeFormat) GetDateFormatOk() (*string, bool)

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

func (*DateTimeFormat) GetShowTimeZone

func (o *DateTimeFormat) GetShowTimeZone() bool

GetShowTimeZone returns the ShowTimeZone field value if set, zero value otherwise.

func (*DateTimeFormat) GetShowTimeZoneOk

func (o *DateTimeFormat) GetShowTimeZoneOk() (*bool, bool)

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

func (*DateTimeFormat) GetTimeFormat

func (o *DateTimeFormat) GetTimeFormat() string

GetTimeFormat returns the TimeFormat field value if set, zero value otherwise.

func (*DateTimeFormat) GetTimeFormatOk

func (o *DateTimeFormat) GetTimeFormatOk() (*string, bool)

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

func (*DateTimeFormat) GetZoneOffset

func (o *DateTimeFormat) GetZoneOffset() string

GetZoneOffset returns the ZoneOffset field value if set, zero value otherwise.

func (*DateTimeFormat) GetZoneOffsetOk

func (o *DateTimeFormat) GetZoneOffsetOk() (*string, bool)

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

func (*DateTimeFormat) HasDateFormat

func (o *DateTimeFormat) HasDateFormat() bool

HasDateFormat returns a boolean if a field has been set.

func (*DateTimeFormat) HasShowTimeZone

func (o *DateTimeFormat) HasShowTimeZone() bool

HasShowTimeZone returns a boolean if a field has been set.

func (*DateTimeFormat) HasTimeFormat

func (o *DateTimeFormat) HasTimeFormat() bool

HasTimeFormat returns a boolean if a field has been set.

func (*DateTimeFormat) HasZoneOffset

func (o *DateTimeFormat) HasZoneOffset() bool

HasZoneOffset returns a boolean if a field has been set.

func (DateTimeFormat) MarshalJSON

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

func (*DateTimeFormat) SetDateFormat

func (o *DateTimeFormat) SetDateFormat(v string)

SetDateFormat gets a reference to the given string and assigns it to the DateFormat field.

func (*DateTimeFormat) SetShowTimeZone

func (o *DateTimeFormat) SetShowTimeZone(v bool)

SetShowTimeZone gets a reference to the given bool and assigns it to the ShowTimeZone field.

func (*DateTimeFormat) SetTimeFormat

func (o *DateTimeFormat) SetTimeFormat(v string)

SetTimeFormat gets a reference to the given string and assigns it to the TimeFormat field.

func (*DateTimeFormat) SetZoneOffset

func (o *DateTimeFormat) SetZoneOffset(v string)

SetZoneOffset gets a reference to the given string and assigns it to the ZoneOffset field.

type DeleteDependency

type DeleteDependency struct {
	Ids []string `json:"ids,omitempty"`
}

DeleteDependency struct for DeleteDependency

func NewDeleteDependency

func NewDeleteDependency() *DeleteDependency

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

func NewDeleteDependencyWithDefaults

func NewDeleteDependencyWithDefaults() *DeleteDependency

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

func (*DeleteDependency) GetIds

func (o *DeleteDependency) GetIds() []string

GetIds returns the Ids field value if set, zero value otherwise.

func (*DeleteDependency) GetIdsOk

func (o *DeleteDependency) GetIdsOk() ([]string, bool)

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

func (*DeleteDependency) HasIds

func (o *DeleteDependency) HasIds() bool

HasIds returns a boolean if a field has been set.

func (DeleteDependency) MarshalJSON

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

func (*DeleteDependency) SetIds

func (o *DeleteDependency) SetIds(v []string)

SetIds gets a reference to the given []string and assigns it to the Ids field.

type DeleteFile

type DeleteFile struct {
	Ids []string `json:"ids"`
}

DeleteFile struct for DeleteFile

func NewDeleteFile

func NewDeleteFile(ids []string) *DeleteFile

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

func NewDeleteFileWithDefaults

func NewDeleteFileWithDefaults() *DeleteFile

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

func (*DeleteFile) GetIds

func (o *DeleteFile) GetIds() []string

GetIds returns the Ids field value

func (*DeleteFile) GetIdsOk

func (o *DeleteFile) GetIdsOk() ([]string, bool)

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

func (DeleteFile) MarshalJSON

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

func (*DeleteFile) SetIds

func (o *DeleteFile) SetIds(v []string)

SetIds sets field value

type DeletePath

type DeletePath struct {
	Paths []string `json:"paths,omitempty"`
}

DeletePath struct for DeletePath

func NewDeletePath

func NewDeletePath() *DeletePath

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

func NewDeletePathWithDefaults

func NewDeletePathWithDefaults() *DeletePath

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

func (*DeletePath) GetPaths

func (o *DeletePath) GetPaths() []string

GetPaths returns the Paths field value if set, zero value otherwise.

func (*DeletePath) GetPathsOk

func (o *DeletePath) GetPathsOk() ([]string, bool)

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

func (*DeletePath) HasPaths

func (o *DeletePath) HasPaths() bool

HasPaths returns a boolean if a field has been set.

func (DeletePath) MarshalJSON

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

func (*DeletePath) SetPaths

func (o *DeletePath) SetPaths(v []string)

SetPaths gets a reference to the given []string and assigns it to the Paths field.

type DeleteRecord

type DeleteRecord struct {
	Ids         []string                  `json:"ids,omitempty"`
	Identifiers []RecordIdentifierWrapper `json:"identifiers,omitempty"`
}

DeleteRecord struct for DeleteRecord

func NewDeleteRecord

func NewDeleteRecord() *DeleteRecord

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

func NewDeleteRecordWithDefaults

func NewDeleteRecordWithDefaults() *DeleteRecord

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

func (*DeleteRecord) GetIdentifiers

func (o *DeleteRecord) GetIdentifiers() []RecordIdentifierWrapper

GetIdentifiers returns the Identifiers field value if set, zero value otherwise.

func (*DeleteRecord) GetIdentifiersOk

func (o *DeleteRecord) GetIdentifiersOk() ([]RecordIdentifierWrapper, bool)

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

func (*DeleteRecord) GetIds

func (o *DeleteRecord) GetIds() []string

GetIds returns the Ids field value if set, zero value otherwise.

func (*DeleteRecord) GetIdsOk

func (o *DeleteRecord) GetIdsOk() ([]string, bool)

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

func (*DeleteRecord) HasIdentifiers

func (o *DeleteRecord) HasIdentifiers() bool

HasIdentifiers returns a boolean if a field has been set.

func (*DeleteRecord) HasIds

func (o *DeleteRecord) HasIds() bool

HasIds returns a boolean if a field has been set.

func (DeleteRecord) MarshalJSON

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

func (*DeleteRecord) SetIdentifiers

func (o *DeleteRecord) SetIdentifiers(v []RecordIdentifierWrapper)

SetIdentifiers gets a reference to the given []RecordIdentifierWrapper and assigns it to the Identifiers field.

func (*DeleteRecord) SetIds

func (o *DeleteRecord) SetIds(v []string)

SetIds gets a reference to the given []string and assigns it to the Ids field.

type Dependency

type Dependency struct {
	Id             *string `json:"id,omitempty"`
	SourceColumnId string  `json:"sourceColumnId"`
	TargetColumnId string  `json:"targetColumnId"`
}

Dependency struct for Dependency

func NewDependency

func NewDependency(sourceColumnId string, targetColumnId string) *Dependency

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

func NewDependencyWithDefaults

func NewDependencyWithDefaults() *Dependency

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

func (*Dependency) GetId

func (o *Dependency) GetId() string

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

func (*Dependency) GetIdOk

func (o *Dependency) 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 (*Dependency) GetSourceColumnId

func (o *Dependency) GetSourceColumnId() string

GetSourceColumnId returns the SourceColumnId field value

func (*Dependency) GetSourceColumnIdOk

func (o *Dependency) GetSourceColumnIdOk() (*string, bool)

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

func (*Dependency) GetTargetColumnId

func (o *Dependency) GetTargetColumnId() string

GetTargetColumnId returns the TargetColumnId field value

func (*Dependency) GetTargetColumnIdOk

func (o *Dependency) GetTargetColumnIdOk() (*string, bool)

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

func (*Dependency) HasId

func (o *Dependency) HasId() bool

HasId returns a boolean if a field has been set.

func (Dependency) MarshalJSON

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

func (*Dependency) SetId

func (o *Dependency) SetId(v string)

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

func (*Dependency) SetSourceColumnId

func (o *Dependency) SetSourceColumnId(v string)

SetSourceColumnId sets field value

func (*Dependency) SetTargetColumnId

func (o *Dependency) SetTargetColumnId(v string)

SetTargetColumnId sets field value

type ExportFileHeader

type ExportFileHeader string

ExportFileHeader the model 'ExportFileHeader'

const (
	EXPORTFILEHEADER_none       ExportFileHeader = "none"
	EXPORTFILEHEADER_columnName ExportFileHeader = "columnName"
	EXPORTFILEHEADER_columnId   ExportFileHeader = "columnId"
)

List of ExportFileHeader

func NewExportFileHeaderFromValue

func NewExportFileHeaderFromValue(v string) (*ExportFileHeader, error)

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

func (ExportFileHeader) IsValid

func (v ExportFileHeader) IsValid() bool

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

func (ExportFileHeader) Ptr

Ptr returns reference to ExportFileHeader value

func (*ExportFileHeader) UnmarshalJSON

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

type ExportFormat

type ExportFormat string

ExportFormat the model 'ExportFormat'

const (
	EXPORTFORMAT_TMX  ExportFormat = "tmx"
	EXPORTFORMAT_CSV  ExportFormat = "csv"
	EXPORTFORMAT_XLSX ExportFormat = "xlsx"
)

List of ExportFormat

func NewExportFormatFromValue

func NewExportFormatFromValue(v string) (*ExportFormat, error)

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

func (ExportFormat) IsValid

func (v ExportFormat) IsValid() bool

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

func (ExportFormat) Ptr

func (v ExportFormat) Ptr() *ExportFormat

Ptr returns reference to ExportFormat value

func (*ExportFormat) UnmarshalJSON

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

type FetchFileOption

type FetchFileOption string

FetchFileOption the model 'FetchFileOption'

const (
	FETCHFILEOPTION_all  FetchFileOption = "all"
	FETCHFILEOPTION_id   FetchFileOption = "id"
	FETCHFILEOPTION_name FetchFileOption = "name"
)

List of FetchFileOption

func NewFetchFileOptionFromValue

func NewFetchFileOptionFromValue(v string) (*FetchFileOption, error)

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

func (FetchFileOption) IsValid

func (v FetchFileOption) IsValid() bool

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

func (FetchFileOption) Ptr

Ptr returns reference to FetchFileOption value

func (*FetchFileOption) UnmarshalJSON

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

type FetchRecordHistoryRequest

type FetchRecordHistoryRequest struct {
	ColumnIds         []string `json:"columnIds,omitempty"`
	Query             *string  `json:"query,omitempty"`
	Sort              *string  `json:"sort,omitempty"`
	GroupBy           []string `json:"groupBy,omitempty"`
	Page              *string  `json:"page,omitempty"`
	FetchOptions      *string  `json:"fetchOptions,omitempty"`
	IncludeSystemUser *bool    `json:"includeSystemUser,omitempty"`
}

FetchRecordHistoryRequest struct for FetchRecordHistoryRequest

func NewFetchRecordHistoryRequest

func NewFetchRecordHistoryRequest() *FetchRecordHistoryRequest

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

func NewFetchRecordHistoryRequestWithDefaults

func NewFetchRecordHistoryRequestWithDefaults() *FetchRecordHistoryRequest

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

func (*FetchRecordHistoryRequest) GetColumnIds

func (o *FetchRecordHistoryRequest) GetColumnIds() []string

GetColumnIds returns the ColumnIds field value if set, zero value otherwise.

func (*FetchRecordHistoryRequest) GetColumnIdsOk

func (o *FetchRecordHistoryRequest) GetColumnIdsOk() ([]string, bool)

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

func (*FetchRecordHistoryRequest) GetFetchOptions

func (o *FetchRecordHistoryRequest) GetFetchOptions() string

GetFetchOptions returns the FetchOptions field value if set, zero value otherwise.

func (*FetchRecordHistoryRequest) GetFetchOptionsOk

func (o *FetchRecordHistoryRequest) GetFetchOptionsOk() (*string, bool)

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

func (*FetchRecordHistoryRequest) GetGroupBy

func (o *FetchRecordHistoryRequest) GetGroupBy() []string

GetGroupBy returns the GroupBy field value if set, zero value otherwise.

func (*FetchRecordHistoryRequest) GetGroupByOk

func (o *FetchRecordHistoryRequest) GetGroupByOk() ([]string, bool)

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

func (*FetchRecordHistoryRequest) GetIncludeSystemUser

func (o *FetchRecordHistoryRequest) GetIncludeSystemUser() bool

GetIncludeSystemUser returns the IncludeSystemUser field value if set, zero value otherwise.

func (*FetchRecordHistoryRequest) GetIncludeSystemUserOk

func (o *FetchRecordHistoryRequest) GetIncludeSystemUserOk() (*bool, bool)

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

func (*FetchRecordHistoryRequest) GetPage

func (o *FetchRecordHistoryRequest) GetPage() string

GetPage returns the Page field value if set, zero value otherwise.

func (*FetchRecordHistoryRequest) GetPageOk

func (o *FetchRecordHistoryRequest) GetPageOk() (*string, bool)

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

func (*FetchRecordHistoryRequest) GetQuery

func (o *FetchRecordHistoryRequest) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*FetchRecordHistoryRequest) GetQueryOk

func (o *FetchRecordHistoryRequest) GetQueryOk() (*string, bool)

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

func (*FetchRecordHistoryRequest) GetSort

func (o *FetchRecordHistoryRequest) GetSort() string

GetSort returns the Sort field value if set, zero value otherwise.

func (*FetchRecordHistoryRequest) GetSortOk

func (o *FetchRecordHistoryRequest) GetSortOk() (*string, bool)

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

func (*FetchRecordHistoryRequest) HasColumnIds

func (o *FetchRecordHistoryRequest) HasColumnIds() bool

HasColumnIds returns a boolean if a field has been set.

func (*FetchRecordHistoryRequest) HasFetchOptions

func (o *FetchRecordHistoryRequest) HasFetchOptions() bool

HasFetchOptions returns a boolean if a field has been set.

func (*FetchRecordHistoryRequest) HasGroupBy

func (o *FetchRecordHistoryRequest) HasGroupBy() bool

HasGroupBy returns a boolean if a field has been set.

func (*FetchRecordHistoryRequest) HasIncludeSystemUser

func (o *FetchRecordHistoryRequest) HasIncludeSystemUser() bool

HasIncludeSystemUser returns a boolean if a field has been set.

func (*FetchRecordHistoryRequest) HasPage

func (o *FetchRecordHistoryRequest) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*FetchRecordHistoryRequest) HasQuery

func (o *FetchRecordHistoryRequest) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*FetchRecordHistoryRequest) HasSort

func (o *FetchRecordHistoryRequest) HasSort() bool

HasSort returns a boolean if a field has been set.

func (FetchRecordHistoryRequest) MarshalJSON

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

func (*FetchRecordHistoryRequest) SetColumnIds

func (o *FetchRecordHistoryRequest) SetColumnIds(v []string)

SetColumnIds gets a reference to the given []string and assigns it to the ColumnIds field.

func (*FetchRecordHistoryRequest) SetFetchOptions

func (o *FetchRecordHistoryRequest) SetFetchOptions(v string)

SetFetchOptions gets a reference to the given string and assigns it to the FetchOptions field.

func (*FetchRecordHistoryRequest) SetGroupBy

func (o *FetchRecordHistoryRequest) SetGroupBy(v []string)

SetGroupBy gets a reference to the given []string and assigns it to the GroupBy field.

func (*FetchRecordHistoryRequest) SetIncludeSystemUser

func (o *FetchRecordHistoryRequest) SetIncludeSystemUser(v bool)

SetIncludeSystemUser gets a reference to the given bool and assigns it to the IncludeSystemUser field.

func (*FetchRecordHistoryRequest) SetPage

func (o *FetchRecordHistoryRequest) SetPage(v string)

SetPage gets a reference to the given string and assigns it to the Page field.

func (*FetchRecordHistoryRequest) SetQuery

func (o *FetchRecordHistoryRequest) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*FetchRecordHistoryRequest) SetSort

func (o *FetchRecordHistoryRequest) SetSort(v string)

SetSort gets a reference to the given string and assigns it to the Sort field.

type FileCategory

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

FileCategory struct for FileCategory

func NewFileCategory

func NewFileCategory() *FileCategory

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

func NewFileCategoryWithDefaults

func NewFileCategoryWithDefaults() *FileCategory

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

func (*FileCategory) GetId

func (o *FileCategory) GetId() string

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

func (*FileCategory) GetIdOk

func (o *FileCategory) 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 (*FileCategory) GetName

func (o *FileCategory) GetName() string

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

func (*FileCategory) GetNameOk

func (o *FileCategory) 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 (*FileCategory) HasId

func (o *FileCategory) HasId() bool

HasId returns a boolean if a field has been set.

func (*FileCategory) HasName

func (o *FileCategory) HasName() bool

HasName returns a boolean if a field has been set.

func (FileCategory) MarshalJSON

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

func (*FileCategory) SetId

func (o *FileCategory) SetId(v string)

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

func (*FileCategory) SetName

func (o *FileCategory) SetName(v string)

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

type FilterField

type FilterField struct {
	CaseSensitive     *bool                    `json:"caseSensitive,omitempty"`
	ColumnId          *string                  `json:"columnId,omitempty"`
	DynamicColumn     *string                  `json:"dynamicColumn,omitempty"`
	Operator          string                   `json:"operator"`
	QueryPathTagViaId *bool                    `json:"queryPathTagViaId,omitempty"`
	SubField          *string                  `json:"subField,omitempty"`
	Values            []map[string]interface{} `json:"values,omitempty"`
}

FilterField struct for FilterField

func NewFilterField

func NewFilterField(operator string) *FilterField

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

func NewFilterFieldWithDefaults

func NewFilterFieldWithDefaults() *FilterField

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

func (*FilterField) GetCaseSensitive

func (o *FilterField) GetCaseSensitive() bool

GetCaseSensitive returns the CaseSensitive field value if set, zero value otherwise.

func (*FilterField) GetCaseSensitiveOk

func (o *FilterField) GetCaseSensitiveOk() (*bool, bool)

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

func (*FilterField) GetColumnId

func (o *FilterField) GetColumnId() string

GetColumnId returns the ColumnId field value if set, zero value otherwise.

func (*FilterField) GetColumnIdOk

func (o *FilterField) GetColumnIdOk() (*string, bool)

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

func (*FilterField) GetDynamicColumn

func (o *FilterField) GetDynamicColumn() string

GetDynamicColumn returns the DynamicColumn field value if set, zero value otherwise.

func (*FilterField) GetDynamicColumnOk

func (o *FilterField) GetDynamicColumnOk() (*string, bool)

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

func (*FilterField) GetOperator

func (o *FilterField) GetOperator() string

GetOperator returns the Operator field value

func (*FilterField) GetOperatorOk

func (o *FilterField) GetOperatorOk() (*string, bool)

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

func (*FilterField) GetQueryPathTagViaId

func (o *FilterField) GetQueryPathTagViaId() bool

GetQueryPathTagViaId returns the QueryPathTagViaId field value if set, zero value otherwise.

func (*FilterField) GetQueryPathTagViaIdOk

func (o *FilterField) GetQueryPathTagViaIdOk() (*bool, bool)

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

func (*FilterField) GetSubField

func (o *FilterField) GetSubField() string

GetSubField returns the SubField field value if set, zero value otherwise.

func (*FilterField) GetSubFieldOk

func (o *FilterField) GetSubFieldOk() (*string, bool)

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

func (*FilterField) GetValues

func (o *FilterField) GetValues() []map[string]interface{}

GetValues returns the Values field value if set, zero value otherwise.

func (*FilterField) GetValuesOk

func (o *FilterField) GetValuesOk() ([]map[string]interface{}, bool)

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

func (*FilterField) HasCaseSensitive

func (o *FilterField) HasCaseSensitive() bool

HasCaseSensitive returns a boolean if a field has been set.

func (*FilterField) HasColumnId

func (o *FilterField) HasColumnId() bool

HasColumnId returns a boolean if a field has been set.

func (*FilterField) HasDynamicColumn

func (o *FilterField) HasDynamicColumn() bool

HasDynamicColumn returns a boolean if a field has been set.

func (*FilterField) HasQueryPathTagViaId

func (o *FilterField) HasQueryPathTagViaId() bool

HasQueryPathTagViaId returns a boolean if a field has been set.

func (*FilterField) HasSubField

func (o *FilterField) HasSubField() bool

HasSubField returns a boolean if a field has been set.

func (*FilterField) HasValues

func (o *FilterField) HasValues() bool

HasValues returns a boolean if a field has been set.

func (FilterField) MarshalJSON

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

func (*FilterField) SetCaseSensitive

func (o *FilterField) SetCaseSensitive(v bool)

SetCaseSensitive gets a reference to the given bool and assigns it to the CaseSensitive field.

func (*FilterField) SetColumnId

func (o *FilterField) SetColumnId(v string)

SetColumnId gets a reference to the given string and assigns it to the ColumnId field.

func (*FilterField) SetDynamicColumn

func (o *FilterField) SetDynamicColumn(v string)

SetDynamicColumn gets a reference to the given string and assigns it to the DynamicColumn field.

func (*FilterField) SetOperator

func (o *FilterField) SetOperator(v string)

SetOperator sets field value

func (*FilterField) SetQueryPathTagViaId

func (o *FilterField) SetQueryPathTagViaId(v bool)

SetQueryPathTagViaId gets a reference to the given bool and assigns it to the QueryPathTagViaId field.

func (*FilterField) SetSubField

func (o *FilterField) SetSubField(v string)

SetSubField gets a reference to the given string and assigns it to the SubField field.

func (*FilterField) SetValues

func (o *FilterField) SetValues(v []map[string]interface{})

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

type Formula

type Formula struct {
	FormulaText                   string  `json:"formulaText"`
	AlwaysFormatResultValueAsList *bool   `json:"alwaysFormatResultValueAsList,omitempty"`
	DetectResultValueType         *string `json:"detectResultValueType,omitempty"`
}

Formula struct for Formula

func NewFormula

func NewFormula(formulaText string) *Formula

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

func NewFormulaWithDefaults

func NewFormulaWithDefaults() *Formula

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

func (*Formula) GetAlwaysFormatResultValueAsList

func (o *Formula) GetAlwaysFormatResultValueAsList() bool

GetAlwaysFormatResultValueAsList returns the AlwaysFormatResultValueAsList field value if set, zero value otherwise.

func (*Formula) GetAlwaysFormatResultValueAsListOk

func (o *Formula) GetAlwaysFormatResultValueAsListOk() (*bool, bool)

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

func (*Formula) GetDetectResultValueType

func (o *Formula) GetDetectResultValueType() string

GetDetectResultValueType returns the DetectResultValueType field value if set, zero value otherwise.

func (*Formula) GetDetectResultValueTypeOk

func (o *Formula) GetDetectResultValueTypeOk() (*string, bool)

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

func (*Formula) GetFormulaText

func (o *Formula) GetFormulaText() string

GetFormulaText returns the FormulaText field value

func (*Formula) GetFormulaTextOk

func (o *Formula) GetFormulaTextOk() (*string, bool)

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

func (*Formula) HasAlwaysFormatResultValueAsList

func (o *Formula) HasAlwaysFormatResultValueAsList() bool

HasAlwaysFormatResultValueAsList returns a boolean if a field has been set.

func (*Formula) HasDetectResultValueType

func (o *Formula) HasDetectResultValueType() bool

HasDetectResultValueType returns a boolean if a field has been set.

func (Formula) MarshalJSON

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

func (*Formula) SetAlwaysFormatResultValueAsList

func (o *Formula) SetAlwaysFormatResultValueAsList(v bool)

SetAlwaysFormatResultValueAsList gets a reference to the given bool and assigns it to the AlwaysFormatResultValueAsList field.

func (*Formula) SetDetectResultValueType

func (o *Formula) SetDetectResultValueType(v string)

SetDetectResultValueType gets a reference to the given string and assigns it to the DetectResultValueType field.

func (*Formula) SetFormulaText

func (o *Formula) SetFormulaText(v string)

SetFormulaText sets field value

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 Glossary

type Glossary struct {
	Id          *string           `json:"id,omitempty"`
	Name        *string           `json:"name,omitempty"`
	Description *string           `json:"description,omitempty"`
	Langs       []string          `json:"langs,omitempty"`
	Projects    []GlossaryProject `json:"projects,omitempty"`
}

Glossary struct for Glossary

func NewGlossary

func NewGlossary() *Glossary

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

func NewGlossaryWithDefaults

func NewGlossaryWithDefaults() *Glossary

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

func (*Glossary) GetDescription

func (o *Glossary) GetDescription() string

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

func (*Glossary) GetDescriptionOk

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

func (o *Glossary) GetId() string

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

func (*Glossary) GetIdOk

func (o *Glossary) 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 (*Glossary) GetLangs

func (o *Glossary) GetLangs() []string

GetLangs returns the Langs field value if set, zero value otherwise.

func (*Glossary) GetLangsOk

func (o *Glossary) GetLangsOk() ([]string, bool)

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

func (*Glossary) GetName

func (o *Glossary) GetName() string

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

func (*Glossary) GetNameOk

func (o *Glossary) 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 (*Glossary) GetProjects

func (o *Glossary) GetProjects() []GlossaryProject

GetProjects returns the Projects field value if set, zero value otherwise.

func (*Glossary) GetProjectsOk

func (o *Glossary) GetProjectsOk() ([]GlossaryProject, bool)

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

func (*Glossary) HasDescription

func (o *Glossary) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Glossary) HasId

func (o *Glossary) HasId() bool

HasId returns a boolean if a field has been set.

func (*Glossary) HasLangs

func (o *Glossary) HasLangs() bool

HasLangs returns a boolean if a field has been set.

func (*Glossary) HasName

func (o *Glossary) HasName() bool

HasName returns a boolean if a field has been set.

func (*Glossary) HasProjects

func (o *Glossary) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (Glossary) MarshalJSON

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

func (*Glossary) SetDescription

func (o *Glossary) SetDescription(v string)

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

func (*Glossary) SetId

func (o *Glossary) SetId(v string)

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

func (*Glossary) SetLangs

func (o *Glossary) SetLangs(v []string)

SetLangs gets a reference to the given []string and assigns it to the Langs field.

func (*Glossary) SetName

func (o *Glossary) SetName(v string)

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

func (*Glossary) SetProjects

func (o *Glossary) SetProjects(v []GlossaryProject)

SetProjects gets a reference to the given []GlossaryProject and assigns it to the Projects field.

type GlossaryApiCreateRequest

type GlossaryApiCreateRequest struct {
	ApiService *GlossaryApiService
	// contains filtered or unexported fields
}

func (GlossaryApiCreateRequest) CreateGlossary

func (r GlossaryApiCreateRequest) CreateGlossary(createGlossary CreateGlossary) GlossaryApiCreateRequest

func (GlossaryApiCreateRequest) Execute

type GlossaryApiDeleteRequest

type GlossaryApiDeleteRequest struct {
	ApiService *GlossaryApiService
	// contains filtered or unexported fields
}

func (GlossaryApiDeleteRequest) Execute

func (r GlossaryApiDeleteRequest) Execute() (*http.Response, error)

type GlossaryApiExportFileRequest

type GlossaryApiExportFileRequest struct {
	ApiService *GlossaryApiService
	// contains filtered or unexported fields
}

func (GlossaryApiExportFileRequest) Execute

func (GlossaryApiExportFileRequest) Fields

func (GlossaryApiExportFileRequest) Format

func (GlossaryApiExportFileRequest) Langs

type GlossaryApiGetAllRequest

type GlossaryApiGetAllRequest struct {
	ApiService *GlossaryApiService
	// contains filtered or unexported fields
}

func (GlossaryApiGetAllRequest) Execute

type GlossaryApiGetRequest

type GlossaryApiGetRequest struct {
	ApiService *GlossaryApiService
	// contains filtered or unexported fields
}

func (GlossaryApiGetRequest) Execute

func (r GlossaryApiGetRequest) Execute() (*Glossary, *http.Response, error)

type GlossaryApiImportFileRequest

type GlossaryApiImportFileRequest struct {
	ApiService *GlossaryApiService
	// contains filtered or unexported fields
}

func (GlossaryApiImportFileRequest) Execute

func (GlossaryApiImportFileRequest) File

func (GlossaryApiImportFileRequest) ImportOption

type GlossaryApiService

type GlossaryApiService service

GlossaryApiService GlossaryApi service

func (*GlossaryApiService) Create

Create Create a new glossary

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

func (*GlossaryApiService) CreateExecute

Execute executes the request

@return Glossary

func (*GlossaryApiService) Delete

Delete Delete a glossary

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

func (*GlossaryApiService) DeleteExecute

Execute executes the request

func (*GlossaryApiService) ExportFile

ExportFile Export a glossary

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

func (*GlossaryApiService) ExportFileExecute

Execute executes the request

func (*GlossaryApiService) Get

Get get glossary info

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

func (*GlossaryApiService) GetAll

GetAll List all glossaries

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

func (*GlossaryApiService) GetAllExecute

Execute executes the request

@return []Glossary

func (*GlossaryApiService) GetExecute

Execute executes the request

@return Glossary

func (*GlossaryApiService) ImportFile

ImportFile Import a glossary from file

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

func (*GlossaryApiService) ImportFileExecute

Execute executes the request

func (*GlossaryApiService) Update

Update Update glossary info

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

func (*GlossaryApiService) UpdateExecute

Execute executes the request

type GlossaryApiUpdateRequest

type GlossaryApiUpdateRequest struct {
	ApiService *GlossaryApiService
	// contains filtered or unexported fields
}

func (GlossaryApiUpdateRequest) Execute

func (r GlossaryApiUpdateRequest) Execute() (*http.Response, error)

func (GlossaryApiUpdateRequest) UpdateGlossary

func (r GlossaryApiUpdateRequest) UpdateGlossary(updateGlossary UpdateGlossary) GlossaryApiUpdateRequest

type GlossaryExportFormat

type GlossaryExportFormat string

GlossaryExportFormat the model 'GlossaryExportFormat'

const (
	GLOSSARYEXPORTFORMAT_CSV  GlossaryExportFormat = "csv"
	GLOSSARYEXPORTFORMAT_XLS  GlossaryExportFormat = "xls"
	GLOSSARYEXPORTFORMAT_XLSX GlossaryExportFormat = "xlsx"
	GLOSSARYEXPORTFORMAT_TBX  GlossaryExportFormat = "tbx"
)

List of GlossaryExportFormat

func NewGlossaryExportFormatFromValue

func NewGlossaryExportFormatFromValue(v string) (*GlossaryExportFormat, error)

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

func (GlossaryExportFormat) IsValid

func (v GlossaryExportFormat) IsValid() bool

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

func (GlossaryExportFormat) Ptr

Ptr returns reference to GlossaryExportFormat value

func (*GlossaryExportFormat) UnmarshalJSON

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

type GlossaryProject

type GlossaryProject struct {
	ProjectId   *int64   `json:"projectId,omitempty"`
	DatabaseIds []string `json:"databaseIds,omitempty"`
}

GlossaryProject struct for GlossaryProject

func NewGlossaryProject

func NewGlossaryProject() *GlossaryProject

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

func NewGlossaryProjectWithDefaults

func NewGlossaryProjectWithDefaults() *GlossaryProject

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

func (*GlossaryProject) GetDatabaseIds

func (o *GlossaryProject) GetDatabaseIds() []string

GetDatabaseIds returns the DatabaseIds field value if set, zero value otherwise.

func (*GlossaryProject) GetDatabaseIdsOk

func (o *GlossaryProject) GetDatabaseIdsOk() ([]string, bool)

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

func (*GlossaryProject) GetProjectId

func (o *GlossaryProject) GetProjectId() int64

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*GlossaryProject) GetProjectIdOk

func (o *GlossaryProject) GetProjectIdOk() (*int64, bool)

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

func (*GlossaryProject) HasDatabaseIds

func (o *GlossaryProject) HasDatabaseIds() bool

HasDatabaseIds returns a boolean if a field has been set.

func (*GlossaryProject) HasProjectId

func (o *GlossaryProject) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (GlossaryProject) MarshalJSON

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

func (*GlossaryProject) SetDatabaseIds

func (o *GlossaryProject) SetDatabaseIds(v []string)

SetDatabaseIds gets a reference to the given []string and assigns it to the DatabaseIds field.

func (*GlossaryProject) SetProjectId

func (o *GlossaryProject) SetProjectId(v int64)

SetProjectId gets a reference to the given int64 and assigns it to the ProjectId field.

type Grid

type Grid struct {
	Id                   *string            `json:"id,omitempty"`
	Columns              []ViewColumn       `json:"columns,omitempty"`
	DefaultAccessViewId  *string            `json:"defaultAccessViewId,omitempty"`
	Description          *string            `json:"description,omitempty"`
	Metadata             *map[string]string `json:"metadata,omitempty"`
	Name                 *string            `json:"name,omitempty"`
	RecordIdentifierType *string            `json:"recordIdentifierType,omitempty"`
	Status               *string            `json:"status,omitempty"`
}

Grid struct for Grid

func NewGrid

func NewGrid() *Grid

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

func NewGridWithDefaults

func NewGridWithDefaults() *Grid

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

func (*Grid) GetColumns

func (o *Grid) GetColumns() []ViewColumn

GetColumns returns the Columns field value if set, zero value otherwise.

func (*Grid) GetColumnsOk

func (o *Grid) GetColumnsOk() ([]ViewColumn, bool)

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

func (*Grid) GetDefaultAccessViewId

func (o *Grid) GetDefaultAccessViewId() string

GetDefaultAccessViewId returns the DefaultAccessViewId field value if set, zero value otherwise.

func (*Grid) GetDefaultAccessViewIdOk

func (o *Grid) GetDefaultAccessViewIdOk() (*string, bool)

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

func (*Grid) GetDescription

func (o *Grid) GetDescription() string

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

func (*Grid) GetDescriptionOk

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

func (o *Grid) GetId() string

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

func (*Grid) GetIdOk

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

func (o *Grid) GetMetadata() map[string]string

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

func (*Grid) GetMetadataOk

func (o *Grid) GetMetadataOk() (*map[string]string, bool)

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

func (*Grid) GetName

func (o *Grid) GetName() string

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

func (*Grid) GetNameOk

func (o *Grid) 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 (*Grid) GetRecordIdentifierType

func (o *Grid) GetRecordIdentifierType() string

GetRecordIdentifierType returns the RecordIdentifierType field value if set, zero value otherwise.

func (*Grid) GetRecordIdentifierTypeOk

func (o *Grid) GetRecordIdentifierTypeOk() (*string, bool)

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

func (*Grid) GetStatus

func (o *Grid) GetStatus() string

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

func (*Grid) GetStatusOk

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

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

func (*Grid) HasColumns

func (o *Grid) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (*Grid) HasDefaultAccessViewId

func (o *Grid) HasDefaultAccessViewId() bool

HasDefaultAccessViewId returns a boolean if a field has been set.

func (*Grid) HasDescription

func (o *Grid) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Grid) HasId

func (o *Grid) HasId() bool

HasId returns a boolean if a field has been set.

func (*Grid) HasMetadata

func (o *Grid) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Grid) HasName

func (o *Grid) HasName() bool

HasName returns a boolean if a field has been set.

func (*Grid) HasRecordIdentifierType

func (o *Grid) HasRecordIdentifierType() bool

HasRecordIdentifierType returns a boolean if a field has been set.

func (*Grid) HasStatus

func (o *Grid) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Grid) MarshalJSON

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

func (*Grid) SetColumns

func (o *Grid) SetColumns(v []ViewColumn)

SetColumns gets a reference to the given []ViewColumn and assigns it to the Columns field.

func (*Grid) SetDefaultAccessViewId

func (o *Grid) SetDefaultAccessViewId(v string)

SetDefaultAccessViewId gets a reference to the given string and assigns it to the DefaultAccessViewId field.

func (*Grid) SetDescription

func (o *Grid) SetDescription(v string)

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

func (*Grid) SetId

func (o *Grid) SetId(v string)

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

func (*Grid) SetMetadata

func (o *Grid) SetMetadata(v map[string]string)

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

func (*Grid) SetName

func (o *Grid) SetName(v string)

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

func (*Grid) SetRecordIdentifierType

func (o *Grid) SetRecordIdentifierType(v string)

SetRecordIdentifierType gets a reference to the given string and assigns it to the RecordIdentifierType field.

func (*Grid) SetStatus

func (o *Grid) SetStatus(v string)

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

type GridApiCreateCategoryRequest

type GridApiCreateCategoryRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiCreateCategoryRequest) CreateFileCategory

func (r GridApiCreateCategoryRequest) CreateFileCategory(createFileCategory CreateFileCategory) GridApiCreateCategoryRequest

func (GridApiCreateCategoryRequest) Execute

type GridApiCreateRequest

type GridApiCreateRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiCreateRequest) CreateGrid

func (r GridApiCreateRequest) CreateGrid(createGrid CreateGrid) GridApiCreateRequest

func (GridApiCreateRequest) DbId

dbId

func (GridApiCreateRequest) Execute

func (r GridApiCreateRequest) Execute() (*Grid, *http.Response, error)

type GridApiDeleteCategoryRequest

type GridApiDeleteCategoryRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiDeleteCategoryRequest) Execute

type GridApiDeleteFileRequest

type GridApiDeleteFileRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiDeleteFileRequest) Execute

func (r GridApiDeleteFileRequest) Execute() (*http.Response, error)

type GridApiDeleteRequest

type GridApiDeleteRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiDeleteRequest) Execute

func (r GridApiDeleteRequest) Execute() (*http.Response, error)

type GridApiGetRequest

type GridApiGetRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiGetRequest) Execute

func (r GridApiGetRequest) Execute() (*Grid, *http.Response, error)

type GridApiGetSettingRequest

type GridApiGetSettingRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiGetSettingRequest) Execute

type GridApiListFilesRequest

type GridApiListFilesRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiListFilesRequest) CategoryId

func (r GridApiListFilesRequest) CategoryId(categoryId []string) GridApiListFilesRequest

categoryId

func (GridApiListFilesRequest) Execute

type GridApiListRequest

type GridApiListRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiListRequest) DbId

dbId

func (GridApiListRequest) Execute

func (r GridApiListRequest) Execute() ([]Grid, *http.Response, error)

type GridApiListTemplateGridsRequest

type GridApiListTemplateGridsRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiListTemplateGridsRequest) Execute

type GridApiService

type GridApiService service

GridApiService GridApi service

func (*GridApiService) Create

Create create

Create a Grid

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

func (*GridApiService) CreateCategory

func (a *GridApiService) CreateCategory(ctx context.Context, gridId string) GridApiCreateCategoryRequest

CreateCategory createCategory

createCategory

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

func (*GridApiService) CreateCategoryExecute

func (a *GridApiService) CreateCategoryExecute(r GridApiCreateCategoryRequest) (*FileCategory, *http.Response, error)

Execute executes the request

@return FileCategory

func (*GridApiService) CreateExecute

func (a *GridApiService) CreateExecute(r GridApiCreateRequest) (*Grid, *http.Response, error)

Execute executes the request

@return Grid

func (*GridApiService) Delete

func (a *GridApiService) Delete(ctx context.Context, gridId string) GridApiDeleteRequest

Delete delete

Delete a Grid

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

func (*GridApiService) DeleteCategory

func (a *GridApiService) DeleteCategory(ctx context.Context, gridId string, categoryId string) GridApiDeleteCategoryRequest

DeleteCategory deleteCategory

deleteCategory

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

func (*GridApiService) DeleteCategoryExecute

func (a *GridApiService) DeleteCategoryExecute(r GridApiDeleteCategoryRequest) (*http.Response, error)

Execute executes the request

func (*GridApiService) DeleteExecute

func (a *GridApiService) DeleteExecute(r GridApiDeleteRequest) (*http.Response, error)

Execute executes the request

func (*GridApiService) DeleteFile

func (a *GridApiService) DeleteFile(ctx context.Context, gridId string, categoryId string, fileId string) GridApiDeleteFileRequest

DeleteFile deleteFile

deleteFile

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

func (*GridApiService) DeleteFileExecute

func (a *GridApiService) DeleteFileExecute(r GridApiDeleteFileRequest) (*http.Response, error)

Execute executes the request

func (*GridApiService) Get

Get get

Get a Grid

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

func (*GridApiService) GetExecute

func (a *GridApiService) GetExecute(r GridApiGetRequest) (*Grid, *http.Response, error)

Execute executes the request

@return Grid

func (*GridApiService) GetSetting

func (a *GridApiService) GetSetting(ctx context.Context, gridId string) GridApiGetSettingRequest

GetSetting getSetting

getSetting

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

func (*GridApiService) GetSettingExecute

func (a *GridApiService) GetSettingExecute(r GridApiGetSettingRequest) (*GridSetting, *http.Response, error)

Execute executes the request

@return GridSetting

func (*GridApiService) List

List list

Get a Grid

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

func (*GridApiService) ListExecute

func (a *GridApiService) ListExecute(r GridApiListRequest) ([]Grid, *http.Response, error)

Execute executes the request

@return []Grid

func (*GridApiService) ListFiles

func (a *GridApiService) ListFiles(ctx context.Context, gridId string) GridApiListFilesRequest

ListFiles listFiles

listFiles

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

func (*GridApiService) ListFilesExecute

func (a *GridApiService) ListFilesExecute(r GridApiListFilesRequest) ([]SettingFile, *http.Response, error)

Execute executes the request

@return []SettingFile

func (*GridApiService) ListTemplateGrids

ListTemplateGrids listTemplateGrids

listTemplateGrids

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

func (*GridApiService) ListTemplateGridsExecute

func (a *GridApiService) ListTemplateGridsExecute(r GridApiListTemplateGridsRequest) ([]Grid, *http.Response, error)

Execute executes the request

@return []Grid

func (*GridApiService) Update

func (a *GridApiService) Update(ctx context.Context, gridId string) GridApiUpdateRequest

Update update

Update a Grid

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

func (*GridApiService) UpdateCategory

func (a *GridApiService) UpdateCategory(ctx context.Context, gridId string, categoryId string) GridApiUpdateCategoryRequest

UpdateCategory updateCategory

updateCategory

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

func (*GridApiService) UpdateCategoryExecute

func (a *GridApiService) UpdateCategoryExecute(r GridApiUpdateCategoryRequest) (*FileCategory, *http.Response, error)

Execute executes the request

@return FileCategory

func (*GridApiService) UpdateExecute

func (a *GridApiService) UpdateExecute(r GridApiUpdateRequest) (*Grid, *http.Response, error)

Execute executes the request

@return Grid

func (*GridApiService) UpdateSetting

func (a *GridApiService) UpdateSetting(ctx context.Context, gridId string) GridApiUpdateSettingRequest

UpdateSetting updateSetting

updateSetting

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

func (*GridApiService) UpdateSettingExecute

func (a *GridApiService) UpdateSettingExecute(r GridApiUpdateSettingRequest) (*GridSetting, *http.Response, error)

Execute executes the request

@return GridSetting

func (*GridApiService) UploadSettingFile

func (a *GridApiService) UploadSettingFile(ctx context.Context, gridId string, categoryId string) GridApiUploadSettingFileRequest

UploadSettingFile uploadSettingFile

uploadSettingFile

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

func (*GridApiService) UploadSettingFileExecute

func (a *GridApiService) UploadSettingFileExecute(r GridApiUploadSettingFileRequest) (*UploadedFile, *http.Response, error)

Execute executes the request

@return UploadedFile

type GridApiUpdateCategoryRequest

type GridApiUpdateCategoryRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiUpdateCategoryRequest) Execute

func (GridApiUpdateCategoryRequest) UpdateCategory

type GridApiUpdateRequest

type GridApiUpdateRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiUpdateRequest) Execute

func (r GridApiUpdateRequest) Execute() (*Grid, *http.Response, error)

func (GridApiUpdateRequest) UpdateGrid

func (r GridApiUpdateRequest) UpdateGrid(updateGrid UpdateGrid) GridApiUpdateRequest

type GridApiUpdateSettingRequest

type GridApiUpdateSettingRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiUpdateSettingRequest) Execute

func (GridApiUpdateSettingRequest) UpdateGridSetting

func (r GridApiUpdateSettingRequest) UpdateGridSetting(updateGridSetting UpdateGridSetting) GridApiUpdateSettingRequest

type GridApiUploadSettingFileRequest

type GridApiUploadSettingFileRequest struct {
	ApiService *GridApiService
	// contains filtered or unexported fields
}

func (GridApiUploadSettingFileRequest) Execute

func (GridApiUploadSettingFileRequest) UploadSettingFileRequest

func (r GridApiUploadSettingFileRequest) UploadSettingFileRequest(uploadSettingFileRequest UploadSettingFileRequest) GridApiUploadSettingFileRequest

type GridSetting

type GridSetting struct {
	DefaultSourceLanguageStatus  *string            `json:"defaultSourceLanguageStatus,omitempty"`
	TranslatorCanViewAutomations *bool              `json:"translatorCanViewAutomations,omitempty"`
	Categories                   []FileCategory     `json:"categories,omitempty"`
	Metadata                     *map[string]string `json:"metadata,omitempty"`
	CreatedTime                  *time.Time         `json:"createdTime,omitempty"`
	LastModifiedTime             *time.Time         `json:"lastModifiedTime,omitempty"`
	CreatedBy                    *string            `json:"createdBy,omitempty"`
	LastModifiedBy               *string            `json:"lastModifiedBy,omitempty"`
}

GridSetting struct for GridSetting

func NewGridSetting

func NewGridSetting() *GridSetting

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

func NewGridSettingWithDefaults

func NewGridSettingWithDefaults() *GridSetting

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

func (*GridSetting) GetCategories

func (o *GridSetting) GetCategories() []FileCategory

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

func (*GridSetting) GetCategoriesOk

func (o *GridSetting) GetCategoriesOk() ([]FileCategory, bool)

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

func (*GridSetting) GetCreatedBy

func (o *GridSetting) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*GridSetting) GetCreatedByOk

func (o *GridSetting) GetCreatedByOk() (*string, bool)

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

func (*GridSetting) GetCreatedTime

func (o *GridSetting) GetCreatedTime() time.Time

GetCreatedTime returns the CreatedTime field value if set, zero value otherwise.

func (*GridSetting) GetCreatedTimeOk

func (o *GridSetting) GetCreatedTimeOk() (*time.Time, bool)

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

func (*GridSetting) GetDefaultSourceLanguageStatus

func (o *GridSetting) GetDefaultSourceLanguageStatus() string

GetDefaultSourceLanguageStatus returns the DefaultSourceLanguageStatus field value if set, zero value otherwise.

func (*GridSetting) GetDefaultSourceLanguageStatusOk

func (o *GridSetting) GetDefaultSourceLanguageStatusOk() (*string, bool)

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

func (*GridSetting) GetLastModifiedBy

func (o *GridSetting) GetLastModifiedBy() string

GetLastModifiedBy returns the LastModifiedBy field value if set, zero value otherwise.

func (*GridSetting) GetLastModifiedByOk

func (o *GridSetting) GetLastModifiedByOk() (*string, bool)

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

func (*GridSetting) GetLastModifiedTime

func (o *GridSetting) GetLastModifiedTime() time.Time

GetLastModifiedTime returns the LastModifiedTime field value if set, zero value otherwise.

func (*GridSetting) GetLastModifiedTimeOk

func (o *GridSetting) GetLastModifiedTimeOk() (*time.Time, bool)

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

func (*GridSetting) GetMetadata

func (o *GridSetting) GetMetadata() map[string]string

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

func (*GridSetting) GetMetadataOk

func (o *GridSetting) GetMetadataOk() (*map[string]string, bool)

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

func (*GridSetting) GetTranslatorCanViewAutomations

func (o *GridSetting) GetTranslatorCanViewAutomations() bool

GetTranslatorCanViewAutomations returns the TranslatorCanViewAutomations field value if set, zero value otherwise.

func (*GridSetting) GetTranslatorCanViewAutomationsOk

func (o *GridSetting) GetTranslatorCanViewAutomationsOk() (*bool, bool)

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

func (*GridSetting) HasCategories

func (o *GridSetting) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*GridSetting) HasCreatedBy

func (o *GridSetting) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*GridSetting) HasCreatedTime

func (o *GridSetting) HasCreatedTime() bool

HasCreatedTime returns a boolean if a field has been set.

func (*GridSetting) HasDefaultSourceLanguageStatus

func (o *GridSetting) HasDefaultSourceLanguageStatus() bool

HasDefaultSourceLanguageStatus returns a boolean if a field has been set.

func (*GridSetting) HasLastModifiedBy

func (o *GridSetting) HasLastModifiedBy() bool

HasLastModifiedBy returns a boolean if a field has been set.

func (*GridSetting) HasLastModifiedTime

func (o *GridSetting) HasLastModifiedTime() bool

HasLastModifiedTime returns a boolean if a field has been set.

func (*GridSetting) HasMetadata

func (o *GridSetting) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*GridSetting) HasTranslatorCanViewAutomations

func (o *GridSetting) HasTranslatorCanViewAutomations() bool

HasTranslatorCanViewAutomations returns a boolean if a field has been set.

func (GridSetting) MarshalJSON

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

func (*GridSetting) SetCategories

func (o *GridSetting) SetCategories(v []FileCategory)

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

func (*GridSetting) SetCreatedBy

func (o *GridSetting) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*GridSetting) SetCreatedTime

func (o *GridSetting) SetCreatedTime(v time.Time)

SetCreatedTime gets a reference to the given time.Time and assigns it to the CreatedTime field.

func (*GridSetting) SetDefaultSourceLanguageStatus

func (o *GridSetting) SetDefaultSourceLanguageStatus(v string)

SetDefaultSourceLanguageStatus gets a reference to the given string and assigns it to the DefaultSourceLanguageStatus field.

func (*GridSetting) SetLastModifiedBy

func (o *GridSetting) SetLastModifiedBy(v string)

SetLastModifiedBy gets a reference to the given string and assigns it to the LastModifiedBy field.

func (*GridSetting) SetLastModifiedTime

func (o *GridSetting) SetLastModifiedTime(v time.Time)

SetLastModifiedTime gets a reference to the given time.Time and assigns it to the LastModifiedTime field.

func (*GridSetting) SetMetadata

func (o *GridSetting) SetMetadata(v map[string]string)

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

func (*GridSetting) SetTranslatorCanViewAutomations

func (o *GridSetting) SetTranslatorCanViewAutomations(v bool)

SetTranslatorCanViewAutomations gets a reference to the given bool and assigns it to the TranslatorCanViewAutomations field.

type Group

type Group struct {
	Id               *string    `json:"id,omitempty"`
	GroupId          *int64     `json:"groupId,omitempty"`
	CompanyId        *int64     `json:"companyId,omitempty"`
	Name             *string    `json:"name,omitempty"`
	LogoUrl          *string    `json:"logoUrl,omitempty"`
	Type             *string    `json:"type,omitempty"`
	ShareType        *string    `json:"shareType,omitempty"`
	CreatedDate      *time.Time `json:"createdDate,omitempty"`
	LastModifiedDate *time.Time `json:"lastModifiedDate,omitempty"`
	IsSystemGroup    *bool      `json:"isSystemGroup,omitempty"`
	SystemGroup      *bool      `json:"systemGroup,omitempty"`
}

Group struct for Group

func NewGroup

func NewGroup() *Group

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

func NewGroupWithDefaults

func NewGroupWithDefaults() *Group

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

func (*Group) GetCompanyId

func (o *Group) GetCompanyId() int64

GetCompanyId returns the CompanyId field value if set, zero value otherwise.

func (*Group) GetCompanyIdOk

func (o *Group) GetCompanyIdOk() (*int64, bool)

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

func (*Group) GetCreatedDate

func (o *Group) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*Group) GetCreatedDateOk

func (o *Group) GetCreatedDateOk() (*time.Time, bool)

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

func (*Group) GetGroupId

func (o *Group) GetGroupId() int64

GetGroupId returns the GroupId field value if set, zero value otherwise.

func (*Group) GetGroupIdOk

func (o *Group) GetGroupIdOk() (*int64, bool)

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

func (*Group) GetId

func (o *Group) GetId() string

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

func (*Group) GetIdOk

func (o *Group) 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 (*Group) GetIsSystemGroup

func (o *Group) GetIsSystemGroup() bool

GetIsSystemGroup returns the IsSystemGroup field value if set, zero value otherwise.

func (*Group) GetIsSystemGroupOk

func (o *Group) GetIsSystemGroupOk() (*bool, bool)

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

func (*Group) GetLastModifiedDate

func (o *Group) GetLastModifiedDate() time.Time

GetLastModifiedDate returns the LastModifiedDate field value if set, zero value otherwise.

func (*Group) GetLastModifiedDateOk

func (o *Group) GetLastModifiedDateOk() (*time.Time, bool)

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

func (*Group) GetLogoUrl

func (o *Group) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*Group) GetLogoUrlOk

func (o *Group) GetLogoUrlOk() (*string, bool)

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

func (*Group) GetName

func (o *Group) GetName() string

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

func (*Group) GetNameOk

func (o *Group) 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 (*Group) GetShareType

func (o *Group) GetShareType() string

GetShareType returns the ShareType field value if set, zero value otherwise.

func (*Group) GetShareTypeOk

func (o *Group) GetShareTypeOk() (*string, bool)

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

func (*Group) GetSystemGroup

func (o *Group) GetSystemGroup() bool

GetSystemGroup returns the SystemGroup field value if set, zero value otherwise.

func (*Group) GetSystemGroupOk

func (o *Group) GetSystemGroupOk() (*bool, bool)

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

func (*Group) GetType

func (o *Group) GetType() string

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

func (*Group) GetTypeOk

func (o *Group) 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 (*Group) HasCompanyId

func (o *Group) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*Group) HasCreatedDate

func (o *Group) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*Group) HasGroupId

func (o *Group) HasGroupId() bool

HasGroupId returns a boolean if a field has been set.

func (*Group) HasId

func (o *Group) HasId() bool

HasId returns a boolean if a field has been set.

func (*Group) HasIsSystemGroup

func (o *Group) HasIsSystemGroup() bool

HasIsSystemGroup returns a boolean if a field has been set.

func (*Group) HasLastModifiedDate

func (o *Group) HasLastModifiedDate() bool

HasLastModifiedDate returns a boolean if a field has been set.

func (*Group) HasLogoUrl

func (o *Group) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*Group) HasName

func (o *Group) HasName() bool

HasName returns a boolean if a field has been set.

func (*Group) HasShareType

func (o *Group) HasShareType() bool

HasShareType returns a boolean if a field has been set.

func (*Group) HasSystemGroup

func (o *Group) HasSystemGroup() bool

HasSystemGroup returns a boolean if a field has been set.

func (*Group) HasType

func (o *Group) HasType() bool

HasType returns a boolean if a field has been set.

func (Group) MarshalJSON

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

func (*Group) SetCompanyId

func (o *Group) SetCompanyId(v int64)

SetCompanyId gets a reference to the given int64 and assigns it to the CompanyId field.

func (*Group) SetCreatedDate

func (o *Group) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*Group) SetGroupId

func (o *Group) SetGroupId(v int64)

SetGroupId gets a reference to the given int64 and assigns it to the GroupId field.

func (*Group) SetId

func (o *Group) SetId(v string)

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

func (*Group) SetIsSystemGroup

func (o *Group) SetIsSystemGroup(v bool)

SetIsSystemGroup gets a reference to the given bool and assigns it to the IsSystemGroup field.

func (*Group) SetLastModifiedDate

func (o *Group) SetLastModifiedDate(v time.Time)

SetLastModifiedDate gets a reference to the given time.Time and assigns it to the LastModifiedDate field.

func (*Group) SetLogoUrl

func (o *Group) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*Group) SetName

func (o *Group) SetName(v string)

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

func (*Group) SetShareType

func (o *Group) SetShareType(v string)

SetShareType gets a reference to the given string and assigns it to the ShareType field.

func (*Group) SetSystemGroup

func (o *Group) SetSystemGroup(v bool)

SetSystemGroup gets a reference to the given bool and assigns it to the SystemGroup field.

func (*Group) SetType

func (o *Group) SetType(v string)

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

type ImportOption

type ImportOption string

ImportOption the model 'ImportOption'

const (
	IMPORTOPTION_ADD         ImportOption = "ADD"
	IMPORTOPTION_UPDATE      ImportOption = "UPDATE"
	IMPORTOPTION_UPDATE_ONLY ImportOption = "UPDATE_ONLY"
)

List of ImportOption

func NewImportOptionFromValue

func NewImportOptionFromValue(v string) (*ImportOption, error)

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

func (ImportOption) IsValid

func (v ImportOption) IsValid() bool

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

func (ImportOption) Ptr

func (v ImportOption) Ptr() *ImportOption

Ptr returns reference to ImportOption value

func (*ImportOption) UnmarshalJSON

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

type MergeBranchRequest

type MergeBranchRequest struct {
	MergeRecordOptions   []string              `json:"mergeRecordOptions,omitempty"`
	MergeRecordConflicts []MergeRecordConflict `json:"mergeRecordConflicts,omitempty"`
	UseLastMergeResolve  *bool                 `json:"useLastMergeResolve,omitempty"`
	Query                []FilterField         `json:"query,omitempty"`
}

MergeBranchRequest struct for MergeBranchRequest

func NewMergeBranchRequest

func NewMergeBranchRequest() *MergeBranchRequest

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

func NewMergeBranchRequestWithDefaults

func NewMergeBranchRequestWithDefaults() *MergeBranchRequest

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

func (*MergeBranchRequest) GetMergeRecordConflicts

func (o *MergeBranchRequest) GetMergeRecordConflicts() []MergeRecordConflict

GetMergeRecordConflicts returns the MergeRecordConflicts field value if set, zero value otherwise.

func (*MergeBranchRequest) GetMergeRecordConflictsOk

func (o *MergeBranchRequest) GetMergeRecordConflictsOk() ([]MergeRecordConflict, bool)

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

func (*MergeBranchRequest) GetMergeRecordOptions

func (o *MergeBranchRequest) GetMergeRecordOptions() []string

GetMergeRecordOptions returns the MergeRecordOptions field value if set, zero value otherwise.

func (*MergeBranchRequest) GetMergeRecordOptionsOk

func (o *MergeBranchRequest) GetMergeRecordOptionsOk() ([]string, bool)

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

func (*MergeBranchRequest) GetQuery

func (o *MergeBranchRequest) GetQuery() []FilterField

GetQuery returns the Query field value if set, zero value otherwise.

func (*MergeBranchRequest) GetQueryOk

func (o *MergeBranchRequest) GetQueryOk() ([]FilterField, bool)

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

func (*MergeBranchRequest) GetUseLastMergeResolve

func (o *MergeBranchRequest) GetUseLastMergeResolve() bool

GetUseLastMergeResolve returns the UseLastMergeResolve field value if set, zero value otherwise.

func (*MergeBranchRequest) GetUseLastMergeResolveOk

func (o *MergeBranchRequest) GetUseLastMergeResolveOk() (*bool, bool)

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

func (*MergeBranchRequest) HasMergeRecordConflicts

func (o *MergeBranchRequest) HasMergeRecordConflicts() bool

HasMergeRecordConflicts returns a boolean if a field has been set.

func (*MergeBranchRequest) HasMergeRecordOptions

func (o *MergeBranchRequest) HasMergeRecordOptions() bool

HasMergeRecordOptions returns a boolean if a field has been set.

func (*MergeBranchRequest) HasQuery

func (o *MergeBranchRequest) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*MergeBranchRequest) HasUseLastMergeResolve

func (o *MergeBranchRequest) HasUseLastMergeResolve() bool

HasUseLastMergeResolve returns a boolean if a field has been set.

func (MergeBranchRequest) MarshalJSON

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

func (*MergeBranchRequest) SetMergeRecordConflicts

func (o *MergeBranchRequest) SetMergeRecordConflicts(v []MergeRecordConflict)

SetMergeRecordConflicts gets a reference to the given []MergeRecordConflict and assigns it to the MergeRecordConflicts field.

func (*MergeBranchRequest) SetMergeRecordOptions

func (o *MergeBranchRequest) SetMergeRecordOptions(v []string)

SetMergeRecordOptions gets a reference to the given []string and assigns it to the MergeRecordOptions field.

func (*MergeBranchRequest) SetQuery

func (o *MergeBranchRequest) SetQuery(v []FilterField)

SetQuery gets a reference to the given []FilterField and assigns it to the Query field.

func (*MergeBranchRequest) SetUseLastMergeResolve

func (o *MergeBranchRequest) SetUseLastMergeResolve(v bool)

SetUseLastMergeResolve gets a reference to the given bool and assigns it to the UseLastMergeResolve field.

type MergeCellConflict

type MergeCellConflict struct {
	ColumnId string `json:"columnId"`
	Option   string `json:"option"`
}

MergeCellConflict struct for MergeCellConflict

func NewMergeCellConflict

func NewMergeCellConflict(columnId string, option string) *MergeCellConflict

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

func NewMergeCellConflictWithDefaults

func NewMergeCellConflictWithDefaults() *MergeCellConflict

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

func (*MergeCellConflict) GetColumnId

func (o *MergeCellConflict) GetColumnId() string

GetColumnId returns the ColumnId field value

func (*MergeCellConflict) GetColumnIdOk

func (o *MergeCellConflict) GetColumnIdOk() (*string, bool)

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

func (*MergeCellConflict) GetOption

func (o *MergeCellConflict) GetOption() string

GetOption returns the Option field value

func (*MergeCellConflict) GetOptionOk

func (o *MergeCellConflict) GetOptionOk() (*string, bool)

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

func (MergeCellConflict) MarshalJSON

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

func (*MergeCellConflict) SetColumnId

func (o *MergeCellConflict) SetColumnId(v string)

SetColumnId sets field value

func (*MergeCellConflict) SetOption

func (o *MergeCellConflict) SetOption(v string)

SetOption sets field value

type MergeRecordConflict

type MergeRecordConflict struct {
	Cells    []MergeCellConflict `json:"cells,omitempty"`
	PathTag  *string             `json:"pathTag,omitempty"`
	RecordId *string             `json:"recordId,omitempty"`
}

MergeRecordConflict struct for MergeRecordConflict

func NewMergeRecordConflict

func NewMergeRecordConflict() *MergeRecordConflict

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

func NewMergeRecordConflictWithDefaults

func NewMergeRecordConflictWithDefaults() *MergeRecordConflict

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

func (*MergeRecordConflict) GetCells

func (o *MergeRecordConflict) GetCells() []MergeCellConflict

GetCells returns the Cells field value if set, zero value otherwise.

func (*MergeRecordConflict) GetCellsOk

func (o *MergeRecordConflict) GetCellsOk() ([]MergeCellConflict, bool)

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

func (*MergeRecordConflict) GetPathTag

func (o *MergeRecordConflict) GetPathTag() string

GetPathTag returns the PathTag field value if set, zero value otherwise.

func (*MergeRecordConflict) GetPathTagOk

func (o *MergeRecordConflict) GetPathTagOk() (*string, bool)

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

func (*MergeRecordConflict) GetRecordId

func (o *MergeRecordConflict) GetRecordId() string

GetRecordId returns the RecordId field value if set, zero value otherwise.

func (*MergeRecordConflict) GetRecordIdOk

func (o *MergeRecordConflict) GetRecordIdOk() (*string, bool)

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

func (*MergeRecordConflict) HasCells

func (o *MergeRecordConflict) HasCells() bool

HasCells returns a boolean if a field has been set.

func (*MergeRecordConflict) HasPathTag

func (o *MergeRecordConflict) HasPathTag() bool

HasPathTag returns a boolean if a field has been set.

func (*MergeRecordConflict) HasRecordId

func (o *MergeRecordConflict) HasRecordId() bool

HasRecordId returns a boolean if a field has been set.

func (MergeRecordConflict) MarshalJSON

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

func (*MergeRecordConflict) SetCells

func (o *MergeRecordConflict) SetCells(v []MergeCellConflict)

SetCells gets a reference to the given []MergeCellConflict and assigns it to the Cells field.

func (*MergeRecordConflict) SetPathTag

func (o *MergeRecordConflict) SetPathTag(v string)

SetPathTag gets a reference to the given string and assigns it to the PathTag field.

func (*MergeRecordConflict) SetRecordId

func (o *MergeRecordConflict) SetRecordId(v string)

SetRecordId gets a reference to the given string and assigns it to the RecordId field.

type MovePath

type MovePath struct {
	Names          []string `json:"names,omitempty"`
	FromParentPath *string  `json:"fromParentPath,omitempty"`
	ToParentPath   *string  `json:"toParentPath,omitempty"`
	MoveBefore     *string  `json:"moveBefore,omitempty"`
	MoveAfter      *string  `json:"moveAfter,omitempty"`
}

MovePath struct for MovePath

func NewMovePath

func NewMovePath() *MovePath

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

func NewMovePathWithDefaults

func NewMovePathWithDefaults() *MovePath

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

func (*MovePath) GetFromParentPath

func (o *MovePath) GetFromParentPath() string

GetFromParentPath returns the FromParentPath field value if set, zero value otherwise.

func (*MovePath) GetFromParentPathOk

func (o *MovePath) GetFromParentPathOk() (*string, bool)

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

func (*MovePath) GetMoveAfter

func (o *MovePath) GetMoveAfter() string

GetMoveAfter returns the MoveAfter field value if set, zero value otherwise.

func (*MovePath) GetMoveAfterOk

func (o *MovePath) GetMoveAfterOk() (*string, bool)

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

func (*MovePath) GetMoveBefore

func (o *MovePath) GetMoveBefore() string

GetMoveBefore returns the MoveBefore field value if set, zero value otherwise.

func (*MovePath) GetMoveBeforeOk

func (o *MovePath) GetMoveBeforeOk() (*string, bool)

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

func (*MovePath) GetNames

func (o *MovePath) GetNames() []string

GetNames returns the Names field value if set, zero value otherwise.

func (*MovePath) GetNamesOk

func (o *MovePath) GetNamesOk() ([]string, bool)

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

func (*MovePath) GetToParentPath

func (o *MovePath) GetToParentPath() string

GetToParentPath returns the ToParentPath field value if set, zero value otherwise.

func (*MovePath) GetToParentPathOk

func (o *MovePath) GetToParentPathOk() (*string, bool)

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

func (*MovePath) HasFromParentPath

func (o *MovePath) HasFromParentPath() bool

HasFromParentPath returns a boolean if a field has been set.

func (*MovePath) HasMoveAfter

func (o *MovePath) HasMoveAfter() bool

HasMoveAfter returns a boolean if a field has been set.

func (*MovePath) HasMoveBefore

func (o *MovePath) HasMoveBefore() bool

HasMoveBefore returns a boolean if a field has been set.

func (*MovePath) HasNames

func (o *MovePath) HasNames() bool

HasNames returns a boolean if a field has been set.

func (*MovePath) HasToParentPath

func (o *MovePath) HasToParentPath() bool

HasToParentPath returns a boolean if a field has been set.

func (MovePath) MarshalJSON

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

func (*MovePath) SetFromParentPath

func (o *MovePath) SetFromParentPath(v string)

SetFromParentPath gets a reference to the given string and assigns it to the FromParentPath field.

func (*MovePath) SetMoveAfter

func (o *MovePath) SetMoveAfter(v string)

SetMoveAfter gets a reference to the given string and assigns it to the MoveAfter field.

func (*MovePath) SetMoveBefore

func (o *MovePath) SetMoveBefore(v string)

SetMoveBefore gets a reference to the given string and assigns it to the MoveBefore field.

func (*MovePath) SetNames

func (o *MovePath) SetNames(v []string)

SetNames gets a reference to the given []string and assigns it to the Names field.

func (*MovePath) SetToParentPath

func (o *MovePath) SetToParentPath(v string)

SetToParentPath gets a reference to the given string and assigns it to the ToParentPath field.

type NullableAddViewColumn

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

func NewNullableAddViewColumn

func NewNullableAddViewColumn(val *AddViewColumn) *NullableAddViewColumn

func (NullableAddViewColumn) Get

func (NullableAddViewColumn) IsSet

func (v NullableAddViewColumn) IsSet() bool

func (NullableAddViewColumn) MarshalJSON

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

func (*NullableAddViewColumn) Set

func (v *NullableAddViewColumn) Set(val *AddViewColumn)

func (*NullableAddViewColumn) UnmarshalJSON

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

func (*NullableAddViewColumn) Unset

func (v *NullableAddViewColumn) 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 NullableBranch

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

func NewNullableBranch

func NewNullableBranch(val *Branch) *NullableBranch

func (NullableBranch) Get

func (v NullableBranch) Get() *Branch

func (NullableBranch) IsSet

func (v NullableBranch) IsSet() bool

func (NullableBranch) MarshalJSON

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

func (*NullableBranch) Set

func (v *NullableBranch) Set(val *Branch)

func (*NullableBranch) UnmarshalJSON

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

func (*NullableBranch) Unset

func (v *NullableBranch) Unset()

type NullableBranchDiffCell

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

func NewNullableBranchDiffCell

func NewNullableBranchDiffCell(val *BranchDiffCell) *NullableBranchDiffCell

func (NullableBranchDiffCell) Get

func (NullableBranchDiffCell) IsSet

func (v NullableBranchDiffCell) IsSet() bool

func (NullableBranchDiffCell) MarshalJSON

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

func (*NullableBranchDiffCell) Set

func (*NullableBranchDiffCell) UnmarshalJSON

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

func (*NullableBranchDiffCell) Unset

func (v *NullableBranchDiffCell) Unset()

type NullableBranchDiffRecord

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

func NewNullableBranchDiffRecord

func NewNullableBranchDiffRecord(val *BranchDiffRecord) *NullableBranchDiffRecord

func (NullableBranchDiffRecord) Get

func (NullableBranchDiffRecord) IsSet

func (v NullableBranchDiffRecord) IsSet() bool

func (NullableBranchDiffRecord) MarshalJSON

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

func (*NullableBranchDiffRecord) Set

func (*NullableBranchDiffRecord) UnmarshalJSON

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

func (*NullableBranchDiffRecord) Unset

func (v *NullableBranchDiffRecord) Unset()

type NullableCell

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

func NewNullableCell

func NewNullableCell(val *Cell) *NullableCell

func (NullableCell) Get

func (v NullableCell) Get() *Cell

func (NullableCell) IsSet

func (v NullableCell) IsSet() bool

func (NullableCell) MarshalJSON

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

func (*NullableCell) Set

func (v *NullableCell) Set(val *Cell)

func (*NullableCell) UnmarshalJSON

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

func (*NullableCell) Unset

func (v *NullableCell) Unset()

type NullableCellHistory

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

func NewNullableCellHistory

func NewNullableCellHistory(val *CellHistory) *NullableCellHistory

func (NullableCellHistory) Get

func (NullableCellHistory) IsSet

func (v NullableCellHistory) IsSet() bool

func (NullableCellHistory) MarshalJSON

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

func (*NullableCellHistory) Set

func (v *NullableCellHistory) Set(val *CellHistory)

func (*NullableCellHistory) UnmarshalJSON

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

func (*NullableCellHistory) Unset

func (v *NullableCellHistory) Unset()

type NullableColumnReference

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

func NewNullableColumnReference

func NewNullableColumnReference(val *ColumnReference) *NullableColumnReference

func (NullableColumnReference) Get

func (NullableColumnReference) IsSet

func (v NullableColumnReference) IsSet() bool

func (NullableColumnReference) MarshalJSON

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

func (*NullableColumnReference) Set

func (*NullableColumnReference) UnmarshalJSON

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

func (*NullableColumnReference) Unset

func (v *NullableColumnReference) Unset()

type NullableColumnStatistic

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

func NewNullableColumnStatistic

func NewNullableColumnStatistic(val *ColumnStatistic) *NullableColumnStatistic

func (NullableColumnStatistic) Get

func (NullableColumnStatistic) IsSet

func (v NullableColumnStatistic) IsSet() bool

func (NullableColumnStatistic) MarshalJSON

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

func (*NullableColumnStatistic) Set

func (*NullableColumnStatistic) UnmarshalJSON

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

func (*NullableColumnStatistic) Unset

func (v *NullableColumnStatistic) Unset()

type NullableCreateBranch

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

func NewNullableCreateBranch

func NewNullableCreateBranch(val *CreateBranch) *NullableCreateBranch

func (NullableCreateBranch) Get

func (NullableCreateBranch) IsSet

func (v NullableCreateBranch) IsSet() bool

func (NullableCreateBranch) MarshalJSON

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

func (*NullableCreateBranch) Set

func (v *NullableCreateBranch) Set(val *CreateBranch)

func (*NullableCreateBranch) UnmarshalJSON

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

func (*NullableCreateBranch) Unset

func (v *NullableCreateBranch) Unset()

type NullableCreateColumn

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

func NewNullableCreateColumn

func NewNullableCreateColumn(val *CreateColumn) *NullableCreateColumn

func (NullableCreateColumn) Get

func (NullableCreateColumn) IsSet

func (v NullableCreateColumn) IsSet() bool

func (NullableCreateColumn) MarshalJSON

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

func (*NullableCreateColumn) Set

func (v *NullableCreateColumn) Set(val *CreateColumn)

func (*NullableCreateColumn) UnmarshalJSON

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

func (*NullableCreateColumn) Unset

func (v *NullableCreateColumn) Unset()

type NullableCreateDatabase

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

func NewNullableCreateDatabase

func NewNullableCreateDatabase(val *CreateDatabase) *NullableCreateDatabase

func (NullableCreateDatabase) Get

func (NullableCreateDatabase) IsSet

func (v NullableCreateDatabase) IsSet() bool

func (NullableCreateDatabase) MarshalJSON

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

func (*NullableCreateDatabase) Set

func (*NullableCreateDatabase) UnmarshalJSON

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

func (*NullableCreateDatabase) Unset

func (v *NullableCreateDatabase) Unset()

type NullableCreateDependency

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

func NewNullableCreateDependency

func NewNullableCreateDependency(val *CreateDependency) *NullableCreateDependency

func (NullableCreateDependency) Get

func (NullableCreateDependency) IsSet

func (v NullableCreateDependency) IsSet() bool

func (NullableCreateDependency) MarshalJSON

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

func (*NullableCreateDependency) Set

func (*NullableCreateDependency) UnmarshalJSON

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

func (*NullableCreateDependency) Unset

func (v *NullableCreateDependency) Unset()

type NullableCreateFileCategory

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

func NewNullableCreateFileCategory

func NewNullableCreateFileCategory(val *CreateFileCategory) *NullableCreateFileCategory

func (NullableCreateFileCategory) Get

func (NullableCreateFileCategory) IsSet

func (v NullableCreateFileCategory) IsSet() bool

func (NullableCreateFileCategory) MarshalJSON

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

func (*NullableCreateFileCategory) Set

func (*NullableCreateFileCategory) UnmarshalJSON

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

func (*NullableCreateFileCategory) Unset

func (v *NullableCreateFileCategory) Unset()

type NullableCreateGlossary

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

func NewNullableCreateGlossary

func NewNullableCreateGlossary(val *CreateGlossary) *NullableCreateGlossary

func (NullableCreateGlossary) Get

func (NullableCreateGlossary) IsSet

func (v NullableCreateGlossary) IsSet() bool

func (NullableCreateGlossary) MarshalJSON

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

func (*NullableCreateGlossary) Set

func (*NullableCreateGlossary) UnmarshalJSON

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

func (*NullableCreateGlossary) Unset

func (v *NullableCreateGlossary) Unset()

type NullableCreateGrid

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

func NewNullableCreateGrid

func NewNullableCreateGrid(val *CreateGrid) *NullableCreateGrid

func (NullableCreateGrid) Get

func (v NullableCreateGrid) Get() *CreateGrid

func (NullableCreateGrid) IsSet

func (v NullableCreateGrid) IsSet() bool

func (NullableCreateGrid) MarshalJSON

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

func (*NullableCreateGrid) Set

func (v *NullableCreateGrid) Set(val *CreateGrid)

func (*NullableCreateGrid) UnmarshalJSON

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

func (*NullableCreateGrid) Unset

func (v *NullableCreateGrid) Unset()

type NullableCreatePath

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

func NewNullableCreatePath

func NewNullableCreatePath(val *CreatePath) *NullableCreatePath

func (NullableCreatePath) Get

func (v NullableCreatePath) Get() *CreatePath

func (NullableCreatePath) IsSet

func (v NullableCreatePath) IsSet() bool

func (NullableCreatePath) MarshalJSON

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

func (*NullableCreatePath) Set

func (v *NullableCreatePath) Set(val *CreatePath)

func (*NullableCreatePath) UnmarshalJSON

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

func (*NullableCreatePath) Unset

func (v *NullableCreatePath) Unset()

type NullableCreateProject

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

func NewNullableCreateProject

func NewNullableCreateProject(val *CreateProject) *NullableCreateProject

func (NullableCreateProject) Get

func (NullableCreateProject) IsSet

func (v NullableCreateProject) IsSet() bool

func (NullableCreateProject) MarshalJSON

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

func (*NullableCreateProject) Set

func (v *NullableCreateProject) Set(val *CreateProject)

func (*NullableCreateProject) UnmarshalJSON

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

func (*NullableCreateProject) Unset

func (v *NullableCreateProject) Unset()

type NullableCreateShareView

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

func NewNullableCreateShareView

func NewNullableCreateShareView(val *CreateShareView) *NullableCreateShareView

func (NullableCreateShareView) Get

func (NullableCreateShareView) IsSet

func (v NullableCreateShareView) IsSet() bool

func (NullableCreateShareView) MarshalJSON

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

func (*NullableCreateShareView) Set

func (*NullableCreateShareView) UnmarshalJSON

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

func (*NullableCreateShareView) Unset

func (v *NullableCreateShareView) Unset()

type NullableCreateTransMem

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

func NewNullableCreateTransMem

func NewNullableCreateTransMem(val *CreateTransMem) *NullableCreateTransMem

func (NullableCreateTransMem) Get

func (NullableCreateTransMem) IsSet

func (v NullableCreateTransMem) IsSet() bool

func (NullableCreateTransMem) MarshalJSON

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

func (*NullableCreateTransMem) Set

func (*NullableCreateTransMem) UnmarshalJSON

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

func (*NullableCreateTransMem) Unset

func (v *NullableCreateTransMem) Unset()

type NullableCreateView

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

func NewNullableCreateView

func NewNullableCreateView(val *CreateView) *NullableCreateView

func (NullableCreateView) Get

func (v NullableCreateView) Get() *CreateView

func (NullableCreateView) IsSet

func (v NullableCreateView) IsSet() bool

func (NullableCreateView) MarshalJSON

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

func (*NullableCreateView) Set

func (v *NullableCreateView) Set(val *CreateView)

func (*NullableCreateView) UnmarshalJSON

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

func (*NullableCreateView) Unset

func (v *NullableCreateView) Unset()

type NullableDatabase

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

func NewNullableDatabase

func NewNullableDatabase(val *Database) *NullableDatabase

func (NullableDatabase) Get

func (v NullableDatabase) Get() *Database

func (NullableDatabase) IsSet

func (v NullableDatabase) IsSet() bool

func (NullableDatabase) MarshalJSON

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

func (*NullableDatabase) Set

func (v *NullableDatabase) Set(val *Database)

func (*NullableDatabase) UnmarshalJSON

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

func (*NullableDatabase) Unset

func (v *NullableDatabase) Unset()

type NullableDateTimeFormat

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

func NewNullableDateTimeFormat

func NewNullableDateTimeFormat(val *DateTimeFormat) *NullableDateTimeFormat

func (NullableDateTimeFormat) Get

func (NullableDateTimeFormat) IsSet

func (v NullableDateTimeFormat) IsSet() bool

func (NullableDateTimeFormat) MarshalJSON

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

func (*NullableDateTimeFormat) Set

func (*NullableDateTimeFormat) UnmarshalJSON

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

func (*NullableDateTimeFormat) Unset

func (v *NullableDateTimeFormat) Unset()

type NullableDeleteDependency

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

func NewNullableDeleteDependency

func NewNullableDeleteDependency(val *DeleteDependency) *NullableDeleteDependency

func (NullableDeleteDependency) Get

func (NullableDeleteDependency) IsSet

func (v NullableDeleteDependency) IsSet() bool

func (NullableDeleteDependency) MarshalJSON

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

func (*NullableDeleteDependency) Set

func (*NullableDeleteDependency) UnmarshalJSON

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

func (*NullableDeleteDependency) Unset

func (v *NullableDeleteDependency) Unset()

type NullableDeleteFile

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

func NewNullableDeleteFile

func NewNullableDeleteFile(val *DeleteFile) *NullableDeleteFile

func (NullableDeleteFile) Get

func (v NullableDeleteFile) Get() *DeleteFile

func (NullableDeleteFile) IsSet

func (v NullableDeleteFile) IsSet() bool

func (NullableDeleteFile) MarshalJSON

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

func (*NullableDeleteFile) Set

func (v *NullableDeleteFile) Set(val *DeleteFile)

func (*NullableDeleteFile) UnmarshalJSON

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

func (*NullableDeleteFile) Unset

func (v *NullableDeleteFile) Unset()

type NullableDeletePath

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

func NewNullableDeletePath

func NewNullableDeletePath(val *DeletePath) *NullableDeletePath

func (NullableDeletePath) Get

func (v NullableDeletePath) Get() *DeletePath

func (NullableDeletePath) IsSet

func (v NullableDeletePath) IsSet() bool

func (NullableDeletePath) MarshalJSON

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

func (*NullableDeletePath) Set

func (v *NullableDeletePath) Set(val *DeletePath)

func (*NullableDeletePath) UnmarshalJSON

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

func (*NullableDeletePath) Unset

func (v *NullableDeletePath) Unset()

type NullableDeleteRecord

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

func NewNullableDeleteRecord

func NewNullableDeleteRecord(val *DeleteRecord) *NullableDeleteRecord

func (NullableDeleteRecord) Get

func (NullableDeleteRecord) IsSet

func (v NullableDeleteRecord) IsSet() bool

func (NullableDeleteRecord) MarshalJSON

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

func (*NullableDeleteRecord) Set

func (v *NullableDeleteRecord) Set(val *DeleteRecord)

func (*NullableDeleteRecord) UnmarshalJSON

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

func (*NullableDeleteRecord) Unset

func (v *NullableDeleteRecord) Unset()

type NullableDependency

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

func NewNullableDependency

func NewNullableDependency(val *Dependency) *NullableDependency

func (NullableDependency) Get

func (v NullableDependency) Get() *Dependency

func (NullableDependency) IsSet

func (v NullableDependency) IsSet() bool

func (NullableDependency) MarshalJSON

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

func (*NullableDependency) Set

func (v *NullableDependency) Set(val *Dependency)

func (*NullableDependency) UnmarshalJSON

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

func (*NullableDependency) Unset

func (v *NullableDependency) Unset()

type NullableExportFileHeader

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

func NewNullableExportFileHeader

func NewNullableExportFileHeader(val *ExportFileHeader) *NullableExportFileHeader

func (NullableExportFileHeader) Get

func (NullableExportFileHeader) IsSet

func (v NullableExportFileHeader) IsSet() bool

func (NullableExportFileHeader) MarshalJSON

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

func (*NullableExportFileHeader) Set

func (*NullableExportFileHeader) UnmarshalJSON

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

func (*NullableExportFileHeader) Unset

func (v *NullableExportFileHeader) Unset()

type NullableExportFormat

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

func NewNullableExportFormat

func NewNullableExportFormat(val *ExportFormat) *NullableExportFormat

func (NullableExportFormat) Get

func (NullableExportFormat) IsSet

func (v NullableExportFormat) IsSet() bool

func (NullableExportFormat) MarshalJSON

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

func (*NullableExportFormat) Set

func (v *NullableExportFormat) Set(val *ExportFormat)

func (*NullableExportFormat) UnmarshalJSON

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

func (*NullableExportFormat) Unset

func (v *NullableExportFormat) Unset()

type NullableFetchFileOption

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

func NewNullableFetchFileOption

func NewNullableFetchFileOption(val *FetchFileOption) *NullableFetchFileOption

func (NullableFetchFileOption) Get

func (NullableFetchFileOption) IsSet

func (v NullableFetchFileOption) IsSet() bool

func (NullableFetchFileOption) MarshalJSON

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

func (*NullableFetchFileOption) Set

func (*NullableFetchFileOption) UnmarshalJSON

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

func (*NullableFetchFileOption) Unset

func (v *NullableFetchFileOption) Unset()

type NullableFetchRecordHistoryRequest

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

func (NullableFetchRecordHistoryRequest) Get

func (NullableFetchRecordHistoryRequest) IsSet

func (NullableFetchRecordHistoryRequest) MarshalJSON

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

func (*NullableFetchRecordHistoryRequest) Set

func (*NullableFetchRecordHistoryRequest) UnmarshalJSON

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

func (*NullableFetchRecordHistoryRequest) Unset

type NullableFileCategory

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

func NewNullableFileCategory

func NewNullableFileCategory(val *FileCategory) *NullableFileCategory

func (NullableFileCategory) Get

func (NullableFileCategory) IsSet

func (v NullableFileCategory) IsSet() bool

func (NullableFileCategory) MarshalJSON

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

func (*NullableFileCategory) Set

func (v *NullableFileCategory) Set(val *FileCategory)

func (*NullableFileCategory) UnmarshalJSON

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

func (*NullableFileCategory) Unset

func (v *NullableFileCategory) Unset()

type NullableFilterField

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

func NewNullableFilterField

func NewNullableFilterField(val *FilterField) *NullableFilterField

func (NullableFilterField) Get

func (NullableFilterField) IsSet

func (v NullableFilterField) IsSet() bool

func (NullableFilterField) MarshalJSON

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

func (*NullableFilterField) Set

func (v *NullableFilterField) Set(val *FilterField)

func (*NullableFilterField) UnmarshalJSON

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

func (*NullableFilterField) Unset

func (v *NullableFilterField) 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 NullableFormula

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

func NewNullableFormula

func NewNullableFormula(val *Formula) *NullableFormula

func (NullableFormula) Get

func (v NullableFormula) Get() *Formula

func (NullableFormula) IsSet

func (v NullableFormula) IsSet() bool

func (NullableFormula) MarshalJSON

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

func (*NullableFormula) Set

func (v *NullableFormula) Set(val *Formula)

func (*NullableFormula) UnmarshalJSON

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

func (*NullableFormula) Unset

func (v *NullableFormula) Unset()

type NullableGlossary

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

func NewNullableGlossary

func NewNullableGlossary(val *Glossary) *NullableGlossary

func (NullableGlossary) Get

func (v NullableGlossary) Get() *Glossary

func (NullableGlossary) IsSet

func (v NullableGlossary) IsSet() bool

func (NullableGlossary) MarshalJSON

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

func (*NullableGlossary) Set

func (v *NullableGlossary) Set(val *Glossary)

func (*NullableGlossary) UnmarshalJSON

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

func (*NullableGlossary) Unset

func (v *NullableGlossary) Unset()

type NullableGlossaryExportFormat

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

func NewNullableGlossaryExportFormat

func NewNullableGlossaryExportFormat(val *GlossaryExportFormat) *NullableGlossaryExportFormat

func (NullableGlossaryExportFormat) Get

func (NullableGlossaryExportFormat) IsSet

func (NullableGlossaryExportFormat) MarshalJSON

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

func (*NullableGlossaryExportFormat) Set

func (*NullableGlossaryExportFormat) UnmarshalJSON

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

func (*NullableGlossaryExportFormat) Unset

func (v *NullableGlossaryExportFormat) Unset()

type NullableGlossaryProject

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

func NewNullableGlossaryProject

func NewNullableGlossaryProject(val *GlossaryProject) *NullableGlossaryProject

func (NullableGlossaryProject) Get

func (NullableGlossaryProject) IsSet

func (v NullableGlossaryProject) IsSet() bool

func (NullableGlossaryProject) MarshalJSON

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

func (*NullableGlossaryProject) Set

func (*NullableGlossaryProject) UnmarshalJSON

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

func (*NullableGlossaryProject) Unset

func (v *NullableGlossaryProject) Unset()

type NullableGrid

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

func NewNullableGrid

func NewNullableGrid(val *Grid) *NullableGrid

func (NullableGrid) Get

func (v NullableGrid) Get() *Grid

func (NullableGrid) IsSet

func (v NullableGrid) IsSet() bool

func (NullableGrid) MarshalJSON

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

func (*NullableGrid) Set

func (v *NullableGrid) Set(val *Grid)

func (*NullableGrid) UnmarshalJSON

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

func (*NullableGrid) Unset

func (v *NullableGrid) Unset()

type NullableGridSetting

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

func NewNullableGridSetting

func NewNullableGridSetting(val *GridSetting) *NullableGridSetting

func (NullableGridSetting) Get

func (NullableGridSetting) IsSet

func (v NullableGridSetting) IsSet() bool

func (NullableGridSetting) MarshalJSON

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

func (*NullableGridSetting) Set

func (v *NullableGridSetting) Set(val *GridSetting)

func (*NullableGridSetting) UnmarshalJSON

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

func (*NullableGridSetting) Unset

func (v *NullableGridSetting) Unset()

type NullableGroup

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

func NewNullableGroup

func NewNullableGroup(val *Group) *NullableGroup

func (NullableGroup) Get

func (v NullableGroup) Get() *Group

func (NullableGroup) IsSet

func (v NullableGroup) IsSet() bool

func (NullableGroup) MarshalJSON

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

func (*NullableGroup) Set

func (v *NullableGroup) Set(val *Group)

func (*NullableGroup) UnmarshalJSON

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

func (*NullableGroup) Unset

func (v *NullableGroup) Unset()

type NullableImportOption

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

func NewNullableImportOption

func NewNullableImportOption(val *ImportOption) *NullableImportOption

func (NullableImportOption) Get

func (NullableImportOption) IsSet

func (v NullableImportOption) IsSet() bool

func (NullableImportOption) MarshalJSON

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

func (*NullableImportOption) Set

func (v *NullableImportOption) Set(val *ImportOption)

func (*NullableImportOption) UnmarshalJSON

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

func (*NullableImportOption) Unset

func (v *NullableImportOption) 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 NullableMergeBranchRequest

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

func NewNullableMergeBranchRequest

func NewNullableMergeBranchRequest(val *MergeBranchRequest) *NullableMergeBranchRequest

func (NullableMergeBranchRequest) Get

func (NullableMergeBranchRequest) IsSet

func (v NullableMergeBranchRequest) IsSet() bool

func (NullableMergeBranchRequest) MarshalJSON

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

func (*NullableMergeBranchRequest) Set

func (*NullableMergeBranchRequest) UnmarshalJSON

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

func (*NullableMergeBranchRequest) Unset

func (v *NullableMergeBranchRequest) Unset()

type NullableMergeCellConflict

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

func NewNullableMergeCellConflict

func NewNullableMergeCellConflict(val *MergeCellConflict) *NullableMergeCellConflict

func (NullableMergeCellConflict) Get

func (NullableMergeCellConflict) IsSet

func (v NullableMergeCellConflict) IsSet() bool

func (NullableMergeCellConflict) MarshalJSON

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

func (*NullableMergeCellConflict) Set

func (*NullableMergeCellConflict) UnmarshalJSON

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

func (*NullableMergeCellConflict) Unset

func (v *NullableMergeCellConflict) Unset()

type NullableMergeRecordConflict

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

func NewNullableMergeRecordConflict

func NewNullableMergeRecordConflict(val *MergeRecordConflict) *NullableMergeRecordConflict

func (NullableMergeRecordConflict) Get

func (NullableMergeRecordConflict) IsSet

func (NullableMergeRecordConflict) MarshalJSON

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

func (*NullableMergeRecordConflict) Set

func (*NullableMergeRecordConflict) UnmarshalJSON

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

func (*NullableMergeRecordConflict) Unset

func (v *NullableMergeRecordConflict) Unset()

type NullableMovePath

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

func NewNullableMovePath

func NewNullableMovePath(val *MovePath) *NullableMovePath

func (NullableMovePath) Get

func (v NullableMovePath) Get() *MovePath

func (NullableMovePath) IsSet

func (v NullableMovePath) IsSet() bool

func (NullableMovePath) MarshalJSON

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

func (*NullableMovePath) Set

func (v *NullableMovePath) Set(val *MovePath)

func (*NullableMovePath) UnmarshalJSON

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

func (*NullableMovePath) Unset

func (v *NullableMovePath) Unset()

type NullableNumberFormat

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

func NewNullableNumberFormat

func NewNullableNumberFormat(val *NumberFormat) *NullableNumberFormat

func (NullableNumberFormat) Get

func (NullableNumberFormat) IsSet

func (v NullableNumberFormat) IsSet() bool

func (NullableNumberFormat) MarshalJSON

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

func (*NullableNumberFormat) Set

func (v *NullableNumberFormat) Set(val *NumberFormat)

func (*NullableNumberFormat) UnmarshalJSON

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

func (*NullableNumberFormat) Unset

func (v *NullableNumberFormat) Unset()

type NullablePathList

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

func NewNullablePathList

func NewNullablePathList(val *PathList) *NullablePathList

func (NullablePathList) Get

func (v NullablePathList) Get() *PathList

func (NullablePathList) IsSet

func (v NullablePathList) IsSet() bool

func (NullablePathList) MarshalJSON

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

func (*NullablePathList) Set

func (v *NullablePathList) Set(val *PathList)

func (*NullablePathList) UnmarshalJSON

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

func (*NullablePathList) Unset

func (v *NullablePathList) Unset()

type NullablePathNode

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

func NewNullablePathNode

func NewNullablePathNode(val *PathNode) *NullablePathNode

func (NullablePathNode) Get

func (v NullablePathNode) Get() *PathNode

func (NullablePathNode) IsSet

func (v NullablePathNode) IsSet() bool

func (NullablePathNode) MarshalJSON

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

func (*NullablePathNode) Set

func (v *NullablePathNode) Set(val *PathNode)

func (*NullablePathNode) UnmarshalJSON

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

func (*NullablePathNode) Unset

func (v *NullablePathNode) Unset()

type NullablePathSingle

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

func NewNullablePathSingle

func NewNullablePathSingle(val *PathSingle) *NullablePathSingle

func (NullablePathSingle) Get

func (v NullablePathSingle) Get() *PathSingle

func (NullablePathSingle) IsSet

func (v NullablePathSingle) IsSet() bool

func (NullablePathSingle) MarshalJSON

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

func (*NullablePathSingle) Set

func (v *NullablePathSingle) Set(val *PathSingle)

func (*NullablePathSingle) UnmarshalJSON

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

func (*NullablePathSingle) Unset

func (v *NullablePathSingle) Unset()

type NullablePrivilege

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

func NewNullablePrivilege

func NewNullablePrivilege(val *Privilege) *NullablePrivilege

func (NullablePrivilege) Get

func (v NullablePrivilege) Get() *Privilege

func (NullablePrivilege) IsSet

func (v NullablePrivilege) IsSet() bool

func (NullablePrivilege) MarshalJSON

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

func (*NullablePrivilege) Set

func (v *NullablePrivilege) Set(val *Privilege)

func (*NullablePrivilege) UnmarshalJSON

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

func (*NullablePrivilege) Unset

func (v *NullablePrivilege) Unset()

type NullableProject

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

func NewNullableProject

func NewNullableProject(val *Project) *NullableProject

func (NullableProject) Get

func (v NullableProject) Get() *Project

func (NullableProject) IsSet

func (v NullableProject) IsSet() bool

func (NullableProject) MarshalJSON

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

func (*NullableProject) Set

func (v *NullableProject) Set(val *Project)

func (*NullableProject) UnmarshalJSON

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

func (*NullableProject) Unset

func (v *NullableProject) Unset()

type NullableProjectDetail

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

func NewNullableProjectDetail

func NewNullableProjectDetail(val *ProjectDetail) *NullableProjectDetail

func (NullableProjectDetail) Get

func (NullableProjectDetail) IsSet

func (v NullableProjectDetail) IsSet() bool

func (NullableProjectDetail) MarshalJSON

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

func (*NullableProjectDetail) Set

func (v *NullableProjectDetail) Set(val *ProjectDetail)

func (*NullableProjectDetail) UnmarshalJSON

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

func (*NullableProjectDetail) Unset

func (v *NullableProjectDetail) Unset()

type NullableRecord

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

func NewNullableRecord

func NewNullableRecord(val *Record) *NullableRecord

func (NullableRecord) Get

func (v NullableRecord) Get() *Record

func (NullableRecord) IsSet

func (v NullableRecord) IsSet() bool

func (NullableRecord) MarshalJSON

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

func (*NullableRecord) Set

func (v *NullableRecord) Set(val *Record)

func (*NullableRecord) UnmarshalJSON

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

func (*NullableRecord) Unset

func (v *NullableRecord) Unset()

type NullableRecordHistory

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

func NewNullableRecordHistory

func NewNullableRecordHistory(val *RecordHistory) *NullableRecordHistory

func (NullableRecordHistory) Get

func (NullableRecordHistory) IsSet

func (v NullableRecordHistory) IsSet() bool

func (NullableRecordHistory) MarshalJSON

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

func (*NullableRecordHistory) Set

func (v *NullableRecordHistory) Set(val *RecordHistory)

func (*NullableRecordHistory) UnmarshalJSON

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

func (*NullableRecordHistory) Unset

func (v *NullableRecordHistory) Unset()

type NullableRecordIdentifierWrapper

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

func (NullableRecordIdentifierWrapper) Get

func (NullableRecordIdentifierWrapper) IsSet

func (NullableRecordIdentifierWrapper) MarshalJSON

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

func (*NullableRecordIdentifierWrapper) Set

func (*NullableRecordIdentifierWrapper) UnmarshalJSON

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

func (*NullableRecordIdentifierWrapper) Unset

type NullableReference

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

func NewNullableReference

func NewNullableReference(val *Reference) *NullableReference

func (NullableReference) Get

func (v NullableReference) Get() *Reference

func (NullableReference) IsSet

func (v NullableReference) IsSet() bool

func (NullableReference) MarshalJSON

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

func (*NullableReference) Set

func (v *NullableReference) Set(val *Reference)

func (*NullableReference) UnmarshalJSON

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

func (*NullableReference) Unset

func (v *NullableReference) Unset()

type NullableReferencedColumn

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

func NewNullableReferencedColumn

func NewNullableReferencedColumn(val *ReferencedColumn) *NullableReferencedColumn

func (NullableReferencedColumn) Get

func (NullableReferencedColumn) IsSet

func (v NullableReferencedColumn) IsSet() bool

func (NullableReferencedColumn) MarshalJSON

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

func (*NullableReferencedColumn) Set

func (*NullableReferencedColumn) UnmarshalJSON

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

func (*NullableReferencedColumn) Unset

func (v *NullableReferencedColumn) Unset()

type NullableReferencedGrid

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

func NewNullableReferencedGrid

func NewNullableReferencedGrid(val *ReferencedGrid) *NullableReferencedGrid

func (NullableReferencedGrid) Get

func (NullableReferencedGrid) IsSet

func (v NullableReferencedGrid) IsSet() bool

func (NullableReferencedGrid) MarshalJSON

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

func (*NullableReferencedGrid) Set

func (*NullableReferencedGrid) UnmarshalJSON

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

func (*NullableReferencedGrid) Unset

func (v *NullableReferencedGrid) Unset()

type NullableRole

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

func NewNullableRole

func NewNullableRole(val *Role) *NullableRole

func (NullableRole) Get

func (v NullableRole) Get() *Role

func (NullableRole) IsSet

func (v NullableRole) IsSet() bool

func (NullableRole) MarshalJSON

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

func (*NullableRole) Set

func (v *NullableRole) Set(val *Role)

func (*NullableRole) UnmarshalJSON

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

func (*NullableRole) Unset

func (v *NullableRole) Unset()

type NullableSetCell

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

func NewNullableSetCell

func NewNullableSetCell(val *SetCell) *NullableSetCell

func (NullableSetCell) Get

func (v NullableSetCell) Get() *SetCell

func (NullableSetCell) IsSet

func (v NullableSetCell) IsSet() bool

func (NullableSetCell) MarshalJSON

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

func (*NullableSetCell) Set

func (v *NullableSetCell) Set(val *SetCell)

func (*NullableSetCell) UnmarshalJSON

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

func (*NullableSetCell) Unset

func (v *NullableSetCell) Unset()

type NullableSetRecord

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

func NewNullableSetRecord

func NewNullableSetRecord(val *SetRecord) *NullableSetRecord

func (NullableSetRecord) Get

func (v NullableSetRecord) Get() *SetRecord

func (NullableSetRecord) IsSet

func (v NullableSetRecord) IsSet() bool

func (NullableSetRecord) MarshalJSON

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

func (*NullableSetRecord) Set

func (v *NullableSetRecord) Set(val *SetRecord)

func (*NullableSetRecord) UnmarshalJSON

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

func (*NullableSetRecord) Unset

func (v *NullableSetRecord) Unset()

type NullableSettingFile

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

func NewNullableSettingFile

func NewNullableSettingFile(val *SettingFile) *NullableSettingFile

func (NullableSettingFile) Get

func (NullableSettingFile) IsSet

func (v NullableSettingFile) IsSet() bool

func (NullableSettingFile) MarshalJSON

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

func (*NullableSettingFile) Set

func (v *NullableSettingFile) Set(val *SettingFile)

func (*NullableSettingFile) UnmarshalJSON

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

func (*NullableSettingFile) Unset

func (v *NullableSettingFile) Unset()

type NullableShareView

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

func NewNullableShareView

func NewNullableShareView(val *ShareView) *NullableShareView

func (NullableShareView) Get

func (v NullableShareView) Get() *ShareView

func (NullableShareView) IsSet

func (v NullableShareView) IsSet() bool

func (NullableShareView) MarshalJSON

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

func (*NullableShareView) Set

func (v *NullableShareView) Set(val *ShareView)

func (*NullableShareView) UnmarshalJSON

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

func (*NullableShareView) Unset

func (v *NullableShareView) 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 NullableTask

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

func NewNullableTask

func NewNullableTask(val *Task) *NullableTask

func (NullableTask) Get

func (v NullableTask) Get() *Task

func (NullableTask) IsSet

func (v NullableTask) IsSet() bool

func (NullableTask) MarshalJSON

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

func (*NullableTask) Set

func (v *NullableTask) Set(val *Task)

func (*NullableTask) UnmarshalJSON

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

func (*NullableTask) Unset

func (v *NullableTask) 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 NullableTransMem

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

func NewNullableTransMem

func NewNullableTransMem(val *TransMem) *NullableTransMem

func (NullableTransMem) Get

func (v NullableTransMem) Get() *TransMem

func (NullableTransMem) IsSet

func (v NullableTransMem) IsSet() bool

func (NullableTransMem) MarshalJSON

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

func (*NullableTransMem) Set

func (v *NullableTransMem) Set(val *TransMem)

func (*NullableTransMem) UnmarshalJSON

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

func (*NullableTransMem) Unset

func (v *NullableTransMem) Unset()

type NullableTranslationCount

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

func NewNullableTranslationCount

func NewNullableTranslationCount(val *TranslationCount) *NullableTranslationCount

func (NullableTranslationCount) Get

func (NullableTranslationCount) IsSet

func (v NullableTranslationCount) IsSet() bool

func (NullableTranslationCount) MarshalJSON

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

func (*NullableTranslationCount) Set

func (*NullableTranslationCount) UnmarshalJSON

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

func (*NullableTranslationCount) Unset

func (v *NullableTranslationCount) Unset()

type NullableTranslationStatus

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

func NewNullableTranslationStatus

func NewNullableTranslationStatus(val *TranslationStatus) *NullableTranslationStatus

func (NullableTranslationStatus) Get

func (NullableTranslationStatus) IsSet

func (v NullableTranslationStatus) IsSet() bool

func (NullableTranslationStatus) MarshalJSON

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

func (*NullableTranslationStatus) Set

func (*NullableTranslationStatus) UnmarshalJSON

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

func (*NullableTranslationStatus) Unset

func (v *NullableTranslationStatus) Unset()

type NullableUpdateCategory

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

func NewNullableUpdateCategory

func NewNullableUpdateCategory(val *UpdateCategory) *NullableUpdateCategory

func (NullableUpdateCategory) Get

func (NullableUpdateCategory) IsSet

func (v NullableUpdateCategory) IsSet() bool

func (NullableUpdateCategory) MarshalJSON

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

func (*NullableUpdateCategory) Set

func (*NullableUpdateCategory) UnmarshalJSON

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

func (*NullableUpdateCategory) Unset

func (v *NullableUpdateCategory) Unset()

type NullableUpdateColumn

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

func NewNullableUpdateColumn

func NewNullableUpdateColumn(val *UpdateColumn) *NullableUpdateColumn

func (NullableUpdateColumn) Get

func (NullableUpdateColumn) IsSet

func (v NullableUpdateColumn) IsSet() bool

func (NullableUpdateColumn) MarshalJSON

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

func (*NullableUpdateColumn) Set

func (v *NullableUpdateColumn) Set(val *UpdateColumn)

func (*NullableUpdateColumn) UnmarshalJSON

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

func (*NullableUpdateColumn) Unset

func (v *NullableUpdateColumn) Unset()

type NullableUpdateDatabase

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

func NewNullableUpdateDatabase

func NewNullableUpdateDatabase(val *UpdateDatabase) *NullableUpdateDatabase

func (NullableUpdateDatabase) Get

func (NullableUpdateDatabase) IsSet

func (v NullableUpdateDatabase) IsSet() bool

func (NullableUpdateDatabase) MarshalJSON

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

func (*NullableUpdateDatabase) Set

func (*NullableUpdateDatabase) UnmarshalJSON

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

func (*NullableUpdateDatabase) Unset

func (v *NullableUpdateDatabase) Unset()

type NullableUpdateDependency

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

func NewNullableUpdateDependency

func NewNullableUpdateDependency(val *UpdateDependency) *NullableUpdateDependency

func (NullableUpdateDependency) Get

func (NullableUpdateDependency) IsSet

func (v NullableUpdateDependency) IsSet() bool

func (NullableUpdateDependency) MarshalJSON

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

func (*NullableUpdateDependency) Set

func (*NullableUpdateDependency) UnmarshalJSON

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

func (*NullableUpdateDependency) Unset

func (v *NullableUpdateDependency) Unset()

type NullableUpdateGlossary

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

func NewNullableUpdateGlossary

func NewNullableUpdateGlossary(val *UpdateGlossary) *NullableUpdateGlossary

func (NullableUpdateGlossary) Get

func (NullableUpdateGlossary) IsSet

func (v NullableUpdateGlossary) IsSet() bool

func (NullableUpdateGlossary) MarshalJSON

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

func (*NullableUpdateGlossary) Set

func (*NullableUpdateGlossary) UnmarshalJSON

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

func (*NullableUpdateGlossary) Unset

func (v *NullableUpdateGlossary) Unset()

type NullableUpdateGrid

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

func NewNullableUpdateGrid

func NewNullableUpdateGrid(val *UpdateGrid) *NullableUpdateGrid

func (NullableUpdateGrid) Get

func (v NullableUpdateGrid) Get() *UpdateGrid

func (NullableUpdateGrid) IsSet

func (v NullableUpdateGrid) IsSet() bool

func (NullableUpdateGrid) MarshalJSON

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

func (*NullableUpdateGrid) Set

func (v *NullableUpdateGrid) Set(val *UpdateGrid)

func (*NullableUpdateGrid) UnmarshalJSON

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

func (*NullableUpdateGrid) Unset

func (v *NullableUpdateGrid) Unset()

type NullableUpdateGridSetting

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

func NewNullableUpdateGridSetting

func NewNullableUpdateGridSetting(val *UpdateGridSetting) *NullableUpdateGridSetting

func (NullableUpdateGridSetting) Get

func (NullableUpdateGridSetting) IsSet

func (v NullableUpdateGridSetting) IsSet() bool

func (NullableUpdateGridSetting) MarshalJSON

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

func (*NullableUpdateGridSetting) Set

func (*NullableUpdateGridSetting) UnmarshalJSON

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

func (*NullableUpdateGridSetting) Unset

func (v *NullableUpdateGridSetting) Unset()

type NullableUpdatePath

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

func NewNullableUpdatePath

func NewNullableUpdatePath(val *UpdatePath) *NullableUpdatePath

func (NullableUpdatePath) Get

func (v NullableUpdatePath) Get() *UpdatePath

func (NullableUpdatePath) IsSet

func (v NullableUpdatePath) IsSet() bool

func (NullableUpdatePath) MarshalJSON

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

func (*NullableUpdatePath) Set

func (v *NullableUpdatePath) Set(val *UpdatePath)

func (*NullableUpdatePath) UnmarshalJSON

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

func (*NullableUpdatePath) Unset

func (v *NullableUpdatePath) Unset()

type NullableUpdateProject

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

func NewNullableUpdateProject

func NewNullableUpdateProject(val *UpdateProject) *NullableUpdateProject

func (NullableUpdateProject) Get

func (NullableUpdateProject) IsSet

func (v NullableUpdateProject) IsSet() bool

func (NullableUpdateProject) MarshalJSON

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

func (*NullableUpdateProject) Set

func (v *NullableUpdateProject) Set(val *UpdateProject)

func (*NullableUpdateProject) UnmarshalJSON

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

func (*NullableUpdateProject) Unset

func (v *NullableUpdateProject) Unset()

type NullableUpdateTransMem

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

func NewNullableUpdateTransMem

func NewNullableUpdateTransMem(val *UpdateTransMem) *NullableUpdateTransMem

func (NullableUpdateTransMem) Get

func (NullableUpdateTransMem) IsSet

func (v NullableUpdateTransMem) IsSet() bool

func (NullableUpdateTransMem) MarshalJSON

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

func (*NullableUpdateTransMem) Set

func (*NullableUpdateTransMem) UnmarshalJSON

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

func (*NullableUpdateTransMem) Unset

func (v *NullableUpdateTransMem) Unset()

type NullableUploadSettingFileRequest

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

func (NullableUploadSettingFileRequest) Get

func (NullableUploadSettingFileRequest) IsSet

func (NullableUploadSettingFileRequest) MarshalJSON

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

func (*NullableUploadSettingFileRequest) Set

func (*NullableUploadSettingFileRequest) UnmarshalJSON

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

func (*NullableUploadSettingFileRequest) Unset

type NullableUploadZipRequest

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

func NewNullableUploadZipRequest

func NewNullableUploadZipRequest(val *UploadZipRequest) *NullableUploadZipRequest

func (NullableUploadZipRequest) Get

func (NullableUploadZipRequest) IsSet

func (v NullableUploadZipRequest) IsSet() bool

func (NullableUploadZipRequest) MarshalJSON

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

func (*NullableUploadZipRequest) Set

func (*NullableUploadZipRequest) UnmarshalJSON

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

func (*NullableUploadZipRequest) Unset

func (v *NullableUploadZipRequest) Unset()

type NullableUploadedFile

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

func NewNullableUploadedFile

func NewNullableUploadedFile(val *UploadedFile) *NullableUploadedFile

func (NullableUploadedFile) Get

func (NullableUploadedFile) IsSet

func (v NullableUploadedFile) IsSet() bool

func (NullableUploadedFile) MarshalJSON

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

func (*NullableUploadedFile) Set

func (v *NullableUploadedFile) Set(val *UploadedFile)

func (*NullableUploadedFile) UnmarshalJSON

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

func (*NullableUploadedFile) Unset

func (v *NullableUploadedFile) Unset()

type NullableView

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

func NewNullableView

func NewNullableView(val *View) *NullableView

func (NullableView) Get

func (v NullableView) Get() *View

func (NullableView) IsSet

func (v NullableView) IsSet() bool

func (NullableView) MarshalJSON

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

func (*NullableView) Set

func (v *NullableView) Set(val *View)

func (*NullableView) UnmarshalJSON

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

func (*NullableView) Unset

func (v *NullableView) Unset()

type NullableViewColumn

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

func NewNullableViewColumn

func NewNullableViewColumn(val *ViewColumn) *NullableViewColumn

func (NullableViewColumn) Get

func (v NullableViewColumn) Get() *ViewColumn

func (NullableViewColumn) IsSet

func (v NullableViewColumn) IsSet() bool

func (NullableViewColumn) MarshalJSON

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

func (*NullableViewColumn) Set

func (v *NullableViewColumn) Set(val *ViewColumn)

func (*NullableViewColumn) UnmarshalJSON

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

func (*NullableViewColumn) Unset

func (v *NullableViewColumn) Unset()

type NullableViewStatistic

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

func NewNullableViewStatistic

func NewNullableViewStatistic(val *ViewStatistic) *NullableViewStatistic

func (NullableViewStatistic) Get

func (NullableViewStatistic) IsSet

func (v NullableViewStatistic) IsSet() bool

func (NullableViewStatistic) MarshalJSON

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

func (*NullableViewStatistic) Set

func (v *NullableViewStatistic) Set(val *ViewStatistic)

func (*NullableViewStatistic) UnmarshalJSON

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

func (*NullableViewStatistic) Unset

func (v *NullableViewStatistic) Unset()

type NumberFormat

type NumberFormat struct {
	Type             *string `json:"type,omitempty"`
	DecimalPlaces    *int32  `json:"decimalPlaces,omitempty"`
	CurrencySymbol   *string `json:"currencySymbol,omitempty"`
	Use1000Separator *bool   `json:"use1000Separator,omitempty"`
}

NumberFormat struct for NumberFormat

func NewNumberFormat

func NewNumberFormat() *NumberFormat

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

func NewNumberFormatWithDefaults

func NewNumberFormatWithDefaults() *NumberFormat

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

func (*NumberFormat) GetCurrencySymbol

func (o *NumberFormat) GetCurrencySymbol() string

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

func (*NumberFormat) GetCurrencySymbolOk

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

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

func (*NumberFormat) GetDecimalPlaces

func (o *NumberFormat) GetDecimalPlaces() int32

GetDecimalPlaces returns the DecimalPlaces field value if set, zero value otherwise.

func (*NumberFormat) GetDecimalPlacesOk

func (o *NumberFormat) GetDecimalPlacesOk() (*int32, bool)

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

func (*NumberFormat) GetType

func (o *NumberFormat) GetType() string

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

func (*NumberFormat) GetTypeOk

func (o *NumberFormat) 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 (*NumberFormat) GetUse1000Separator

func (o *NumberFormat) GetUse1000Separator() bool

GetUse1000Separator returns the Use1000Separator field value if set, zero value otherwise.

func (*NumberFormat) GetUse1000SeparatorOk

func (o *NumberFormat) GetUse1000SeparatorOk() (*bool, bool)

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

func (*NumberFormat) HasCurrencySymbol

func (o *NumberFormat) HasCurrencySymbol() bool

HasCurrencySymbol returns a boolean if a field has been set.

func (*NumberFormat) HasDecimalPlaces

func (o *NumberFormat) HasDecimalPlaces() bool

HasDecimalPlaces returns a boolean if a field has been set.

func (*NumberFormat) HasType

func (o *NumberFormat) HasType() bool

HasType returns a boolean if a field has been set.

func (*NumberFormat) HasUse1000Separator

func (o *NumberFormat) HasUse1000Separator() bool

HasUse1000Separator returns a boolean if a field has been set.

func (NumberFormat) MarshalJSON

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

func (*NumberFormat) SetCurrencySymbol

func (o *NumberFormat) SetCurrencySymbol(v string)

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

func (*NumberFormat) SetDecimalPlaces

func (o *NumberFormat) SetDecimalPlaces(v int32)

SetDecimalPlaces gets a reference to the given int32 and assigns it to the DecimalPlaces field.

func (*NumberFormat) SetType

func (o *NumberFormat) SetType(v string)

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

func (*NumberFormat) SetUse1000Separator

func (o *NumberFormat) SetUse1000Separator(v bool)

SetUse1000Separator gets a reference to the given bool and assigns it to the Use1000Separator field.

type PathApiCreateRequest

type PathApiCreateRequest struct {
	ApiService *PathApiService
	// contains filtered or unexported fields
}

func (PathApiCreateRequest) CreatePath

func (r PathApiCreateRequest) CreatePath(createPath CreatePath) PathApiCreateRequest

func (PathApiCreateRequest) Execute

func (r PathApiCreateRequest) Execute() (*PathList, *http.Response, error)

type PathApiDeleteRequest

type PathApiDeleteRequest struct {
	ApiService *PathApiService
	// contains filtered or unexported fields
}

func (PathApiDeleteRequest) DeletePath

func (r PathApiDeleteRequest) DeletePath(deletePath DeletePath) PathApiDeleteRequest

func (PathApiDeleteRequest) Execute

func (r PathApiDeleteRequest) Execute() (*http.Response, error)

type PathApiListRequest

type PathApiListRequest struct {
	ApiService *PathApiService
	// contains filtered or unexported fields
}

func (PathApiListRequest) Execute

func (r PathApiListRequest) Execute() ([]PathNode, *http.Response, error)

func (PathApiListRequest) RootPath

func (r PathApiListRequest) RootPath(rootPath string) PathApiListRequest

rootPath

type PathApiMoveRequest

type PathApiMoveRequest struct {
	ApiService *PathApiService
	// contains filtered or unexported fields
}

func (PathApiMoveRequest) Execute

func (r PathApiMoveRequest) Execute() (*PathList, *http.Response, error)

func (PathApiMoveRequest) MovePath

func (r PathApiMoveRequest) MovePath(movePath MovePath) PathApiMoveRequest

type PathApiService

type PathApiService service

PathApiService PathApi service

func (*PathApiService) Create

func (a *PathApiService) Create(ctx context.Context, viewId string) PathApiCreateRequest

Create create

create

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

func (*PathApiService) CreateExecute

func (a *PathApiService) CreateExecute(r PathApiCreateRequest) (*PathList, *http.Response, error)

Execute executes the request

@return PathList

func (*PathApiService) Delete

func (a *PathApiService) Delete(ctx context.Context, viewId string) PathApiDeleteRequest

Delete delete

delete

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

func (*PathApiService) DeleteExecute

func (a *PathApiService) DeleteExecute(r PathApiDeleteRequest) (*http.Response, error)

Execute executes the request

func (*PathApiService) List

List list

list

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

func (*PathApiService) ListExecute

func (a *PathApiService) ListExecute(r PathApiListRequest) ([]PathNode, *http.Response, error)

Execute executes the request

@return []PathNode

func (*PathApiService) Move

Move move

move

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

func (*PathApiService) MoveExecute

func (a *PathApiService) MoveExecute(r PathApiMoveRequest) (*PathList, *http.Response, error)

Execute executes the request

@return PathList

func (*PathApiService) Update

func (a *PathApiService) Update(ctx context.Context, viewId string, path string) PathApiUpdateRequest

Update update

update

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

func (*PathApiService) UpdateExecute

Execute executes the request

@return PathSingle

type PathApiUpdateRequest

type PathApiUpdateRequest struct {
	ApiService *PathApiService
	// contains filtered or unexported fields
}

func (PathApiUpdateRequest) Execute

func (PathApiUpdateRequest) UpdatePath

func (r PathApiUpdateRequest) UpdatePath(updatePath UpdatePath) PathApiUpdateRequest

type PathList

type PathList struct {
	Paths []string `json:"paths,omitempty"`
}

PathList struct for PathList

func NewPathList

func NewPathList() *PathList

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

func NewPathListWithDefaults

func NewPathListWithDefaults() *PathList

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

func (*PathList) GetPaths

func (o *PathList) GetPaths() []string

GetPaths returns the Paths field value if set, zero value otherwise.

func (*PathList) GetPathsOk

func (o *PathList) GetPathsOk() ([]string, bool)

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

func (*PathList) HasPaths

func (o *PathList) HasPaths() bool

HasPaths returns a boolean if a field has been set.

func (PathList) MarshalJSON

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

func (*PathList) SetPaths

func (o *PathList) SetPaths(v []string)

SetPaths gets a reference to the given []string and assigns it to the Paths field.

type PathNode

type PathNode struct {
	Name       *string `json:"name,omitempty"`
	ParentPath *string `json:"parentPath,omitempty"`
}

PathNode struct for PathNode

func NewPathNode

func NewPathNode() *PathNode

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

func NewPathNodeWithDefaults

func NewPathNodeWithDefaults() *PathNode

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

func (*PathNode) GetName

func (o *PathNode) GetName() string

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

func (*PathNode) GetNameOk

func (o *PathNode) 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 (*PathNode) GetParentPath

func (o *PathNode) GetParentPath() string

GetParentPath returns the ParentPath field value if set, zero value otherwise.

func (*PathNode) GetParentPathOk

func (o *PathNode) GetParentPathOk() (*string, bool)

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

func (*PathNode) HasName

func (o *PathNode) HasName() bool

HasName returns a boolean if a field has been set.

func (*PathNode) HasParentPath

func (o *PathNode) HasParentPath() bool

HasParentPath returns a boolean if a field has been set.

func (PathNode) MarshalJSON

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

func (*PathNode) SetName

func (o *PathNode) SetName(v string)

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

func (*PathNode) SetParentPath

func (o *PathNode) SetParentPath(v string)

SetParentPath gets a reference to the given string and assigns it to the ParentPath field.

type PathSingle

type PathSingle struct {
	Path *string `json:"path,omitempty"`
}

PathSingle struct for PathSingle

func NewPathSingle

func NewPathSingle() *PathSingle

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

func NewPathSingleWithDefaults

func NewPathSingleWithDefaults() *PathSingle

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

func (*PathSingle) GetPath

func (o *PathSingle) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*PathSingle) GetPathOk

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

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

func (*PathSingle) HasPath

func (o *PathSingle) HasPath() bool

HasPath returns a boolean if a field has been set.

func (PathSingle) MarshalJSON

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

func (*PathSingle) SetPath

func (o *PathSingle) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

type Privilege

type Privilege struct {
	Id          *int64  `json:"id,omitempty"`
	Name        *string `json:"name,omitempty"`
	Label       *string `json:"label,omitempty"`
	Level       *string `json:"level,omitempty"`
	Order       *int32  `json:"order,omitempty"`
	ServiceId   *string `json:"serviceId,omitempty"`
	Description *string `json:"description,omitempty"`
	Extra       *string `json:"extra,omitempty"`
}

Privilege struct for Privilege

func NewPrivilege

func NewPrivilege() *Privilege

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

func NewPrivilegeWithDefaults

func NewPrivilegeWithDefaults() *Privilege

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

func (*Privilege) GetDescription

func (o *Privilege) GetDescription() string

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

func (*Privilege) GetDescriptionOk

func (o *Privilege) 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 (*Privilege) GetExtra

func (o *Privilege) GetExtra() string

GetExtra returns the Extra field value if set, zero value otherwise.

func (*Privilege) GetExtraOk

func (o *Privilege) GetExtraOk() (*string, bool)

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

func (*Privilege) GetId

func (o *Privilege) GetId() int64

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

func (*Privilege) GetIdOk

func (o *Privilege) GetIdOk() (*int64, 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 (*Privilege) GetLabel

func (o *Privilege) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*Privilege) GetLabelOk

func (o *Privilege) GetLabelOk() (*string, bool)

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

func (*Privilege) GetLevel

func (o *Privilege) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*Privilege) GetLevelOk

func (o *Privilege) GetLevelOk() (*string, bool)

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

func (*Privilege) GetName

func (o *Privilege) GetName() string

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

func (*Privilege) GetNameOk

func (o *Privilege) 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 (*Privilege) GetOrder

func (o *Privilege) GetOrder() int32

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

func (*Privilege) GetOrderOk

func (o *Privilege) 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 (*Privilege) GetServiceId

func (o *Privilege) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*Privilege) GetServiceIdOk

func (o *Privilege) GetServiceIdOk() (*string, bool)

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

func (*Privilege) HasDescription

func (o *Privilege) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Privilege) HasExtra

func (o *Privilege) HasExtra() bool

HasExtra returns a boolean if a field has been set.

func (*Privilege) HasId

func (o *Privilege) HasId() bool

HasId returns a boolean if a field has been set.

func (*Privilege) HasLabel

func (o *Privilege) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*Privilege) HasLevel

func (o *Privilege) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*Privilege) HasName

func (o *Privilege) HasName() bool

HasName returns a boolean if a field has been set.

func (*Privilege) HasOrder

func (o *Privilege) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*Privilege) HasServiceId

func (o *Privilege) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (Privilege) MarshalJSON

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

func (*Privilege) SetDescription

func (o *Privilege) SetDescription(v string)

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

func (*Privilege) SetExtra

func (o *Privilege) SetExtra(v string)

SetExtra gets a reference to the given string and assigns it to the Extra field.

func (*Privilege) SetId

func (o *Privilege) SetId(v int64)

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

func (*Privilege) SetLabel

func (o *Privilege) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*Privilege) SetLevel

func (o *Privilege) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*Privilege) SetName

func (o *Privilege) SetName(v string)

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

func (*Privilege) SetOrder

func (o *Privilege) SetOrder(v int32)

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

func (*Privilege) SetServiceId

func (o *Privilege) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

type Project

type Project struct {
	Id          *int64  `json:"id,omitempty"`
	CompanyId   *int64  `json:"companyId,omitempty"`
	Name        *string `json:"name,omitempty"`
	Description *string `json:"description,omitempty"`
	Role        *Role   `json:"role,omitempty"`
}

Project struct for Project

func NewProject

func NewProject() *Project

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

func NewProjectWithDefaults

func NewProjectWithDefaults() *Project

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

func (*Project) GetCompanyId

func (o *Project) GetCompanyId() int64

GetCompanyId returns the CompanyId field value if set, zero value otherwise.

func (*Project) GetCompanyIdOk

func (o *Project) GetCompanyIdOk() (*int64, bool)

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

func (*Project) GetDescription

func (o *Project) GetDescription() string

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

func (*Project) GetDescriptionOk

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

func (o *Project) GetId() int64

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

func (*Project) GetIdOk

func (o *Project) GetIdOk() (*int64, 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 (*Project) GetName

func (o *Project) GetName() string

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

func (*Project) GetNameOk

func (o *Project) 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 (*Project) GetRole

func (o *Project) GetRole() Role

GetRole returns the Role field value if set, zero value otherwise.

func (*Project) GetRoleOk

func (o *Project) GetRoleOk() (*Role, bool)

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

func (*Project) HasCompanyId

func (o *Project) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*Project) HasDescription

func (o *Project) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Project) HasId

func (o *Project) HasId() bool

HasId returns a boolean if a field has been set.

func (*Project) HasName

func (o *Project) HasName() bool

HasName returns a boolean if a field has been set.

func (*Project) HasRole

func (o *Project) HasRole() bool

HasRole returns a boolean if a field has been set.

func (Project) MarshalJSON

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

func (*Project) SetCompanyId

func (o *Project) SetCompanyId(v int64)

SetCompanyId gets a reference to the given int64 and assigns it to the CompanyId field.

func (*Project) SetDescription

func (o *Project) SetDescription(v string)

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

func (*Project) SetId

func (o *Project) SetId(v int64)

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

func (*Project) SetName

func (o *Project) SetName(v string)

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

func (*Project) SetRole

func (o *Project) SetRole(v Role)

SetRole gets a reference to the given Role and assigns it to the Role field.

type ProjectApiCreateRequest

type ProjectApiCreateRequest struct {
	ApiService *ProjectApiService
	// contains filtered or unexported fields
}

func (ProjectApiCreateRequest) CreateProject

func (r ProjectApiCreateRequest) CreateProject(createProject CreateProject) ProjectApiCreateRequest

func (ProjectApiCreateRequest) Execute

type ProjectApiDeleteRequest

type ProjectApiDeleteRequest struct {
	ApiService *ProjectApiService
	// contains filtered or unexported fields
}

func (ProjectApiDeleteRequest) Execute

func (r ProjectApiDeleteRequest) Execute() (*http.Response, error)

type ProjectApiFindOneRequest

type ProjectApiFindOneRequest struct {
	ApiService *ProjectApiService
	// contains filtered or unexported fields
}

func (ProjectApiFindOneRequest) Execute

type ProjectApiListRequest

type ProjectApiListRequest struct {
	ApiService *ProjectApiService
	// contains filtered or unexported fields
}

func (ProjectApiListRequest) Execute

func (r ProjectApiListRequest) Execute() ([]Project, *http.Response, error)

type ProjectApiService

type ProjectApiService service

ProjectApiService ProjectApi service

func (*ProjectApiService) Create

Create create

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

func (*ProjectApiService) CreateExecute

Execute executes the request

@return Project

func (*ProjectApiService) Delete

Delete delete

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

func (*ProjectApiService) DeleteExecute

Execute executes the request

func (*ProjectApiService) FindOne

func (a *ProjectApiService) FindOne(ctx context.Context, projectId int64) ProjectApiFindOneRequest

FindOne findOne

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

func (*ProjectApiService) FindOneExecute

Execute executes the request

@return ProjectDetail

func (*ProjectApiService) List

List list

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

func (*ProjectApiService) ListExecute

Execute executes the request

@return []Project

func (*ProjectApiService) Update

Update update

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

func (*ProjectApiService) UpdateExecute

Execute executes the request

@return Project

type ProjectApiUpdateRequest

type ProjectApiUpdateRequest struct {
	ApiService *ProjectApiService
	// contains filtered or unexported fields
}

func (ProjectApiUpdateRequest) Execute

func (ProjectApiUpdateRequest) UpdateProject

func (r ProjectApiUpdateRequest) UpdateProject(updateProject UpdateProject) ProjectApiUpdateRequest

type ProjectDetail

type ProjectDetail struct {
	Id          *int64     `json:"id,omitempty"`
	CompanyId   *int64     `json:"companyId,omitempty"`
	Name        *string    `json:"name,omitempty"`
	Description *string    `json:"description,omitempty"`
	Role        *Role      `json:"role,omitempty"`
	Databases   []Database `json:"databases,omitempty"`
	Groups      []Group    `json:"groups,omitempty"`
}

ProjectDetail struct for ProjectDetail

func NewProjectDetail

func NewProjectDetail() *ProjectDetail

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

func NewProjectDetailWithDefaults

func NewProjectDetailWithDefaults() *ProjectDetail

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

func (*ProjectDetail) GetCompanyId

func (o *ProjectDetail) GetCompanyId() int64

GetCompanyId returns the CompanyId field value if set, zero value otherwise.

func (*ProjectDetail) GetCompanyIdOk

func (o *ProjectDetail) GetCompanyIdOk() (*int64, bool)

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

func (*ProjectDetail) GetDatabases

func (o *ProjectDetail) GetDatabases() []Database

GetDatabases returns the Databases field value if set, zero value otherwise.

func (*ProjectDetail) GetDatabasesOk

func (o *ProjectDetail) GetDatabasesOk() ([]Database, bool)

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

func (*ProjectDetail) GetDescription

func (o *ProjectDetail) GetDescription() string

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

func (*ProjectDetail) GetDescriptionOk

func (o *ProjectDetail) 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 (*ProjectDetail) GetGroups

func (o *ProjectDetail) GetGroups() []Group

GetGroups returns the Groups field value if set, zero value otherwise.

func (*ProjectDetail) GetGroupsOk

func (o *ProjectDetail) GetGroupsOk() ([]Group, bool)

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

func (*ProjectDetail) GetId

func (o *ProjectDetail) GetId() int64

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

func (*ProjectDetail) GetIdOk

func (o *ProjectDetail) GetIdOk() (*int64, 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 (*ProjectDetail) GetName

func (o *ProjectDetail) GetName() string

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

func (*ProjectDetail) GetNameOk

func (o *ProjectDetail) 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 (*ProjectDetail) GetRole

func (o *ProjectDetail) GetRole() Role

GetRole returns the Role field value if set, zero value otherwise.

func (*ProjectDetail) GetRoleOk

func (o *ProjectDetail) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectDetail) HasCompanyId

func (o *ProjectDetail) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*ProjectDetail) HasDatabases

func (o *ProjectDetail) HasDatabases() bool

HasDatabases returns a boolean if a field has been set.

func (*ProjectDetail) HasDescription

func (o *ProjectDetail) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ProjectDetail) HasGroups

func (o *ProjectDetail) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*ProjectDetail) HasId

func (o *ProjectDetail) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProjectDetail) HasName

func (o *ProjectDetail) HasName() bool

HasName returns a boolean if a field has been set.

func (*ProjectDetail) HasRole

func (o *ProjectDetail) HasRole() bool

HasRole returns a boolean if a field has been set.

func (ProjectDetail) MarshalJSON

func (o ProjectDetail) MarshalJSON() ([]byte, error)

func (*ProjectDetail) SetCompanyId

func (o *ProjectDetail) SetCompanyId(v int64)

SetCompanyId gets a reference to the given int64 and assigns it to the CompanyId field.

func (*ProjectDetail) SetDatabases

func (o *ProjectDetail) SetDatabases(v []Database)

SetDatabases gets a reference to the given []Database and assigns it to the Databases field.

func (*ProjectDetail) SetDescription

func (o *ProjectDetail) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ProjectDetail) SetGroups

func (o *ProjectDetail) SetGroups(v []Group)

SetGroups gets a reference to the given []Group and assigns it to the Groups field.

func (*ProjectDetail) SetId

func (o *ProjectDetail) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ProjectDetail) SetName

func (o *ProjectDetail) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ProjectDetail) SetRole

func (o *ProjectDetail) SetRole(v Role)

SetRole gets a reference to the given Role and assigns it to the Role field.

type Record

type Record struct {
	Id               *string    `json:"id,omitempty"`
	Cells            []Cell     `json:"cells,omitempty"`
	LastModifiedBy   *string    `json:"lastModifiedBy,omitempty"`
	LastModifiedTime *time.Time `json:"lastModifiedTime,omitempty"`
	Path             *string    `json:"path,omitempty"`
}

Record struct for Record

func NewRecord

func NewRecord() *Record

NewRecord instantiates a new Record object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRecordWithDefaults

func NewRecordWithDefaults() *Record

NewRecordWithDefaults instantiates a new Record object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Record) GetCells

func (o *Record) GetCells() []Cell

GetCells returns the Cells field value if set, zero value otherwise.

func (*Record) GetCellsOk

func (o *Record) GetCellsOk() ([]Cell, bool)

GetCellsOk returns a tuple with the Cells field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Record) GetId

func (o *Record) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Record) GetIdOk

func (o *Record) 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 (*Record) GetLastModifiedBy

func (o *Record) GetLastModifiedBy() string

GetLastModifiedBy returns the LastModifiedBy field value if set, zero value otherwise.

func (*Record) GetLastModifiedByOk

func (o *Record) GetLastModifiedByOk() (*string, bool)

GetLastModifiedByOk returns a tuple with the LastModifiedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Record) GetLastModifiedTime

func (o *Record) GetLastModifiedTime() time.Time

GetLastModifiedTime returns the LastModifiedTime field value if set, zero value otherwise.

func (*Record) GetLastModifiedTimeOk

func (o *Record) GetLastModifiedTimeOk() (*time.Time, bool)

GetLastModifiedTimeOk returns a tuple with the LastModifiedTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Record) GetPath

func (o *Record) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*Record) GetPathOk

func (o *Record) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Record) HasCells

func (o *Record) HasCells() bool

HasCells returns a boolean if a field has been set.

func (*Record) HasId

func (o *Record) HasId() bool

HasId returns a boolean if a field has been set.

func (*Record) HasLastModifiedBy

func (o *Record) HasLastModifiedBy() bool

HasLastModifiedBy returns a boolean if a field has been set.

func (*Record) HasLastModifiedTime

func (o *Record) HasLastModifiedTime() bool

HasLastModifiedTime returns a boolean if a field has been set.

func (*Record) HasPath

func (o *Record) HasPath() bool

HasPath returns a boolean if a field has been set.

func (Record) MarshalJSON

func (o Record) MarshalJSON() ([]byte, error)

func (*Record) SetCells

func (o *Record) SetCells(v []Cell)

SetCells gets a reference to the given []Cell and assigns it to the Cells field.

func (*Record) SetId

func (o *Record) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Record) SetLastModifiedBy

func (o *Record) SetLastModifiedBy(v string)

SetLastModifiedBy gets a reference to the given string and assigns it to the LastModifiedBy field.

func (*Record) SetLastModifiedTime

func (o *Record) SetLastModifiedTime(v time.Time)

SetLastModifiedTime gets a reference to the given time.Time and assigns it to the LastModifiedTime field.

func (*Record) SetPath

func (o *Record) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

type RecordApiCreateRequest

type RecordApiCreateRequest struct {
	ApiService *RecordApiService
	// contains filtered or unexported fields
}

func (RecordApiCreateRequest) CreateRecords

func (r RecordApiCreateRequest) CreateRecords(createRecords []SetRecord) RecordApiCreateRequest

createRecords

func (RecordApiCreateRequest) Execute

func (r RecordApiCreateRequest) Execute() ([]Record, *http.Response, error)

type RecordApiDeleteRequest

type RecordApiDeleteRequest struct {
	ApiService *RecordApiService
	// contains filtered or unexported fields
}

func (RecordApiDeleteRequest) DeleteRecord

func (r RecordApiDeleteRequest) DeleteRecord(deleteRecord DeleteRecord) RecordApiDeleteRequest

func (RecordApiDeleteRequest) Execute

func (r RecordApiDeleteRequest) Execute() (*http.Response, error)

type RecordApiFetchHistoriesRequest

type RecordApiFetchHistoriesRequest struct {
	ApiService *RecordApiService
	// contains filtered or unexported fields
}

func (RecordApiFetchHistoriesRequest) Execute

func (RecordApiFetchHistoriesRequest) FetchRequest

fetchRequest

type RecordApiFetchRequest

type RecordApiFetchRequest struct {
	ApiService *RecordApiService
	// contains filtered or unexported fields
}

func (RecordApiFetchRequest) AfterRecordId

func (r RecordApiFetchRequest) AfterRecordId(afterRecordId string) RecordApiFetchRequest

afterRecordId

func (RecordApiFetchRequest) BeforeRecordId

func (r RecordApiFetchRequest) BeforeRecordId(beforeRecordId string) RecordApiFetchRequest

beforeRecordId

func (RecordApiFetchRequest) ColumnIds

func (r RecordApiFetchRequest) ColumnIds(columnIds []string) RecordApiFetchRequest

columnIds

func (RecordApiFetchRequest) Execute

func (r RecordApiFetchRequest) Execute() ([]Record, *http.Response, error)

func (RecordApiFetchRequest) FetchFileOption

func (r RecordApiFetchRequest) FetchFileOption(fetchFileOption FetchFileOption) RecordApiFetchRequest

fetchFileOption

func (RecordApiFetchRequest) Page

page

func (RecordApiFetchRequest) Query

query

func (RecordApiFetchRequest) Sort

sort

type RecordApiService

type RecordApiService service

RecordApiService RecordApi service

func (*RecordApiService) Create

Create create

create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return RecordApiCreateRequest

func (*RecordApiService) CreateExecute

func (a *RecordApiService) CreateExecute(r RecordApiCreateRequest) ([]Record, *http.Response, error)

Execute executes the request

@return []Record

func (*RecordApiService) Delete

Delete delete

delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return RecordApiDeleteRequest

func (*RecordApiService) DeleteExecute

func (a *RecordApiService) DeleteExecute(r RecordApiDeleteRequest) (*http.Response, error)

Execute executes the request

func (*RecordApiService) Fetch

Fetch fetch

fetch

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return RecordApiFetchRequest

func (*RecordApiService) FetchExecute

func (a *RecordApiService) FetchExecute(r RecordApiFetchRequest) ([]Record, *http.Response, error)

Execute executes the request

@return []Record

func (*RecordApiService) FetchHistories

func (a *RecordApiService) FetchHistories(ctx context.Context, viewId string, recordId string) RecordApiFetchHistoriesRequest

FetchHistories fetchHistories

fetchHistories

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@param recordId recordId
@return RecordApiFetchHistoriesRequest

func (*RecordApiService) FetchHistoriesExecute

Execute executes the request

@return []RecordHistory

func (*RecordApiService) Update

Update update

update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return RecordApiUpdateRequest

func (*RecordApiService) UpdateExecute

func (a *RecordApiService) UpdateExecute(r RecordApiUpdateRequest) ([]Record, *http.Response, error)

Execute executes the request

@return []Record

func (*RecordApiService) UpdateRecord

func (a *RecordApiService) UpdateRecord(ctx context.Context, id string, viewId string) RecordApiUpdateRecordRequest

UpdateRecord updateRecord

updateRecord

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id id
@param viewId viewId
@return RecordApiUpdateRecordRequest

func (*RecordApiService) UpdateRecordExecute

func (a *RecordApiService) UpdateRecordExecute(r RecordApiUpdateRecordRequest) (*Record, *http.Response, error)

Execute executes the request

@return Record

type RecordApiUpdateRecordRequest

type RecordApiUpdateRecordRequest struct {
	ApiService *RecordApiService
	// contains filtered or unexported fields
}

func (RecordApiUpdateRecordRequest) Execute

func (RecordApiUpdateRecordRequest) Path

path

func (RecordApiUpdateRecordRequest) SetRecord

type RecordApiUpdateRequest

type RecordApiUpdateRequest struct {
	ApiService *RecordApiService
	// contains filtered or unexported fields
}

func (RecordApiUpdateRequest) Execute

func (r RecordApiUpdateRequest) Execute() ([]Record, *http.Response, error)

func (RecordApiUpdateRequest) SetRecord

func (r RecordApiUpdateRequest) SetRecord(setRecord []SetRecord) RecordApiUpdateRequest

type RecordHistory

type RecordHistory struct {
	Path             *string       `json:"path,omitempty"`
	Cells            []CellHistory `json:"cells,omitempty"`
	LastModifiedBy   *string       `json:"lastModifiedBy,omitempty"`
	LastModifiedTime *time.Time    `json:"lastModifiedTime,omitempty"`
}

RecordHistory struct for RecordHistory

func NewRecordHistory

func NewRecordHistory() *RecordHistory

NewRecordHistory instantiates a new RecordHistory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRecordHistoryWithDefaults

func NewRecordHistoryWithDefaults() *RecordHistory

NewRecordHistoryWithDefaults instantiates a new RecordHistory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RecordHistory) GetCells

func (o *RecordHistory) GetCells() []CellHistory

GetCells returns the Cells field value if set, zero value otherwise.

func (*RecordHistory) GetCellsOk

func (o *RecordHistory) GetCellsOk() ([]CellHistory, bool)

GetCellsOk returns a tuple with the Cells field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecordHistory) GetLastModifiedBy

func (o *RecordHistory) GetLastModifiedBy() string

GetLastModifiedBy returns the LastModifiedBy field value if set, zero value otherwise.

func (*RecordHistory) GetLastModifiedByOk

func (o *RecordHistory) GetLastModifiedByOk() (*string, bool)

GetLastModifiedByOk returns a tuple with the LastModifiedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecordHistory) GetLastModifiedTime

func (o *RecordHistory) GetLastModifiedTime() time.Time

GetLastModifiedTime returns the LastModifiedTime field value if set, zero value otherwise.

func (*RecordHistory) GetLastModifiedTimeOk

func (o *RecordHistory) GetLastModifiedTimeOk() (*time.Time, bool)

GetLastModifiedTimeOk returns a tuple with the LastModifiedTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecordHistory) GetPath

func (o *RecordHistory) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*RecordHistory) GetPathOk

func (o *RecordHistory) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecordHistory) HasCells

func (o *RecordHistory) HasCells() bool

HasCells returns a boolean if a field has been set.

func (*RecordHistory) HasLastModifiedBy

func (o *RecordHistory) HasLastModifiedBy() bool

HasLastModifiedBy returns a boolean if a field has been set.

func (*RecordHistory) HasLastModifiedTime

func (o *RecordHistory) HasLastModifiedTime() bool

HasLastModifiedTime returns a boolean if a field has been set.

func (*RecordHistory) HasPath

func (o *RecordHistory) HasPath() bool

HasPath returns a boolean if a field has been set.

func (RecordHistory) MarshalJSON

func (o RecordHistory) MarshalJSON() ([]byte, error)

func (*RecordHistory) SetCells

func (o *RecordHistory) SetCells(v []CellHistory)

SetCells gets a reference to the given []CellHistory and assigns it to the Cells field.

func (*RecordHistory) SetLastModifiedBy

func (o *RecordHistory) SetLastModifiedBy(v string)

SetLastModifiedBy gets a reference to the given string and assigns it to the LastModifiedBy field.

func (*RecordHistory) SetLastModifiedTime

func (o *RecordHistory) SetLastModifiedTime(v time.Time)

SetLastModifiedTime gets a reference to the given time.Time and assigns it to the LastModifiedTime field.

func (*RecordHistory) SetPath

func (o *RecordHistory) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

type RecordIdentifierWrapper

type RecordIdentifierWrapper struct {
	Id   string `json:"id"`
	Path string `json:"path"`
}

RecordIdentifierWrapper struct for RecordIdentifierWrapper

func NewRecordIdentifierWrapper

func NewRecordIdentifierWrapper(id string, path string) *RecordIdentifierWrapper

NewRecordIdentifierWrapper instantiates a new RecordIdentifierWrapper object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRecordIdentifierWrapperWithDefaults

func NewRecordIdentifierWrapperWithDefaults() *RecordIdentifierWrapper

NewRecordIdentifierWrapperWithDefaults instantiates a new RecordIdentifierWrapper object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RecordIdentifierWrapper) GetId

func (o *RecordIdentifierWrapper) GetId() string

GetId returns the Id field value

func (*RecordIdentifierWrapper) GetIdOk

func (o *RecordIdentifierWrapper) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RecordIdentifierWrapper) GetPath

func (o *RecordIdentifierWrapper) GetPath() string

GetPath returns the Path field value

func (*RecordIdentifierWrapper) GetPathOk

func (o *RecordIdentifierWrapper) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (RecordIdentifierWrapper) MarshalJSON

func (o RecordIdentifierWrapper) MarshalJSON() ([]byte, error)

func (*RecordIdentifierWrapper) SetId

func (o *RecordIdentifierWrapper) SetId(v string)

SetId sets field value

func (*RecordIdentifierWrapper) SetPath

func (o *RecordIdentifierWrapper) SetPath(v string)

SetPath sets field value

type Reference

type Reference struct {
	GridId        string  `json:"gridId"`
	BranchId      *string `json:"branchId,omitempty"`
	ColumnId      string  `json:"columnId"`
	Type          *string `json:"type,omitempty"`
	SelectionType *string `json:"selectionType,omitempty"`
}

Reference struct for Reference

func NewReference

func NewReference(gridId string, columnId string) *Reference

NewReference instantiates a new Reference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceWithDefaults

func NewReferenceWithDefaults() *Reference

NewReferenceWithDefaults instantiates a new Reference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Reference) GetBranchId

func (o *Reference) GetBranchId() string

GetBranchId returns the BranchId field value if set, zero value otherwise.

func (*Reference) GetBranchIdOk

func (o *Reference) GetBranchIdOk() (*string, bool)

GetBranchIdOk returns a tuple with the BranchId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Reference) GetColumnId

func (o *Reference) GetColumnId() string

GetColumnId returns the ColumnId field value

func (*Reference) GetColumnIdOk

func (o *Reference) GetColumnIdOk() (*string, bool)

GetColumnIdOk returns a tuple with the ColumnId field value and a boolean to check if the value has been set.

func (*Reference) GetGridId

func (o *Reference) GetGridId() string

GetGridId returns the GridId field value

func (*Reference) GetGridIdOk

func (o *Reference) GetGridIdOk() (*string, bool)

GetGridIdOk returns a tuple with the GridId field value and a boolean to check if the value has been set.

func (*Reference) GetSelectionType

func (o *Reference) GetSelectionType() string

GetSelectionType returns the SelectionType field value if set, zero value otherwise.

func (*Reference) GetSelectionTypeOk

func (o *Reference) GetSelectionTypeOk() (*string, bool)

GetSelectionTypeOk returns a tuple with the SelectionType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Reference) GetType

func (o *Reference) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Reference) GetTypeOk

func (o *Reference) 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 (*Reference) HasBranchId

func (o *Reference) HasBranchId() bool

HasBranchId returns a boolean if a field has been set.

func (*Reference) HasSelectionType

func (o *Reference) HasSelectionType() bool

HasSelectionType returns a boolean if a field has been set.

func (*Reference) HasType

func (o *Reference) HasType() bool

HasType returns a boolean if a field has been set.

func (Reference) MarshalJSON

func (o Reference) MarshalJSON() ([]byte, error)

func (*Reference) SetBranchId

func (o *Reference) SetBranchId(v string)

SetBranchId gets a reference to the given string and assigns it to the BranchId field.

func (*Reference) SetColumnId

func (o *Reference) SetColumnId(v string)

SetColumnId sets field value

func (*Reference) SetGridId

func (o *Reference) SetGridId(v string)

SetGridId sets field value

func (*Reference) SetSelectionType

func (o *Reference) SetSelectionType(v string)

SetSelectionType gets a reference to the given string and assigns it to the SelectionType field.

func (*Reference) SetType

func (o *Reference) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ReferencedColumn

type ReferencedColumn struct {
	Id               *string  `json:"id,omitempty"`
	Name             *string  `json:"name,omitempty"`
	SelectionOptions []string `json:"selectionOptions,omitempty"`
}

ReferencedColumn struct for ReferencedColumn

func NewReferencedColumn

func NewReferencedColumn() *ReferencedColumn

NewReferencedColumn instantiates a new ReferencedColumn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferencedColumnWithDefaults

func NewReferencedColumnWithDefaults() *ReferencedColumn

NewReferencedColumnWithDefaults instantiates a new ReferencedColumn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferencedColumn) GetId

func (o *ReferencedColumn) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ReferencedColumn) GetIdOk

func (o *ReferencedColumn) 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 (*ReferencedColumn) GetName

func (o *ReferencedColumn) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReferencedColumn) GetNameOk

func (o *ReferencedColumn) 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 (*ReferencedColumn) GetSelectionOptions

func (o *ReferencedColumn) GetSelectionOptions() []string

GetSelectionOptions returns the SelectionOptions field value if set, zero value otherwise.

func (*ReferencedColumn) GetSelectionOptionsOk

func (o *ReferencedColumn) GetSelectionOptionsOk() ([]string, bool)

GetSelectionOptionsOk returns a tuple with the SelectionOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferencedColumn) HasId

func (o *ReferencedColumn) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReferencedColumn) HasName

func (o *ReferencedColumn) HasName() bool

HasName returns a boolean if a field has been set.

func (*ReferencedColumn) HasSelectionOptions

func (o *ReferencedColumn) HasSelectionOptions() bool

HasSelectionOptions returns a boolean if a field has been set.

func (ReferencedColumn) MarshalJSON

func (o ReferencedColumn) MarshalJSON() ([]byte, error)

func (*ReferencedColumn) SetId

func (o *ReferencedColumn) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ReferencedColumn) SetName

func (o *ReferencedColumn) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ReferencedColumn) SetSelectionOptions

func (o *ReferencedColumn) SetSelectionOptions(v []string)

SetSelectionOptions gets a reference to the given []string and assigns it to the SelectionOptions field.

type ReferencedGrid

type ReferencedGrid struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

ReferencedGrid struct for ReferencedGrid

func NewReferencedGrid

func NewReferencedGrid() *ReferencedGrid

NewReferencedGrid instantiates a new ReferencedGrid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferencedGridWithDefaults

func NewReferencedGridWithDefaults() *ReferencedGrid

NewReferencedGridWithDefaults instantiates a new ReferencedGrid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferencedGrid) GetId

func (o *ReferencedGrid) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ReferencedGrid) GetIdOk

func (o *ReferencedGrid) 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 (*ReferencedGrid) GetName

func (o *ReferencedGrid) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReferencedGrid) GetNameOk

func (o *ReferencedGrid) 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 (*ReferencedGrid) HasId

func (o *ReferencedGrid) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReferencedGrid) HasName

func (o *ReferencedGrid) HasName() bool

HasName returns a boolean if a field has been set.

func (ReferencedGrid) MarshalJSON

func (o ReferencedGrid) MarshalJSON() ([]byte, error)

func (*ReferencedGrid) SetId

func (o *ReferencedGrid) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ReferencedGrid) SetName

func (o *ReferencedGrid) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

type Role

type Role struct {
	Id           *int64      `json:"id,omitempty"`
	Name         *string     `json:"name,omitempty"`
	Title        *string     `json:"title,omitempty"`
	Type         *string     `json:"type,omitempty"`
	Level        *string     `json:"level,omitempty"`
	Privileges   []Privilege `json:"privileges,omitempty"`
	PrivilegeIds []int64     `json:"privilegeIds,omitempty"`
	IsSystemRole *bool       `json:"isSystemRole,omitempty"`
}

Role struct for Role

func NewRole

func NewRole() *Role

NewRole instantiates a new Role object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRoleWithDefaults

func NewRoleWithDefaults() *Role

NewRoleWithDefaults instantiates a new Role object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Role) GetId

func (o *Role) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*Role) GetIdOk

func (o *Role) GetIdOk() (*int64, 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 (*Role) GetIsSystemRole

func (o *Role) GetIsSystemRole() bool

GetIsSystemRole returns the IsSystemRole field value if set, zero value otherwise.

func (*Role) GetIsSystemRoleOk

func (o *Role) GetIsSystemRoleOk() (*bool, bool)

GetIsSystemRoleOk returns a tuple with the IsSystemRole field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetLevel

func (o *Role) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*Role) GetLevelOk

func (o *Role) GetLevelOk() (*string, bool)

GetLevelOk returns a tuple with the Level field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetName

func (o *Role) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Role) GetNameOk

func (o *Role) 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 (*Role) GetPrivilegeIds

func (o *Role) GetPrivilegeIds() []int64

GetPrivilegeIds returns the PrivilegeIds field value if set, zero value otherwise.

func (*Role) GetPrivilegeIdsOk

func (o *Role) GetPrivilegeIdsOk() ([]int64, bool)

GetPrivilegeIdsOk returns a tuple with the PrivilegeIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetPrivileges

func (o *Role) GetPrivileges() []Privilege

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*Role) GetPrivilegesOk

func (o *Role) GetPrivilegesOk() ([]Privilege, bool)

GetPrivilegesOk returns a tuple with the Privileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetTitle

func (o *Role) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*Role) GetTitleOk

func (o *Role) 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 (*Role) GetType

func (o *Role) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Role) GetTypeOk

func (o *Role) 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 (*Role) HasId

func (o *Role) HasId() bool

HasId returns a boolean if a field has been set.

func (*Role) HasIsSystemRole

func (o *Role) HasIsSystemRole() bool

HasIsSystemRole returns a boolean if a field has been set.

func (*Role) HasLevel

func (o *Role) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*Role) HasName

func (o *Role) HasName() bool

HasName returns a boolean if a field has been set.

func (*Role) HasPrivilegeIds

func (o *Role) HasPrivilegeIds() bool

HasPrivilegeIds returns a boolean if a field has been set.

func (*Role) HasPrivileges

func (o *Role) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*Role) HasTitle

func (o *Role) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*Role) HasType

func (o *Role) HasType() bool

HasType returns a boolean if a field has been set.

func (Role) MarshalJSON

func (o Role) MarshalJSON() ([]byte, error)

func (*Role) SetId

func (o *Role) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*Role) SetIsSystemRole

func (o *Role) SetIsSystemRole(v bool)

SetIsSystemRole gets a reference to the given bool and assigns it to the IsSystemRole field.

func (*Role) SetLevel

func (o *Role) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*Role) SetName

func (o *Role) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Role) SetPrivilegeIds

func (o *Role) SetPrivilegeIds(v []int64)

SetPrivilegeIds gets a reference to the given []int64 and assigns it to the PrivilegeIds field.

func (*Role) SetPrivileges

func (o *Role) SetPrivileges(v []Privilege)

SetPrivileges gets a reference to the given []Privilege and assigns it to the Privileges field.

func (*Role) SetTitle

func (o *Role) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*Role) SetType

func (o *Role) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SetCell

type SetCell struct {
	ColumnId         *string      `json:"columnId,omitempty"`
	DependencyStatus *string      `json:"dependencyStatus,omitempty"`
	LengthLimit      *int32       `json:"lengthLimit,omitempty"`
	ReferencedIds    []string     `json:"referencedIds,omitempty"`
	SourceStatus     *string      `json:"sourceStatus,omitempty"`
	Value            *interface{} `json:"value,omitempty"`
}

SetCell struct for SetCell

func NewSetCell

func NewSetCell() *SetCell

NewSetCell instantiates a new SetCell object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSetCellWithDefaults

func NewSetCellWithDefaults() *SetCell

NewSetCellWithDefaults instantiates a new SetCell object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SetCell) GetColumnId

func (o *SetCell) GetColumnId() string

GetColumnId returns the ColumnId field value if set, zero value otherwise.

func (*SetCell) GetColumnIdOk

func (o *SetCell) GetColumnIdOk() (*string, bool)

GetColumnIdOk returns a tuple with the ColumnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCell) GetDependencyStatus

func (o *SetCell) GetDependencyStatus() string

GetDependencyStatus returns the DependencyStatus field value if set, zero value otherwise.

func (*SetCell) GetDependencyStatusOk

func (o *SetCell) GetDependencyStatusOk() (*string, bool)

GetDependencyStatusOk returns a tuple with the DependencyStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCell) GetLengthLimit

func (o *SetCell) GetLengthLimit() int32

GetLengthLimit returns the LengthLimit field value if set, zero value otherwise.

func (*SetCell) GetLengthLimitOk

func (o *SetCell) GetLengthLimitOk() (*int32, bool)

GetLengthLimitOk returns a tuple with the LengthLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCell) GetReferencedIds

func (o *SetCell) GetReferencedIds() []string

GetReferencedIds returns the ReferencedIds field value if set, zero value otherwise.

func (*SetCell) GetReferencedIdsOk

func (o *SetCell) GetReferencedIdsOk() ([]string, bool)

GetReferencedIdsOk returns a tuple with the ReferencedIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCell) GetSourceStatus

func (o *SetCell) GetSourceStatus() string

GetSourceStatus returns the SourceStatus field value if set, zero value otherwise.

func (*SetCell) GetSourceStatusOk

func (o *SetCell) GetSourceStatusOk() (*string, bool)

GetSourceStatusOk returns a tuple with the SourceStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCell) GetValue

func (o *SetCell) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*SetCell) GetValueOk

func (o *SetCell) GetValueOk() (*interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCell) HasColumnId

func (o *SetCell) HasColumnId() bool

HasColumnId returns a boolean if a field has been set.

func (*SetCell) HasDependencyStatus

func (o *SetCell) HasDependencyStatus() bool

HasDependencyStatus returns a boolean if a field has been set.

func (*SetCell) HasLengthLimit

func (o *SetCell) HasLengthLimit() bool

HasLengthLimit returns a boolean if a field has been set.

func (*SetCell) HasReferencedIds

func (o *SetCell) HasReferencedIds() bool

HasReferencedIds returns a boolean if a field has been set.

func (*SetCell) HasSourceStatus

func (o *SetCell) HasSourceStatus() bool

HasSourceStatus returns a boolean if a field has been set.

func (*SetCell) HasValue

func (o *SetCell) HasValue() bool

HasValue returns a boolean if a field has been set.

func (SetCell) MarshalJSON

func (o SetCell) MarshalJSON() ([]byte, error)

func (*SetCell) SetColumnId

func (o *SetCell) SetColumnId(v string)

SetColumnId gets a reference to the given string and assigns it to the ColumnId field.

func (*SetCell) SetDependencyStatus

func (o *SetCell) SetDependencyStatus(v string)

SetDependencyStatus gets a reference to the given string and assigns it to the DependencyStatus field.

func (*SetCell) SetLengthLimit

func (o *SetCell) SetLengthLimit(v int32)

SetLengthLimit gets a reference to the given int32 and assigns it to the LengthLimit field.

func (*SetCell) SetReferencedIds

func (o *SetCell) SetReferencedIds(v []string)

SetReferencedIds gets a reference to the given []string and assigns it to the ReferencedIds field.

func (*SetCell) SetSourceStatus

func (o *SetCell) SetSourceStatus(v string)

SetSourceStatus gets a reference to the given string and assigns it to the SourceStatus field.

func (*SetCell) SetValue

func (o *SetCell) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

type SetRecord

type SetRecord struct {
	Id    *string   `json:"id,omitempty"`
	Cells []SetCell `json:"cells,omitempty"`
	Path  *string   `json:"path,omitempty"`
}

SetRecord struct for SetRecord

func NewSetRecord

func NewSetRecord() *SetRecord

NewSetRecord instantiates a new SetRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSetRecordWithDefaults

func NewSetRecordWithDefaults() *SetRecord

NewSetRecordWithDefaults instantiates a new SetRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SetRecord) GetCells

func (o *SetRecord) GetCells() []SetCell

GetCells returns the Cells field value if set, zero value otherwise.

func (*SetRecord) GetCellsOk

func (o *SetRecord) GetCellsOk() ([]SetCell, bool)

GetCellsOk returns a tuple with the Cells field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetRecord) GetId

func (o *SetRecord) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SetRecord) GetIdOk

func (o *SetRecord) 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 (*SetRecord) GetPath

func (o *SetRecord) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*SetRecord) GetPathOk

func (o *SetRecord) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetRecord) HasCells

func (o *SetRecord) HasCells() bool

HasCells returns a boolean if a field has been set.

func (*SetRecord) HasId

func (o *SetRecord) HasId() bool

HasId returns a boolean if a field has been set.

func (*SetRecord) HasPath

func (o *SetRecord) HasPath() bool

HasPath returns a boolean if a field has been set.

func (SetRecord) MarshalJSON

func (o SetRecord) MarshalJSON() ([]byte, error)

func (*SetRecord) SetCells

func (o *SetRecord) SetCells(v []SetCell)

SetCells gets a reference to the given []SetCell and assigns it to the Cells field.

func (*SetRecord) SetId

func (o *SetRecord) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SetRecord) SetPath

func (o *SetRecord) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

type SettingFile

type SettingFile struct {
	Category *FileCategory  `json:"category,omitempty"`
	Files    []UploadedFile `json:"files,omitempty"`
}

SettingFile struct for SettingFile

func NewSettingFile

func NewSettingFile() *SettingFile

NewSettingFile instantiates a new SettingFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSettingFileWithDefaults

func NewSettingFileWithDefaults() *SettingFile

NewSettingFileWithDefaults instantiates a new SettingFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SettingFile) GetCategory

func (o *SettingFile) GetCategory() FileCategory

GetCategory returns the Category field value if set, zero value otherwise.

func (*SettingFile) GetCategoryOk

func (o *SettingFile) GetCategoryOk() (*FileCategory, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingFile) GetFiles

func (o *SettingFile) GetFiles() []UploadedFile

GetFiles returns the Files field value if set, zero value otherwise.

func (*SettingFile) GetFilesOk

func (o *SettingFile) GetFilesOk() ([]UploadedFile, bool)

GetFilesOk returns a tuple with the Files field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingFile) HasCategory

func (o *SettingFile) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*SettingFile) HasFiles

func (o *SettingFile) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (SettingFile) MarshalJSON

func (o SettingFile) MarshalJSON() ([]byte, error)

func (*SettingFile) SetCategory

func (o *SettingFile) SetCategory(v FileCategory)

SetCategory gets a reference to the given FileCategory and assigns it to the Category field.

func (*SettingFile) SetFiles

func (o *SettingFile) SetFiles(v []UploadedFile)

SetFiles gets a reference to the given []UploadedFile and assigns it to the Files field.

type ShareView

type ShareView struct {
	CompanyId          *string    `json:"companyId,omitempty"`
	Link               *string    `json:"link,omitempty"`
	Active             *bool      `json:"active,omitempty"`
	ViewId             *string    `json:"viewId,omitempty"`
	IncludeGridHistory *bool      `json:"includeGridHistory,omitempty"`
	CreatedDate        *time.Time `json:"createdDate,omitempty"`
	LastModifiedDate   *time.Time `json:"lastModifiedDate,omitempty"`
}

ShareView struct for ShareView

func NewShareView

func NewShareView() *ShareView

NewShareView instantiates a new ShareView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewShareViewWithDefaults

func NewShareViewWithDefaults() *ShareView

NewShareViewWithDefaults instantiates a new ShareView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ShareView) GetActive

func (o *ShareView) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*ShareView) GetActiveOk

func (o *ShareView) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShareView) GetCompanyId

func (o *ShareView) GetCompanyId() string

GetCompanyId returns the CompanyId field value if set, zero value otherwise.

func (*ShareView) GetCompanyIdOk

func (o *ShareView) GetCompanyIdOk() (*string, bool)

GetCompanyIdOk returns a tuple with the CompanyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShareView) GetCreatedDate

func (o *ShareView) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*ShareView) GetCreatedDateOk

func (o *ShareView) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShareView) GetIncludeGridHistory

func (o *ShareView) GetIncludeGridHistory() bool

GetIncludeGridHistory returns the IncludeGridHistory field value if set, zero value otherwise.

func (*ShareView) GetIncludeGridHistoryOk

func (o *ShareView) GetIncludeGridHistoryOk() (*bool, bool)

GetIncludeGridHistoryOk returns a tuple with the IncludeGridHistory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShareView) GetLastModifiedDate

func (o *ShareView) GetLastModifiedDate() time.Time

GetLastModifiedDate returns the LastModifiedDate field value if set, zero value otherwise.

func (*ShareView) GetLastModifiedDateOk

func (o *ShareView) GetLastModifiedDateOk() (*time.Time, bool)

GetLastModifiedDateOk returns a tuple with the LastModifiedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ShareView) GetLink() string

GetLink returns the Link field value if set, zero value otherwise.

func (*ShareView) GetLinkOk

func (o *ShareView) GetLinkOk() (*string, bool)

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShareView) GetViewId

func (o *ShareView) GetViewId() string

GetViewId returns the ViewId field value if set, zero value otherwise.

func (*ShareView) GetViewIdOk

func (o *ShareView) GetViewIdOk() (*string, bool)

GetViewIdOk returns a tuple with the ViewId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ShareView) HasActive

func (o *ShareView) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*ShareView) HasCompanyId

func (o *ShareView) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*ShareView) HasCreatedDate

func (o *ShareView) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*ShareView) HasIncludeGridHistory

func (o *ShareView) HasIncludeGridHistory() bool

HasIncludeGridHistory returns a boolean if a field has been set.

func (*ShareView) HasLastModifiedDate

func (o *ShareView) HasLastModifiedDate() bool

HasLastModifiedDate returns a boolean if a field has been set.

func (o *ShareView) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*ShareView) HasViewId

func (o *ShareView) HasViewId() bool

HasViewId returns a boolean if a field has been set.

func (ShareView) MarshalJSON

func (o ShareView) MarshalJSON() ([]byte, error)

func (*ShareView) SetActive

func (o *ShareView) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*ShareView) SetCompanyId

func (o *ShareView) SetCompanyId(v string)

SetCompanyId gets a reference to the given string and assigns it to the CompanyId field.

func (*ShareView) SetCreatedDate

func (o *ShareView) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*ShareView) SetIncludeGridHistory

func (o *ShareView) SetIncludeGridHistory(v bool)

SetIncludeGridHistory gets a reference to the given bool and assigns it to the IncludeGridHistory field.

func (*ShareView) SetLastModifiedDate

func (o *ShareView) SetLastModifiedDate(v time.Time)

SetLastModifiedDate gets a reference to the given time.Time and assigns it to the LastModifiedDate field.

func (o *ShareView) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*ShareView) SetViewId

func (o *ShareView) SetViewId(v string)

SetViewId gets a reference to the given string and assigns it to the ViewId field.

type ShareViewApiCreateRequest

type ShareViewApiCreateRequest struct {
	ApiService *ShareViewApiService
	// contains filtered or unexported fields
}

func (ShareViewApiCreateRequest) CreateShareView

func (r ShareViewApiCreateRequest) CreateShareView(createShareView CreateShareView) ShareViewApiCreateRequest

func (ShareViewApiCreateRequest) Execute

type ShareViewApiDeleteRequest

type ShareViewApiDeleteRequest struct {
	ApiService *ShareViewApiService
	// contains filtered or unexported fields
}

func (ShareViewApiDeleteRequest) Execute

func (r ShareViewApiDeleteRequest) Execute() (*http.Response, error)

type ShareViewApiGetRequest

type ShareViewApiGetRequest struct {
	ApiService *ShareViewApiService
	// contains filtered or unexported fields
}

func (ShareViewApiGetRequest) Execute

type ShareViewApiService

type ShareViewApiService service

ShareViewApiService ShareViewApi service

func (*ShareViewApiService) Create

Create create

create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ShareViewApiCreateRequest

func (*ShareViewApiService) CreateExecute

Execute executes the request

@return ShareView

func (*ShareViewApiService) Delete

Delete delete

delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ShareViewApiDeleteRequest

func (*ShareViewApiService) DeleteExecute

Execute executes the request

func (*ShareViewApiService) Get

Get get

get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ShareViewApiGetRequest

func (*ShareViewApiService) GetExecute

Execute executes the request

@return ShareView

type Task

type Task struct {
	Id     *string `json:"id,omitempty"`
	Status *string `json:"status,omitempty"`
}

Task struct for Task

func NewTask

func NewTask() *Task

NewTask instantiates a new Task object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskWithDefaults

func NewTaskWithDefaults() *Task

NewTaskWithDefaults instantiates a new Task object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Task) GetId

func (o *Task) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Task) GetIdOk

func (o *Task) 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 (*Task) GetStatus

func (o *Task) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Task) GetStatusOk

func (o *Task) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) HasId

func (o *Task) HasId() bool

HasId returns a boolean if a field has been set.

func (*Task) HasStatus

func (o *Task) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Task) MarshalJSON

func (o Task) MarshalJSON() ([]byte, error)

func (*Task) SetId

func (o *Task) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Task) SetStatus

func (o *Task) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type TaskApiGetRequest

type TaskApiGetRequest struct {
	ApiService *TaskApiService
	// contains filtered or unexported fields
}

func (TaskApiGetRequest) Execute

func (r TaskApiGetRequest) Execute() (*Task, *http.Response, error)

type TaskApiService

type TaskApiService service

TaskApiService TaskApi service

func (*TaskApiService) Get

Get get

get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId taskId
@return TaskApiGetRequest

func (*TaskApiService) GetExecute

func (a *TaskApiService) GetExecute(r TaskApiGetRequest) (*Task, *http.Response, error)

Execute executes the request

@return Task

type TransMem

type TransMem struct {
	Id                              *string            `json:"id,omitempty"`
	ProjectIds                      []int64            `json:"projectIds,omitempty"`
	IsDisabled                      *bool              `json:"isDisabled,omitempty"`
	IsPausedConsuming               *bool              `json:"isPausedConsuming,omitempty"`
	PopulateTranslationStatus       *TranslationStatus `json:"populateTranslationStatus,omitempty"`
	ContextLookup                   *bool              `json:"contextLookup,omitempty"`
	Name                            string             `json:"name"`
	Description                     *string            `json:"description,omitempty"`
	FuzzyMatch                      *bool              `json:"fuzzyMatch,omitempty"`
	AllowAlternative                *bool              `json:"allowAlternative,omitempty"`
	AllowAlternativeHasSameRecordId *bool              `json:"allowAlternativeHasSameRecordId,omitempty"`
}

TransMem struct for TransMem

func NewTransMem

func NewTransMem(name string) *TransMem

NewTransMem instantiates a new TransMem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTransMemWithDefaults

func NewTransMemWithDefaults() *TransMem

NewTransMemWithDefaults instantiates a new TransMem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TransMem) GetAllowAlternative

func (o *TransMem) GetAllowAlternative() bool

GetAllowAlternative returns the AllowAlternative field value if set, zero value otherwise.

func (*TransMem) GetAllowAlternativeHasSameRecordId

func (o *TransMem) GetAllowAlternativeHasSameRecordId() bool

GetAllowAlternativeHasSameRecordId returns the AllowAlternativeHasSameRecordId field value if set, zero value otherwise.

func (*TransMem) GetAllowAlternativeHasSameRecordIdOk

func (o *TransMem) GetAllowAlternativeHasSameRecordIdOk() (*bool, bool)

GetAllowAlternativeHasSameRecordIdOk returns a tuple with the AllowAlternativeHasSameRecordId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransMem) GetAllowAlternativeOk

func (o *TransMem) GetAllowAlternativeOk() (*bool, bool)

GetAllowAlternativeOk returns a tuple with the AllowAlternative field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransMem) GetContextLookup

func (o *TransMem) GetContextLookup() bool

GetContextLookup returns the ContextLookup field value if set, zero value otherwise.

func (*TransMem) GetContextLookupOk

func (o *TransMem) GetContextLookupOk() (*bool, bool)

GetContextLookupOk returns a tuple with the ContextLookup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransMem) GetDescription

func (o *TransMem) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TransMem) GetDescriptionOk

func (o *TransMem) 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 (*TransMem) GetFuzzyMatch

func (o *TransMem) GetFuzzyMatch() bool

GetFuzzyMatch returns the FuzzyMatch field value if set, zero value otherwise.

func (*TransMem) GetFuzzyMatchOk

func (o *TransMem) GetFuzzyMatchOk() (*bool, bool)

GetFuzzyMatchOk returns a tuple with the FuzzyMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransMem) GetId

func (o *TransMem) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TransMem) GetIdOk

func (o *TransMem) 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 (*TransMem) GetIsDisabled

func (o *TransMem) GetIsDisabled() bool

GetIsDisabled returns the IsDisabled field value if set, zero value otherwise.

func (*TransMem) GetIsDisabledOk

func (o *TransMem) GetIsDisabledOk() (*bool, bool)

GetIsDisabledOk returns a tuple with the IsDisabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransMem) GetIsPausedConsuming

func (o *TransMem) GetIsPausedConsuming() bool

GetIsPausedConsuming returns the IsPausedConsuming field value if set, zero value otherwise.

func (*TransMem) GetIsPausedConsumingOk

func (o *TransMem) GetIsPausedConsumingOk() (*bool, bool)

GetIsPausedConsumingOk returns a tuple with the IsPausedConsuming field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransMem) GetName

func (o *TransMem) GetName() string

GetName returns the Name field value

func (*TransMem) GetNameOk

func (o *TransMem) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TransMem) GetPopulateTranslationStatus

func (o *TransMem) GetPopulateTranslationStatus() TranslationStatus

GetPopulateTranslationStatus returns the PopulateTranslationStatus field value if set, zero value otherwise.

func (*TransMem) GetPopulateTranslationStatusOk

func (o *TransMem) GetPopulateTranslationStatusOk() (*TranslationStatus, bool)

GetPopulateTranslationStatusOk returns a tuple with the PopulateTranslationStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransMem) GetProjectIds

func (o *TransMem) GetProjectIds() []int64

GetProjectIds returns the ProjectIds field value if set, zero value otherwise.

func (*TransMem) GetProjectIdsOk

func (o *TransMem) GetProjectIdsOk() ([]int64, bool)

GetProjectIdsOk returns a tuple with the ProjectIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TransMem) HasAllowAlternative

func (o *TransMem) HasAllowAlternative() bool

HasAllowAlternative returns a boolean if a field has been set.

func (*TransMem) HasAllowAlternativeHasSameRecordId

func (o *TransMem) HasAllowAlternativeHasSameRecordId() bool

HasAllowAlternativeHasSameRecordId returns a boolean if a field has been set.

func (*TransMem) HasContextLookup

func (o *TransMem) HasContextLookup() bool

HasContextLookup returns a boolean if a field has been set.

func (*TransMem) HasDescription

func (o *TransMem) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TransMem) HasFuzzyMatch

func (o *TransMem) HasFuzzyMatch() bool

HasFuzzyMatch returns a boolean if a field has been set.

func (*TransMem) HasId

func (o *TransMem) HasId() bool

HasId returns a boolean if a field has been set.

func (*TransMem) HasIsDisabled

func (o *TransMem) HasIsDisabled() bool

HasIsDisabled returns a boolean if a field has been set.

func (*TransMem) HasIsPausedConsuming

func (o *TransMem) HasIsPausedConsuming() bool

HasIsPausedConsuming returns a boolean if a field has been set.

func (*TransMem) HasPopulateTranslationStatus

func (o *TransMem) HasPopulateTranslationStatus() bool

HasPopulateTranslationStatus returns a boolean if a field has been set.

func (*TransMem) HasProjectIds

func (o *TransMem) HasProjectIds() bool

HasProjectIds returns a boolean if a field has been set.

func (TransMem) MarshalJSON

func (o TransMem) MarshalJSON() ([]byte, error)

func (*TransMem) SetAllowAlternative

func (o *TransMem) SetAllowAlternative(v bool)

SetAllowAlternative gets a reference to the given bool and assigns it to the AllowAlternative field.

func (*TransMem) SetAllowAlternativeHasSameRecordId

func (o *TransMem) SetAllowAlternativeHasSameRecordId(v bool)

SetAllowAlternativeHasSameRecordId gets a reference to the given bool and assigns it to the AllowAlternativeHasSameRecordId field.

func (*TransMem) SetContextLookup

func (o *TransMem) SetContextLookup(v bool)

SetContextLookup gets a reference to the given bool and assigns it to the ContextLookup field.

func (*TransMem) SetDescription

func (o *TransMem) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TransMem) SetFuzzyMatch

func (o *TransMem) SetFuzzyMatch(v bool)

SetFuzzyMatch gets a reference to the given bool and assigns it to the FuzzyMatch field.

func (*TransMem) SetId

func (o *TransMem) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TransMem) SetIsDisabled

func (o *TransMem) SetIsDisabled(v bool)

SetIsDisabled gets a reference to the given bool and assigns it to the IsDisabled field.

func (*TransMem) SetIsPausedConsuming

func (o *TransMem) SetIsPausedConsuming(v bool)

SetIsPausedConsuming gets a reference to the given bool and assigns it to the IsPausedConsuming field.

func (*TransMem) SetName

func (o *TransMem) SetName(v string)

SetName sets field value

func (*TransMem) SetPopulateTranslationStatus

func (o *TransMem) SetPopulateTranslationStatus(v TranslationStatus)

SetPopulateTranslationStatus gets a reference to the given TranslationStatus and assigns it to the PopulateTranslationStatus field.

func (*TransMem) SetProjectIds

func (o *TransMem) SetProjectIds(v []int64)

SetProjectIds gets a reference to the given []int64 and assigns it to the ProjectIds field.

type TranslationCount

type TranslationCount struct {
	All       *int64 `json:"all,omitempty"`
	OutOfDate *int64 `json:"outOfDate,omitempty"`
	Unset     *int64 `json:"unset,omitempty"`
	UpToDate  *int64 `json:"upToDate,omitempty"`
}

TranslationCount struct for TranslationCount

func NewTranslationCount

func NewTranslationCount() *TranslationCount

NewTranslationCount instantiates a new TranslationCount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTranslationCountWithDefaults

func NewTranslationCountWithDefaults() *TranslationCount

NewTranslationCountWithDefaults instantiates a new TranslationCount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TranslationCount) GetAll

func (o *TranslationCount) GetAll() int64

GetAll returns the All field value if set, zero value otherwise.

func (*TranslationCount) GetAllOk

func (o *TranslationCount) GetAllOk() (*int64, bool)

GetAllOk returns a tuple with the All field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TranslationCount) GetOutOfDate

func (o *TranslationCount) GetOutOfDate() int64

GetOutOfDate returns the OutOfDate field value if set, zero value otherwise.

func (*TranslationCount) GetOutOfDateOk

func (o *TranslationCount) GetOutOfDateOk() (*int64, bool)

GetOutOfDateOk returns a tuple with the OutOfDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TranslationCount) GetUnset

func (o *TranslationCount) GetUnset() int64

GetUnset returns the Unset field value if set, zero value otherwise.

func (*TranslationCount) GetUnsetOk

func (o *TranslationCount) GetUnsetOk() (*int64, bool)

GetUnsetOk returns a tuple with the Unset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TranslationCount) GetUpToDate

func (o *TranslationCount) GetUpToDate() int64

GetUpToDate returns the UpToDate field value if set, zero value otherwise.

func (*TranslationCount) GetUpToDateOk

func (o *TranslationCount) GetUpToDateOk() (*int64, bool)

GetUpToDateOk returns a tuple with the UpToDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TranslationCount) HasAll

func (o *TranslationCount) HasAll() bool

HasAll returns a boolean if a field has been set.

func (*TranslationCount) HasOutOfDate

func (o *TranslationCount) HasOutOfDate() bool

HasOutOfDate returns a boolean if a field has been set.

func (*TranslationCount) HasUnset

func (o *TranslationCount) HasUnset() bool

HasUnset returns a boolean if a field has been set.

func (*TranslationCount) HasUpToDate

func (o *TranslationCount) HasUpToDate() bool

HasUpToDate returns a boolean if a field has been set.

func (TranslationCount) MarshalJSON

func (o TranslationCount) MarshalJSON() ([]byte, error)

func (*TranslationCount) SetAll

func (o *TranslationCount) SetAll(v int64)

SetAll gets a reference to the given int64 and assigns it to the All field.

func (*TranslationCount) SetOutOfDate

func (o *TranslationCount) SetOutOfDate(v int64)

SetOutOfDate gets a reference to the given int64 and assigns it to the OutOfDate field.

func (*TranslationCount) SetUnset

func (o *TranslationCount) SetUnset(v int64)

SetUnset gets a reference to the given int64 and assigns it to the Unset field.

func (*TranslationCount) SetUpToDate

func (o *TranslationCount) SetUpToDate(v int64)

SetUpToDate gets a reference to the given int64 and assigns it to the UpToDate field.

type TranslationStatus

type TranslationStatus string

TranslationStatus the model 'TranslationStatus'

const (
	TRANSLATIONSTATUS_UP_TO_DATE  TranslationStatus = "upToDate"
	TRANSLATIONSTATUS_OUT_OF_DATE TranslationStatus = "outOfDate"
	TRANSLATIONSTATUS_UNSET       TranslationStatus = "unset"
)

List of TranslationStatus

func NewTranslationStatusFromValue

func NewTranslationStatusFromValue(v string) (*TranslationStatus, error)

NewTranslationStatusFromValue returns a pointer to a valid TranslationStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TranslationStatus) IsValid

func (v TranslationStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TranslationStatus) Ptr

Ptr returns reference to TranslationStatus value

func (*TranslationStatus) UnmarshalJSON

func (v *TranslationStatus) UnmarshalJSON(src []byte) error

type TransmemApiCleanupRequest

type TransmemApiCleanupRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiCleanupRequest) Execute

func (r TransmemApiCleanupRequest) Execute() (*http.Response, error)

type TransmemApiCreateRequest

type TransmemApiCreateRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiCreateRequest) CreateTransMem

func (r TransmemApiCreateRequest) CreateTransMem(createTransMem CreateTransMem) TransmemApiCreateRequest

func (TransmemApiCreateRequest) Execute

type TransmemApiCreateWithFileRequest

type TransmemApiCreateWithFileRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiCreateWithFileRequest) Execute

func (TransmemApiCreateWithFileRequest) File

type TransmemApiDeleteRequest

type TransmemApiDeleteRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiDeleteRequest) Execute

type TransmemApiExportRequest

type TransmemApiExportRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiExportRequest) Execute

func (r TransmemApiExportRequest) Execute() (**os.File, *http.Response, error)

func (TransmemApiExportRequest) Format

func (TransmemApiExportRequest) SourceLang

func (r TransmemApiExportRequest) SourceLang(sourceLang string) TransmemApiExportRequest

func (TransmemApiExportRequest) TargetLangs

func (r TransmemApiExportRequest) TargetLangs(targetLangs []string) TransmemApiExportRequest

type TransmemApiGetRequest

type TransmemApiGetRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiGetRequest) Execute

func (r TransmemApiGetRequest) Execute() (*TransMem, *http.Response, error)

type TransmemApiImportTmxRequest

type TransmemApiImportTmxRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiImportTmxRequest) Execute

func (TransmemApiImportTmxRequest) File

func (r TransmemApiImportTmxRequest) File(file map[string]interface{}) TransmemApiImportTmxRequest

type TransmemApiListTMRequest

type TransmemApiListTMRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiListTMRequest) Execute

func (TransmemApiListTMRequest) ProjectId

type TransmemApiService

type TransmemApiService service

TransmemApiService TransmemApi service

func (*TransmemApiService) Cleanup

Cleanup Erases all the translation data of the provided tmId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tmId
@return TransmemApiCleanupRequest

func (*TransmemApiService) CleanupExecute

Execute executes the request

func (*TransmemApiService) Create

Create Create a new translation memory

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TransmemApiCreateRequest

func (*TransmemApiService) CreateExecute

Execute executes the request

@return TransMem

func (*TransmemApiService) CreateWithFile

CreateWithFile Create a new translation memory by uploading tmx file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TransmemApiCreateWithFileRequest

func (*TransmemApiService) CreateWithFileExecute

Execute executes the request

@return TransMem

func (*TransmemApiService) Delete

Delete Delete a translation memory by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tmId
@return TransmemApiDeleteRequest

func (*TransmemApiService) DeleteExecute

Execute executes the request

@return TransMem

func (*TransmemApiService) Export

Export Export translation memory tmx file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tmId
@return TransmemApiExportRequest

func (*TransmemApiService) ExportExecute

Execute executes the request

@return *os.File

func (*TransmemApiService) Get

Get Get translation memory info by id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tmId
@return TransmemApiGetRequest

func (*TransmemApiService) GetExecute

Execute executes the request

@return TransMem

func (*TransmemApiService) ImportTmx

ImportTmx Import a translation memory from tmx file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tmId
@return TransmemApiImportTmxRequest

func (*TransmemApiService) ImportTmxExecute

Execute executes the request

func (*TransmemApiService) ListTM

ListTM List all available translation memories or create default one if there is no translation memory

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TransmemApiListTMRequest

func (*TransmemApiService) ListTMExecute

Execute executes the request

@return []TransMem

func (*TransmemApiService) Update

Update Update a translation memory

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tmId
@return TransmemApiUpdateRequest

func (*TransmemApiService) UpdateExecute

Execute executes the request

@return TransMem

type TransmemApiUpdateRequest

type TransmemApiUpdateRequest struct {
	ApiService *TransmemApiService
	// contains filtered or unexported fields
}

func (TransmemApiUpdateRequest) Execute

func (TransmemApiUpdateRequest) UpdateTransMem

func (r TransmemApiUpdateRequest) UpdateTransMem(updateTransMem UpdateTransMem) TransmemApiUpdateRequest

type UpdateCategory

type UpdateCategory struct {
	Name string `json:"name"`
}

UpdateCategory struct for UpdateCategory

func NewUpdateCategory

func NewUpdateCategory(name string) *UpdateCategory

NewUpdateCategory instantiates a new UpdateCategory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateCategoryWithDefaults

func NewUpdateCategoryWithDefaults() *UpdateCategory

NewUpdateCategoryWithDefaults instantiates a new UpdateCategory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateCategory) GetName

func (o *UpdateCategory) GetName() string

GetName returns the Name field value

func (*UpdateCategory) GetNameOk

func (o *UpdateCategory) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (UpdateCategory) MarshalJSON

func (o UpdateCategory) MarshalJSON() ([]byte, error)

func (*UpdateCategory) SetName

func (o *UpdateCategory) SetName(v string)

SetName sets field value

type UpdateColumn

type UpdateColumn struct {
	Name             *string         `json:"name,omitempty"`
	Description      *string         `json:"description,omitempty"`
	Type             *string         `json:"type,omitempty"`
	LanguageCode     *string         `json:"languageCode,omitempty"`
	LocalizationType *string         `json:"localizationType,omitempty"`
	SelectionOptions []string        `json:"selectionOptions,omitempty"`
	NumberFormat     *NumberFormat   `json:"numberFormat,omitempty"`
	Reference        *Reference      `json:"reference,omitempty"`
	Formula          *Formula        `json:"formula,omitempty"`
	DateTimeFormat   *DateTimeFormat `json:"dateTimeFormat,omitempty"`
	Viewable         *bool           `json:"viewable,omitempty"`
	Editable         *bool           `json:"editable,omitempty"`
	NewId            *string         `json:"newId,omitempty"`
}

UpdateColumn struct for UpdateColumn

func NewUpdateColumn

func NewUpdateColumn() *UpdateColumn

NewUpdateColumn instantiates a new UpdateColumn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateColumnWithDefaults

func NewUpdateColumnWithDefaults() *UpdateColumn

NewUpdateColumnWithDefaults instantiates a new UpdateColumn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateColumn) GetDateTimeFormat

func (o *UpdateColumn) GetDateTimeFormat() DateTimeFormat

GetDateTimeFormat returns the DateTimeFormat field value if set, zero value otherwise.

func (*UpdateColumn) GetDateTimeFormatOk

func (o *UpdateColumn) GetDateTimeFormatOk() (*DateTimeFormat, bool)

GetDateTimeFormatOk returns a tuple with the DateTimeFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) GetDescription

func (o *UpdateColumn) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateColumn) GetDescriptionOk

func (o *UpdateColumn) 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 (*UpdateColumn) GetEditable

func (o *UpdateColumn) GetEditable() bool

GetEditable returns the Editable field value if set, zero value otherwise.

func (*UpdateColumn) GetEditableOk

func (o *UpdateColumn) 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 (*UpdateColumn) GetFormula

func (o *UpdateColumn) GetFormula() Formula

GetFormula returns the Formula field value if set, zero value otherwise.

func (*UpdateColumn) GetFormulaOk

func (o *UpdateColumn) GetFormulaOk() (*Formula, bool)

GetFormulaOk returns a tuple with the Formula field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) GetLanguageCode

func (o *UpdateColumn) GetLanguageCode() string

GetLanguageCode returns the LanguageCode field value if set, zero value otherwise.

func (*UpdateColumn) GetLanguageCodeOk

func (o *UpdateColumn) GetLanguageCodeOk() (*string, bool)

GetLanguageCodeOk returns a tuple with the LanguageCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) GetLocalizationType

func (o *UpdateColumn) GetLocalizationType() string

GetLocalizationType returns the LocalizationType field value if set, zero value otherwise.

func (*UpdateColumn) GetLocalizationTypeOk

func (o *UpdateColumn) GetLocalizationTypeOk() (*string, bool)

GetLocalizationTypeOk returns a tuple with the LocalizationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) GetName

func (o *UpdateColumn) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateColumn) GetNameOk

func (o *UpdateColumn) 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 (*UpdateColumn) GetNewId

func (o *UpdateColumn) GetNewId() string

GetNewId returns the NewId field value if set, zero value otherwise.

func (*UpdateColumn) GetNewIdOk

func (o *UpdateColumn) GetNewIdOk() (*string, bool)

GetNewIdOk returns a tuple with the NewId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) GetNumberFormat

func (o *UpdateColumn) GetNumberFormat() NumberFormat

GetNumberFormat returns the NumberFormat field value if set, zero value otherwise.

func (*UpdateColumn) GetNumberFormatOk

func (o *UpdateColumn) GetNumberFormatOk() (*NumberFormat, bool)

GetNumberFormatOk returns a tuple with the NumberFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) GetReference

func (o *UpdateColumn) GetReference() Reference

GetReference returns the Reference field value if set, zero value otherwise.

func (*UpdateColumn) GetReferenceOk

func (o *UpdateColumn) GetReferenceOk() (*Reference, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) GetSelectionOptions

func (o *UpdateColumn) GetSelectionOptions() []string

GetSelectionOptions returns the SelectionOptions field value if set, zero value otherwise.

func (*UpdateColumn) GetSelectionOptionsOk

func (o *UpdateColumn) GetSelectionOptionsOk() ([]string, bool)

GetSelectionOptionsOk returns a tuple with the SelectionOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) GetType

func (o *UpdateColumn) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*UpdateColumn) GetTypeOk

func (o *UpdateColumn) 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 (*UpdateColumn) GetViewable

func (o *UpdateColumn) GetViewable() bool

GetViewable returns the Viewable field value if set, zero value otherwise.

func (*UpdateColumn) GetViewableOk

func (o *UpdateColumn) GetViewableOk() (*bool, bool)

GetViewableOk returns a tuple with the Viewable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateColumn) HasDateTimeFormat

func (o *UpdateColumn) HasDateTimeFormat() bool

HasDateTimeFormat returns a boolean if a field has been set.

func (*UpdateColumn) HasDescription

func (o *UpdateColumn) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateColumn) HasEditable

func (o *UpdateColumn) HasEditable() bool

HasEditable returns a boolean if a field has been set.

func (*UpdateColumn) HasFormula

func (o *UpdateColumn) HasFormula() bool

HasFormula returns a boolean if a field has been set.

func (*UpdateColumn) HasLanguageCode

func (o *UpdateColumn) HasLanguageCode() bool

HasLanguageCode returns a boolean if a field has been set.

func (*UpdateColumn) HasLocalizationType

func (o *UpdateColumn) HasLocalizationType() bool

HasLocalizationType returns a boolean if a field has been set.

func (*UpdateColumn) HasName

func (o *UpdateColumn) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateColumn) HasNewId

func (o *UpdateColumn) HasNewId() bool

HasNewId returns a boolean if a field has been set.

func (*UpdateColumn) HasNumberFormat

func (o *UpdateColumn) HasNumberFormat() bool

HasNumberFormat returns a boolean if a field has been set.

func (*UpdateColumn) HasReference

func (o *UpdateColumn) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*UpdateColumn) HasSelectionOptions

func (o *UpdateColumn) HasSelectionOptions() bool

HasSelectionOptions returns a boolean if a field has been set.

func (*UpdateColumn) HasType

func (o *UpdateColumn) HasType() bool

HasType returns a boolean if a field has been set.

func (*UpdateColumn) HasViewable

func (o *UpdateColumn) HasViewable() bool

HasViewable returns a boolean if a field has been set.

func (UpdateColumn) MarshalJSON

func (o UpdateColumn) MarshalJSON() ([]byte, error)

func (*UpdateColumn) SetDateTimeFormat

func (o *UpdateColumn) SetDateTimeFormat(v DateTimeFormat)

SetDateTimeFormat gets a reference to the given DateTimeFormat and assigns it to the DateTimeFormat field.

func (*UpdateColumn) SetDescription

func (o *UpdateColumn) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateColumn) SetEditable

func (o *UpdateColumn) SetEditable(v bool)

SetEditable gets a reference to the given bool and assigns it to the Editable field.

func (*UpdateColumn) SetFormula

func (o *UpdateColumn) SetFormula(v Formula)

SetFormula gets a reference to the given Formula and assigns it to the Formula field.

func (*UpdateColumn) SetLanguageCode

func (o *UpdateColumn) SetLanguageCode(v string)

SetLanguageCode gets a reference to the given string and assigns it to the LanguageCode field.

func (*UpdateColumn) SetLocalizationType

func (o *UpdateColumn) SetLocalizationType(v string)

SetLocalizationType gets a reference to the given string and assigns it to the LocalizationType field.

func (*UpdateColumn) SetName

func (o *UpdateColumn) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateColumn) SetNewId

func (o *UpdateColumn) SetNewId(v string)

SetNewId gets a reference to the given string and assigns it to the NewId field.

func (*UpdateColumn) SetNumberFormat

func (o *UpdateColumn) SetNumberFormat(v NumberFormat)

SetNumberFormat gets a reference to the given NumberFormat and assigns it to the NumberFormat field.

func (*UpdateColumn) SetReference

func (o *UpdateColumn) SetReference(v Reference)

SetReference gets a reference to the given Reference and assigns it to the Reference field.

func (*UpdateColumn) SetSelectionOptions

func (o *UpdateColumn) SetSelectionOptions(v []string)

SetSelectionOptions gets a reference to the given []string and assigns it to the SelectionOptions field.

func (*UpdateColumn) SetType

func (o *UpdateColumn) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*UpdateColumn) SetViewable

func (o *UpdateColumn) SetViewable(v bool)

SetViewable gets a reference to the given bool and assigns it to the Viewable field.

type UpdateDatabase

type UpdateDatabase struct {
	Name        string  `json:"name"`
	Description *string `json:"description,omitempty"`
}

UpdateDatabase struct for UpdateDatabase

func NewUpdateDatabase

func NewUpdateDatabase(name string) *UpdateDatabase

NewUpdateDatabase instantiates a new UpdateDatabase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateDatabaseWithDefaults

func NewUpdateDatabaseWithDefaults() *UpdateDatabase

NewUpdateDatabaseWithDefaults instantiates a new UpdateDatabase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateDatabase) GetDescription

func (o *UpdateDatabase) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateDatabase) GetDescriptionOk

func (o *UpdateDatabase) 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 (*UpdateDatabase) GetName

func (o *UpdateDatabase) GetName() string

GetName returns the Name field value

func (*UpdateDatabase) GetNameOk

func (o *UpdateDatabase) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateDatabase) HasDescription

func (o *UpdateDatabase) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (UpdateDatabase) MarshalJSON

func (o UpdateDatabase) MarshalJSON() ([]byte, error)

func (*UpdateDatabase) SetDescription

func (o *UpdateDatabase) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateDatabase) SetName

func (o *UpdateDatabase) SetName(v string)

SetName sets field value

type UpdateDependency

type UpdateDependency struct {
	NewId          *string `json:"newId,omitempty"`
	TargetColumnId string  `json:"targetColumnId"`
	SourceColumnId string  `json:"sourceColumnId"`
}

UpdateDependency struct for UpdateDependency

func NewUpdateDependency

func NewUpdateDependency(targetColumnId string, sourceColumnId string) *UpdateDependency

NewUpdateDependency instantiates a new UpdateDependency object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateDependencyWithDefaults

func NewUpdateDependencyWithDefaults() *UpdateDependency

NewUpdateDependencyWithDefaults instantiates a new UpdateDependency object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateDependency) GetNewId

func (o *UpdateDependency) GetNewId() string

GetNewId returns the NewId field value if set, zero value otherwise.

func (*UpdateDependency) GetNewIdOk

func (o *UpdateDependency) GetNewIdOk() (*string, bool)

GetNewIdOk returns a tuple with the NewId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDependency) GetSourceColumnId

func (o *UpdateDependency) GetSourceColumnId() string

GetSourceColumnId returns the SourceColumnId field value

func (*UpdateDependency) GetSourceColumnIdOk

func (o *UpdateDependency) GetSourceColumnIdOk() (*string, bool)

GetSourceColumnIdOk returns a tuple with the SourceColumnId field value and a boolean to check if the value has been set.

func (*UpdateDependency) GetTargetColumnId

func (o *UpdateDependency) GetTargetColumnId() string

GetTargetColumnId returns the TargetColumnId field value

func (*UpdateDependency) GetTargetColumnIdOk

func (o *UpdateDependency) GetTargetColumnIdOk() (*string, bool)

GetTargetColumnIdOk returns a tuple with the TargetColumnId field value and a boolean to check if the value has been set.

func (*UpdateDependency) HasNewId

func (o *UpdateDependency) HasNewId() bool

HasNewId returns a boolean if a field has been set.

func (UpdateDependency) MarshalJSON

func (o UpdateDependency) MarshalJSON() ([]byte, error)

func (*UpdateDependency) SetNewId

func (o *UpdateDependency) SetNewId(v string)

SetNewId gets a reference to the given string and assigns it to the NewId field.

func (*UpdateDependency) SetSourceColumnId

func (o *UpdateDependency) SetSourceColumnId(v string)

SetSourceColumnId sets field value

func (*UpdateDependency) SetTargetColumnId

func (o *UpdateDependency) SetTargetColumnId(v string)

SetTargetColumnId sets field value

type UpdateGlossary

type UpdateGlossary struct {
	Name        *string           `json:"name,omitempty"`
	Description *string           `json:"description,omitempty"`
	Langs       []string          `json:"langs,omitempty"`
	Projects    []GlossaryProject `json:"projects,omitempty"`
}

UpdateGlossary struct for UpdateGlossary

func NewUpdateGlossary

func NewUpdateGlossary() *UpdateGlossary

NewUpdateGlossary instantiates a new UpdateGlossary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateGlossaryWithDefaults

func NewUpdateGlossaryWithDefaults() *UpdateGlossary

NewUpdateGlossaryWithDefaults instantiates a new UpdateGlossary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateGlossary) GetDescription

func (o *UpdateGlossary) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateGlossary) GetDescriptionOk

func (o *UpdateGlossary) 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 (*UpdateGlossary) GetLangs

func (o *UpdateGlossary) GetLangs() []string

GetLangs returns the Langs field value if set, zero value otherwise.

func (*UpdateGlossary) GetLangsOk

func (o *UpdateGlossary) GetLangsOk() ([]string, bool)

GetLangsOk returns a tuple with the Langs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateGlossary) GetName

func (o *UpdateGlossary) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateGlossary) GetNameOk

func (o *UpdateGlossary) 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 (*UpdateGlossary) GetProjects

func (o *UpdateGlossary) GetProjects() []GlossaryProject

GetProjects returns the Projects field value if set, zero value otherwise.

func (*UpdateGlossary) GetProjectsOk

func (o *UpdateGlossary) GetProjectsOk() ([]GlossaryProject, bool)

GetProjectsOk returns a tuple with the Projects field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateGlossary) HasDescription

func (o *UpdateGlossary) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateGlossary) HasLangs

func (o *UpdateGlossary) HasLangs() bool

HasLangs returns a boolean if a field has been set.

func (*UpdateGlossary) HasName

func (o *UpdateGlossary) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateGlossary) HasProjects

func (o *UpdateGlossary) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (UpdateGlossary) MarshalJSON

func (o UpdateGlossary) MarshalJSON() ([]byte, error)

func (*UpdateGlossary) SetDescription

func (o *UpdateGlossary) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateGlossary) SetLangs

func (o *UpdateGlossary) SetLangs(v []string)

SetLangs gets a reference to the given []string and assigns it to the Langs field.

func (*UpdateGlossary) SetName

func (o *UpdateGlossary) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateGlossary) SetProjects

func (o *UpdateGlossary) SetProjects(v []GlossaryProject)

SetProjects gets a reference to the given []GlossaryProject and assigns it to the Projects field.

type UpdateGrid

type UpdateGrid struct {
	Name     *string            `json:"name,omitempty"`
	Metadata *map[string]string `json:"metadata,omitempty"`
}

UpdateGrid struct for UpdateGrid

func NewUpdateGrid

func NewUpdateGrid() *UpdateGrid

NewUpdateGrid instantiates a new UpdateGrid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateGridWithDefaults

func NewUpdateGridWithDefaults() *UpdateGrid

NewUpdateGridWithDefaults instantiates a new UpdateGrid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateGrid) GetMetadata

func (o *UpdateGrid) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*UpdateGrid) GetMetadataOk

func (o *UpdateGrid) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateGrid) GetName

func (o *UpdateGrid) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateGrid) GetNameOk

func (o *UpdateGrid) 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 (*UpdateGrid) HasMetadata

func (o *UpdateGrid) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*UpdateGrid) HasName

func (o *UpdateGrid) HasName() bool

HasName returns a boolean if a field has been set.

func (UpdateGrid) MarshalJSON

func (o UpdateGrid) MarshalJSON() ([]byte, error)

func (*UpdateGrid) SetMetadata

func (o *UpdateGrid) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*UpdateGrid) SetName

func (o *UpdateGrid) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

type UpdateGridSetting

type UpdateGridSetting struct {
	DefaultDateTimeFormat        *DateTimeFormat    `json:"defaultDateTimeFormat,omitempty"`
	DefaultSourceLanguageStatus  *string            `json:"defaultSourceLanguageStatus,omitempty"`
	TranslatorCanViewAutomations *bool              `json:"translatorCanViewAutomations,omitempty"`
	Metadata                     *map[string]string `json:"metadata,omitempty"`
}

UpdateGridSetting struct for UpdateGridSetting

func NewUpdateGridSetting

func NewUpdateGridSetting() *UpdateGridSetting

NewUpdateGridSetting instantiates a new UpdateGridSetting object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateGridSettingWithDefaults

func NewUpdateGridSettingWithDefaults() *UpdateGridSetting

NewUpdateGridSettingWithDefaults instantiates a new UpdateGridSetting object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateGridSetting) GetDefaultDateTimeFormat

func (o *UpdateGridSetting) GetDefaultDateTimeFormat() DateTimeFormat

GetDefaultDateTimeFormat returns the DefaultDateTimeFormat field value if set, zero value otherwise.

func (*UpdateGridSetting) GetDefaultDateTimeFormatOk

func (o *UpdateGridSetting) GetDefaultDateTimeFormatOk() (*DateTimeFormat, bool)

GetDefaultDateTimeFormatOk returns a tuple with the DefaultDateTimeFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateGridSetting) GetDefaultSourceLanguageStatus

func (o *UpdateGridSetting) GetDefaultSourceLanguageStatus() string

GetDefaultSourceLanguageStatus returns the DefaultSourceLanguageStatus field value if set, zero value otherwise.

func (*UpdateGridSetting) GetDefaultSourceLanguageStatusOk

func (o *UpdateGridSetting) GetDefaultSourceLanguageStatusOk() (*string, bool)

GetDefaultSourceLanguageStatusOk returns a tuple with the DefaultSourceLanguageStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateGridSetting) GetMetadata

func (o *UpdateGridSetting) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*UpdateGridSetting) GetMetadataOk

func (o *UpdateGridSetting) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateGridSetting) GetTranslatorCanViewAutomations

func (o *UpdateGridSetting) GetTranslatorCanViewAutomations() bool

GetTranslatorCanViewAutomations returns the TranslatorCanViewAutomations field value if set, zero value otherwise.

func (*UpdateGridSetting) GetTranslatorCanViewAutomationsOk

func (o *UpdateGridSetting) GetTranslatorCanViewAutomationsOk() (*bool, bool)

GetTranslatorCanViewAutomationsOk returns a tuple with the TranslatorCanViewAutomations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateGridSetting) HasDefaultDateTimeFormat

func (o *UpdateGridSetting) HasDefaultDateTimeFormat() bool

HasDefaultDateTimeFormat returns a boolean if a field has been set.

func (*UpdateGridSetting) HasDefaultSourceLanguageStatus

func (o *UpdateGridSetting) HasDefaultSourceLanguageStatus() bool

HasDefaultSourceLanguageStatus returns a boolean if a field has been set.

func (*UpdateGridSetting) HasMetadata

func (o *UpdateGridSetting) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*UpdateGridSetting) HasTranslatorCanViewAutomations

func (o *UpdateGridSetting) HasTranslatorCanViewAutomations() bool

HasTranslatorCanViewAutomations returns a boolean if a field has been set.

func (UpdateGridSetting) MarshalJSON

func (o UpdateGridSetting) MarshalJSON() ([]byte, error)

func (*UpdateGridSetting) SetDefaultDateTimeFormat

func (o *UpdateGridSetting) SetDefaultDateTimeFormat(v DateTimeFormat)

SetDefaultDateTimeFormat gets a reference to the given DateTimeFormat and assigns it to the DefaultDateTimeFormat field.

func (*UpdateGridSetting) SetDefaultSourceLanguageStatus

func (o *UpdateGridSetting) SetDefaultSourceLanguageStatus(v string)

SetDefaultSourceLanguageStatus gets a reference to the given string and assigns it to the DefaultSourceLanguageStatus field.

func (*UpdateGridSetting) SetMetadata

func (o *UpdateGridSetting) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*UpdateGridSetting) SetTranslatorCanViewAutomations

func (o *UpdateGridSetting) SetTranslatorCanViewAutomations(v bool)

SetTranslatorCanViewAutomations gets a reference to the given bool and assigns it to the TranslatorCanViewAutomations field.

type UpdatePath

type UpdatePath struct {
	NewName string `json:"newName"`
}

UpdatePath struct for UpdatePath

func NewUpdatePath

func NewUpdatePath(newName string) *UpdatePath

NewUpdatePath instantiates a new UpdatePath object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePathWithDefaults

func NewUpdatePathWithDefaults() *UpdatePath

NewUpdatePathWithDefaults instantiates a new UpdatePath object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePath) GetNewName

func (o *UpdatePath) GetNewName() string

GetNewName returns the NewName field value

func (*UpdatePath) GetNewNameOk

func (o *UpdatePath) GetNewNameOk() (*string, bool)

GetNewNameOk returns a tuple with the NewName field value and a boolean to check if the value has been set.

func (UpdatePath) MarshalJSON

func (o UpdatePath) MarshalJSON() ([]byte, error)

func (*UpdatePath) SetNewName

func (o *UpdatePath) SetNewName(v string)

SetNewName sets field value

type UpdateProject

type UpdateProject struct {
	Name        string  `json:"name"`
	Description *string `json:"description,omitempty"`
}

UpdateProject struct for UpdateProject

func NewUpdateProject

func NewUpdateProject(name string) *UpdateProject

NewUpdateProject instantiates a new UpdateProject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateProjectWithDefaults

func NewUpdateProjectWithDefaults() *UpdateProject

NewUpdateProjectWithDefaults instantiates a new UpdateProject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateProject) GetDescription

func (o *UpdateProject) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateProject) GetDescriptionOk

func (o *UpdateProject) 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 (*UpdateProject) GetName

func (o *UpdateProject) GetName() string

GetName returns the Name field value

func (*UpdateProject) GetNameOk

func (o *UpdateProject) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateProject) HasDescription

func (o *UpdateProject) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (UpdateProject) MarshalJSON

func (o UpdateProject) MarshalJSON() ([]byte, error)

func (*UpdateProject) SetDescription

func (o *UpdateProject) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateProject) SetName

func (o *UpdateProject) SetName(v string)

SetName sets field value

type UpdateTransMem

type UpdateTransMem struct {
	Name                            *string            `json:"name,omitempty"`
	Description                     *string            `json:"description,omitempty"`
	ProjectIds                      []int64            `json:"projectIds,omitempty"`
	FuzzyMatch                      *bool              `json:"fuzzyMatch,omitempty"`
	IsDisabled                      *bool              `json:"isDisabled,omitempty"`
	IsPausedConsuming               *bool              `json:"isPausedConsuming,omitempty"`
	PopulateTranslationStatus       *TranslationStatus `json:"populateTranslationStatus,omitempty"`
	ContextLookup                   *bool              `json:"contextLookup,omitempty"`
	AllowAlternative                *bool              `json:"allowAlternative,omitempty"`
	AllowAlternativeHasSameRecordId *bool              `json:"allowAlternativeHasSameRecordId,omitempty"`
}

UpdateTransMem struct for UpdateTransMem

func NewUpdateTransMem

func NewUpdateTransMem() *UpdateTransMem

NewUpdateTransMem instantiates a new UpdateTransMem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTransMemWithDefaults

func NewUpdateTransMemWithDefaults() *UpdateTransMem

NewUpdateTransMemWithDefaults instantiates a new UpdateTransMem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTransMem) GetAllowAlternative

func (o *UpdateTransMem) GetAllowAlternative() bool

GetAllowAlternative returns the AllowAlternative field value if set, zero value otherwise.

func (*UpdateTransMem) GetAllowAlternativeHasSameRecordId

func (o *UpdateTransMem) GetAllowAlternativeHasSameRecordId() bool

GetAllowAlternativeHasSameRecordId returns the AllowAlternativeHasSameRecordId field value if set, zero value otherwise.

func (*UpdateTransMem) GetAllowAlternativeHasSameRecordIdOk

func (o *UpdateTransMem) GetAllowAlternativeHasSameRecordIdOk() (*bool, bool)

GetAllowAlternativeHasSameRecordIdOk returns a tuple with the AllowAlternativeHasSameRecordId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransMem) GetAllowAlternativeOk

func (o *UpdateTransMem) GetAllowAlternativeOk() (*bool, bool)

GetAllowAlternativeOk returns a tuple with the AllowAlternative field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransMem) GetContextLookup

func (o *UpdateTransMem) GetContextLookup() bool

GetContextLookup returns the ContextLookup field value if set, zero value otherwise.

func (*UpdateTransMem) GetContextLookupOk

func (o *UpdateTransMem) GetContextLookupOk() (*bool, bool)

GetContextLookupOk returns a tuple with the ContextLookup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransMem) GetDescription

func (o *UpdateTransMem) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*UpdateTransMem) GetDescriptionOk

func (o *UpdateTransMem) 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 (*UpdateTransMem) GetFuzzyMatch

func (o *UpdateTransMem) GetFuzzyMatch() bool

GetFuzzyMatch returns the FuzzyMatch field value if set, zero value otherwise.

func (*UpdateTransMem) GetFuzzyMatchOk

func (o *UpdateTransMem) GetFuzzyMatchOk() (*bool, bool)

GetFuzzyMatchOk returns a tuple with the FuzzyMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransMem) GetIsDisabled

func (o *UpdateTransMem) GetIsDisabled() bool

GetIsDisabled returns the IsDisabled field value if set, zero value otherwise.

func (*UpdateTransMem) GetIsDisabledOk

func (o *UpdateTransMem) GetIsDisabledOk() (*bool, bool)

GetIsDisabledOk returns a tuple with the IsDisabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransMem) GetIsPausedConsuming

func (o *UpdateTransMem) GetIsPausedConsuming() bool

GetIsPausedConsuming returns the IsPausedConsuming field value if set, zero value otherwise.

func (*UpdateTransMem) GetIsPausedConsumingOk

func (o *UpdateTransMem) GetIsPausedConsumingOk() (*bool, bool)

GetIsPausedConsumingOk returns a tuple with the IsPausedConsuming field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransMem) GetName

func (o *UpdateTransMem) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateTransMem) GetNameOk

func (o *UpdateTransMem) 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 (*UpdateTransMem) GetPopulateTranslationStatus

func (o *UpdateTransMem) GetPopulateTranslationStatus() TranslationStatus

GetPopulateTranslationStatus returns the PopulateTranslationStatus field value if set, zero value otherwise.

func (*UpdateTransMem) GetPopulateTranslationStatusOk

func (o *UpdateTransMem) GetPopulateTranslationStatusOk() (*TranslationStatus, bool)

GetPopulateTranslationStatusOk returns a tuple with the PopulateTranslationStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransMem) GetProjectIds

func (o *UpdateTransMem) GetProjectIds() []int64

GetProjectIds returns the ProjectIds field value if set, zero value otherwise.

func (*UpdateTransMem) GetProjectIdsOk

func (o *UpdateTransMem) GetProjectIdsOk() ([]int64, bool)

GetProjectIdsOk returns a tuple with the ProjectIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTransMem) HasAllowAlternative

func (o *UpdateTransMem) HasAllowAlternative() bool

HasAllowAlternative returns a boolean if a field has been set.

func (*UpdateTransMem) HasAllowAlternativeHasSameRecordId

func (o *UpdateTransMem) HasAllowAlternativeHasSameRecordId() bool

HasAllowAlternativeHasSameRecordId returns a boolean if a field has been set.

func (*UpdateTransMem) HasContextLookup

func (o *UpdateTransMem) HasContextLookup() bool

HasContextLookup returns a boolean if a field has been set.

func (*UpdateTransMem) HasDescription

func (o *UpdateTransMem) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateTransMem) HasFuzzyMatch

func (o *UpdateTransMem) HasFuzzyMatch() bool

HasFuzzyMatch returns a boolean if a field has been set.

func (*UpdateTransMem) HasIsDisabled

func (o *UpdateTransMem) HasIsDisabled() bool

HasIsDisabled returns a boolean if a field has been set.

func (*UpdateTransMem) HasIsPausedConsuming

func (o *UpdateTransMem) HasIsPausedConsuming() bool

HasIsPausedConsuming returns a boolean if a field has been set.

func (*UpdateTransMem) HasName

func (o *UpdateTransMem) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateTransMem) HasPopulateTranslationStatus

func (o *UpdateTransMem) HasPopulateTranslationStatus() bool

HasPopulateTranslationStatus returns a boolean if a field has been set.

func (*UpdateTransMem) HasProjectIds

func (o *UpdateTransMem) HasProjectIds() bool

HasProjectIds returns a boolean if a field has been set.

func (UpdateTransMem) MarshalJSON

func (o UpdateTransMem) MarshalJSON() ([]byte, error)

func (*UpdateTransMem) SetAllowAlternative

func (o *UpdateTransMem) SetAllowAlternative(v bool)

SetAllowAlternative gets a reference to the given bool and assigns it to the AllowAlternative field.

func (*UpdateTransMem) SetAllowAlternativeHasSameRecordId

func (o *UpdateTransMem) SetAllowAlternativeHasSameRecordId(v bool)

SetAllowAlternativeHasSameRecordId gets a reference to the given bool and assigns it to the AllowAlternativeHasSameRecordId field.

func (*UpdateTransMem) SetContextLookup

func (o *UpdateTransMem) SetContextLookup(v bool)

SetContextLookup gets a reference to the given bool and assigns it to the ContextLookup field.

func (*UpdateTransMem) SetDescription

func (o *UpdateTransMem) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*UpdateTransMem) SetFuzzyMatch

func (o *UpdateTransMem) SetFuzzyMatch(v bool)

SetFuzzyMatch gets a reference to the given bool and assigns it to the FuzzyMatch field.

func (*UpdateTransMem) SetIsDisabled

func (o *UpdateTransMem) SetIsDisabled(v bool)

SetIsDisabled gets a reference to the given bool and assigns it to the IsDisabled field.

func (*UpdateTransMem) SetIsPausedConsuming

func (o *UpdateTransMem) SetIsPausedConsuming(v bool)

SetIsPausedConsuming gets a reference to the given bool and assigns it to the IsPausedConsuming field.

func (*UpdateTransMem) SetName

func (o *UpdateTransMem) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateTransMem) SetPopulateTranslationStatus

func (o *UpdateTransMem) SetPopulateTranslationStatus(v TranslationStatus)

SetPopulateTranslationStatus gets a reference to the given TranslationStatus and assigns it to the PopulateTranslationStatus field.

func (*UpdateTransMem) SetProjectIds

func (o *UpdateTransMem) SetProjectIds(v []int64)

SetProjectIds gets a reference to the given []int64 and assigns it to the ProjectIds field.

type UploadSettingFileRequest

type UploadSettingFileRequest struct {
	File **os.File `json:"file,omitempty"`
}

UploadSettingFileRequest struct for UploadSettingFileRequest

func NewUploadSettingFileRequest

func NewUploadSettingFileRequest() *UploadSettingFileRequest

NewUploadSettingFileRequest instantiates a new UploadSettingFileRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadSettingFileRequestWithDefaults

func NewUploadSettingFileRequestWithDefaults() *UploadSettingFileRequest

NewUploadSettingFileRequestWithDefaults instantiates a new UploadSettingFileRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadSettingFileRequest) GetFile

func (o *UploadSettingFileRequest) GetFile() *os.File

GetFile returns the File field value if set, zero value otherwise.

func (*UploadSettingFileRequest) GetFileOk

func (o *UploadSettingFileRequest) GetFileOk() (**os.File, bool)

GetFileOk returns a tuple with the File field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadSettingFileRequest) HasFile

func (o *UploadSettingFileRequest) HasFile() bool

HasFile returns a boolean if a field has been set.

func (UploadSettingFileRequest) MarshalJSON

func (o UploadSettingFileRequest) MarshalJSON() ([]byte, error)

func (*UploadSettingFileRequest) SetFile

func (o *UploadSettingFileRequest) SetFile(v *os.File)

SetFile gets a reference to the given *os.File and assigns it to the File field.

type UploadZipRequest

type UploadZipRequest struct {
	ColumnId     string   `json:"columnId"`
	FileMappings string   `json:"fileMappings"`
	File         *os.File `json:"file"`
}

UploadZipRequest struct for UploadZipRequest

func NewUploadZipRequest

func NewUploadZipRequest(columnId string, fileMappings string, file *os.File) *UploadZipRequest

NewUploadZipRequest instantiates a new UploadZipRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadZipRequestWithDefaults

func NewUploadZipRequestWithDefaults() *UploadZipRequest

NewUploadZipRequestWithDefaults instantiates a new UploadZipRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadZipRequest) GetColumnId

func (o *UploadZipRequest) GetColumnId() string

GetColumnId returns the ColumnId field value

func (*UploadZipRequest) GetColumnIdOk

func (o *UploadZipRequest) GetColumnIdOk() (*string, bool)

GetColumnIdOk returns a tuple with the ColumnId field value and a boolean to check if the value has been set.

func (*UploadZipRequest) GetFile

func (o *UploadZipRequest) GetFile() *os.File

GetFile returns the File field value

func (*UploadZipRequest) GetFileMappings

func (o *UploadZipRequest) GetFileMappings() string

GetFileMappings returns the FileMappings field value

func (*UploadZipRequest) GetFileMappingsOk

func (o *UploadZipRequest) GetFileMappingsOk() (*string, bool)

GetFileMappingsOk returns a tuple with the FileMappings field value and a boolean to check if the value has been set.

func (*UploadZipRequest) GetFileOk

func (o *UploadZipRequest) GetFileOk() (**os.File, bool)

GetFileOk returns a tuple with the File field value and a boolean to check if the value has been set.

func (UploadZipRequest) MarshalJSON

func (o UploadZipRequest) MarshalJSON() ([]byte, error)

func (*UploadZipRequest) SetColumnId

func (o *UploadZipRequest) SetColumnId(v string)

SetColumnId sets field value

func (*UploadZipRequest) SetFile

func (o *UploadZipRequest) SetFile(v *os.File)

SetFile sets field value

func (*UploadZipRequest) SetFileMappings

func (o *UploadZipRequest) SetFileMappings(v string)

SetFileMappings sets field value

type UploadedFile

type UploadedFile struct {
	Id           *string `json:"id,omitempty"`
	OriginalName *string `json:"originalName,omitempty"`
	ContentType  *string `json:"contentType,omitempty"`
	Size         *int64  `json:"size,omitempty"`
	ThumbnailId  *string `json:"thumbnailId,omitempty"`
}

UploadedFile struct for UploadedFile

func NewUploadedFile

func NewUploadedFile() *UploadedFile

NewUploadedFile instantiates a new UploadedFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadedFileWithDefaults

func NewUploadedFileWithDefaults() *UploadedFile

NewUploadedFileWithDefaults instantiates a new UploadedFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadedFile) GetContentType

func (o *UploadedFile) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*UploadedFile) GetContentTypeOk

func (o *UploadedFile) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadedFile) GetId

func (o *UploadedFile) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UploadedFile) GetIdOk

func (o *UploadedFile) 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 (*UploadedFile) GetOriginalName

func (o *UploadedFile) GetOriginalName() string

GetOriginalName returns the OriginalName field value if set, zero value otherwise.

func (*UploadedFile) GetOriginalNameOk

func (o *UploadedFile) GetOriginalNameOk() (*string, bool)

GetOriginalNameOk returns a tuple with the OriginalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadedFile) GetSize

func (o *UploadedFile) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise.

func (*UploadedFile) GetSizeOk

func (o *UploadedFile) GetSizeOk() (*int64, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadedFile) GetThumbnailId

func (o *UploadedFile) GetThumbnailId() string

GetThumbnailId returns the ThumbnailId field value if set, zero value otherwise.

func (*UploadedFile) GetThumbnailIdOk

func (o *UploadedFile) GetThumbnailIdOk() (*string, bool)

GetThumbnailIdOk returns a tuple with the ThumbnailId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadedFile) HasContentType

func (o *UploadedFile) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*UploadedFile) HasId

func (o *UploadedFile) HasId() bool

HasId returns a boolean if a field has been set.

func (*UploadedFile) HasOriginalName

func (o *UploadedFile) HasOriginalName() bool

HasOriginalName returns a boolean if a field has been set.

func (*UploadedFile) HasSize

func (o *UploadedFile) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*UploadedFile) HasThumbnailId

func (o *UploadedFile) HasThumbnailId() bool

HasThumbnailId returns a boolean if a field has been set.

func (UploadedFile) MarshalJSON

func (o UploadedFile) MarshalJSON() ([]byte, error)

func (*UploadedFile) SetContentType

func (o *UploadedFile) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*UploadedFile) SetId

func (o *UploadedFile) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UploadedFile) SetOriginalName

func (o *UploadedFile) SetOriginalName(v string)

SetOriginalName gets a reference to the given string and assigns it to the OriginalName field.

func (*UploadedFile) SetSize

func (o *UploadedFile) SetSize(v int64)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*UploadedFile) SetThumbnailId

func (o *UploadedFile) SetThumbnailId(v string)

SetThumbnailId gets a reference to the given string and assigns it to the ThumbnailId field.

type View

type View struct {
	Id         *string      `json:"id,omitempty"`
	Columns    []ViewColumn `json:"columns,omitempty"`
	GridId     *string      `json:"gridId,omitempty"`
	GridStatus *string      `json:"gridStatus,omitempty"`
	Name       *string      `json:"name,omitempty"`
	Records    []Record     `json:"records,omitempty"`
}

View struct for View

func NewView

func NewView() *View

NewView instantiates a new View object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewViewWithDefaults

func NewViewWithDefaults() *View

NewViewWithDefaults instantiates a new View object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*View) GetColumns

func (o *View) GetColumns() []ViewColumn

GetColumns returns the Columns field value if set, zero value otherwise.

func (*View) GetColumnsOk

func (o *View) GetColumnsOk() ([]ViewColumn, bool)

GetColumnsOk returns a tuple with the Columns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*View) GetGridId

func (o *View) GetGridId() string

GetGridId returns the GridId field value if set, zero value otherwise.

func (*View) GetGridIdOk

func (o *View) GetGridIdOk() (*string, bool)

GetGridIdOk returns a tuple with the GridId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*View) GetGridStatus

func (o *View) GetGridStatus() string

GetGridStatus returns the GridStatus field value if set, zero value otherwise.

func (*View) GetGridStatusOk

func (o *View) GetGridStatusOk() (*string, bool)

GetGridStatusOk returns a tuple with the GridStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*View) GetId

func (o *View) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*View) GetIdOk

func (o *View) 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 (*View) GetName

func (o *View) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*View) GetNameOk

func (o *View) 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 (*View) GetRecords

func (o *View) GetRecords() []Record

GetRecords returns the Records field value if set, zero value otherwise.

func (*View) GetRecordsOk

func (o *View) GetRecordsOk() ([]Record, bool)

GetRecordsOk returns a tuple with the Records field value if set, nil otherwise and a boolean to check if the value has been set.

func (*View) HasColumns

func (o *View) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (*View) HasGridId

func (o *View) HasGridId() bool

HasGridId returns a boolean if a field has been set.

func (*View) HasGridStatus

func (o *View) HasGridStatus() bool

HasGridStatus returns a boolean if a field has been set.

func (*View) HasId

func (o *View) HasId() bool

HasId returns a boolean if a field has been set.

func (*View) HasName

func (o *View) HasName() bool

HasName returns a boolean if a field has been set.

func (*View) HasRecords

func (o *View) HasRecords() bool

HasRecords returns a boolean if a field has been set.

func (View) MarshalJSON

func (o View) MarshalJSON() ([]byte, error)

func (*View) SetColumns

func (o *View) SetColumns(v []ViewColumn)

SetColumns gets a reference to the given []ViewColumn and assigns it to the Columns field.

func (*View) SetGridId

func (o *View) SetGridId(v string)

SetGridId gets a reference to the given string and assigns it to the GridId field.

func (*View) SetGridStatus

func (o *View) SetGridStatus(v string)

SetGridStatus gets a reference to the given string and assigns it to the GridStatus field.

func (*View) SetId

func (o *View) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*View) SetName

func (o *View) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*View) SetRecords

func (o *View) SetRecords(v []Record)

SetRecords gets a reference to the given []Record and assigns it to the Records field.

type ViewApiCreateRequest

type ViewApiCreateRequest struct {
	ApiService *ViewApiService
	// contains filtered or unexported fields
}

func (ViewApiCreateRequest) CreateView

func (r ViewApiCreateRequest) CreateView(createView CreateView) ViewApiCreateRequest

func (ViewApiCreateRequest) Execute

func (r ViewApiCreateRequest) Execute() (*View, *http.Response, error)

type ViewApiExportRequest

type ViewApiExportRequest struct {
	ApiService *ViewApiService
	// contains filtered or unexported fields
}

func (ViewApiExportRequest) ColumnIds

func (r ViewApiExportRequest) ColumnIds(columnIds []string) ViewApiExportRequest

columnIds

func (ViewApiExportRequest) Execute

func (r ViewApiExportRequest) Execute() (**os.File, *http.Response, error)

func (ViewApiExportRequest) FileHeader

fileHeader

func (ViewApiExportRequest) Query

query

func (ViewApiExportRequest) Sort

sort

func (ViewApiExportRequest) Type_

type

type ViewApiGetRequest

type ViewApiGetRequest struct {
	ApiService *ViewApiService
	// contains filtered or unexported fields
}

func (ViewApiGetRequest) ColumnIds

func (r ViewApiGetRequest) ColumnIds(columnIds []string) ViewApiGetRequest

columnIds

func (ViewApiGetRequest) Execute

func (r ViewApiGetRequest) Execute() (*View, *http.Response, error)

func (ViewApiGetRequest) Include

func (r ViewApiGetRequest) Include(include []string) ViewApiGetRequest

include

func (ViewApiGetRequest) Page

page

func (ViewApiGetRequest) Query

query

func (ViewApiGetRequest) Sort

sort

type ViewApiGetStatisticRequest

type ViewApiGetStatisticRequest struct {
	ApiService *ViewApiService
	// contains filtered or unexported fields
}

func (ViewApiGetStatisticRequest) ColumnIds

columnIds

func (ViewApiGetStatisticRequest) Execute

type ViewApiImportViewRequest

type ViewApiImportViewRequest struct {
	ApiService *ViewApiService
	// contains filtered or unexported fields
}

func (ViewApiImportViewRequest) Execute

func (r ViewApiImportViewRequest) Execute() (*http.Response, error)

func (ViewApiImportViewRequest) File

The following file types are supported: csv, tsv, xls, xlsx and json

func (ViewApiImportViewRequest) ImportRequest

func (r ViewApiImportViewRequest) ImportRequest(importRequest string) ViewApiImportViewRequest

importRequest

func (ViewApiImportViewRequest) Type_

type

type ViewApiListRequest

type ViewApiListRequest struct {
	ApiService *ViewApiService
	// contains filtered or unexported fields
}

func (ViewApiListRequest) BranchId

func (r ViewApiListRequest) BranchId(branchId string) ViewApiListRequest

branchId

func (ViewApiListRequest) Execute

func (r ViewApiListRequest) Execute() ([]View, *http.Response, error)

func (ViewApiListRequest) GridId

func (r ViewApiListRequest) GridId(gridId string) ViewApiListRequest

gridId

func (ViewApiListRequest) Type_

type

type ViewApiMergeRequest

type ViewApiMergeRequest struct {
	ApiService *ViewApiService
	// contains filtered or unexported fields
}

func (ViewApiMergeRequest) DestinationViewId

func (r ViewApiMergeRequest) DestinationViewId(destinationViewId string) ViewApiMergeRequest

destinationViewId

func (ViewApiMergeRequest) Execute

func (r ViewApiMergeRequest) Execute() (*Task, *http.Response, error)

func (ViewApiMergeRequest) MergeBranchRequest

func (r ViewApiMergeRequest) MergeBranchRequest(mergeBranchRequest MergeBranchRequest) ViewApiMergeRequest

func (ViewApiMergeRequest) MergeRecordOptions

func (r ViewApiMergeRequest) MergeRecordOptions(mergeRecordOptions []string) ViewApiMergeRequest

mergeRecordOptions

type ViewApiService

type ViewApiService service

ViewApiService ViewApi service

func (*ViewApiService) Create

Create create

create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ViewApiCreateRequest

func (*ViewApiService) CreateExecute

func (a *ViewApiService) CreateExecute(r ViewApiCreateRequest) (*View, *http.Response, error)

Execute executes the request

@return View

func (*ViewApiService) Export

func (a *ViewApiService) Export(ctx context.Context, viewId string) ViewApiExportRequest

Export export

export

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewApiExportRequest

func (*ViewApiService) ExportExecute

func (a *ViewApiService) ExportExecute(r ViewApiExportRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*ViewApiService) Get

Get get

get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewApiGetRequest

func (*ViewApiService) GetExecute

func (a *ViewApiService) GetExecute(r ViewApiGetRequest) (*View, *http.Response, error)

Execute executes the request

@return View

func (*ViewApiService) GetStatistic

func (a *ViewApiService) GetStatistic(ctx context.Context, viewId string) ViewApiGetStatisticRequest

GetStatistic getStatistic

getStatistic

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewApiGetStatisticRequest

func (*ViewApiService) GetStatisticExecute

Execute executes the request

@return ViewStatistic

func (*ViewApiService) ImportView

func (a *ViewApiService) ImportView(ctx context.Context, viewId string) ViewApiImportViewRequest

ImportView importView

importView

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewApiImportViewRequest

func (*ViewApiService) ImportViewExecute

func (a *ViewApiService) ImportViewExecute(r ViewApiImportViewRequest) (*http.Response, error)

Execute executes the request

func (*ViewApiService) List

List list

list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ViewApiListRequest

func (*ViewApiService) ListExecute

func (a *ViewApiService) ListExecute(r ViewApiListRequest) ([]View, *http.Response, error)

Execute executes the request

@return []View

func (*ViewApiService) Merge

Merge merge

merge

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewApiMergeRequest

func (*ViewApiService) MergeExecute

func (a *ViewApiService) MergeExecute(r ViewApiMergeRequest) (*Task, *http.Response, error)

Execute executes the request

@return Task

type ViewColumn

type ViewColumn struct {
	Id               *string          `json:"id,omitempty"`
	DateTimeFormat   *DateTimeFormat  `json:"dateTimeFormat,omitempty"`
	DependsOn        *string          `json:"dependsOn,omitempty"`
	Description      *string          `json:"description,omitempty"`
	Editable         *bool            `json:"editable,omitempty"`
	Formula          *Formula         `json:"formula,omitempty"`
	IsSource         *bool            `json:"isSource,omitempty"`
	IsTarget         *bool            `json:"isTarget,omitempty"`
	LanguageCode     *string          `json:"languageCode,omitempty"`
	LocalizationType *string          `json:"localizationType,omitempty"`
	Name             *string          `json:"name,omitempty"`
	NumberFormat     *NumberFormat    `json:"numberFormat,omitempty"`
	Reference        *ColumnReference `json:"reference,omitempty"`
	SelectionOptions []string         `json:"selectionOptions,omitempty"`
	Type             *string          `json:"type,omitempty"`
}

ViewColumn struct for ViewColumn

func NewViewColumn

func NewViewColumn() *ViewColumn

NewViewColumn instantiates a new ViewColumn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewViewColumnWithDefaults

func NewViewColumnWithDefaults() *ViewColumn

NewViewColumnWithDefaults instantiates a new ViewColumn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ViewColumn) GetDateTimeFormat

func (o *ViewColumn) GetDateTimeFormat() DateTimeFormat

GetDateTimeFormat returns the DateTimeFormat field value if set, zero value otherwise.

func (*ViewColumn) GetDateTimeFormatOk

func (o *ViewColumn) GetDateTimeFormatOk() (*DateTimeFormat, bool)

GetDateTimeFormatOk returns a tuple with the DateTimeFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetDependsOn

func (o *ViewColumn) GetDependsOn() string

GetDependsOn returns the DependsOn field value if set, zero value otherwise.

func (*ViewColumn) GetDependsOnOk

func (o *ViewColumn) GetDependsOnOk() (*string, bool)

GetDependsOnOk returns a tuple with the DependsOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetDescription

func (o *ViewColumn) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ViewColumn) GetDescriptionOk

func (o *ViewColumn) 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 (*ViewColumn) GetEditable

func (o *ViewColumn) GetEditable() bool

GetEditable returns the Editable field value if set, zero value otherwise.

func (*ViewColumn) GetEditableOk

func (o *ViewColumn) 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 (*ViewColumn) GetFormula

func (o *ViewColumn) GetFormula() Formula

GetFormula returns the Formula field value if set, zero value otherwise.

func (*ViewColumn) GetFormulaOk

func (o *ViewColumn) GetFormulaOk() (*Formula, bool)

GetFormulaOk returns a tuple with the Formula field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetId

func (o *ViewColumn) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ViewColumn) GetIdOk

func (o *ViewColumn) 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 (*ViewColumn) GetIsSource

func (o *ViewColumn) GetIsSource() bool

GetIsSource returns the IsSource field value if set, zero value otherwise.

func (*ViewColumn) GetIsSourceOk

func (o *ViewColumn) GetIsSourceOk() (*bool, bool)

GetIsSourceOk returns a tuple with the IsSource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetIsTarget

func (o *ViewColumn) GetIsTarget() bool

GetIsTarget returns the IsTarget field value if set, zero value otherwise.

func (*ViewColumn) GetIsTargetOk

func (o *ViewColumn) GetIsTargetOk() (*bool, bool)

GetIsTargetOk returns a tuple with the IsTarget field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetLanguageCode

func (o *ViewColumn) GetLanguageCode() string

GetLanguageCode returns the LanguageCode field value if set, zero value otherwise.

func (*ViewColumn) GetLanguageCodeOk

func (o *ViewColumn) GetLanguageCodeOk() (*string, bool)

GetLanguageCodeOk returns a tuple with the LanguageCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetLocalizationType

func (o *ViewColumn) GetLocalizationType() string

GetLocalizationType returns the LocalizationType field value if set, zero value otherwise.

func (*ViewColumn) GetLocalizationTypeOk

func (o *ViewColumn) GetLocalizationTypeOk() (*string, bool)

GetLocalizationTypeOk returns a tuple with the LocalizationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetName

func (o *ViewColumn) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ViewColumn) GetNameOk

func (o *ViewColumn) 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 (*ViewColumn) GetNumberFormat

func (o *ViewColumn) GetNumberFormat() NumberFormat

GetNumberFormat returns the NumberFormat field value if set, zero value otherwise.

func (*ViewColumn) GetNumberFormatOk

func (o *ViewColumn) GetNumberFormatOk() (*NumberFormat, bool)

GetNumberFormatOk returns a tuple with the NumberFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetReference

func (o *ViewColumn) GetReference() ColumnReference

GetReference returns the Reference field value if set, zero value otherwise.

func (*ViewColumn) GetReferenceOk

func (o *ViewColumn) GetReferenceOk() (*ColumnReference, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetSelectionOptions

func (o *ViewColumn) GetSelectionOptions() []string

GetSelectionOptions returns the SelectionOptions field value if set, zero value otherwise.

func (*ViewColumn) GetSelectionOptionsOk

func (o *ViewColumn) GetSelectionOptionsOk() ([]string, bool)

GetSelectionOptionsOk returns a tuple with the SelectionOptions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewColumn) GetType

func (o *ViewColumn) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ViewColumn) GetTypeOk

func (o *ViewColumn) 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 (*ViewColumn) HasDateTimeFormat

func (o *ViewColumn) HasDateTimeFormat() bool

HasDateTimeFormat returns a boolean if a field has been set.

func (*ViewColumn) HasDependsOn

func (o *ViewColumn) HasDependsOn() bool

HasDependsOn returns a boolean if a field has been set.

func (*ViewColumn) HasDescription

func (o *ViewColumn) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ViewColumn) HasEditable

func (o *ViewColumn) HasEditable() bool

HasEditable returns a boolean if a field has been set.

func (*ViewColumn) HasFormula

func (o *ViewColumn) HasFormula() bool

HasFormula returns a boolean if a field has been set.

func (*ViewColumn) HasId

func (o *ViewColumn) HasId() bool

HasId returns a boolean if a field has been set.

func (*ViewColumn) HasIsSource

func (o *ViewColumn) HasIsSource() bool

HasIsSource returns a boolean if a field has been set.

func (*ViewColumn) HasIsTarget

func (o *ViewColumn) HasIsTarget() bool

HasIsTarget returns a boolean if a field has been set.

func (*ViewColumn) HasLanguageCode

func (o *ViewColumn) HasLanguageCode() bool

HasLanguageCode returns a boolean if a field has been set.

func (*ViewColumn) HasLocalizationType

func (o *ViewColumn) HasLocalizationType() bool

HasLocalizationType returns a boolean if a field has been set.

func (*ViewColumn) HasName

func (o *ViewColumn) HasName() bool

HasName returns a boolean if a field has been set.

func (*ViewColumn) HasNumberFormat

func (o *ViewColumn) HasNumberFormat() bool

HasNumberFormat returns a boolean if a field has been set.

func (*ViewColumn) HasReference

func (o *ViewColumn) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*ViewColumn) HasSelectionOptions

func (o *ViewColumn) HasSelectionOptions() bool

HasSelectionOptions returns a boolean if a field has been set.

func (*ViewColumn) HasType

func (o *ViewColumn) HasType() bool

HasType returns a boolean if a field has been set.

func (ViewColumn) MarshalJSON

func (o ViewColumn) MarshalJSON() ([]byte, error)

func (*ViewColumn) SetDateTimeFormat

func (o *ViewColumn) SetDateTimeFormat(v DateTimeFormat)

SetDateTimeFormat gets a reference to the given DateTimeFormat and assigns it to the DateTimeFormat field.

func (*ViewColumn) SetDependsOn

func (o *ViewColumn) SetDependsOn(v string)

SetDependsOn gets a reference to the given string and assigns it to the DependsOn field.

func (*ViewColumn) SetDescription

func (o *ViewColumn) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ViewColumn) SetEditable

func (o *ViewColumn) SetEditable(v bool)

SetEditable gets a reference to the given bool and assigns it to the Editable field.

func (*ViewColumn) SetFormula

func (o *ViewColumn) SetFormula(v Formula)

SetFormula gets a reference to the given Formula and assigns it to the Formula field.

func (*ViewColumn) SetId

func (o *ViewColumn) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ViewColumn) SetIsSource

func (o *ViewColumn) SetIsSource(v bool)

SetIsSource gets a reference to the given bool and assigns it to the IsSource field.

func (*ViewColumn) SetIsTarget

func (o *ViewColumn) SetIsTarget(v bool)

SetIsTarget gets a reference to the given bool and assigns it to the IsTarget field.

func (*ViewColumn) SetLanguageCode

func (o *ViewColumn) SetLanguageCode(v string)

SetLanguageCode gets a reference to the given string and assigns it to the LanguageCode field.

func (*ViewColumn) SetLocalizationType

func (o *ViewColumn) SetLocalizationType(v string)

SetLocalizationType gets a reference to the given string and assigns it to the LocalizationType field.

func (*ViewColumn) SetName

func (o *ViewColumn) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ViewColumn) SetNumberFormat

func (o *ViewColumn) SetNumberFormat(v NumberFormat)

SetNumberFormat gets a reference to the given NumberFormat and assigns it to the NumberFormat field.

func (*ViewColumn) SetReference

func (o *ViewColumn) SetReference(v ColumnReference)

SetReference gets a reference to the given ColumnReference and assigns it to the Reference field.

func (*ViewColumn) SetSelectionOptions

func (o *ViewColumn) SetSelectionOptions(v []string)

SetSelectionOptions gets a reference to the given []string and assigns it to the SelectionOptions field.

func (*ViewColumn) SetType

func (o *ViewColumn) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ViewColumnApiAddRequest

type ViewColumnApiAddRequest struct {
	ApiService *ViewColumnApiService
	// contains filtered or unexported fields
}

func (ViewColumnApiAddRequest) Execute

type ViewColumnApiBulkCreateRequest

type ViewColumnApiBulkCreateRequest struct {
	ApiService *ViewColumnApiService
	// contains filtered or unexported fields
}

func (ViewColumnApiBulkCreateRequest) CreateColumn

func (ViewColumnApiBulkCreateRequest) Execute

type ViewColumnApiCreateRequest

type ViewColumnApiCreateRequest struct {
	ApiService *ViewColumnApiService
	// contains filtered or unexported fields
}

func (ViewColumnApiCreateRequest) CreateColumn

func (ViewColumnApiCreateRequest) Execute

type ViewColumnApiDeleteRequest

type ViewColumnApiDeleteRequest struct {
	ApiService *ViewColumnApiService
	// contains filtered or unexported fields
}

func (ViewColumnApiDeleteRequest) Execute

type ViewColumnApiGetRequest

type ViewColumnApiGetRequest struct {
	ApiService *ViewColumnApiService
	// contains filtered or unexported fields
}

func (ViewColumnApiGetRequest) Execute

type ViewColumnApiRemoveRequest

type ViewColumnApiRemoveRequest struct {
	ApiService *ViewColumnApiService
	// contains filtered or unexported fields
}

func (ViewColumnApiRemoveRequest) Execute

type ViewColumnApiService

type ViewColumnApiService service

ViewColumnApiService ViewColumnApi service

func (*ViewColumnApiService) Add

Add add

add

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param columnId columnId
@param viewId viewId
@return ViewColumnApiAddRequest

func (*ViewColumnApiService) AddExecute

Execute executes the request

@return ViewColumn

func (*ViewColumnApiService) BulkCreate

BulkCreate bulkCreate

bulkCreate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewColumnApiBulkCreateRequest

func (*ViewColumnApiService) BulkCreateExecute

Execute executes the request

@return []ViewColumn

func (*ViewColumnApiService) Create

Create create

Create a Column

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewColumnApiCreateRequest

func (*ViewColumnApiService) CreateExecute

Execute executes the request

@return ViewColumn

func (*ViewColumnApiService) Delete

Delete delete

delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param columnId columnId
@param viewId viewId
@return ViewColumnApiDeleteRequest

func (*ViewColumnApiService) DeleteExecute

Execute executes the request

func (*ViewColumnApiService) Get

Get get

get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param columnId columnId
@param viewId viewId
@return ViewColumnApiGetRequest

func (*ViewColumnApiService) GetExecute

Execute executes the request

@return ViewColumn

func (*ViewColumnApiService) Remove

Remove remove

remove

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param columnId columnId
@param viewId viewId
@return ViewColumnApiRemoveRequest

func (*ViewColumnApiService) RemoveExecute

Execute executes the request

func (*ViewColumnApiService) Update

Update update

update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param columnId columnId
@param viewId viewId
@return ViewColumnApiUpdateRequest

func (*ViewColumnApiService) UpdateExecute

Execute executes the request

@return ViewColumn

type ViewColumnApiUpdateRequest

type ViewColumnApiUpdateRequest struct {
	ApiService *ViewColumnApiService
	// contains filtered or unexported fields
}

func (ViewColumnApiUpdateRequest) Execute

func (ViewColumnApiUpdateRequest) UpdateColumn

type ViewDependencyApiCreateRequest

type ViewDependencyApiCreateRequest struct {
	ApiService *ViewDependencyApiService
	// contains filtered or unexported fields
}

func (ViewDependencyApiCreateRequest) CreateDependency

func (ViewDependencyApiCreateRequest) Execute

type ViewDependencyApiDeleteByIdRequest

type ViewDependencyApiDeleteByIdRequest struct {
	ApiService *ViewDependencyApiService
	// contains filtered or unexported fields
}

func (ViewDependencyApiDeleteByIdRequest) Execute

type ViewDependencyApiDeleteRequest

type ViewDependencyApiDeleteRequest struct {
	ApiService *ViewDependencyApiService
	// contains filtered or unexported fields
}

func (ViewDependencyApiDeleteRequest) DeleteDependency

func (ViewDependencyApiDeleteRequest) Execute

type ViewDependencyApiGetRequest

type ViewDependencyApiGetRequest struct {
	ApiService *ViewDependencyApiService
	// contains filtered or unexported fields
}

func (ViewDependencyApiGetRequest) Execute

type ViewDependencyApiListRequest

type ViewDependencyApiListRequest struct {
	ApiService *ViewDependencyApiService
	// contains filtered or unexported fields
}

func (ViewDependencyApiListRequest) Execute

type ViewDependencyApiService

type ViewDependencyApiService service

ViewDependencyApiService ViewDependencyApi service

func (*ViewDependencyApiService) Create

Create create

create

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewDependencyApiCreateRequest

func (*ViewDependencyApiService) CreateExecute

Execute executes the request

@return Dependency

func (*ViewDependencyApiService) Delete

Delete delete

delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewDependencyApiDeleteRequest

func (*ViewDependencyApiService) DeleteById

DeleteById deleteById

deleteById

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@param dependencyId dependencyId
@return ViewDependencyApiDeleteByIdRequest

func (*ViewDependencyApiService) DeleteByIdExecute

Execute executes the request

func (*ViewDependencyApiService) DeleteExecute

Execute executes the request

func (*ViewDependencyApiService) Get

Get get

get

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dependencyId dependencyId
@param viewId viewId
@return ViewDependencyApiGetRequest

func (*ViewDependencyApiService) GetExecute

Execute executes the request

@return Dependency

func (*ViewDependencyApiService) List

List list

list

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewDependencyApiListRequest

func (*ViewDependencyApiService) ListExecute

Execute executes the request

@return []Dependency

func (*ViewDependencyApiService) Update

Update update

update

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dependencyId dependencyId
@param viewId viewId
@return ViewDependencyApiUpdateRequest

func (*ViewDependencyApiService) UpdateExecute

Execute executes the request

@return Dependency

type ViewDependencyApiUpdateRequest

type ViewDependencyApiUpdateRequest struct {
	ApiService *ViewDependencyApiService
	// contains filtered or unexported fields
}

func (ViewDependencyApiUpdateRequest) Execute

func (ViewDependencyApiUpdateRequest) UpdateDependency

type ViewFileApiDeleteRequest

type ViewFileApiDeleteRequest struct {
	ApiService *ViewFileApiService
	// contains filtered or unexported fields
}

func (ViewFileApiDeleteRequest) ColumnId

columnId

func (ViewFileApiDeleteRequest) DeleteFile

func (ViewFileApiDeleteRequest) Execute

func (r ViewFileApiDeleteRequest) Execute() (*http.Response, error)

func (ViewFileApiDeleteRequest) RecordId

recordId

type ViewFileApiDownloadRequest

type ViewFileApiDownloadRequest struct {
	ApiService *ViewFileApiService
	// contains filtered or unexported fields
}

func (ViewFileApiDownloadRequest) Execute

func (r ViewFileApiDownloadRequest) Execute() (**os.File, *http.Response, error)

type ViewFileApiService

type ViewFileApiService service

ViewFileApiService ViewFileApi service

func (*ViewFileApiService) Delete

Delete delete

delete

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewFileApiDeleteRequest

func (*ViewFileApiService) DeleteExecute

Execute executes the request

func (*ViewFileApiService) Download

func (a *ViewFileApiService) Download(ctx context.Context, fileId string, viewId string) ViewFileApiDownloadRequest

Download download

download

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param fileId fileId
@param viewId viewId
@return ViewFileApiDownloadRequest

func (*ViewFileApiService) DownloadExecute

Execute executes the request

@return *os.File

func (*ViewFileApiService) Upload

Upload upload

upload

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewFileApiUploadRequest

func (*ViewFileApiService) UploadExecute

Execute executes the request

@return UploadedFile

func (*ViewFileApiService) UploadZip

UploadZip uploadZip

uploadZip

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param viewId viewId
@return ViewFileApiUploadZipRequest

func (*ViewFileApiService) UploadZipExecute

Execute executes the request

@return []Record

type ViewFileApiUploadRequest

type ViewFileApiUploadRequest struct {
	ApiService *ViewFileApiService
	// contains filtered or unexported fields
}

func (ViewFileApiUploadRequest) ColumnId

columnId

func (ViewFileApiUploadRequest) Execute

func (ViewFileApiUploadRequest) File

func (ViewFileApiUploadRequest) RecordId

recordId

type ViewFileApiUploadZipRequest

type ViewFileApiUploadZipRequest struct {
	ApiService *ViewFileApiService
	// contains filtered or unexported fields
}

func (ViewFileApiUploadZipRequest) ColumnId

func (ViewFileApiUploadZipRequest) Execute

func (ViewFileApiUploadZipRequest) File

func (ViewFileApiUploadZipRequest) FileMappings

func (r ViewFileApiUploadZipRequest) FileMappings(fileMappings string) ViewFileApiUploadZipRequest

type ViewStatistic

type ViewStatistic struct {
	RecordCount  *int64                      `json:"recordCount,omitempty"`
	Translations *map[string]ColumnStatistic `json:"translations,omitempty"`
}

ViewStatistic struct for ViewStatistic

func NewViewStatistic

func NewViewStatistic() *ViewStatistic

NewViewStatistic instantiates a new ViewStatistic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewViewStatisticWithDefaults

func NewViewStatisticWithDefaults() *ViewStatistic

NewViewStatisticWithDefaults instantiates a new ViewStatistic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ViewStatistic) GetRecordCount

func (o *ViewStatistic) GetRecordCount() int64

GetRecordCount returns the RecordCount field value if set, zero value otherwise.

func (*ViewStatistic) GetRecordCountOk

func (o *ViewStatistic) GetRecordCountOk() (*int64, bool)

GetRecordCountOk returns a tuple with the RecordCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewStatistic) GetTranslations

func (o *ViewStatistic) GetTranslations() map[string]ColumnStatistic

GetTranslations returns the Translations field value if set, zero value otherwise.

func (*ViewStatistic) GetTranslationsOk

func (o *ViewStatistic) GetTranslationsOk() (*map[string]ColumnStatistic, bool)

GetTranslationsOk returns a tuple with the Translations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewStatistic) HasRecordCount

func (o *ViewStatistic) HasRecordCount() bool

HasRecordCount returns a boolean if a field has been set.

func (*ViewStatistic) HasTranslations

func (o *ViewStatistic) HasTranslations() bool

HasTranslations returns a boolean if a field has been set.

func (ViewStatistic) MarshalJSON

func (o ViewStatistic) MarshalJSON() ([]byte, error)

func (*ViewStatistic) SetRecordCount

func (o *ViewStatistic) SetRecordCount(v int64)

SetRecordCount gets a reference to the given int64 and assigns it to the RecordCount field.

func (*ViewStatistic) SetTranslations

func (o *ViewStatistic) SetTranslations(v map[string]ColumnStatistic)

SetTranslations gets a reference to the given map[string]ColumnStatistic and assigns it to the Translations field.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL