msxsdk

package module
v1.0.1 Latest Latest
Warning

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

Go to latest
Published: Mar 26, 2021 License: MIT Imports: 22 Imported by: 0

README

Go API client for msxsdk

MSX Platform SDK

Overview

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

  • API version: 1.0.1
  • Package version: 1.0.1
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

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 sw "./msxsdk"

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(), sw.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(), sw.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 identifield 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(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost:8765

Class Method HTTP request Description
DeviceTemplatesApi CreateDeviceTemplate Post /manage/api/v8/devicetemplates Creates a device template.
DeviceTemplatesApi DeleteDeviceTemplate Delete /manage/api/v8/devicetemplates/{id} Deletes a device template.
DeviceTemplatesApi GetDeviceTemplate Get /manage/api/v8/devicetemplates/{id} Returns a device template.
DeviceTemplatesApi GetDeviceTemplatesList Get /manage/api/v8/devicetemplates/list Returns a list of device templates.
DeviceTemplatesApi ScanDeviceTemplateParameters Post /manage/api/v8/devicetemplates/parameters/scan API to scan parameters from the device template XML.
DeviceTemplatesApi UpdateDeviceTemplateAccess Put /manage/api/v8/devicetemplates/{id}/access Updates device template access.
DevicesApi AttachDeviceTemplates Post /manage/api/v8/devices/{id}/templates Attaches one or more device templates to a device instance.
DevicesApi CreateDevice Post /manage/api/v8/devices Creates a device.
DevicesApi DeleteDevice Delete /manage/api/v8/devices/{id} Deletes a device.
DevicesApi DetachDeviceTemplate Delete /manage/api/v8/devices/{id}/templates/{templateId} Detaches a template from a device.
DevicesApi DetachDeviceTemplates Delete /manage/api/v8/devices/{id}/templates Detach device templates that are already attached to a device.
DevicesApi GetDevice Get /manage/api/v8/devices/{id} Returns a device.
DevicesApi GetDeviceConfig Get /manage/api/v8/devices/{id}/config Returns the running configuration for a device.
DevicesApi GetDeviceTemplateHistory Get /manage/api/v8/devices/{id}/templates Returns device template history.
DevicesApi GetDevicesPage Get /manage/api/v8/devices Returns a page of devices.
DevicesApi RedeployDevice Post /manage/api/v8/devices/{id}/redeploy Dedeploys a device.
DevicesApi UpdateDeviceTemplates Put /manage/api/v8/devices/{id}/templates Update device templates that are already attached to a device.
HealthApi GetDevicesHealthList Get /monitor/api/v8/health/devices/list
HealthApi GetServicesHealthList Get /monitor/api/v8/health/services/list
OffersApi AddOfferAssignments Post /consume/api/v8/offers/{id}/assignments/add Assigns a product offer to one or more tenants.
OffersApi CreateOffer Post /consume/api/v8/offers Creates a product offer.
OffersApi DeleteOffer Delete /consume/api/v8/offers/{id} Deletes a product offer
OffersApi GetOffer Get /consume/api/v8/offers/{id} Returns a product offer.
OffersApi GetOfferAssignmentsList Get /consume/api/v8/offers/{id}/assignments/list Returns a list of tenant assignments for a product offer.
OffersApi GetOffersCount Get /consume/api/v8/offers/count Returns the number of product offers.
OffersApi GetOffersPage Get /consume/api/v8/offers Returns a page of product offers.
OffersApi RemoveOfferAssignments Post /consume/api/v8/offers/{id}/assignments/remove Unassigns a product offer from one or more tenants.
OffersApi UpdateOffer Put /consume/api/v8/offers/{id} Updates a product offer.
OffersApi UpdateOfferAssignments Put /consume/api/v8/offers/{id}/assignments Updates the tenant assignemnts for a product offer.
ProductsApi AddProductAssignments Post /consume/api/v8/products/{id}/assignments/add Assigns a product to one or more tenants.
ProductsApi CreateProduct Post /consume/api/v8/products Creates a product.
ProductsApi DeleteProduct Delete /consume/api/v8/products/{id} Deletes a product.
ProductsApi GetProduct Get /consume/api/v8/products/{id} Returns a product.
ProductsApi GetProductAssignmentsList Get /consume/api/v8/products/{id}/assignments/list Returns a list of tenant assignments for a product .
ProductsApi GetProductsCount Get /consume/api/v8/products/count Returns the number of products.
ProductsApi GetProductsPage Get /consume/api/v8/products Returns a page of products.
ProductsApi RemoveProductAssignments Post /consume/api/v8/products/{id}/assignments/remove Unassigns a product from one or more tenants
ProductsApi UpdateProduct Put /consume/api/v8/products/{id} Updates a product.
ProductsApi UpdateProductAssignments Put /consume/api/v8/products/{id}/assignments Updates the tenant assignments for a product.
RolesApi GetRoleByName Get /idm/api/v8/roles/name/{name} Returns a role by name.
RolesApi GetRolesList Get /idm/api/v8/roles/list Returns a list of roles.
SecurityApi GetAccessToken Post /idm/v2/token Returns an access token.
ServicesApi DeleteService Delete /manage/api/v8/services/{id} Deletes a service.
ServicesApi GetService Get /manage/api/v8/services/{id} Returns a service.
ServicesApi GetServicesPage Get /manage/api/v8/services Returns a page of services.
ServicesApi SubmitOrder Post /manage/api/v8/services Submits an order.
ServicesApi UpdateOrder Put /manage/api/v8/services Updates an order.
SitesApi AddDevicesToSite Post /manage/api/v8/sites/{id}/devices/add Add devices to a site.
SitesApi AddServicesToSite Post /manage/api/v8/sites/{id}/services/add Add services to a site.
SitesApi CreateSite Post /manage/api/v8/sites Creates a new site.
SitesApi DeleteSite Delete /manage/api/v8/sites/{id} Deletes a site.
SitesApi GetSite Get /manage/api/v8/sites/{id} Returns a site.
SitesApi GetSitesPage Get /manage/api/v8/sites Returns a page of Sites. Only one filter is supported at a time.
SitesApi RemoveDevicesFromSite Post /manage/api/v8/sites/{id}/devices/remove Removes devices from a site.
SitesApi RemoveServicesFromSite Post /manage/api/v8/sites/{id}/services/remove Remove services from a site.
SitesApi UpdateSite Put /manage/api/v8/sites/{id} Updates a site.
TenantsApi CreateTenant Post /idm/api/v8/tenants Creates a new tenant.
TenantsApi DeleteTenant Delete /idm/api/v8/tenants/{id} Deletes a tenant by id.
TenantsApi GetTenant Get /idm/api/v8/tenants/{id} Returns a tenant by id.
TenantsApi GetTenantsList Get /idm/api/v8/tenants/list Returns a list of tenants.
TenantsApi GetTenantsPage Get /idm/api/v8/tenants Returns a page of tenants.
TenantsApi UpdateTenant Put /idm/api/v8/tenants/{id} Updates a tenant by id.
UsersApi CreateUser Post /idm/api/v8/users Creates a new user.
UsersApi DeleteUser Delete /idm/api/v8/users/{id} Deletes a user by id.
UsersApi GetCurrentUser Get /idm/api/v8/users/current Returns the current user.
UsersApi GetUser Get /idm/api/v8/users/{id} Returns an existing user.
UsersApi GetUsersPage Get /idm/api/v8/users Returns a page of users.
UsersApi UpdateUser Put /idm/api/v8/users/{id} Updates an existing user.
UsersApi UpdateUserPassword Put /idm/api/v8/users/updatepassword Update a user password.
WorkflowCategoriesApi CreateWorkflowCategory Post /workflow/api/v8/categories Creates a new workflow category.
WorkflowCategoriesApi DeleteWorkflowCategory Delete /workflow/api/v8/categories/{id} Deletes a workflow category.
WorkflowCategoriesApi GetWorkflowCategoriesList Get /workflow/api/v8/categories/list Returns a list of workflow categories.
WorkflowCategoriesApi GetWorkflowCategory Get /workflow/api/v8/categories/{id} Returns a workflow category.
WorkflowCategoriesApi UpdateWorkflowCategory Put /workflow/api/v8/categories/{id} Updates a workflow category.
WorkflowEventsApi CreateWorkflowEvent Post /workflow/api/v8/events Creates a new workflow event.
WorkflowEventsApi DeleteWorkflowEvent Delete /workflow/api/v8/events/{id} Deletes a workflow event.
WorkflowEventsApi GetWorkflowEvent Get /workflow/api/v8/events/{id} Returns a workflow event.
WorkflowEventsApi GetWorkflowEventsList Get /workflow/api/v8/events/list Returns a list of workflow events.
WorkflowEventsApi UpdateWorkflowEvent Put /workflow/api/v8/events/{id} Updates a workflow event.
WorkflowInstancesApi CancelWorkflowInstance Post /workflow/api/v8/workflows/instances/{id}/cancel Cancels a workflow instance.
WorkflowInstancesApi DeleteWorkflowInstance Delete /workflow/api/v8/workflows/instances/{id} Deletes a workflow instance.
WorkflowInstancesApi GetWorkflowInstance Get /workflow/api/v8/workflows/instances/{id} Returns a workflow instance.
WorkflowInstancesApi GetWorkflowInstanceAction Get /workflow/api/v8/workflows/instances/{id}/actions/{actionId} Returns a workflow instance action.
WorkflowInstancesApi GetWorkflowInstancesList Get /workflow/api/v8/workflows/{id}/instances/list Returns a list of workflow instances.
WorkflowSchemasApi GetWorkflowSchema Get /workflow/api/v8/schemas/{id} Returns a workflow schema.
WorkflowSchemasApi GetWorkflowSchemasList Get /workflow/api/v8/schemas/list Returns a list of workflow schemas.
WorkflowTargetsApi CreateWorkflowTarget Post /workflow/api/v8/targets Creates a new workflow target.
WorkflowTargetsApi DeleteWorkflowTarget Delete /workflow/api/v8/targets/{id} Deletes a workflow target.
WorkflowTargetsApi GetWorkflowTarget Get /workflow/api/v8/targets/{id} Returns a workflow target.
WorkflowTargetsApi GetWorkflowTargetsList Get /workflow/api/v8/targets/list Returns a list of workflow targets.
WorkflowTargetsApi UpdateWorkflowTarget Put /workflow/api/v8/targets/{id} Updates a workflow target.
WorkflowsApi DeleteWorkflow Delete /workflow/api/v8/workflows/{id} Delete a workflow.
WorkflowsApi ExportWorkflow Get /workflow/api/v8/workflows/{id}/export Exports a workflow.
WorkflowsApi GetWorkflow Get /workflow/api/v8/workflows/{id} Returns a workflow.
WorkflowsApi GetWorkflowStartConfig Get /workflow/api/v8/workflows/{id}/startconfig Returns a workflow start config.
WorkflowsApi GetWorkflowsList Get /workflow/api/v8/workflows/list Returns a list of workflows.
WorkflowsApi ImportWorkflow Post /workflow/api/v8/workflows Imports a workflow.
WorkflowsApi StartWorkflow Post /workflow/api/v8/workflows/{id}/start Starts a workflow.
WorkflowsApi UpdateWorkflow Put /workflow/api/v8/workflows/{id} Updates a workflow.
WorkflowsApi ValidateWorkflow Post /workflow/api/v8/workflows/{id}/validate Validates a workflow.

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// 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")
)

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 {
	DeviceTemplatesApi *DeviceTemplatesApiService

	DevicesApi *DevicesApiService

	HealthApi *HealthApiService

	OffersApi *OffersApiService

	ProductsApi *ProductsApiService

	RolesApi *RolesApiService

	SecurityApi *SecurityApiService

	ServicesApi *ServicesApiService

	SitesApi *SitesApiService

	TenantsApi *TenantsApiService

	UsersApi *UsersApiService

	WorkflowCategoriesApi *WorkflowCategoriesApiService

	WorkflowEventsApi *WorkflowEventsApiService

	WorkflowInstancesApi *WorkflowInstancesApiService

	WorkflowSchemasApi *WorkflowSchemasApiService

	WorkflowTargetsApi *WorkflowTargetsApiService

	WorkflowsApi *WorkflowsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the KAKAPO - MSX SDK API v1.0.1 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 APIResonse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessToken

type AccessToken struct {
	AccessToken *string   `json:"access_token,omitempty"`
	TokenType   *string   `json:"token_type,omitempty"`
	ExpiresIn   *int32    `json:"expires_in,omitempty"`
	Scope       *string   `json:"scope,omitempty"`
	FirstName   *string   `json:"firstName,omitempty"`
	LastName    *string   `json:"lastName,omitempty"`
	Roles       *[]string `json:"roles,omitempty"`
	IdToken     *string   `json:"id_token,omitempty"`
	TenantId    *string   `json:"tenantId,omitempty"`
	Email       *string   `json:"email,omitempty"`
	Username    *string   `json:"username,omitempty"`
}

AccessToken struct for AccessToken

func NewAccessToken

func NewAccessToken() *AccessToken

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

func NewAccessTokenWithDefaults

func NewAccessTokenWithDefaults() *AccessToken

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

func (*AccessToken) GetAccessToken

func (o *AccessToken) GetAccessToken() string

GetAccessToken returns the AccessToken field value if set, zero value otherwise.

func (*AccessToken) GetAccessTokenOk

func (o *AccessToken) GetAccessTokenOk() (*string, bool)

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

func (*AccessToken) GetEmail

func (o *AccessToken) GetEmail() string

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

func (*AccessToken) GetEmailOk

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

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

func (*AccessToken) GetExpiresIn

func (o *AccessToken) GetExpiresIn() int32

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

func (*AccessToken) GetExpiresInOk

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

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

func (*AccessToken) GetFirstName

func (o *AccessToken) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*AccessToken) GetFirstNameOk

func (o *AccessToken) GetFirstNameOk() (*string, bool)

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

func (*AccessToken) GetIdToken

func (o *AccessToken) GetIdToken() string

GetIdToken returns the IdToken field value if set, zero value otherwise.

func (*AccessToken) GetIdTokenOk

func (o *AccessToken) GetIdTokenOk() (*string, bool)

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

func (*AccessToken) GetLastName

func (o *AccessToken) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*AccessToken) GetLastNameOk

func (o *AccessToken) GetLastNameOk() (*string, bool)

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

func (*AccessToken) GetRoles

func (o *AccessToken) GetRoles() []string

GetRoles returns the Roles field value if set, zero value otherwise.

func (*AccessToken) GetRolesOk

func (o *AccessToken) GetRolesOk() (*[]string, bool)

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

func (*AccessToken) GetScope

func (o *AccessToken) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*AccessToken) GetScopeOk

func (o *AccessToken) GetScopeOk() (*string, bool)

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

func (*AccessToken) GetTenantId

func (o *AccessToken) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*AccessToken) GetTenantIdOk

func (o *AccessToken) GetTenantIdOk() (*string, bool)

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

func (*AccessToken) GetTokenType

func (o *AccessToken) GetTokenType() string

GetTokenType returns the TokenType field value if set, zero value otherwise.

func (*AccessToken) GetTokenTypeOk

func (o *AccessToken) GetTokenTypeOk() (*string, bool)

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

func (*AccessToken) GetUsername

func (o *AccessToken) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AccessToken) GetUsernameOk

func (o *AccessToken) GetUsernameOk() (*string, bool)

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

func (*AccessToken) HasAccessToken

func (o *AccessToken) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*AccessToken) HasEmail

func (o *AccessToken) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AccessToken) HasExpiresIn

func (o *AccessToken) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*AccessToken) HasFirstName

func (o *AccessToken) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*AccessToken) HasIdToken

func (o *AccessToken) HasIdToken() bool

HasIdToken returns a boolean if a field has been set.

func (*AccessToken) HasLastName

func (o *AccessToken) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*AccessToken) HasRoles

func (o *AccessToken) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*AccessToken) HasScope

func (o *AccessToken) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*AccessToken) HasTenantId

func (o *AccessToken) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*AccessToken) HasTokenType

func (o *AccessToken) HasTokenType() bool

HasTokenType returns a boolean if a field has been set.

func (*AccessToken) HasUsername

func (o *AccessToken) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AccessToken) MarshalJSON

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

func (*AccessToken) SetAccessToken

func (o *AccessToken) SetAccessToken(v string)

SetAccessToken gets a reference to the given string and assigns it to the AccessToken field.

func (*AccessToken) SetEmail

func (o *AccessToken) SetEmail(v string)

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

func (*AccessToken) SetExpiresIn

func (o *AccessToken) SetExpiresIn(v int32)

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

func (*AccessToken) SetFirstName

func (o *AccessToken) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*AccessToken) SetIdToken

func (o *AccessToken) SetIdToken(v string)

SetIdToken gets a reference to the given string and assigns it to the IdToken field.

func (*AccessToken) SetLastName

func (o *AccessToken) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*AccessToken) SetRoles

func (o *AccessToken) SetRoles(v []string)

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (*AccessToken) SetScope

func (o *AccessToken) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*AccessToken) SetTenantId

func (o *AccessToken) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*AccessToken) SetTokenType

func (o *AccessToken) SetTokenType(v string)

SetTokenType gets a reference to the given string and assigns it to the TokenType field.

func (*AccessToken) SetUsername

func (o *AccessToken) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type ApiAddDevicesToSiteRequest

type ApiAddDevicesToSiteRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiAddDevicesToSiteRequest) Execute

func (ApiAddDevicesToSiteRequest) RequestBody

func (r ApiAddDevicesToSiteRequest) RequestBody(requestBody []string) ApiAddDevicesToSiteRequest

type ApiAddOfferAssignmentsRequest

type ApiAddOfferAssignmentsRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiAddOfferAssignmentsRequest) Execute

func (ApiAddOfferAssignmentsRequest) RequestBody

type ApiAddProductAssignmentsRequest

type ApiAddProductAssignmentsRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiAddProductAssignmentsRequest) Execute

func (ApiAddProductAssignmentsRequest) RequestBody

type ApiAddServicesToSiteRequest

type ApiAddServicesToSiteRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiAddServicesToSiteRequest) Execute

func (ApiAddServicesToSiteRequest) RequestBody

func (r ApiAddServicesToSiteRequest) RequestBody(requestBody []string) ApiAddServicesToSiteRequest

type ApiAttachDeviceTemplatesRequest

type ApiAttachDeviceTemplatesRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiAttachDeviceTemplatesRequest) DeviceTemplateAttachRequest

func (r ApiAttachDeviceTemplatesRequest) DeviceTemplateAttachRequest(deviceTemplateAttachRequest DeviceTemplateAttachRequest) ApiAttachDeviceTemplatesRequest

func (ApiAttachDeviceTemplatesRequest) Execute

type ApiCancelWorkflowInstanceRequest

type ApiCancelWorkflowInstanceRequest struct {
	ApiService *WorkflowInstancesApiService
	// contains filtered or unexported fields
}

func (ApiCancelWorkflowInstanceRequest) Execute

type ApiCreateDeviceRequest

type ApiCreateDeviceRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiCreateDeviceRequest) DeviceCreate

func (r ApiCreateDeviceRequest) DeviceCreate(deviceCreate DeviceCreate) ApiCreateDeviceRequest

func (ApiCreateDeviceRequest) Execute

type ApiCreateDeviceTemplateRequest

type ApiCreateDeviceTemplateRequest struct {
	ApiService *DeviceTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiCreateDeviceTemplateRequest) DeviceTemplateCreate

func (r ApiCreateDeviceTemplateRequest) DeviceTemplateCreate(deviceTemplateCreate DeviceTemplateCreate) ApiCreateDeviceTemplateRequest

func (ApiCreateDeviceTemplateRequest) Execute

type ApiCreateOfferRequest

type ApiCreateOfferRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiCreateOfferRequest) Execute

func (ApiCreateOfferRequest) OfferCreate

func (r ApiCreateOfferRequest) OfferCreate(offerCreate OfferCreate) ApiCreateOfferRequest

type ApiCreateProductRequest

type ApiCreateProductRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiCreateProductRequest) Execute

func (ApiCreateProductRequest) ProductCreate

func (r ApiCreateProductRequest) ProductCreate(productCreate ProductCreate) ApiCreateProductRequest

type ApiCreateSiteRequest

type ApiCreateSiteRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiCreateSiteRequest) Execute

func (r ApiCreateSiteRequest) Execute() (Site, *_nethttp.Response, error)

func (ApiCreateSiteRequest) SiteCreate

func (r ApiCreateSiteRequest) SiteCreate(siteCreate SiteCreate) ApiCreateSiteRequest

type ApiCreateTenantRequest

type ApiCreateTenantRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (ApiCreateTenantRequest) Execute

func (ApiCreateTenantRequest) TenantCreate

func (r ApiCreateTenantRequest) TenantCreate(tenantCreate TenantCreate) ApiCreateTenantRequest

type ApiCreateUserRequest

type ApiCreateUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiCreateUserRequest) Execute

func (r ApiCreateUserRequest) Execute() (User, *_nethttp.Response, error)

func (ApiCreateUserRequest) UserCreate

func (r ApiCreateUserRequest) UserCreate(userCreate UserCreate) ApiCreateUserRequest

type ApiCreateWorkflowCategoryRequest

type ApiCreateWorkflowCategoryRequest struct {
	ApiService *WorkflowCategoriesApiService
	// contains filtered or unexported fields
}

func (ApiCreateWorkflowCategoryRequest) Execute

func (ApiCreateWorkflowCategoryRequest) TenantId

func (ApiCreateWorkflowCategoryRequest) WorkflowCategoryCreate

func (r ApiCreateWorkflowCategoryRequest) WorkflowCategoryCreate(workflowCategoryCreate WorkflowCategoryCreate) ApiCreateWorkflowCategoryRequest

type ApiCreateWorkflowEventRequest

type ApiCreateWorkflowEventRequest struct {
	ApiService *WorkflowEventsApiService
	// contains filtered or unexported fields
}

func (ApiCreateWorkflowEventRequest) Execute

func (ApiCreateWorkflowEventRequest) WorkflowEventCreate

func (r ApiCreateWorkflowEventRequest) WorkflowEventCreate(workflowEventCreate WorkflowEventCreate) ApiCreateWorkflowEventRequest

type ApiCreateWorkflowTargetRequest

type ApiCreateWorkflowTargetRequest struct {
	ApiService *WorkflowTargetsApiService
	// contains filtered or unexported fields
}

func (ApiCreateWorkflowTargetRequest) Execute

func (ApiCreateWorkflowTargetRequest) WorkflowTargetCreate

func (r ApiCreateWorkflowTargetRequest) WorkflowTargetCreate(workflowTargetCreate WorkflowTargetCreate) ApiCreateWorkflowTargetRequest

type ApiDeleteDeviceRequest

type ApiDeleteDeviceRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDeviceRequest) Execute

type ApiDeleteDeviceTemplateRequest

type ApiDeleteDeviceTemplateRequest struct {
	ApiService *DeviceTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDeviceTemplateRequest) Execute

type ApiDeleteOfferRequest

type ApiDeleteOfferRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiDeleteOfferRequest) Execute

func (r ApiDeleteOfferRequest) Execute() (*_nethttp.Response, error)

type ApiDeleteProductRequest

type ApiDeleteProductRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteProductRequest) Execute

type ApiDeleteServiceRequest

type ApiDeleteServiceRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteServiceRequest) Execute

type ApiDeleteSiteRequest

type ApiDeleteSiteRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSiteRequest) Execute

func (r ApiDeleteSiteRequest) Execute() (*_nethttp.Response, error)

type ApiDeleteTenantRequest

type ApiDeleteTenantRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTenantRequest) Execute

type ApiDeleteUserRequest

type ApiDeleteUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiDeleteUserRequest) Execute

func (r ApiDeleteUserRequest) Execute() (*_nethttp.Response, error)

type ApiDeleteWorkflowCategoryRequest

type ApiDeleteWorkflowCategoryRequest struct {
	ApiService *WorkflowCategoriesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkflowCategoryRequest) Execute

type ApiDeleteWorkflowEventRequest

type ApiDeleteWorkflowEventRequest struct {
	ApiService *WorkflowEventsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkflowEventRequest) Execute

type ApiDeleteWorkflowInstanceRequest

type ApiDeleteWorkflowInstanceRequest struct {
	ApiService *WorkflowInstancesApiService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkflowInstanceRequest) Execute

type ApiDeleteWorkflowRequest

type ApiDeleteWorkflowRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkflowRequest) Execute

type ApiDeleteWorkflowTargetRequest

type ApiDeleteWorkflowTargetRequest struct {
	ApiService *WorkflowTargetsApiService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkflowTargetRequest) Execute

type ApiDetachDeviceTemplateRequest

type ApiDetachDeviceTemplateRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiDetachDeviceTemplateRequest) Execute

type ApiDetachDeviceTemplatesRequest

type ApiDetachDeviceTemplatesRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiDetachDeviceTemplatesRequest) Execute

type ApiExportWorkflowRequest

type ApiExportWorkflowRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiExportWorkflowRequest) Execute

type ApiGetAccessTokenRequest

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

func (ApiGetAccessTokenRequest) AccessToken

func (r ApiGetAccessTokenRequest) AccessToken(accessToken string) ApiGetAccessTokenRequest

func (ApiGetAccessTokenRequest) Authorization

func (r ApiGetAccessTokenRequest) Authorization(authorization string) ApiGetAccessTokenRequest

func (ApiGetAccessTokenRequest) Execute

func (ApiGetAccessTokenRequest) GrantType

func (ApiGetAccessTokenRequest) Nonce

func (ApiGetAccessTokenRequest) Password

func (ApiGetAccessTokenRequest) Scope

func (ApiGetAccessTokenRequest) SwitchUsername

func (r ApiGetAccessTokenRequest) SwitchUsername(switchUsername string) ApiGetAccessTokenRequest

func (ApiGetAccessTokenRequest) TenantId

func (ApiGetAccessTokenRequest) TenantName

func (r ApiGetAccessTokenRequest) TenantName(tenantName string) ApiGetAccessTokenRequest

func (ApiGetAccessTokenRequest) Username

type ApiGetCurrentUserRequest

type ApiGetCurrentUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiGetCurrentUserRequest) Execute

type ApiGetDeviceConfigRequest

type ApiGetDeviceConfigRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiGetDeviceConfigRequest) Execute

type ApiGetDeviceRequest

type ApiGetDeviceRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiGetDeviceRequest) Execute

type ApiGetDeviceTemplateHistoryRequest

type ApiGetDeviceTemplateHistoryRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiGetDeviceTemplateHistoryRequest) Execute

func (ApiGetDeviceTemplateHistoryRequest) TemplateId

type ApiGetDeviceTemplateRequest

type ApiGetDeviceTemplateRequest struct {
	ApiService *DeviceTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetDeviceTemplateRequest) Execute

type ApiGetDeviceTemplatesListRequest

type ApiGetDeviceTemplatesListRequest struct {
	ApiService *DeviceTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiGetDeviceTemplatesListRequest) Execute

func (ApiGetDeviceTemplatesListRequest) ServiceType

func (ApiGetDeviceTemplatesListRequest) TenantId

type ApiGetDevicesHealthListRequest

type ApiGetDevicesHealthListRequest struct {
	ApiService *HealthApiService
	// contains filtered or unexported fields
}

func (ApiGetDevicesHealthListRequest) Execute

func (ApiGetDevicesHealthListRequest) Ids

type ApiGetDevicesPageRequest

type ApiGetDevicesPageRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiGetDevicesPageRequest) DeviceIds

func (r ApiGetDevicesPageRequest) DeviceIds(deviceIds []string) ApiGetDevicesPageRequest

func (ApiGetDevicesPageRequest) Execute

func (ApiGetDevicesPageRequest) Models

func (ApiGetDevicesPageRequest) Names

func (ApiGetDevicesPageRequest) Page

func (ApiGetDevicesPageRequest) PageSize

func (ApiGetDevicesPageRequest) SerialKeys

func (r ApiGetDevicesPageRequest) SerialKeys(serialKeys []string) ApiGetDevicesPageRequest

func (ApiGetDevicesPageRequest) ServiceIds

func (r ApiGetDevicesPageRequest) ServiceIds(serviceIds []string) ApiGetDevicesPageRequest

func (ApiGetDevicesPageRequest) ServiceTypes

func (r ApiGetDevicesPageRequest) ServiceTypes(serviceTypes []string) ApiGetDevicesPageRequest

func (ApiGetDevicesPageRequest) Severities

func (r ApiGetDevicesPageRequest) Severities(severities []string) ApiGetDevicesPageRequest

func (ApiGetDevicesPageRequest) SortBy

func (ApiGetDevicesPageRequest) SortOrder

func (ApiGetDevicesPageRequest) Subtypes

func (ApiGetDevicesPageRequest) TenantIds

func (r ApiGetDevicesPageRequest) TenantIds(tenantIds []string) ApiGetDevicesPageRequest

func (ApiGetDevicesPageRequest) Types

func (ApiGetDevicesPageRequest) Versions

type ApiGetOfferAssignmentsListRequest

type ApiGetOfferAssignmentsListRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiGetOfferAssignmentsListRequest) Execute

type ApiGetOfferRequest

type ApiGetOfferRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiGetOfferRequest) Execute

func (r ApiGetOfferRequest) Execute() (Offer, *_nethttp.Response, error)

type ApiGetOffersCountRequest

type ApiGetOffersCountRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiGetOffersCountRequest) Execute

func (ApiGetOffersCountRequest) ProductId

func (ApiGetOffersCountRequest) TenantId

type ApiGetOffersPageRequest

type ApiGetOffersPageRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiGetOffersPageRequest) Execute

func (ApiGetOffersPageRequest) Page

func (ApiGetOffersPageRequest) PageSize

func (ApiGetOffersPageRequest) ProductId

func (ApiGetOffersPageRequest) TenantId

type ApiGetProductAssignmentsListRequest

type ApiGetProductAssignmentsListRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiGetProductAssignmentsListRequest) Execute

type ApiGetProductRequest

type ApiGetProductRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiGetProductRequest) Execute

type ApiGetProductsCountRequest

type ApiGetProductsCountRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiGetProductsCountRequest) Execute

func (ApiGetProductsCountRequest) TenantId

type ApiGetProductsPageRequest

type ApiGetProductsPageRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiGetProductsPageRequest) Execute

func (ApiGetProductsPageRequest) Page

func (ApiGetProductsPageRequest) PageSize

func (ApiGetProductsPageRequest) TenantId

type ApiGetRoleByNameRequest

type ApiGetRoleByNameRequest struct {
	ApiService *RolesApiService
	// contains filtered or unexported fields
}

func (ApiGetRoleByNameRequest) Execute

type ApiGetRolesListRequest

type ApiGetRolesListRequest struct {
	ApiService *RolesApiService
	// contains filtered or unexported fields
}

func (ApiGetRolesListRequest) Execute

func (r ApiGetRolesListRequest) Execute() ([]Role, *_nethttp.Response, error)

func (ApiGetRolesListRequest) Ids

type ApiGetServiceRequest

type ApiGetServiceRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiGetServiceRequest) Execute

type ApiGetServicesHealthListRequest

type ApiGetServicesHealthListRequest struct {
	ApiService *HealthApiService
	// contains filtered or unexported fields
}

func (ApiGetServicesHealthListRequest) Execute

func (ApiGetServicesHealthListRequest) Ids

type ApiGetServicesPageRequest

type ApiGetServicesPageRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiGetServicesPageRequest) Execute

func (ApiGetServicesPageRequest) Page

func (ApiGetServicesPageRequest) PageSize

func (ApiGetServicesPageRequest) TenantIds

type ApiGetSiteRequest

type ApiGetSiteRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiGetSiteRequest) Execute

func (r ApiGetSiteRequest) Execute() (Site, *_nethttp.Response, error)

func (ApiGetSiteRequest) ShowImage

func (r ApiGetSiteRequest) ShowImage(showImage bool) ApiGetSiteRequest

type ApiGetSitesPageRequest

type ApiGetSitesPageRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiGetSitesPageRequest) DeviceId

func (ApiGetSitesPageRequest) Execute

func (ApiGetSitesPageRequest) ManagingControlPlaneId

func (r ApiGetSitesPageRequest) ManagingControlPlaneId(managingControlPlaneId string) ApiGetSitesPageRequest

func (ApiGetSitesPageRequest) Page

func (ApiGetSitesPageRequest) PageSize

func (ApiGetSitesPageRequest) ParentId

func (ApiGetSitesPageRequest) ServiceId

func (r ApiGetSitesPageRequest) ServiceId(serviceId string) ApiGetSitesPageRequest

func (ApiGetSitesPageRequest) ServiceType

func (r ApiGetSitesPageRequest) ServiceType(serviceType string) ApiGetSitesPageRequest

func (ApiGetSitesPageRequest) ShowImage

func (r ApiGetSitesPageRequest) ShowImage(showImage bool) ApiGetSitesPageRequest

func (ApiGetSitesPageRequest) TenantId

func (ApiGetSitesPageRequest) Type_

type ApiGetTenantRequest

type ApiGetTenantRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (ApiGetTenantRequest) Execute

type ApiGetTenantsListRequest

type ApiGetTenantsListRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (ApiGetTenantsListRequest) Execute

func (ApiGetTenantsListRequest) Ids

func (ApiGetTenantsListRequest) ShowImage

type ApiGetTenantsPageRequest

type ApiGetTenantsPageRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (ApiGetTenantsPageRequest) Execute

func (ApiGetTenantsPageRequest) Page

func (ApiGetTenantsPageRequest) PageSize

func (ApiGetTenantsPageRequest) ParentId

func (ApiGetTenantsPageRequest) ShowImage

func (ApiGetTenantsPageRequest) SortBy

func (ApiGetTenantsPageRequest) SortOrder

type ApiGetUserRequest

type ApiGetUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiGetUserRequest) Execute

func (r ApiGetUserRequest) Execute() (User, *_nethttp.Response, error)

type ApiGetUsersPageRequest

type ApiGetUsersPageRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiGetUsersPageRequest) Deleted

func (ApiGetUsersPageRequest) Execute

func (ApiGetUsersPageRequest) Page

func (ApiGetUsersPageRequest) PageSize

func (ApiGetUsersPageRequest) TenantId

type ApiGetWorkflowCategoriesListRequest

type ApiGetWorkflowCategoriesListRequest struct {
	ApiService *WorkflowCategoriesApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowCategoriesListRequest) Execute

func (ApiGetWorkflowCategoriesListRequest) TenantId

type ApiGetWorkflowCategoryRequest

type ApiGetWorkflowCategoryRequest struct {
	ApiService *WorkflowCategoriesApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowCategoryRequest) Execute

type ApiGetWorkflowEventRequest

type ApiGetWorkflowEventRequest struct {
	ApiService *WorkflowEventsApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowEventRequest) Execute

type ApiGetWorkflowEventsListRequest

type ApiGetWorkflowEventsListRequest struct {
	ApiService *WorkflowEventsApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowEventsListRequest) Execute

type ApiGetWorkflowInstanceActionRequest

type ApiGetWorkflowInstanceActionRequest struct {
	ApiService *WorkflowInstancesApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowInstanceActionRequest) Execute

type ApiGetWorkflowInstanceRequest

type ApiGetWorkflowInstanceRequest struct {
	ApiService *WorkflowInstancesApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowInstanceRequest) Execute

type ApiGetWorkflowInstancesListRequest

type ApiGetWorkflowInstancesListRequest struct {
	ApiService *WorkflowInstancesApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowInstancesListRequest) DateFrom

func (ApiGetWorkflowInstancesListRequest) DateTo

func (ApiGetWorkflowInstancesListRequest) Execute

func (ApiGetWorkflowInstancesListRequest) Page

func (ApiGetWorkflowInstancesListRequest) PageSize

type ApiGetWorkflowRequest

type ApiGetWorkflowRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowRequest) Execute

type ApiGetWorkflowSchemaRequest

type ApiGetWorkflowSchemaRequest struct {
	ApiService *WorkflowSchemasApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowSchemaRequest) Execute

func (ApiGetWorkflowSchemaRequest) SchemaType

type ApiGetWorkflowSchemasListRequest

type ApiGetWorkflowSchemasListRequest struct {
	ApiService *WorkflowSchemasApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowSchemasListRequest) BaseType

func (ApiGetWorkflowSchemasListRequest) Execute

func (ApiGetWorkflowSchemasListRequest) SchemaType

func (ApiGetWorkflowSchemasListRequest) VariableType

type ApiGetWorkflowStartConfigRequest

type ApiGetWorkflowStartConfigRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowStartConfigRequest) Execute

type ApiGetWorkflowTargetRequest

type ApiGetWorkflowTargetRequest struct {
	ApiService *WorkflowTargetsApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowTargetRequest) Execute

type ApiGetWorkflowTargetsListRequest

type ApiGetWorkflowTargetsListRequest struct {
	ApiService *WorkflowTargetsApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowTargetsListRequest) Execute

func (ApiGetWorkflowTargetsListRequest) Internal

func (ApiGetWorkflowTargetsListRequest) Type_

type ApiGetWorkflowsListRequest

type ApiGetWorkflowsListRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowsListRequest) Atomic

func (ApiGetWorkflowsListRequest) Execute

func (ApiGetWorkflowsListRequest) TenantId

type ApiImportWorkflowRequest

type ApiImportWorkflowRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiImportWorkflowRequest) Execute

func (ApiImportWorkflowRequest) Global

func (ApiImportWorkflowRequest) RequestBody

func (r ApiImportWorkflowRequest) RequestBody(requestBody map[string]map[string]interface{}) ApiImportWorkflowRequest

func (ApiImportWorkflowRequest) TenantIds

func (r ApiImportWorkflowRequest) TenantIds(tenantIds []string) ApiImportWorkflowRequest

type ApiRedeployDeviceRequest

type ApiRedeployDeviceRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiRedeployDeviceRequest) Execute

type ApiRemoveDevicesFromSiteRequest

type ApiRemoveDevicesFromSiteRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiRemoveDevicesFromSiteRequest) Execute

func (ApiRemoveDevicesFromSiteRequest) RequestBody

type ApiRemoveOfferAssignmentsRequest

type ApiRemoveOfferAssignmentsRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiRemoveOfferAssignmentsRequest) Execute

func (ApiRemoveOfferAssignmentsRequest) RequestBody

type ApiRemoveProductAssignmentsRequest

type ApiRemoveProductAssignmentsRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiRemoveProductAssignmentsRequest) Execute

func (ApiRemoveProductAssignmentsRequest) RequestBody

type ApiRemoveServicesFromSiteRequest

type ApiRemoveServicesFromSiteRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiRemoveServicesFromSiteRequest) Execute

func (ApiRemoveServicesFromSiteRequest) RequestBody

type ApiScanDeviceTemplateParametersRequest

type ApiScanDeviceTemplateParametersRequest struct {
	ApiService *DeviceTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiScanDeviceTemplateParametersRequest) Execute

func (ApiScanDeviceTemplateParametersRequest) File

type ApiStartWorkflowRequest

type ApiStartWorkflowRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiStartWorkflowRequest) Execute

func (ApiStartWorkflowRequest) Sync

func (ApiStartWorkflowRequest) WorkflowStartConfig

func (r ApiStartWorkflowRequest) WorkflowStartConfig(workflowStartConfig WorkflowStartConfig) ApiStartWorkflowRequest

type ApiSubmitOrderRequest

type ApiSubmitOrderRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiSubmitOrderRequest) Execute

func (ApiSubmitOrderRequest) LegacyServiceOrder

func (r ApiSubmitOrderRequest) LegacyServiceOrder(legacyServiceOrder LegacyServiceOrder) ApiSubmitOrderRequest

func (ApiSubmitOrderRequest) OfferId

func (ApiSubmitOrderRequest) ProductId

func (r ApiSubmitOrderRequest) ProductId(productId string) ApiSubmitOrderRequest

type ApiUpdateDeviceTemplateAccessRequest

type ApiUpdateDeviceTemplateAccessRequest struct {
	ApiService *DeviceTemplatesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDeviceTemplateAccessRequest) DeviceTemplateAccess

func (ApiUpdateDeviceTemplateAccessRequest) Execute

type ApiUpdateDeviceTemplatesRequest

type ApiUpdateDeviceTemplatesRequest struct {
	ApiService *DevicesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDeviceTemplatesRequest) DeviceTemplateUpdateRequest

func (r ApiUpdateDeviceTemplatesRequest) DeviceTemplateUpdateRequest(deviceTemplateUpdateRequest DeviceTemplateUpdateRequest) ApiUpdateDeviceTemplatesRequest

func (ApiUpdateDeviceTemplatesRequest) Execute

type ApiUpdateOfferAssignmentsRequest

type ApiUpdateOfferAssignmentsRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiUpdateOfferAssignmentsRequest) Execute

func (ApiUpdateOfferAssignmentsRequest) RequestBody

type ApiUpdateOfferRequest

type ApiUpdateOfferRequest struct {
	ApiService *OffersApiService
	// contains filtered or unexported fields
}

func (ApiUpdateOfferRequest) Execute

func (ApiUpdateOfferRequest) OfferUpdate

func (r ApiUpdateOfferRequest) OfferUpdate(offerUpdate OfferUpdate) ApiUpdateOfferRequest

type ApiUpdateOrderRequest

type ApiUpdateOrderRequest struct {
	ApiService *ServicesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateOrderRequest) Execute

func (ApiUpdateOrderRequest) LegacyServiceOrder

func (r ApiUpdateOrderRequest) LegacyServiceOrder(legacyServiceOrder LegacyServiceOrder) ApiUpdateOrderRequest

func (ApiUpdateOrderRequest) OfferId

func (ApiUpdateOrderRequest) ProductId

func (r ApiUpdateOrderRequest) ProductId(productId string) ApiUpdateOrderRequest

type ApiUpdateProductAssignmentsRequest

type ApiUpdateProductAssignmentsRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateProductAssignmentsRequest) Execute

func (ApiUpdateProductAssignmentsRequest) RequestBody

type ApiUpdateProductRequest

type ApiUpdateProductRequest struct {
	ApiService *ProductsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateProductRequest) Execute

func (ApiUpdateProductRequest) ProductUpdate

func (r ApiUpdateProductRequest) ProductUpdate(productUpdate ProductUpdate) ApiUpdateProductRequest

type ApiUpdateSiteRequest

type ApiUpdateSiteRequest struct {
	ApiService *SitesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSiteRequest) Execute

func (r ApiUpdateSiteRequest) Execute() (Site, *_nethttp.Response, error)

func (ApiUpdateSiteRequest) SendNotification

func (r ApiUpdateSiteRequest) SendNotification(sendNotification bool) ApiUpdateSiteRequest

func (ApiUpdateSiteRequest) SiteUpdate

func (r ApiUpdateSiteRequest) SiteUpdate(siteUpdate SiteUpdate) ApiUpdateSiteRequest

type ApiUpdateTenantRequest

type ApiUpdateTenantRequest struct {
	ApiService *TenantsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateTenantRequest) Execute

func (ApiUpdateTenantRequest) TenantUpdate

func (r ApiUpdateTenantRequest) TenantUpdate(tenantUpdate TenantUpdate) ApiUpdateTenantRequest

type ApiUpdateUserPasswordRequest

type ApiUpdateUserPasswordRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiUpdateUserPasswordRequest) Execute

func (ApiUpdateUserPasswordRequest) UpdatePassword

type ApiUpdateUserRequest

type ApiUpdateUserRequest struct {
	ApiService *UsersApiService
	// contains filtered or unexported fields
}

func (ApiUpdateUserRequest) Execute

func (r ApiUpdateUserRequest) Execute() (User, *_nethttp.Response, error)

func (ApiUpdateUserRequest) UserUpdate

func (r ApiUpdateUserRequest) UserUpdate(userUpdate UserUpdate) ApiUpdateUserRequest

type ApiUpdateWorkflowCategoryRequest

type ApiUpdateWorkflowCategoryRequest struct {
	ApiService *WorkflowCategoriesApiService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkflowCategoryRequest) Execute

func (ApiUpdateWorkflowCategoryRequest) WorkflowCategoryUpdate

func (r ApiUpdateWorkflowCategoryRequest) WorkflowCategoryUpdate(workflowCategoryUpdate WorkflowCategoryUpdate) ApiUpdateWorkflowCategoryRequest

type ApiUpdateWorkflowEventRequest

type ApiUpdateWorkflowEventRequest struct {
	ApiService *WorkflowEventsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkflowEventRequest) Execute

func (ApiUpdateWorkflowEventRequest) WorkflowEventUpdate

func (r ApiUpdateWorkflowEventRequest) WorkflowEventUpdate(workflowEventUpdate WorkflowEventUpdate) ApiUpdateWorkflowEventRequest

type ApiUpdateWorkflowRequest

type ApiUpdateWorkflowRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkflowRequest) Execute

func (ApiUpdateWorkflowRequest) Global

func (ApiUpdateWorkflowRequest) RequestBody

func (r ApiUpdateWorkflowRequest) RequestBody(requestBody map[string]map[string]interface{}) ApiUpdateWorkflowRequest

func (ApiUpdateWorkflowRequest) TenantId

type ApiUpdateWorkflowTargetRequest

type ApiUpdateWorkflowTargetRequest struct {
	ApiService *WorkflowTargetsApiService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkflowTargetRequest) Execute

func (ApiUpdateWorkflowTargetRequest) WorkflowTargetUpdate

func (r ApiUpdateWorkflowTargetRequest) WorkflowTargetUpdate(workflowTargetUpdate WorkflowTargetUpdate) ApiUpdateWorkflowTargetRequest

type ApiValidateWorkflowRequest

type ApiValidateWorkflowRequest struct {
	ApiService *WorkflowsApiService
	// contains filtered or unexported fields
}

func (ApiValidateWorkflowRequest) Execute

type BasicAuth

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

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

type CatalogAssignment

type CatalogAssignment struct {
	TenantId  *string    `json:"tenantId,omitempty"`
	CreatedOn *time.Time `json:"createdOn,omitempty"`
}

CatalogAssignment struct for CatalogAssignment

func NewCatalogAssignment

func NewCatalogAssignment() *CatalogAssignment

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

func NewCatalogAssignmentWithDefaults

func NewCatalogAssignmentWithDefaults() *CatalogAssignment

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

func (*CatalogAssignment) GetCreatedOn

func (o *CatalogAssignment) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*CatalogAssignment) GetCreatedOnOk

func (o *CatalogAssignment) GetCreatedOnOk() (*time.Time, bool)

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

func (*CatalogAssignment) GetTenantId

func (o *CatalogAssignment) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*CatalogAssignment) GetTenantIdOk

func (o *CatalogAssignment) GetTenantIdOk() (*string, bool)

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

func (*CatalogAssignment) HasCreatedOn

func (o *CatalogAssignment) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*CatalogAssignment) HasTenantId

func (o *CatalogAssignment) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (CatalogAssignment) MarshalJSON

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

func (*CatalogAssignment) SetCreatedOn

func (o *CatalogAssignment) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*CatalogAssignment) SetTenantId

func (o *CatalogAssignment) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId 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 Device

type Device struct {
	Id                 *string            `json:"id,omitempty"`
	UserId             *string            `json:"userId,omitempty"`
	ProviderId         *string            `json:"providerId,omitempty"`
	CreatedOn          *time.Time         `json:"createdOn,omitempty"`
	ModifiedOn         *time.Time         `json:"modifiedOn,omitempty"`
	ServiceInstanceId  *string            `json:"serviceInstanceId,omitempty"`
	SubscriptionId     *string            `json:"subscriptionId,omitempty"`
	TenantId           string             `json:"tenantId"`
	Name               string             `json:"name"`
	Model              string             `json:"model"`
	Type               string             `json:"type"`
	SubType            *string            `json:"subType,omitempty"`
	ServiceType        *string            `json:"serviceType,omitempty"`
	Tags               *map[string]string `json:"tags,omitempty"`
	SerialKey          string             `json:"serialKey"`
	Version            string             `json:"version"`
	Managed            bool               `json:"managed"`
	OnboardType        *string            `json:"onboardType,omitempty"`
	OnboardInformation *map[string]string `json:"onboardInformation,omitempty"`
	Attributes         *map[string]string `json:"attributes,omitempty"`
	Billing            *DeviceBilling     `json:"billing,omitempty"`
}

Device struct for Device

func NewDevice

func NewDevice(tenantId string, name string, model string, type_ string, serialKey string, version string, managed bool) *Device

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

func NewDeviceWithDefaults

func NewDeviceWithDefaults() *Device

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

func (*Device) GetAttributes

func (o *Device) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Device) GetAttributesOk

func (o *Device) GetAttributesOk() (*map[string]string, bool)

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

func (*Device) GetBilling

func (o *Device) GetBilling() DeviceBilling

GetBilling returns the Billing field value if set, zero value otherwise.

func (*Device) GetBillingOk

func (o *Device) GetBillingOk() (*DeviceBilling, bool)

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

func (*Device) GetCreatedOn

func (o *Device) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*Device) GetCreatedOnOk

func (o *Device) GetCreatedOnOk() (*time.Time, bool)

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

func (*Device) GetId

func (o *Device) GetId() string

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

func (*Device) GetIdOk

func (o *Device) 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 (*Device) GetManaged

func (o *Device) GetManaged() bool

GetManaged returns the Managed field value

func (*Device) GetManagedOk

func (o *Device) GetManagedOk() (*bool, bool)

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

func (*Device) GetModel

func (o *Device) GetModel() string

GetModel returns the Model field value

func (*Device) GetModelOk

func (o *Device) GetModelOk() (*string, bool)

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

func (*Device) GetModifiedOn

func (o *Device) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise.

func (*Device) GetModifiedOnOk

func (o *Device) GetModifiedOnOk() (*time.Time, bool)

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

func (*Device) GetName

func (o *Device) GetName() string

GetName returns the Name field value

func (*Device) GetNameOk

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

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

func (*Device) GetOnboardInformation

func (o *Device) GetOnboardInformation() map[string]string

GetOnboardInformation returns the OnboardInformation field value if set, zero value otherwise.

func (*Device) GetOnboardInformationOk

func (o *Device) GetOnboardInformationOk() (*map[string]string, bool)

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

func (*Device) GetOnboardType

func (o *Device) GetOnboardType() string

GetOnboardType returns the OnboardType field value if set, zero value otherwise.

func (*Device) GetOnboardTypeOk

func (o *Device) GetOnboardTypeOk() (*string, bool)

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

func (*Device) GetProviderId

func (o *Device) GetProviderId() string

GetProviderId returns the ProviderId field value if set, zero value otherwise.

func (*Device) GetProviderIdOk

func (o *Device) GetProviderIdOk() (*string, bool)

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

func (*Device) GetSerialKey

func (o *Device) GetSerialKey() string

GetSerialKey returns the SerialKey field value

func (*Device) GetSerialKeyOk

func (o *Device) GetSerialKeyOk() (*string, bool)

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

func (*Device) GetServiceInstanceId added in v1.0.1

func (o *Device) GetServiceInstanceId() string

GetServiceInstanceId returns the ServiceInstanceId field value if set, zero value otherwise.

func (*Device) GetServiceInstanceIdOk added in v1.0.1

func (o *Device) GetServiceInstanceIdOk() (*string, bool)

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

func (*Device) GetServiceType

func (o *Device) GetServiceType() string

GetServiceType returns the ServiceType field value if set, zero value otherwise.

func (*Device) GetServiceTypeOk

func (o *Device) GetServiceTypeOk() (*string, bool)

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

func (*Device) GetSubType

func (o *Device) GetSubType() string

GetSubType returns the SubType field value if set, zero value otherwise.

func (*Device) GetSubTypeOk

func (o *Device) GetSubTypeOk() (*string, bool)

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

func (*Device) GetSubscriptionId

func (o *Device) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*Device) GetSubscriptionIdOk

func (o *Device) GetSubscriptionIdOk() (*string, bool)

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

func (*Device) GetTags

func (o *Device) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*Device) GetTagsOk

func (o *Device) GetTagsOk() (*map[string]string, bool)

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

func (*Device) GetTenantId

func (o *Device) GetTenantId() string

GetTenantId returns the TenantId field value

func (*Device) GetTenantIdOk

func (o *Device) GetTenantIdOk() (*string, bool)

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

func (*Device) GetType

func (o *Device) GetType() string

GetType returns the Type field value

func (*Device) GetTypeOk

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

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

func (*Device) GetUserId

func (o *Device) GetUserId() string

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

func (*Device) GetUserIdOk

func (o *Device) GetUserIdOk() (*string, bool)

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

func (*Device) GetVersion

func (o *Device) GetVersion() string

GetVersion returns the Version field value

func (*Device) GetVersionOk

func (o *Device) GetVersionOk() (*string, bool)

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

func (*Device) HasAttributes

func (o *Device) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Device) HasBilling

func (o *Device) HasBilling() bool

HasBilling returns a boolean if a field has been set.

func (*Device) HasCreatedOn

func (o *Device) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*Device) HasId

func (o *Device) HasId() bool

HasId returns a boolean if a field has been set.

func (*Device) HasModifiedOn

func (o *Device) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*Device) HasOnboardInformation

func (o *Device) HasOnboardInformation() bool

HasOnboardInformation returns a boolean if a field has been set.

func (*Device) HasOnboardType

func (o *Device) HasOnboardType() bool

HasOnboardType returns a boolean if a field has been set.

func (*Device) HasProviderId

func (o *Device) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

func (*Device) HasServiceInstanceId added in v1.0.1

func (o *Device) HasServiceInstanceId() bool

HasServiceInstanceId returns a boolean if a field has been set.

func (*Device) HasServiceType

func (o *Device) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (*Device) HasSubType

func (o *Device) HasSubType() bool

HasSubType returns a boolean if a field has been set.

func (*Device) HasSubscriptionId

func (o *Device) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*Device) HasTags

func (o *Device) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Device) HasUserId

func (o *Device) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (Device) MarshalJSON

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

func (*Device) SetAttributes

func (o *Device) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*Device) SetBilling

func (o *Device) SetBilling(v DeviceBilling)

SetBilling gets a reference to the given DeviceBilling and assigns it to the Billing field.

func (*Device) SetCreatedOn

func (o *Device) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*Device) SetId

func (o *Device) SetId(v string)

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

func (*Device) SetManaged

func (o *Device) SetManaged(v bool)

SetManaged sets field value

func (*Device) SetModel

func (o *Device) SetModel(v string)

SetModel sets field value

func (*Device) SetModifiedOn

func (o *Device) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given time.Time and assigns it to the ModifiedOn field.

func (*Device) SetName

func (o *Device) SetName(v string)

SetName sets field value

func (*Device) SetOnboardInformation

func (o *Device) SetOnboardInformation(v map[string]string)

SetOnboardInformation gets a reference to the given map[string]string and assigns it to the OnboardInformation field.

func (*Device) SetOnboardType

func (o *Device) SetOnboardType(v string)

SetOnboardType gets a reference to the given string and assigns it to the OnboardType field.

func (*Device) SetProviderId

func (o *Device) SetProviderId(v string)

SetProviderId gets a reference to the given string and assigns it to the ProviderId field.

func (*Device) SetSerialKey

func (o *Device) SetSerialKey(v string)

SetSerialKey sets field value

func (*Device) SetServiceInstanceId added in v1.0.1

func (o *Device) SetServiceInstanceId(v string)

SetServiceInstanceId gets a reference to the given string and assigns it to the ServiceInstanceId field.

func (*Device) SetServiceType

func (o *Device) SetServiceType(v string)

SetServiceType gets a reference to the given string and assigns it to the ServiceType field.

func (*Device) SetSubType

func (o *Device) SetSubType(v string)

SetSubType gets a reference to the given string and assigns it to the SubType field.

func (*Device) SetSubscriptionId

func (o *Device) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*Device) SetTags

func (o *Device) SetTags(v map[string]string)

SetTags gets a reference to the given map[string]string and assigns it to the Tags field.

func (*Device) SetTenantId

func (o *Device) SetTenantId(v string)

SetTenantId sets field value

func (*Device) SetType

func (o *Device) SetType(v string)

SetType sets field value

func (*Device) SetUserId

func (o *Device) SetUserId(v string)

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

func (*Device) SetVersion

func (o *Device) SetVersion(v string)

SetVersion sets field value

type DeviceAllOf

type DeviceAllOf struct {
	Id         *string    `json:"id,omitempty"`
	UserId     *string    `json:"userId,omitempty"`
	ProviderId *string    `json:"providerId,omitempty"`
	CreatedOn  *time.Time `json:"createdOn,omitempty"`
	ModifiedOn *time.Time `json:"modifiedOn,omitempty"`
}

DeviceAllOf struct for DeviceAllOf

func NewDeviceAllOf

func NewDeviceAllOf() *DeviceAllOf

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

func NewDeviceAllOfWithDefaults

func NewDeviceAllOfWithDefaults() *DeviceAllOf

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

func (*DeviceAllOf) GetCreatedOn

func (o *DeviceAllOf) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*DeviceAllOf) GetCreatedOnOk

func (o *DeviceAllOf) GetCreatedOnOk() (*time.Time, bool)

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

func (*DeviceAllOf) GetId

func (o *DeviceAllOf) GetId() string

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

func (*DeviceAllOf) GetIdOk

func (o *DeviceAllOf) 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 (*DeviceAllOf) GetModifiedOn

func (o *DeviceAllOf) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise.

func (*DeviceAllOf) GetModifiedOnOk

func (o *DeviceAllOf) GetModifiedOnOk() (*time.Time, bool)

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

func (*DeviceAllOf) GetProviderId

func (o *DeviceAllOf) GetProviderId() string

GetProviderId returns the ProviderId field value if set, zero value otherwise.

func (*DeviceAllOf) GetProviderIdOk

func (o *DeviceAllOf) GetProviderIdOk() (*string, bool)

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

func (*DeviceAllOf) GetUserId

func (o *DeviceAllOf) GetUserId() string

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

func (*DeviceAllOf) GetUserIdOk

func (o *DeviceAllOf) GetUserIdOk() (*string, bool)

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

func (*DeviceAllOf) HasCreatedOn

func (o *DeviceAllOf) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*DeviceAllOf) HasId

func (o *DeviceAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*DeviceAllOf) HasModifiedOn

func (o *DeviceAllOf) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*DeviceAllOf) HasProviderId

func (o *DeviceAllOf) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

func (*DeviceAllOf) HasUserId

func (o *DeviceAllOf) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (DeviceAllOf) MarshalJSON

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

func (*DeviceAllOf) SetCreatedOn

func (o *DeviceAllOf) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*DeviceAllOf) SetId

func (o *DeviceAllOf) SetId(v string)

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

func (*DeviceAllOf) SetModifiedOn

func (o *DeviceAllOf) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given time.Time and assigns it to the ModifiedOn field.

func (*DeviceAllOf) SetProviderId

func (o *DeviceAllOf) SetProviderId(v string)

SetProviderId gets a reference to the given string and assigns it to the ProviderId field.

func (*DeviceAllOf) SetUserId

func (o *DeviceAllOf) SetUserId(v string)

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

type DeviceBilling

type DeviceBilling struct {
	DeviceSpeedGrade string `json:"deviceSpeedGrade"`
	DeviceVnfSource  string `json:"deviceVnfSource"`
	VnfFlavor        string `json:"vnfFlavor"`
	VnfImage         string `json:"vnfImage"`
	VnfName          string `json:"vnfName"`
	VnfValue         string `json:"vnfValue"`
}

DeviceBilling struct for DeviceBilling

func NewDeviceBilling

func NewDeviceBilling(deviceSpeedGrade string, deviceVnfSource string, vnfFlavor string, vnfImage string, vnfName string, vnfValue string) *DeviceBilling

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

func NewDeviceBillingWithDefaults

func NewDeviceBillingWithDefaults() *DeviceBilling

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

func (*DeviceBilling) GetDeviceSpeedGrade

func (o *DeviceBilling) GetDeviceSpeedGrade() string

GetDeviceSpeedGrade returns the DeviceSpeedGrade field value

func (*DeviceBilling) GetDeviceSpeedGradeOk

func (o *DeviceBilling) GetDeviceSpeedGradeOk() (*string, bool)

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

func (*DeviceBilling) GetDeviceVnfSource

func (o *DeviceBilling) GetDeviceVnfSource() string

GetDeviceVnfSource returns the DeviceVnfSource field value

func (*DeviceBilling) GetDeviceVnfSourceOk

func (o *DeviceBilling) GetDeviceVnfSourceOk() (*string, bool)

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

func (*DeviceBilling) GetVnfFlavor

func (o *DeviceBilling) GetVnfFlavor() string

GetVnfFlavor returns the VnfFlavor field value

func (*DeviceBilling) GetVnfFlavorOk

func (o *DeviceBilling) GetVnfFlavorOk() (*string, bool)

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

func (*DeviceBilling) GetVnfImage

func (o *DeviceBilling) GetVnfImage() string

GetVnfImage returns the VnfImage field value

func (*DeviceBilling) GetVnfImageOk

func (o *DeviceBilling) GetVnfImageOk() (*string, bool)

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

func (*DeviceBilling) GetVnfName

func (o *DeviceBilling) GetVnfName() string

GetVnfName returns the VnfName field value

func (*DeviceBilling) GetVnfNameOk

func (o *DeviceBilling) GetVnfNameOk() (*string, bool)

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

func (*DeviceBilling) GetVnfValue

func (o *DeviceBilling) GetVnfValue() string

GetVnfValue returns the VnfValue field value

func (*DeviceBilling) GetVnfValueOk

func (o *DeviceBilling) GetVnfValueOk() (*string, bool)

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

func (DeviceBilling) MarshalJSON

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

func (*DeviceBilling) SetDeviceSpeedGrade

func (o *DeviceBilling) SetDeviceSpeedGrade(v string)

SetDeviceSpeedGrade sets field value

func (*DeviceBilling) SetDeviceVnfSource

func (o *DeviceBilling) SetDeviceVnfSource(v string)

SetDeviceVnfSource sets field value

func (*DeviceBilling) SetVnfFlavor

func (o *DeviceBilling) SetVnfFlavor(v string)

SetVnfFlavor sets field value

func (*DeviceBilling) SetVnfImage

func (o *DeviceBilling) SetVnfImage(v string)

SetVnfImage sets field value

func (*DeviceBilling) SetVnfName

func (o *DeviceBilling) SetVnfName(v string)

SetVnfName sets field value

func (*DeviceBilling) SetVnfValue

func (o *DeviceBilling) SetVnfValue(v string)

SetVnfValue sets field value

type DeviceCreate

type DeviceCreate struct {
	ServiceInstanceId  *string            `json:"serviceInstanceId,omitempty"`
	SubscriptionId     *string            `json:"subscriptionId,omitempty"`
	TenantId           string             `json:"tenantId"`
	Name               string             `json:"name"`
	Model              string             `json:"model"`
	Type               string             `json:"type"`
	SubType            *string            `json:"subType,omitempty"`
	ServiceType        *string            `json:"serviceType,omitempty"`
	Tags               *map[string]string `json:"tags,omitempty"`
	SerialKey          string             `json:"serialKey"`
	Version            string             `json:"version"`
	Managed            bool               `json:"managed"`
	OnboardType        *string            `json:"onboardType,omitempty"`
	OnboardInformation *map[string]string `json:"onboardInformation,omitempty"`
	Attributes         *map[string]string `json:"attributes,omitempty"`
	Billing            *DeviceBilling     `json:"billing,omitempty"`
}

DeviceCreate struct for DeviceCreate

func NewDeviceCreate

func NewDeviceCreate(tenantId string, name string, model string, type_ string, serialKey string, version string, managed bool) *DeviceCreate

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

func NewDeviceCreateWithDefaults

func NewDeviceCreateWithDefaults() *DeviceCreate

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

func (*DeviceCreate) GetAttributes

func (o *DeviceCreate) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*DeviceCreate) GetAttributesOk

func (o *DeviceCreate) GetAttributesOk() (*map[string]string, bool)

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

func (*DeviceCreate) GetBilling

func (o *DeviceCreate) GetBilling() DeviceBilling

GetBilling returns the Billing field value if set, zero value otherwise.

func (*DeviceCreate) GetBillingOk

func (o *DeviceCreate) GetBillingOk() (*DeviceBilling, bool)

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

func (*DeviceCreate) GetManaged

func (o *DeviceCreate) GetManaged() bool

GetManaged returns the Managed field value

func (*DeviceCreate) GetManagedOk

func (o *DeviceCreate) GetManagedOk() (*bool, bool)

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

func (*DeviceCreate) GetModel

func (o *DeviceCreate) GetModel() string

GetModel returns the Model field value

func (*DeviceCreate) GetModelOk

func (o *DeviceCreate) GetModelOk() (*string, bool)

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

func (*DeviceCreate) GetName

func (o *DeviceCreate) GetName() string

GetName returns the Name field value

func (*DeviceCreate) GetNameOk

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

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

func (*DeviceCreate) GetOnboardInformation

func (o *DeviceCreate) GetOnboardInformation() map[string]string

GetOnboardInformation returns the OnboardInformation field value if set, zero value otherwise.

func (*DeviceCreate) GetOnboardInformationOk

func (o *DeviceCreate) GetOnboardInformationOk() (*map[string]string, bool)

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

func (*DeviceCreate) GetOnboardType

func (o *DeviceCreate) GetOnboardType() string

GetOnboardType returns the OnboardType field value if set, zero value otherwise.

func (*DeviceCreate) GetOnboardTypeOk

func (o *DeviceCreate) GetOnboardTypeOk() (*string, bool)

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

func (*DeviceCreate) GetSerialKey

func (o *DeviceCreate) GetSerialKey() string

GetSerialKey returns the SerialKey field value

func (*DeviceCreate) GetSerialKeyOk

func (o *DeviceCreate) GetSerialKeyOk() (*string, bool)

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

func (*DeviceCreate) GetServiceInstanceId added in v1.0.1

func (o *DeviceCreate) GetServiceInstanceId() string

GetServiceInstanceId returns the ServiceInstanceId field value if set, zero value otherwise.

func (*DeviceCreate) GetServiceInstanceIdOk added in v1.0.1

func (o *DeviceCreate) GetServiceInstanceIdOk() (*string, bool)

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

func (*DeviceCreate) GetServiceType

func (o *DeviceCreate) GetServiceType() string

GetServiceType returns the ServiceType field value if set, zero value otherwise.

func (*DeviceCreate) GetServiceTypeOk

func (o *DeviceCreate) GetServiceTypeOk() (*string, bool)

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

func (*DeviceCreate) GetSubType

func (o *DeviceCreate) GetSubType() string

GetSubType returns the SubType field value if set, zero value otherwise.

func (*DeviceCreate) GetSubTypeOk

func (o *DeviceCreate) GetSubTypeOk() (*string, bool)

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

func (*DeviceCreate) GetSubscriptionId

func (o *DeviceCreate) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*DeviceCreate) GetSubscriptionIdOk

func (o *DeviceCreate) GetSubscriptionIdOk() (*string, bool)

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

func (*DeviceCreate) GetTags

func (o *DeviceCreate) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*DeviceCreate) GetTagsOk

func (o *DeviceCreate) GetTagsOk() (*map[string]string, bool)

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

func (*DeviceCreate) GetTenantId

func (o *DeviceCreate) GetTenantId() string

GetTenantId returns the TenantId field value

func (*DeviceCreate) GetTenantIdOk

func (o *DeviceCreate) GetTenantIdOk() (*string, bool)

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

func (*DeviceCreate) GetType

func (o *DeviceCreate) GetType() string

GetType returns the Type field value

func (*DeviceCreate) GetTypeOk

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

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

func (*DeviceCreate) GetVersion

func (o *DeviceCreate) GetVersion() string

GetVersion returns the Version field value

func (*DeviceCreate) GetVersionOk

func (o *DeviceCreate) GetVersionOk() (*string, bool)

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

func (*DeviceCreate) HasAttributes

func (o *DeviceCreate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*DeviceCreate) HasBilling

func (o *DeviceCreate) HasBilling() bool

HasBilling returns a boolean if a field has been set.

func (*DeviceCreate) HasOnboardInformation

func (o *DeviceCreate) HasOnboardInformation() bool

HasOnboardInformation returns a boolean if a field has been set.

func (*DeviceCreate) HasOnboardType

func (o *DeviceCreate) HasOnboardType() bool

HasOnboardType returns a boolean if a field has been set.

func (*DeviceCreate) HasServiceInstanceId added in v1.0.1

func (o *DeviceCreate) HasServiceInstanceId() bool

HasServiceInstanceId returns a boolean if a field has been set.

func (*DeviceCreate) HasServiceType

func (o *DeviceCreate) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (*DeviceCreate) HasSubType

func (o *DeviceCreate) HasSubType() bool

HasSubType returns a boolean if a field has been set.

func (*DeviceCreate) HasSubscriptionId

func (o *DeviceCreate) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*DeviceCreate) HasTags

func (o *DeviceCreate) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DeviceCreate) MarshalJSON

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

func (*DeviceCreate) SetAttributes

func (o *DeviceCreate) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*DeviceCreate) SetBilling

func (o *DeviceCreate) SetBilling(v DeviceBilling)

SetBilling gets a reference to the given DeviceBilling and assigns it to the Billing field.

func (*DeviceCreate) SetManaged

func (o *DeviceCreate) SetManaged(v bool)

SetManaged sets field value

func (*DeviceCreate) SetModel

func (o *DeviceCreate) SetModel(v string)

SetModel sets field value

func (*DeviceCreate) SetName

func (o *DeviceCreate) SetName(v string)

SetName sets field value

func (*DeviceCreate) SetOnboardInformation

func (o *DeviceCreate) SetOnboardInformation(v map[string]string)

SetOnboardInformation gets a reference to the given map[string]string and assigns it to the OnboardInformation field.

func (*DeviceCreate) SetOnboardType

func (o *DeviceCreate) SetOnboardType(v string)

SetOnboardType gets a reference to the given string and assigns it to the OnboardType field.

func (*DeviceCreate) SetSerialKey

func (o *DeviceCreate) SetSerialKey(v string)

SetSerialKey sets field value

func (*DeviceCreate) SetServiceInstanceId added in v1.0.1

func (o *DeviceCreate) SetServiceInstanceId(v string)

SetServiceInstanceId gets a reference to the given string and assigns it to the ServiceInstanceId field.

func (*DeviceCreate) SetServiceType

func (o *DeviceCreate) SetServiceType(v string)

SetServiceType gets a reference to the given string and assigns it to the ServiceType field.

func (*DeviceCreate) SetSubType

func (o *DeviceCreate) SetSubType(v string)

SetSubType gets a reference to the given string and assigns it to the SubType field.

func (*DeviceCreate) SetSubscriptionId

func (o *DeviceCreate) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*DeviceCreate) SetTags

func (o *DeviceCreate) SetTags(v map[string]string)

SetTags gets a reference to the given map[string]string and assigns it to the Tags field.

func (*DeviceCreate) SetTenantId

func (o *DeviceCreate) SetTenantId(v string)

SetTenantId sets field value

func (*DeviceCreate) SetType

func (o *DeviceCreate) SetType(v string)

SetType sets field value

func (*DeviceCreate) SetVersion

func (o *DeviceCreate) SetVersion(v string)

SetVersion sets field value

type DeviceCreateAllOf

type DeviceCreateAllOf struct {
	ServiceInstanceId *string `json:"serviceInstanceId,omitempty"`
	SubscriptionId    *string `json:"subscriptionId,omitempty"`
	TenantId          string  `json:"tenantId"`
}

DeviceCreateAllOf struct for DeviceCreateAllOf

func NewDeviceCreateAllOf

func NewDeviceCreateAllOf(tenantId string) *DeviceCreateAllOf

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

func NewDeviceCreateAllOfWithDefaults

func NewDeviceCreateAllOfWithDefaults() *DeviceCreateAllOf

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

func (*DeviceCreateAllOf) GetServiceInstanceId added in v1.0.1

func (o *DeviceCreateAllOf) GetServiceInstanceId() string

GetServiceInstanceId returns the ServiceInstanceId field value if set, zero value otherwise.

func (*DeviceCreateAllOf) GetServiceInstanceIdOk added in v1.0.1

func (o *DeviceCreateAllOf) GetServiceInstanceIdOk() (*string, bool)

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

func (*DeviceCreateAllOf) GetSubscriptionId

func (o *DeviceCreateAllOf) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*DeviceCreateAllOf) GetSubscriptionIdOk

func (o *DeviceCreateAllOf) GetSubscriptionIdOk() (*string, bool)

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

func (*DeviceCreateAllOf) GetTenantId

func (o *DeviceCreateAllOf) GetTenantId() string

GetTenantId returns the TenantId field value

func (*DeviceCreateAllOf) GetTenantIdOk

func (o *DeviceCreateAllOf) GetTenantIdOk() (*string, bool)

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

func (*DeviceCreateAllOf) HasServiceInstanceId added in v1.0.1

func (o *DeviceCreateAllOf) HasServiceInstanceId() bool

HasServiceInstanceId returns a boolean if a field has been set.

func (*DeviceCreateAllOf) HasSubscriptionId

func (o *DeviceCreateAllOf) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (DeviceCreateAllOf) MarshalJSON

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

func (*DeviceCreateAllOf) SetServiceInstanceId added in v1.0.1

func (o *DeviceCreateAllOf) SetServiceInstanceId(v string)

SetServiceInstanceId gets a reference to the given string and assigns it to the ServiceInstanceId field.

func (*DeviceCreateAllOf) SetSubscriptionId

func (o *DeviceCreateAllOf) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*DeviceCreateAllOf) SetTenantId

func (o *DeviceCreateAllOf) SetTenantId(v string)

SetTenantId sets field value

type DeviceSummary

type DeviceSummary struct {
	DeviceId    *string `json:"deviceId,omitempty"`
	ServiceId   *string `json:"serviceId,omitempty"`
	ServiceType *string `json:"serviceType,omitempty"`
}

DeviceSummary struct for DeviceSummary

func NewDeviceSummary

func NewDeviceSummary() *DeviceSummary

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

func NewDeviceSummaryWithDefaults

func NewDeviceSummaryWithDefaults() *DeviceSummary

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

func (*DeviceSummary) GetDeviceId

func (o *DeviceSummary) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*DeviceSummary) GetDeviceIdOk

func (o *DeviceSummary) GetDeviceIdOk() (*string, bool)

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

func (*DeviceSummary) GetServiceId

func (o *DeviceSummary) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*DeviceSummary) GetServiceIdOk

func (o *DeviceSummary) 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 (*DeviceSummary) GetServiceType

func (o *DeviceSummary) GetServiceType() string

GetServiceType returns the ServiceType field value if set, zero value otherwise.

func (*DeviceSummary) GetServiceTypeOk

func (o *DeviceSummary) GetServiceTypeOk() (*string, bool)

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

func (*DeviceSummary) HasDeviceId

func (o *DeviceSummary) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*DeviceSummary) HasServiceId

func (o *DeviceSummary) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*DeviceSummary) HasServiceType

func (o *DeviceSummary) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (DeviceSummary) MarshalJSON

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

func (*DeviceSummary) SetDeviceId

func (o *DeviceSummary) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*DeviceSummary) SetServiceId

func (o *DeviceSummary) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*DeviceSummary) SetServiceType

func (o *DeviceSummary) SetServiceType(v string)

SetServiceType gets a reference to the given string and assigns it to the ServiceType field.

type DeviceTemplate

type DeviceTemplate struct {
	Name                        string                        `json:"name"`
	Description                 *string                       `json:"description,omitempty"`
	Version                     *string                       `json:"version,omitempty"`
	ServiceType                 string                        `json:"serviceType"`
	DeviceModels                *[]string                     `json:"deviceModels,omitempty"`
	ConfigContent               string                        `json:"configContent"`
	ResourceProvider            string                        `json:"resourceProvider"`
	TemplateStandard            *string                       `json:"templateStandard,omitempty"`
	TenantAccess                NullableDeviceTemplateAccess  `json:"tenantAccess,omitempty"`
	TemplateParameterValidators *[]TemplateParameterValidator `json:"templateParameterValidators,omitempty"`
	Id                          *string                       `json:"id,omitempty"`
	UserId                      *string                       `json:"userId,omitempty"`
	CreatedOn                   *time.Time                    `json:"createdOn,omitempty"`
}

DeviceTemplate struct for DeviceTemplate

func NewDeviceTemplate

func NewDeviceTemplate(name string, serviceType string, configContent string, resourceProvider string) *DeviceTemplate

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

func NewDeviceTemplateWithDefaults

func NewDeviceTemplateWithDefaults() *DeviceTemplate

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

func (*DeviceTemplate) GetConfigContent

func (o *DeviceTemplate) GetConfigContent() string

GetConfigContent returns the ConfigContent field value

func (*DeviceTemplate) GetConfigContentOk

func (o *DeviceTemplate) GetConfigContentOk() (*string, bool)

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

func (*DeviceTemplate) GetCreatedOn

func (o *DeviceTemplate) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*DeviceTemplate) GetCreatedOnOk

func (o *DeviceTemplate) GetCreatedOnOk() (*time.Time, bool)

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

func (*DeviceTemplate) GetDescription

func (o *DeviceTemplate) GetDescription() string

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

func (*DeviceTemplate) GetDescriptionOk

func (o *DeviceTemplate) 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 (*DeviceTemplate) GetDeviceModels

func (o *DeviceTemplate) GetDeviceModels() []string

GetDeviceModels returns the DeviceModels field value if set, zero value otherwise.

func (*DeviceTemplate) GetDeviceModelsOk

func (o *DeviceTemplate) GetDeviceModelsOk() (*[]string, bool)

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

func (*DeviceTemplate) GetId

func (o *DeviceTemplate) GetId() string

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

func (*DeviceTemplate) GetIdOk

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

func (o *DeviceTemplate) GetName() string

GetName returns the Name field value

func (*DeviceTemplate) GetNameOk

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

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

func (*DeviceTemplate) GetResourceProvider

func (o *DeviceTemplate) GetResourceProvider() string

GetResourceProvider returns the ResourceProvider field value

func (*DeviceTemplate) GetResourceProviderOk

func (o *DeviceTemplate) GetResourceProviderOk() (*string, bool)

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

func (*DeviceTemplate) GetServiceType

func (o *DeviceTemplate) GetServiceType() string

GetServiceType returns the ServiceType field value

func (*DeviceTemplate) GetServiceTypeOk

func (o *DeviceTemplate) GetServiceTypeOk() (*string, bool)

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

func (*DeviceTemplate) GetTemplateParameterValidators

func (o *DeviceTemplate) GetTemplateParameterValidators() []TemplateParameterValidator

GetTemplateParameterValidators returns the TemplateParameterValidators field value if set, zero value otherwise.

func (*DeviceTemplate) GetTemplateParameterValidatorsOk

func (o *DeviceTemplate) GetTemplateParameterValidatorsOk() (*[]TemplateParameterValidator, bool)

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

func (*DeviceTemplate) GetTemplateStandard

func (o *DeviceTemplate) GetTemplateStandard() string

GetTemplateStandard returns the TemplateStandard field value if set, zero value otherwise.

func (*DeviceTemplate) GetTemplateStandardOk

func (o *DeviceTemplate) GetTemplateStandardOk() (*string, bool)

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

func (*DeviceTemplate) GetTenantAccess

func (o *DeviceTemplate) GetTenantAccess() DeviceTemplateAccess

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

func (*DeviceTemplate) GetTenantAccessOk

func (o *DeviceTemplate) GetTenantAccessOk() (*DeviceTemplateAccess, bool)

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

func (*DeviceTemplate) GetUserId

func (o *DeviceTemplate) GetUserId() string

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

func (*DeviceTemplate) GetUserIdOk

func (o *DeviceTemplate) GetUserIdOk() (*string, bool)

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

func (*DeviceTemplate) GetVersion

func (o *DeviceTemplate) GetVersion() string

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

func (*DeviceTemplate) GetVersionOk

func (o *DeviceTemplate) GetVersionOk() (*string, bool)

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

func (*DeviceTemplate) HasCreatedOn

func (o *DeviceTemplate) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*DeviceTemplate) HasDescription

func (o *DeviceTemplate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DeviceTemplate) HasDeviceModels

func (o *DeviceTemplate) HasDeviceModels() bool

HasDeviceModels returns a boolean if a field has been set.

func (*DeviceTemplate) HasId

func (o *DeviceTemplate) HasId() bool

HasId returns a boolean if a field has been set.

func (*DeviceTemplate) HasTemplateParameterValidators

func (o *DeviceTemplate) HasTemplateParameterValidators() bool

HasTemplateParameterValidators returns a boolean if a field has been set.

func (*DeviceTemplate) HasTemplateStandard

func (o *DeviceTemplate) HasTemplateStandard() bool

HasTemplateStandard returns a boolean if a field has been set.

func (*DeviceTemplate) HasTenantAccess

func (o *DeviceTemplate) HasTenantAccess() bool

HasTenantAccess returns a boolean if a field has been set.

func (*DeviceTemplate) HasUserId

func (o *DeviceTemplate) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*DeviceTemplate) HasVersion

func (o *DeviceTemplate) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (DeviceTemplate) MarshalJSON

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

func (*DeviceTemplate) SetConfigContent

func (o *DeviceTemplate) SetConfigContent(v string)

SetConfigContent sets field value

func (*DeviceTemplate) SetCreatedOn

func (o *DeviceTemplate) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*DeviceTemplate) SetDescription

func (o *DeviceTemplate) SetDescription(v string)

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

func (*DeviceTemplate) SetDeviceModels

func (o *DeviceTemplate) SetDeviceModels(v []string)

SetDeviceModels gets a reference to the given []string and assigns it to the DeviceModels field.

func (*DeviceTemplate) SetId

func (o *DeviceTemplate) SetId(v string)

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

func (*DeviceTemplate) SetName

func (o *DeviceTemplate) SetName(v string)

SetName sets field value

func (*DeviceTemplate) SetResourceProvider

func (o *DeviceTemplate) SetResourceProvider(v string)

SetResourceProvider sets field value

func (*DeviceTemplate) SetServiceType

func (o *DeviceTemplate) SetServiceType(v string)

SetServiceType sets field value

func (*DeviceTemplate) SetTemplateParameterValidators

func (o *DeviceTemplate) SetTemplateParameterValidators(v []TemplateParameterValidator)

SetTemplateParameterValidators gets a reference to the given []TemplateParameterValidator and assigns it to the TemplateParameterValidators field.

func (*DeviceTemplate) SetTemplateStandard

func (o *DeviceTemplate) SetTemplateStandard(v string)

SetTemplateStandard gets a reference to the given string and assigns it to the TemplateStandard field.

func (*DeviceTemplate) SetTenantAccess

func (o *DeviceTemplate) SetTenantAccess(v DeviceTemplateAccess)

SetTenantAccess gets a reference to the given NullableDeviceTemplateAccess and assigns it to the TenantAccess field.

func (*DeviceTemplate) SetTenantAccessNil

func (o *DeviceTemplate) SetTenantAccessNil()

SetTenantAccessNil sets the value for TenantAccess to be an explicit nil

func (*DeviceTemplate) SetUserId

func (o *DeviceTemplate) SetUserId(v string)

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

func (*DeviceTemplate) SetVersion

func (o *DeviceTemplate) SetVersion(v string)

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

func (*DeviceTemplate) UnsetTenantAccess

func (o *DeviceTemplate) UnsetTenantAccess()

UnsetTenantAccess ensures that no value is present for TenantAccess, not even an explicit nil

type DeviceTemplateAccess

type DeviceTemplateAccess struct {
	// List of tenants to grant access. Mutually exclusive from global flag field.
	TenantIds *[]string `json:"tenantIds,omitempty"`
	// Determines if the template is globally accessible. Mutually exclusive from tenant list field.
	Global *bool `json:"global,omitempty"`
}

DeviceTemplateAccess struct for DeviceTemplateAccess

func NewDeviceTemplateAccess

func NewDeviceTemplateAccess() *DeviceTemplateAccess

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

func NewDeviceTemplateAccessWithDefaults

func NewDeviceTemplateAccessWithDefaults() *DeviceTemplateAccess

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

func (*DeviceTemplateAccess) GetGlobal

func (o *DeviceTemplateAccess) GetGlobal() bool

GetGlobal returns the Global field value if set, zero value otherwise.

func (*DeviceTemplateAccess) GetGlobalOk

func (o *DeviceTemplateAccess) GetGlobalOk() (*bool, bool)

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

func (*DeviceTemplateAccess) GetTenantIds

func (o *DeviceTemplateAccess) GetTenantIds() []string

GetTenantIds returns the TenantIds field value if set, zero value otherwise.

func (*DeviceTemplateAccess) GetTenantIdsOk

func (o *DeviceTemplateAccess) GetTenantIdsOk() (*[]string, bool)

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

func (*DeviceTemplateAccess) HasGlobal

func (o *DeviceTemplateAccess) HasGlobal() bool

HasGlobal returns a boolean if a field has been set.

func (*DeviceTemplateAccess) HasTenantIds

func (o *DeviceTemplateAccess) HasTenantIds() bool

HasTenantIds returns a boolean if a field has been set.

func (DeviceTemplateAccess) MarshalJSON

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

func (*DeviceTemplateAccess) SetGlobal

func (o *DeviceTemplateAccess) SetGlobal(v bool)

SetGlobal gets a reference to the given bool and assigns it to the Global field.

func (*DeviceTemplateAccess) SetTenantIds

func (o *DeviceTemplateAccess) SetTenantIds(v []string)

SetTenantIds gets a reference to the given []string and assigns it to the TenantIds field.

type DeviceTemplateAccessResponse

type DeviceTemplateAccessResponse struct {
	FailureListOfTenants *[]string `json:"failureListOfTenants,omitempty"`
	Global               *bool     `json:"global,omitempty"`
	SuccessListOfTenants *[]string `json:"successListOfTenants,omitempty"`
}

DeviceTemplateAccessResponse struct for DeviceTemplateAccessResponse

func NewDeviceTemplateAccessResponse

func NewDeviceTemplateAccessResponse() *DeviceTemplateAccessResponse

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

func NewDeviceTemplateAccessResponseWithDefaults

func NewDeviceTemplateAccessResponseWithDefaults() *DeviceTemplateAccessResponse

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

func (*DeviceTemplateAccessResponse) GetFailureListOfTenants

func (o *DeviceTemplateAccessResponse) GetFailureListOfTenants() []string

GetFailureListOfTenants returns the FailureListOfTenants field value if set, zero value otherwise.

func (*DeviceTemplateAccessResponse) GetFailureListOfTenantsOk

func (o *DeviceTemplateAccessResponse) GetFailureListOfTenantsOk() (*[]string, bool)

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

func (*DeviceTemplateAccessResponse) GetGlobal

func (o *DeviceTemplateAccessResponse) GetGlobal() bool

GetGlobal returns the Global field value if set, zero value otherwise.

func (*DeviceTemplateAccessResponse) GetGlobalOk

func (o *DeviceTemplateAccessResponse) GetGlobalOk() (*bool, bool)

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

func (*DeviceTemplateAccessResponse) GetSuccessListOfTenants

func (o *DeviceTemplateAccessResponse) GetSuccessListOfTenants() []string

GetSuccessListOfTenants returns the SuccessListOfTenants field value if set, zero value otherwise.

func (*DeviceTemplateAccessResponse) GetSuccessListOfTenantsOk

func (o *DeviceTemplateAccessResponse) GetSuccessListOfTenantsOk() (*[]string, bool)

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

func (*DeviceTemplateAccessResponse) HasFailureListOfTenants

func (o *DeviceTemplateAccessResponse) HasFailureListOfTenants() bool

HasFailureListOfTenants returns a boolean if a field has been set.

func (*DeviceTemplateAccessResponse) HasGlobal

func (o *DeviceTemplateAccessResponse) HasGlobal() bool

HasGlobal returns a boolean if a field has been set.

func (*DeviceTemplateAccessResponse) HasSuccessListOfTenants

func (o *DeviceTemplateAccessResponse) HasSuccessListOfTenants() bool

HasSuccessListOfTenants returns a boolean if a field has been set.

func (DeviceTemplateAccessResponse) MarshalJSON

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

func (*DeviceTemplateAccessResponse) SetFailureListOfTenants

func (o *DeviceTemplateAccessResponse) SetFailureListOfTenants(v []string)

SetFailureListOfTenants gets a reference to the given []string and assigns it to the FailureListOfTenants field.

func (*DeviceTemplateAccessResponse) SetGlobal

func (o *DeviceTemplateAccessResponse) SetGlobal(v bool)

SetGlobal gets a reference to the given bool and assigns it to the Global field.

func (*DeviceTemplateAccessResponse) SetSuccessListOfTenants

func (o *DeviceTemplateAccessResponse) SetSuccessListOfTenants(v []string)

SetSuccessListOfTenants gets a reference to the given []string and assigns it to the SuccessListOfTenants field.

type DeviceTemplateAllOf

type DeviceTemplateAllOf struct {
	Id        *string    `json:"id,omitempty"`
	UserId    *string    `json:"userId,omitempty"`
	CreatedOn *time.Time `json:"createdOn,omitempty"`
}

DeviceTemplateAllOf struct for DeviceTemplateAllOf

func NewDeviceTemplateAllOf

func NewDeviceTemplateAllOf() *DeviceTemplateAllOf

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

func NewDeviceTemplateAllOfWithDefaults

func NewDeviceTemplateAllOfWithDefaults() *DeviceTemplateAllOf

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

func (*DeviceTemplateAllOf) GetCreatedOn

func (o *DeviceTemplateAllOf) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*DeviceTemplateAllOf) GetCreatedOnOk

func (o *DeviceTemplateAllOf) GetCreatedOnOk() (*time.Time, bool)

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

func (*DeviceTemplateAllOf) GetId

func (o *DeviceTemplateAllOf) GetId() string

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

func (*DeviceTemplateAllOf) GetIdOk

func (o *DeviceTemplateAllOf) 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 (*DeviceTemplateAllOf) GetUserId

func (o *DeviceTemplateAllOf) GetUserId() string

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

func (*DeviceTemplateAllOf) GetUserIdOk

func (o *DeviceTemplateAllOf) GetUserIdOk() (*string, bool)

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

func (*DeviceTemplateAllOf) HasCreatedOn

func (o *DeviceTemplateAllOf) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*DeviceTemplateAllOf) HasId

func (o *DeviceTemplateAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*DeviceTemplateAllOf) HasUserId

func (o *DeviceTemplateAllOf) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (DeviceTemplateAllOf) MarshalJSON

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

func (*DeviceTemplateAllOf) SetCreatedOn

func (o *DeviceTemplateAllOf) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*DeviceTemplateAllOf) SetId

func (o *DeviceTemplateAllOf) SetId(v string)

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

func (*DeviceTemplateAllOf) SetUserId

func (o *DeviceTemplateAllOf) SetUserId(v string)

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

type DeviceTemplateAttachRequest

type DeviceTemplateAttachRequest struct {
	TemplateDetails *[]DeviceTemplateDetails `json:"templateDetails,omitempty"`
}

DeviceTemplateAttachRequest struct for DeviceTemplateAttachRequest

func NewDeviceTemplateAttachRequest

func NewDeviceTemplateAttachRequest() *DeviceTemplateAttachRequest

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

func NewDeviceTemplateAttachRequestWithDefaults

func NewDeviceTemplateAttachRequestWithDefaults() *DeviceTemplateAttachRequest

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

func (*DeviceTemplateAttachRequest) GetTemplateDetails

func (o *DeviceTemplateAttachRequest) GetTemplateDetails() []DeviceTemplateDetails

GetTemplateDetails returns the TemplateDetails field value if set, zero value otherwise.

func (*DeviceTemplateAttachRequest) GetTemplateDetailsOk

func (o *DeviceTemplateAttachRequest) GetTemplateDetailsOk() (*[]DeviceTemplateDetails, bool)

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

func (*DeviceTemplateAttachRequest) HasTemplateDetails

func (o *DeviceTemplateAttachRequest) HasTemplateDetails() bool

HasTemplateDetails returns a boolean if a field has been set.

func (DeviceTemplateAttachRequest) MarshalJSON

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

func (*DeviceTemplateAttachRequest) SetTemplateDetails

func (o *DeviceTemplateAttachRequest) SetTemplateDetails(v []DeviceTemplateDetails)

SetTemplateDetails gets a reference to the given []DeviceTemplateDetails and assigns it to the TemplateDetails field.

type DeviceTemplateCreate

type DeviceTemplateCreate struct {
	Name                        string                        `json:"name"`
	Description                 *string                       `json:"description,omitempty"`
	Version                     *string                       `json:"version,omitempty"`
	ServiceType                 string                        `json:"serviceType"`
	DeviceModels                *[]string                     `json:"deviceModels,omitempty"`
	ConfigContent               string                        `json:"configContent"`
	ResourceProvider            string                        `json:"resourceProvider"`
	TemplateStandard            *string                       `json:"templateStandard,omitempty"`
	TenantAccess                NullableDeviceTemplateAccess  `json:"tenantAccess,omitempty"`
	TemplateParameterValidators *[]TemplateParameterValidator `json:"templateParameterValidators,omitempty"`
}

DeviceTemplateCreate struct for DeviceTemplateCreate

func NewDeviceTemplateCreate

func NewDeviceTemplateCreate(name string, serviceType string, configContent string, resourceProvider string) *DeviceTemplateCreate

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

func NewDeviceTemplateCreateWithDefaults

func NewDeviceTemplateCreateWithDefaults() *DeviceTemplateCreate

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

func (*DeviceTemplateCreate) GetConfigContent

func (o *DeviceTemplateCreate) GetConfigContent() string

GetConfigContent returns the ConfigContent field value

func (*DeviceTemplateCreate) GetConfigContentOk

func (o *DeviceTemplateCreate) GetConfigContentOk() (*string, bool)

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

func (*DeviceTemplateCreate) GetDescription

func (o *DeviceTemplateCreate) GetDescription() string

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

func (*DeviceTemplateCreate) GetDescriptionOk

func (o *DeviceTemplateCreate) 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 (*DeviceTemplateCreate) GetDeviceModels

func (o *DeviceTemplateCreate) GetDeviceModels() []string

GetDeviceModels returns the DeviceModels field value if set, zero value otherwise.

func (*DeviceTemplateCreate) GetDeviceModelsOk

func (o *DeviceTemplateCreate) GetDeviceModelsOk() (*[]string, bool)

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

func (*DeviceTemplateCreate) GetName

func (o *DeviceTemplateCreate) GetName() string

GetName returns the Name field value

func (*DeviceTemplateCreate) GetNameOk

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

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

func (*DeviceTemplateCreate) GetResourceProvider

func (o *DeviceTemplateCreate) GetResourceProvider() string

GetResourceProvider returns the ResourceProvider field value

func (*DeviceTemplateCreate) GetResourceProviderOk

func (o *DeviceTemplateCreate) GetResourceProviderOk() (*string, bool)

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

func (*DeviceTemplateCreate) GetServiceType

func (o *DeviceTemplateCreate) GetServiceType() string

GetServiceType returns the ServiceType field value

func (*DeviceTemplateCreate) GetServiceTypeOk

func (o *DeviceTemplateCreate) GetServiceTypeOk() (*string, bool)

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

func (*DeviceTemplateCreate) GetTemplateParameterValidators

func (o *DeviceTemplateCreate) GetTemplateParameterValidators() []TemplateParameterValidator

GetTemplateParameterValidators returns the TemplateParameterValidators field value if set, zero value otherwise.

func (*DeviceTemplateCreate) GetTemplateParameterValidatorsOk

func (o *DeviceTemplateCreate) GetTemplateParameterValidatorsOk() (*[]TemplateParameterValidator, bool)

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

func (*DeviceTemplateCreate) GetTemplateStandard

func (o *DeviceTemplateCreate) GetTemplateStandard() string

GetTemplateStandard returns the TemplateStandard field value if set, zero value otherwise.

func (*DeviceTemplateCreate) GetTemplateStandardOk

func (o *DeviceTemplateCreate) GetTemplateStandardOk() (*string, bool)

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

func (*DeviceTemplateCreate) GetTenantAccess

func (o *DeviceTemplateCreate) GetTenantAccess() DeviceTemplateAccess

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

func (*DeviceTemplateCreate) GetTenantAccessOk

func (o *DeviceTemplateCreate) GetTenantAccessOk() (*DeviceTemplateAccess, bool)

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

func (*DeviceTemplateCreate) GetVersion

func (o *DeviceTemplateCreate) GetVersion() string

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

func (*DeviceTemplateCreate) GetVersionOk

func (o *DeviceTemplateCreate) GetVersionOk() (*string, bool)

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

func (*DeviceTemplateCreate) HasDescription

func (o *DeviceTemplateCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DeviceTemplateCreate) HasDeviceModels

func (o *DeviceTemplateCreate) HasDeviceModels() bool

HasDeviceModels returns a boolean if a field has been set.

func (*DeviceTemplateCreate) HasTemplateParameterValidators

func (o *DeviceTemplateCreate) HasTemplateParameterValidators() bool

HasTemplateParameterValidators returns a boolean if a field has been set.

func (*DeviceTemplateCreate) HasTemplateStandard

func (o *DeviceTemplateCreate) HasTemplateStandard() bool

HasTemplateStandard returns a boolean if a field has been set.

func (*DeviceTemplateCreate) HasTenantAccess

func (o *DeviceTemplateCreate) HasTenantAccess() bool

HasTenantAccess returns a boolean if a field has been set.

func (*DeviceTemplateCreate) HasVersion

func (o *DeviceTemplateCreate) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (DeviceTemplateCreate) MarshalJSON

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

func (*DeviceTemplateCreate) SetConfigContent

func (o *DeviceTemplateCreate) SetConfigContent(v string)

SetConfigContent sets field value

func (*DeviceTemplateCreate) SetDescription

func (o *DeviceTemplateCreate) SetDescription(v string)

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

func (*DeviceTemplateCreate) SetDeviceModels

func (o *DeviceTemplateCreate) SetDeviceModels(v []string)

SetDeviceModels gets a reference to the given []string and assigns it to the DeviceModels field.

func (*DeviceTemplateCreate) SetName

func (o *DeviceTemplateCreate) SetName(v string)

SetName sets field value

func (*DeviceTemplateCreate) SetResourceProvider

func (o *DeviceTemplateCreate) SetResourceProvider(v string)

SetResourceProvider sets field value

func (*DeviceTemplateCreate) SetServiceType

func (o *DeviceTemplateCreate) SetServiceType(v string)

SetServiceType sets field value

func (*DeviceTemplateCreate) SetTemplateParameterValidators

func (o *DeviceTemplateCreate) SetTemplateParameterValidators(v []TemplateParameterValidator)

SetTemplateParameterValidators gets a reference to the given []TemplateParameterValidator and assigns it to the TemplateParameterValidators field.

func (*DeviceTemplateCreate) SetTemplateStandard

func (o *DeviceTemplateCreate) SetTemplateStandard(v string)

SetTemplateStandard gets a reference to the given string and assigns it to the TemplateStandard field.

func (*DeviceTemplateCreate) SetTenantAccess

func (o *DeviceTemplateCreate) SetTenantAccess(v DeviceTemplateAccess)

SetTenantAccess gets a reference to the given NullableDeviceTemplateAccess and assigns it to the TenantAccess field.

func (*DeviceTemplateCreate) SetTenantAccessNil

func (o *DeviceTemplateCreate) SetTenantAccessNil()

SetTenantAccessNil sets the value for TenantAccess to be an explicit nil

func (*DeviceTemplateCreate) SetVersion

func (o *DeviceTemplateCreate) SetVersion(v string)

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

func (*DeviceTemplateCreate) UnsetTenantAccess

func (o *DeviceTemplateCreate) UnsetTenantAccess()

UnsetTenantAccess ensures that no value is present for TenantAccess, not even an explicit nil

type DeviceTemplateDetails

type DeviceTemplateDetails struct {
	TemplateId     *string      `json:"templateId,omitempty"`
	TemplateParams *[]NameValue `json:"templateParams,omitempty"`
}

DeviceTemplateDetails struct for DeviceTemplateDetails

func NewDeviceTemplateDetails

func NewDeviceTemplateDetails() *DeviceTemplateDetails

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

func NewDeviceTemplateDetailsWithDefaults

func NewDeviceTemplateDetailsWithDefaults() *DeviceTemplateDetails

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

func (*DeviceTemplateDetails) GetTemplateId

func (o *DeviceTemplateDetails) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*DeviceTemplateDetails) GetTemplateIdOk

func (o *DeviceTemplateDetails) GetTemplateIdOk() (*string, bool)

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

func (*DeviceTemplateDetails) GetTemplateParams

func (o *DeviceTemplateDetails) GetTemplateParams() []NameValue

GetTemplateParams returns the TemplateParams field value if set, zero value otherwise.

func (*DeviceTemplateDetails) GetTemplateParamsOk

func (o *DeviceTemplateDetails) GetTemplateParamsOk() (*[]NameValue, bool)

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

func (*DeviceTemplateDetails) HasTemplateId

func (o *DeviceTemplateDetails) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*DeviceTemplateDetails) HasTemplateParams

func (o *DeviceTemplateDetails) HasTemplateParams() bool

HasTemplateParams returns a boolean if a field has been set.

func (DeviceTemplateDetails) MarshalJSON

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

func (*DeviceTemplateDetails) SetTemplateId

func (o *DeviceTemplateDetails) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*DeviceTemplateDetails) SetTemplateParams

func (o *DeviceTemplateDetails) SetTemplateParams(v []NameValue)

SetTemplateParams gets a reference to the given []NameValue and assigns it to the TemplateParams field.

type DeviceTemplateHistory

type DeviceTemplateHistory struct {
	Id             *string      `json:"id,omitempty"`
	DeviceId       *string      `json:"deviceId,omitempty"`
	TemplateId     *string      `json:"templateId,omitempty"`
	UserId         *string      `json:"userId,omitempty"`
	Status         *string      `json:"status,omitempty"`
	StatusError    *string      `json:"statusError,omitempty"`
	TemplateParams *[]NameValue `json:"templateParams,omitempty"`
	ModifiedOn     *time.Time   `json:"modifiedOn,omitempty"`
}

DeviceTemplateHistory struct for DeviceTemplateHistory

func NewDeviceTemplateHistory

func NewDeviceTemplateHistory() *DeviceTemplateHistory

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

func NewDeviceTemplateHistoryWithDefaults

func NewDeviceTemplateHistoryWithDefaults() *DeviceTemplateHistory

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

func (*DeviceTemplateHistory) GetDeviceId

func (o *DeviceTemplateHistory) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*DeviceTemplateHistory) GetDeviceIdOk

func (o *DeviceTemplateHistory) GetDeviceIdOk() (*string, bool)

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

func (*DeviceTemplateHistory) GetId

func (o *DeviceTemplateHistory) GetId() string

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

func (*DeviceTemplateHistory) GetIdOk

func (o *DeviceTemplateHistory) 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 (*DeviceTemplateHistory) GetModifiedOn

func (o *DeviceTemplateHistory) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise.

func (*DeviceTemplateHistory) GetModifiedOnOk

func (o *DeviceTemplateHistory) GetModifiedOnOk() (*time.Time, bool)

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

func (*DeviceTemplateHistory) GetStatus

func (o *DeviceTemplateHistory) GetStatus() string

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

func (*DeviceTemplateHistory) GetStatusError

func (o *DeviceTemplateHistory) GetStatusError() string

GetStatusError returns the StatusError field value if set, zero value otherwise.

func (*DeviceTemplateHistory) GetStatusErrorOk

func (o *DeviceTemplateHistory) GetStatusErrorOk() (*string, bool)

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

func (*DeviceTemplateHistory) GetStatusOk

func (o *DeviceTemplateHistory) 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 (*DeviceTemplateHistory) GetTemplateId

func (o *DeviceTemplateHistory) GetTemplateId() string

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*DeviceTemplateHistory) GetTemplateIdOk

func (o *DeviceTemplateHistory) GetTemplateIdOk() (*string, bool)

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

func (*DeviceTemplateHistory) GetTemplateParams

func (o *DeviceTemplateHistory) GetTemplateParams() []NameValue

GetTemplateParams returns the TemplateParams field value if set, zero value otherwise.

func (*DeviceTemplateHistory) GetTemplateParamsOk

func (o *DeviceTemplateHistory) GetTemplateParamsOk() (*[]NameValue, bool)

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

func (*DeviceTemplateHistory) GetUserId

func (o *DeviceTemplateHistory) GetUserId() string

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

func (*DeviceTemplateHistory) GetUserIdOk

func (o *DeviceTemplateHistory) GetUserIdOk() (*string, bool)

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

func (*DeviceTemplateHistory) HasDeviceId

func (o *DeviceTemplateHistory) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*DeviceTemplateHistory) HasId

func (o *DeviceTemplateHistory) HasId() bool

HasId returns a boolean if a field has been set.

func (*DeviceTemplateHistory) HasModifiedOn

func (o *DeviceTemplateHistory) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*DeviceTemplateHistory) HasStatus

func (o *DeviceTemplateHistory) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DeviceTemplateHistory) HasStatusError

func (o *DeviceTemplateHistory) HasStatusError() bool

HasStatusError returns a boolean if a field has been set.

func (*DeviceTemplateHistory) HasTemplateId

func (o *DeviceTemplateHistory) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*DeviceTemplateHistory) HasTemplateParams

func (o *DeviceTemplateHistory) HasTemplateParams() bool

HasTemplateParams returns a boolean if a field has been set.

func (*DeviceTemplateHistory) HasUserId

func (o *DeviceTemplateHistory) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (DeviceTemplateHistory) MarshalJSON

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

func (*DeviceTemplateHistory) SetDeviceId

func (o *DeviceTemplateHistory) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*DeviceTemplateHistory) SetId

func (o *DeviceTemplateHistory) SetId(v string)

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

func (*DeviceTemplateHistory) SetModifiedOn

func (o *DeviceTemplateHistory) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given time.Time and assigns it to the ModifiedOn field.

func (*DeviceTemplateHistory) SetStatus

func (o *DeviceTemplateHistory) SetStatus(v string)

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

func (*DeviceTemplateHistory) SetStatusError

func (o *DeviceTemplateHistory) SetStatusError(v string)

SetStatusError gets a reference to the given string and assigns it to the StatusError field.

func (*DeviceTemplateHistory) SetTemplateId

func (o *DeviceTemplateHistory) SetTemplateId(v string)

SetTemplateId gets a reference to the given string and assigns it to the TemplateId field.

func (*DeviceTemplateHistory) SetTemplateParams

func (o *DeviceTemplateHistory) SetTemplateParams(v []NameValue)

SetTemplateParams gets a reference to the given []NameValue and assigns it to the TemplateParams field.

func (*DeviceTemplateHistory) SetUserId

func (o *DeviceTemplateHistory) SetUserId(v string)

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

type DeviceTemplateUpdateDetails

type DeviceTemplateUpdateDetails struct {
	TemplateHistoryId *string      `json:"templateHistoryId,omitempty"`
	TemplateParams    *[]NameValue `json:"templateParams,omitempty"`
}

DeviceTemplateUpdateDetails struct for DeviceTemplateUpdateDetails

func NewDeviceTemplateUpdateDetails

func NewDeviceTemplateUpdateDetails() *DeviceTemplateUpdateDetails

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

func NewDeviceTemplateUpdateDetailsWithDefaults

func NewDeviceTemplateUpdateDetailsWithDefaults() *DeviceTemplateUpdateDetails

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

func (*DeviceTemplateUpdateDetails) GetTemplateHistoryId

func (o *DeviceTemplateUpdateDetails) GetTemplateHistoryId() string

GetTemplateHistoryId returns the TemplateHistoryId field value if set, zero value otherwise.

func (*DeviceTemplateUpdateDetails) GetTemplateHistoryIdOk

func (o *DeviceTemplateUpdateDetails) GetTemplateHistoryIdOk() (*string, bool)

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

func (*DeviceTemplateUpdateDetails) GetTemplateParams

func (o *DeviceTemplateUpdateDetails) GetTemplateParams() []NameValue

GetTemplateParams returns the TemplateParams field value if set, zero value otherwise.

func (*DeviceTemplateUpdateDetails) GetTemplateParamsOk

func (o *DeviceTemplateUpdateDetails) GetTemplateParamsOk() (*[]NameValue, bool)

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

func (*DeviceTemplateUpdateDetails) HasTemplateHistoryId

func (o *DeviceTemplateUpdateDetails) HasTemplateHistoryId() bool

HasTemplateHistoryId returns a boolean if a field has been set.

func (*DeviceTemplateUpdateDetails) HasTemplateParams

func (o *DeviceTemplateUpdateDetails) HasTemplateParams() bool

HasTemplateParams returns a boolean if a field has been set.

func (DeviceTemplateUpdateDetails) MarshalJSON

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

func (*DeviceTemplateUpdateDetails) SetTemplateHistoryId

func (o *DeviceTemplateUpdateDetails) SetTemplateHistoryId(v string)

SetTemplateHistoryId gets a reference to the given string and assigns it to the TemplateHistoryId field.

func (*DeviceTemplateUpdateDetails) SetTemplateParams

func (o *DeviceTemplateUpdateDetails) SetTemplateParams(v []NameValue)

SetTemplateParams gets a reference to the given []NameValue and assigns it to the TemplateParams field.

type DeviceTemplateUpdateRequest

type DeviceTemplateUpdateRequest struct {
	TemplateDetails *[]DeviceTemplateUpdateDetails `json:"templateDetails,omitempty"`
}

DeviceTemplateUpdateRequest struct for DeviceTemplateUpdateRequest

func NewDeviceTemplateUpdateRequest

func NewDeviceTemplateUpdateRequest() *DeviceTemplateUpdateRequest

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

func NewDeviceTemplateUpdateRequestWithDefaults

func NewDeviceTemplateUpdateRequestWithDefaults() *DeviceTemplateUpdateRequest

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

func (*DeviceTemplateUpdateRequest) GetTemplateDetails

func (o *DeviceTemplateUpdateRequest) GetTemplateDetails() []DeviceTemplateUpdateDetails

GetTemplateDetails returns the TemplateDetails field value if set, zero value otherwise.

func (*DeviceTemplateUpdateRequest) GetTemplateDetailsOk

func (o *DeviceTemplateUpdateRequest) GetTemplateDetailsOk() (*[]DeviceTemplateUpdateDetails, bool)

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

func (*DeviceTemplateUpdateRequest) HasTemplateDetails

func (o *DeviceTemplateUpdateRequest) HasTemplateDetails() bool

HasTemplateDetails returns a boolean if a field has been set.

func (DeviceTemplateUpdateRequest) MarshalJSON

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

func (*DeviceTemplateUpdateRequest) SetTemplateDetails

func (o *DeviceTemplateUpdateRequest) SetTemplateDetails(v []DeviceTemplateUpdateDetails)

SetTemplateDetails gets a reference to the given []DeviceTemplateUpdateDetails and assigns it to the TemplateDetails field.

type DeviceTemplatesApiService

type DeviceTemplatesApiService service

DeviceTemplatesApiService DeviceTemplatesApi service

func (*DeviceTemplatesApiService) CreateDeviceTemplate

* CreateDeviceTemplate Creates a device template. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateDeviceTemplateRequest

func (*DeviceTemplatesApiService) CreateDeviceTemplateExecute

* Execute executes the request * @return DeviceTemplate

func (*DeviceTemplatesApiService) DeleteDeviceTemplate

* DeleteDeviceTemplate Deletes a device template. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteDeviceTemplateRequest

func (*DeviceTemplatesApiService) DeleteDeviceTemplateExecute

func (a *DeviceTemplatesApiService) DeleteDeviceTemplateExecute(r ApiDeleteDeviceTemplateRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*DeviceTemplatesApiService) GetDeviceTemplate

* GetDeviceTemplate Returns a device template. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetDeviceTemplateRequest

func (*DeviceTemplatesApiService) GetDeviceTemplateExecute

* Execute executes the request * @return DeviceTemplate

func (*DeviceTemplatesApiService) GetDeviceTemplatesList

* GetDeviceTemplatesList Returns a list of device templates. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetDeviceTemplatesListRequest

func (*DeviceTemplatesApiService) GetDeviceTemplatesListExecute

* Execute executes the request * @return []DeviceTemplate

func (*DeviceTemplatesApiService) ScanDeviceTemplateParameters

* ScanDeviceTemplateParameters API to scan parameters from the device template XML. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiScanDeviceTemplateParametersRequest

func (*DeviceTemplatesApiService) ScanDeviceTemplateParametersExecute

func (a *DeviceTemplatesApiService) ScanDeviceTemplateParametersExecute(r ApiScanDeviceTemplateParametersRequest) ([]string, *_nethttp.Response, error)

* Execute executes the request * @return []string

func (*DeviceTemplatesApiService) UpdateDeviceTemplateAccess

* UpdateDeviceTemplateAccess Updates device template access. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateDeviceTemplateAccessRequest

func (*DeviceTemplatesApiService) UpdateDeviceTemplateAccessExecute

* Execute executes the request * @return DeviceTemplateAccessResponse

type DeviceUpdate

type DeviceUpdate struct {
	Name               string             `json:"name"`
	Model              string             `json:"model"`
	Type               string             `json:"type"`
	SubType            *string            `json:"subType,omitempty"`
	ServiceType        *string            `json:"serviceType,omitempty"`
	Tags               *map[string]string `json:"tags,omitempty"`
	SerialKey          string             `json:"serialKey"`
	Version            string             `json:"version"`
	Managed            bool               `json:"managed"`
	OnboardType        *string            `json:"onboardType,omitempty"`
	OnboardInformation *map[string]string `json:"onboardInformation,omitempty"`
	Attributes         *map[string]string `json:"attributes,omitempty"`
	Billing            *DeviceBilling     `json:"billing,omitempty"`
}

DeviceUpdate struct for DeviceUpdate

func NewDeviceUpdate

func NewDeviceUpdate(name string, model string, type_ string, serialKey string, version string, managed bool) *DeviceUpdate

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

func NewDeviceUpdateWithDefaults

func NewDeviceUpdateWithDefaults() *DeviceUpdate

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

func (*DeviceUpdate) GetAttributes

func (o *DeviceUpdate) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*DeviceUpdate) GetAttributesOk

func (o *DeviceUpdate) GetAttributesOk() (*map[string]string, bool)

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

func (*DeviceUpdate) GetBilling

func (o *DeviceUpdate) GetBilling() DeviceBilling

GetBilling returns the Billing field value if set, zero value otherwise.

func (*DeviceUpdate) GetBillingOk

func (o *DeviceUpdate) GetBillingOk() (*DeviceBilling, bool)

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

func (*DeviceUpdate) GetManaged

func (o *DeviceUpdate) GetManaged() bool

GetManaged returns the Managed field value

func (*DeviceUpdate) GetManagedOk

func (o *DeviceUpdate) GetManagedOk() (*bool, bool)

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

func (*DeviceUpdate) GetModel

func (o *DeviceUpdate) GetModel() string

GetModel returns the Model field value

func (*DeviceUpdate) GetModelOk

func (o *DeviceUpdate) GetModelOk() (*string, bool)

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

func (*DeviceUpdate) GetName

func (o *DeviceUpdate) GetName() string

GetName returns the Name field value

func (*DeviceUpdate) GetNameOk

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

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

func (*DeviceUpdate) GetOnboardInformation

func (o *DeviceUpdate) GetOnboardInformation() map[string]string

GetOnboardInformation returns the OnboardInformation field value if set, zero value otherwise.

func (*DeviceUpdate) GetOnboardInformationOk

func (o *DeviceUpdate) GetOnboardInformationOk() (*map[string]string, bool)

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

func (*DeviceUpdate) GetOnboardType

func (o *DeviceUpdate) GetOnboardType() string

GetOnboardType returns the OnboardType field value if set, zero value otherwise.

func (*DeviceUpdate) GetOnboardTypeOk

func (o *DeviceUpdate) GetOnboardTypeOk() (*string, bool)

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

func (*DeviceUpdate) GetSerialKey

func (o *DeviceUpdate) GetSerialKey() string

GetSerialKey returns the SerialKey field value

func (*DeviceUpdate) GetSerialKeyOk

func (o *DeviceUpdate) GetSerialKeyOk() (*string, bool)

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

func (*DeviceUpdate) GetServiceType

func (o *DeviceUpdate) GetServiceType() string

GetServiceType returns the ServiceType field value if set, zero value otherwise.

func (*DeviceUpdate) GetServiceTypeOk

func (o *DeviceUpdate) GetServiceTypeOk() (*string, bool)

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

func (*DeviceUpdate) GetSubType

func (o *DeviceUpdate) GetSubType() string

GetSubType returns the SubType field value if set, zero value otherwise.

func (*DeviceUpdate) GetSubTypeOk

func (o *DeviceUpdate) GetSubTypeOk() (*string, bool)

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

func (*DeviceUpdate) GetTags

func (o *DeviceUpdate) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*DeviceUpdate) GetTagsOk

func (o *DeviceUpdate) GetTagsOk() (*map[string]string, bool)

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

func (*DeviceUpdate) GetType

func (o *DeviceUpdate) GetType() string

GetType returns the Type field value

func (*DeviceUpdate) GetTypeOk

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

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

func (*DeviceUpdate) GetVersion

func (o *DeviceUpdate) GetVersion() string

GetVersion returns the Version field value

func (*DeviceUpdate) GetVersionOk

func (o *DeviceUpdate) GetVersionOk() (*string, bool)

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

func (*DeviceUpdate) HasAttributes

func (o *DeviceUpdate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*DeviceUpdate) HasBilling

func (o *DeviceUpdate) HasBilling() bool

HasBilling returns a boolean if a field has been set.

func (*DeviceUpdate) HasOnboardInformation

func (o *DeviceUpdate) HasOnboardInformation() bool

HasOnboardInformation returns a boolean if a field has been set.

func (*DeviceUpdate) HasOnboardType

func (o *DeviceUpdate) HasOnboardType() bool

HasOnboardType returns a boolean if a field has been set.

func (*DeviceUpdate) HasServiceType

func (o *DeviceUpdate) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (*DeviceUpdate) HasSubType

func (o *DeviceUpdate) HasSubType() bool

HasSubType returns a boolean if a field has been set.

func (*DeviceUpdate) HasTags

func (o *DeviceUpdate) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DeviceUpdate) MarshalJSON

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

func (*DeviceUpdate) SetAttributes

func (o *DeviceUpdate) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*DeviceUpdate) SetBilling

func (o *DeviceUpdate) SetBilling(v DeviceBilling)

SetBilling gets a reference to the given DeviceBilling and assigns it to the Billing field.

func (*DeviceUpdate) SetManaged

func (o *DeviceUpdate) SetManaged(v bool)

SetManaged sets field value

func (*DeviceUpdate) SetModel

func (o *DeviceUpdate) SetModel(v string)

SetModel sets field value

func (*DeviceUpdate) SetName

func (o *DeviceUpdate) SetName(v string)

SetName sets field value

func (*DeviceUpdate) SetOnboardInformation

func (o *DeviceUpdate) SetOnboardInformation(v map[string]string)

SetOnboardInformation gets a reference to the given map[string]string and assigns it to the OnboardInformation field.

func (*DeviceUpdate) SetOnboardType

func (o *DeviceUpdate) SetOnboardType(v string)

SetOnboardType gets a reference to the given string and assigns it to the OnboardType field.

func (*DeviceUpdate) SetSerialKey

func (o *DeviceUpdate) SetSerialKey(v string)

SetSerialKey sets field value

func (*DeviceUpdate) SetServiceType

func (o *DeviceUpdate) SetServiceType(v string)

SetServiceType gets a reference to the given string and assigns it to the ServiceType field.

func (*DeviceUpdate) SetSubType

func (o *DeviceUpdate) SetSubType(v string)

SetSubType gets a reference to the given string and assigns it to the SubType field.

func (*DeviceUpdate) SetTags

func (o *DeviceUpdate) SetTags(v map[string]string)

SetTags gets a reference to the given map[string]string and assigns it to the Tags field.

func (*DeviceUpdate) SetType

func (o *DeviceUpdate) SetType(v string)

SetType sets field value

func (*DeviceUpdate) SetVersion

func (o *DeviceUpdate) SetVersion(v string)

SetVersion sets field value

type DevicesApiService

type DevicesApiService service

DevicesApiService DevicesApi service

func (*DevicesApiService) AttachDeviceTemplates

func (a *DevicesApiService) AttachDeviceTemplates(ctx _context.Context, id string) ApiAttachDeviceTemplatesRequest

* AttachDeviceTemplates Attaches one or more device templates to a device instance. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiAttachDeviceTemplatesRequest

func (*DevicesApiService) AttachDeviceTemplatesExecute

* Execute executes the request * @return []DeviceTemplateHistory

func (*DevicesApiService) CreateDevice

* CreateDevice Creates a device. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateDeviceRequest

func (*DevicesApiService) CreateDeviceExecute

func (a *DevicesApiService) CreateDeviceExecute(r ApiCreateDeviceRequest) (Device, *_nethttp.Response, error)

* Execute executes the request * @return Device

func (*DevicesApiService) DeleteDevice

* DeleteDevice Deletes a device. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteDeviceRequest

func (*DevicesApiService) DeleteDeviceExecute

func (a *DevicesApiService) DeleteDeviceExecute(r ApiDeleteDeviceRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*DevicesApiService) DetachDeviceTemplate

func (a *DevicesApiService) DetachDeviceTemplate(ctx _context.Context, id string, templateId string) ApiDetachDeviceTemplateRequest

* DetachDeviceTemplate Detaches a template from a device. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @param templateId * @return ApiDetachDeviceTemplateRequest

func (*DevicesApiService) DetachDeviceTemplateExecute

* Execute executes the request * @return []DeviceTemplateHistory

func (*DevicesApiService) DetachDeviceTemplates

func (a *DevicesApiService) DetachDeviceTemplates(ctx _context.Context, id string) ApiDetachDeviceTemplatesRequest

* DetachDeviceTemplates Detach device templates that are already attached to a device. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDetachDeviceTemplatesRequest

func (*DevicesApiService) DetachDeviceTemplatesExecute

* Execute executes the request * @return []DeviceTemplateHistory

func (*DevicesApiService) GetDevice

* GetDevice Returns a device. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetDeviceRequest

func (*DevicesApiService) GetDeviceConfig

* GetDeviceConfig Returns the running configuration for a device. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetDeviceConfigRequest

func (*DevicesApiService) GetDeviceConfigExecute

func (a *DevicesApiService) GetDeviceConfigExecute(r ApiGetDeviceConfigRequest) (string, *_nethttp.Response, error)

* Execute executes the request * @return string

func (*DevicesApiService) GetDeviceExecute

func (a *DevicesApiService) GetDeviceExecute(r ApiGetDeviceRequest) (Device, *_nethttp.Response, error)

* Execute executes the request * @return Device

func (*DevicesApiService) GetDeviceTemplateHistory

func (a *DevicesApiService) GetDeviceTemplateHistory(ctx _context.Context, id string) ApiGetDeviceTemplateHistoryRequest

* GetDeviceTemplateHistory Returns device template history. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetDeviceTemplateHistoryRequest

func (*DevicesApiService) GetDeviceTemplateHistoryExecute

* Execute executes the request * @return []DeviceTemplateHistory

func (*DevicesApiService) GetDevicesPage

* GetDevicesPage Returns a page of devices. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetDevicesPageRequest

func (*DevicesApiService) GetDevicesPageExecute

* Execute executes the request * @return DevicesPage

func (*DevicesApiService) RedeployDevice

* RedeployDevice Dedeploys a device. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiRedeployDeviceRequest

func (*DevicesApiService) RedeployDeviceExecute

func (a *DevicesApiService) RedeployDeviceExecute(r ApiRedeployDeviceRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*DevicesApiService) UpdateDeviceTemplates

func (a *DevicesApiService) UpdateDeviceTemplates(ctx _context.Context, id string) ApiUpdateDeviceTemplatesRequest

* UpdateDeviceTemplates Update device templates that are already attached to a device. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateDeviceTemplatesRequest

func (*DevicesApiService) UpdateDeviceTemplatesExecute

* Execute executes the request * @return []DeviceTemplateHistory

type DevicesPage

type DevicesPage struct {
	Page        *int32       `json:"page,omitempty"`
	PageSize    *int32       `json:"pageSize,omitempty"`
	TotalItems  *int64       `json:"totalItems,omitempty"`
	HasNext     NullableBool `json:"hasNext,omitempty"`
	HasPrevious NullableBool `json:"hasPrevious,omitempty"`
	SortBy      *string      `json:"sortBy,omitempty"`
	SortOrder   *string      `json:"sortOrder,omitempty"`
	Contents    *[]Device    `json:"contents,omitempty"`
}

DevicesPage struct for DevicesPage

func NewDevicesPage

func NewDevicesPage() *DevicesPage

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

func NewDevicesPageWithDefaults

func NewDevicesPageWithDefaults() *DevicesPage

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

func (*DevicesPage) GetContents

func (o *DevicesPage) GetContents() []Device

GetContents returns the Contents field value if set, zero value otherwise.

func (*DevicesPage) GetContentsOk

func (o *DevicesPage) GetContentsOk() (*[]Device, bool)

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

func (*DevicesPage) GetHasNext

func (o *DevicesPage) GetHasNext() bool

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

func (*DevicesPage) GetHasNextOk

func (o *DevicesPage) GetHasNextOk() (*bool, bool)

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

func (*DevicesPage) GetHasPrevious

func (o *DevicesPage) GetHasPrevious() bool

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

func (*DevicesPage) GetHasPreviousOk

func (o *DevicesPage) GetHasPreviousOk() (*bool, bool)

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

func (*DevicesPage) GetPage

func (o *DevicesPage) GetPage() int32

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

func (*DevicesPage) GetPageOk

func (o *DevicesPage) GetPageOk() (*int32, bool)

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

func (*DevicesPage) GetPageSize

func (o *DevicesPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*DevicesPage) GetPageSizeOk

func (o *DevicesPage) GetPageSizeOk() (*int32, bool)

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

func (*DevicesPage) GetSortBy

func (o *DevicesPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise.

func (*DevicesPage) GetSortByOk

func (o *DevicesPage) GetSortByOk() (*string, bool)

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

func (*DevicesPage) GetSortOrder

func (o *DevicesPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*DevicesPage) GetSortOrderOk

func (o *DevicesPage) GetSortOrderOk() (*string, bool)

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

func (*DevicesPage) GetTotalItems

func (o *DevicesPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*DevicesPage) GetTotalItemsOk

func (o *DevicesPage) GetTotalItemsOk() (*int64, bool)

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

func (*DevicesPage) HasContents

func (o *DevicesPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*DevicesPage) HasHasNext

func (o *DevicesPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*DevicesPage) HasHasPrevious

func (o *DevicesPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*DevicesPage) HasPage

func (o *DevicesPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*DevicesPage) HasPageSize

func (o *DevicesPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*DevicesPage) HasSortBy

func (o *DevicesPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*DevicesPage) HasSortOrder

func (o *DevicesPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*DevicesPage) HasTotalItems

func (o *DevicesPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (DevicesPage) MarshalJSON

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

func (*DevicesPage) SetContents

func (o *DevicesPage) SetContents(v []Device)

SetContents gets a reference to the given []Device and assigns it to the Contents field.

func (*DevicesPage) SetHasNext

func (o *DevicesPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*DevicesPage) SetHasNextNil

func (o *DevicesPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*DevicesPage) SetHasPrevious

func (o *DevicesPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*DevicesPage) SetHasPreviousNil

func (o *DevicesPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*DevicesPage) SetPage

func (o *DevicesPage) SetPage(v int32)

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

func (*DevicesPage) SetPageSize

func (o *DevicesPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*DevicesPage) SetSortBy

func (o *DevicesPage) SetSortBy(v string)

SetSortBy gets a reference to the given string and assigns it to the SortBy field.

func (*DevicesPage) SetSortOrder

func (o *DevicesPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given string and assigns it to the SortOrder field.

func (*DevicesPage) SetTotalItems

func (o *DevicesPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given int64 and assigns it to the TotalItems field.

func (*DevicesPage) UnsetHasNext

func (o *DevicesPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*DevicesPage) UnsetHasPrevious

func (o *DevicesPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

type DevicesPageAllOf

type DevicesPageAllOf struct {
	Contents *[]Device `json:"contents,omitempty"`
}

DevicesPageAllOf struct for DevicesPageAllOf

func NewDevicesPageAllOf

func NewDevicesPageAllOf() *DevicesPageAllOf

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

func NewDevicesPageAllOfWithDefaults

func NewDevicesPageAllOfWithDefaults() *DevicesPageAllOf

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

func (*DevicesPageAllOf) GetContents

func (o *DevicesPageAllOf) GetContents() []Device

GetContents returns the Contents field value if set, zero value otherwise.

func (*DevicesPageAllOf) GetContentsOk

func (o *DevicesPageAllOf) GetContentsOk() (*[]Device, bool)

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

func (*DevicesPageAllOf) HasContents

func (o *DevicesPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (DevicesPageAllOf) MarshalJSON

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

func (*DevicesPageAllOf) SetContents

func (o *DevicesPageAllOf) SetContents(v []Device)

SetContents gets a reference to the given []Device and assigns it to the Contents field.

type Error

type Error struct {
	Code    *string `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

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

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

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

func (*Error) GetCode

func (o *Error) GetCode() string

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

func (*Error) GetCodeOk

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

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

func (*Error) GetMessage

func (o *Error) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Error) GetMessageOk

func (o *Error) GetMessageOk() (*string, bool)

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

func (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasMessage

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Error) MarshalJSON

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

func (*Error) SetCode

func (o *Error) SetCode(v string)

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

func (*Error) SetMessage

func (o *Error) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

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 HealthApiService

type HealthApiService service

HealthApiService HealthApi service

func (*HealthApiService) GetDevicesHealthList

func (a *HealthApiService) GetDevicesHealthList(ctx _context.Context) ApiGetDevicesHealthListRequest

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

func (*HealthApiService) GetDevicesHealthListExecute

func (a *HealthApiService) GetDevicesHealthListExecute(r ApiGetDevicesHealthListRequest) ([]ResourceHealth, *_nethttp.Response, error)

* Execute executes the request * @return []ResourceHealth

func (*HealthApiService) GetServicesHealthList

func (a *HealthApiService) GetServicesHealthList(ctx _context.Context) ApiGetServicesHealthListRequest

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

func (*HealthApiService) GetServicesHealthListExecute

func (a *HealthApiService) GetServicesHealthListExecute(r ApiGetServicesHealthListRequest) ([]ResourceHealth, *_nethttp.Response, error)

* Execute executes the request * @return []ResourceHealth

type LegacyAbsoluteConfig

type LegacyAbsoluteConfig struct {
	DateTime *string `json:"dateTime,omitempty"`
}

LegacyAbsoluteConfig struct for LegacyAbsoluteConfig

func NewLegacyAbsoluteConfig

func NewLegacyAbsoluteConfig() *LegacyAbsoluteConfig

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

func NewLegacyAbsoluteConfigWithDefaults

func NewLegacyAbsoluteConfigWithDefaults() *LegacyAbsoluteConfig

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

func (*LegacyAbsoluteConfig) GetDateTime

func (o *LegacyAbsoluteConfig) GetDateTime() string

GetDateTime returns the DateTime field value if set, zero value otherwise.

func (*LegacyAbsoluteConfig) GetDateTimeOk

func (o *LegacyAbsoluteConfig) GetDateTimeOk() (*string, bool)

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

func (*LegacyAbsoluteConfig) HasDateTime

func (o *LegacyAbsoluteConfig) HasDateTime() bool

HasDateTime returns a boolean if a field has been set.

func (LegacyAbsoluteConfig) MarshalJSON

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

func (*LegacyAbsoluteConfig) SetDateTime

func (o *LegacyAbsoluteConfig) SetDateTime(v string)

SetDateTime gets a reference to the given string and assigns it to the DateTime field.

type LegacyAddress

type LegacyAddress struct {
	Name        *string `json:"name,omitempty"`
	DisplayName *string `json:"display_name,omitempty"`
	Company     *string `json:"company,omitempty"`
	Address1    *string `json:"address1,omitempty"`
	Address2    *string `json:"address2,omitempty"`
	City        *string `json:"city,omitempty"`
	State       *string `json:"state,omitempty"`
	Country     *string `json:"country,omitempty"`
	PostCode    *string `json:"postCode,omitempty"`
}

LegacyAddress struct for LegacyAddress

func NewLegacyAddress

func NewLegacyAddress() *LegacyAddress

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

func NewLegacyAddressWithDefaults

func NewLegacyAddressWithDefaults() *LegacyAddress

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

func (*LegacyAddress) GetAddress1

func (o *LegacyAddress) GetAddress1() string

GetAddress1 returns the Address1 field value if set, zero value otherwise.

func (*LegacyAddress) GetAddress1Ok

func (o *LegacyAddress) GetAddress1Ok() (*string, bool)

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

func (*LegacyAddress) GetAddress2

func (o *LegacyAddress) GetAddress2() string

GetAddress2 returns the Address2 field value if set, zero value otherwise.

func (*LegacyAddress) GetAddress2Ok

func (o *LegacyAddress) GetAddress2Ok() (*string, bool)

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

func (*LegacyAddress) GetCity

func (o *LegacyAddress) GetCity() string

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

func (*LegacyAddress) GetCityOk

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

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

func (*LegacyAddress) GetCompany

func (o *LegacyAddress) GetCompany() string

GetCompany returns the Company field value if set, zero value otherwise.

func (*LegacyAddress) GetCompanyOk

func (o *LegacyAddress) GetCompanyOk() (*string, bool)

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

func (*LegacyAddress) GetCountry

func (o *LegacyAddress) GetCountry() string

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

func (*LegacyAddress) GetCountryOk

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

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

func (*LegacyAddress) GetDisplayName

func (o *LegacyAddress) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*LegacyAddress) GetDisplayNameOk

func (o *LegacyAddress) GetDisplayNameOk() (*string, bool)

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

func (*LegacyAddress) GetName

func (o *LegacyAddress) GetName() string

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

func (*LegacyAddress) GetNameOk

func (o *LegacyAddress) 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 (*LegacyAddress) GetPostCode

func (o *LegacyAddress) GetPostCode() string

GetPostCode returns the PostCode field value if set, zero value otherwise.

func (*LegacyAddress) GetPostCodeOk

func (o *LegacyAddress) GetPostCodeOk() (*string, bool)

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

func (*LegacyAddress) GetState

func (o *LegacyAddress) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*LegacyAddress) GetStateOk

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

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

func (*LegacyAddress) HasAddress1

func (o *LegacyAddress) HasAddress1() bool

HasAddress1 returns a boolean if a field has been set.

func (*LegacyAddress) HasAddress2

func (o *LegacyAddress) HasAddress2() bool

HasAddress2 returns a boolean if a field has been set.

func (*LegacyAddress) HasCity

func (o *LegacyAddress) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*LegacyAddress) HasCompany

func (o *LegacyAddress) HasCompany() bool

HasCompany returns a boolean if a field has been set.

func (*LegacyAddress) HasCountry

func (o *LegacyAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*LegacyAddress) HasDisplayName

func (o *LegacyAddress) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*LegacyAddress) HasName

func (o *LegacyAddress) HasName() bool

HasName returns a boolean if a field has been set.

func (*LegacyAddress) HasPostCode

func (o *LegacyAddress) HasPostCode() bool

HasPostCode returns a boolean if a field has been set.

func (*LegacyAddress) HasState

func (o *LegacyAddress) HasState() bool

HasState returns a boolean if a field has been set.

func (LegacyAddress) MarshalJSON

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

func (*LegacyAddress) SetAddress1

func (o *LegacyAddress) SetAddress1(v string)

SetAddress1 gets a reference to the given string and assigns it to the Address1 field.

func (*LegacyAddress) SetAddress2

func (o *LegacyAddress) SetAddress2(v string)

SetAddress2 gets a reference to the given string and assigns it to the Address2 field.

func (*LegacyAddress) SetCity

func (o *LegacyAddress) SetCity(v string)

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

func (*LegacyAddress) SetCompany

func (o *LegacyAddress) SetCompany(v string)

SetCompany gets a reference to the given string and assigns it to the Company field.

func (*LegacyAddress) SetCountry

func (o *LegacyAddress) SetCountry(v string)

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

func (*LegacyAddress) SetDisplayName

func (o *LegacyAddress) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*LegacyAddress) SetName

func (o *LegacyAddress) SetName(v string)

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

func (*LegacyAddress) SetPostCode

func (o *LegacyAddress) SetPostCode(v string)

SetPostCode gets a reference to the given string and assigns it to the PostCode field.

func (*LegacyAddress) SetState

func (o *LegacyAddress) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

type LegacyNsoResponseTypes

type LegacyNsoResponseTypes struct {
	CreateOperation *string `json:"createOperation,omitempty"`
	UpdateOperation *string `json:"updateOperation,omitempty"`
	DeleteOperation *string `json:"deleteOperation,omitempty"`
}

LegacyNsoResponseTypes struct for LegacyNsoResponseTypes

func NewLegacyNsoResponseTypes

func NewLegacyNsoResponseTypes() *LegacyNsoResponseTypes

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

func NewLegacyNsoResponseTypesWithDefaults

func NewLegacyNsoResponseTypesWithDefaults() *LegacyNsoResponseTypes

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

func (*LegacyNsoResponseTypes) GetCreateOperation

func (o *LegacyNsoResponseTypes) GetCreateOperation() string

GetCreateOperation returns the CreateOperation field value if set, zero value otherwise.

func (*LegacyNsoResponseTypes) GetCreateOperationOk

func (o *LegacyNsoResponseTypes) GetCreateOperationOk() (*string, bool)

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

func (*LegacyNsoResponseTypes) GetDeleteOperation

func (o *LegacyNsoResponseTypes) GetDeleteOperation() string

GetDeleteOperation returns the DeleteOperation field value if set, zero value otherwise.

func (*LegacyNsoResponseTypes) GetDeleteOperationOk

func (o *LegacyNsoResponseTypes) GetDeleteOperationOk() (*string, bool)

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

func (*LegacyNsoResponseTypes) GetUpdateOperation

func (o *LegacyNsoResponseTypes) GetUpdateOperation() string

GetUpdateOperation returns the UpdateOperation field value if set, zero value otherwise.

func (*LegacyNsoResponseTypes) GetUpdateOperationOk

func (o *LegacyNsoResponseTypes) GetUpdateOperationOk() (*string, bool)

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

func (*LegacyNsoResponseTypes) HasCreateOperation

func (o *LegacyNsoResponseTypes) HasCreateOperation() bool

HasCreateOperation returns a boolean if a field has been set.

func (*LegacyNsoResponseTypes) HasDeleteOperation

func (o *LegacyNsoResponseTypes) HasDeleteOperation() bool

HasDeleteOperation returns a boolean if a field has been set.

func (*LegacyNsoResponseTypes) HasUpdateOperation

func (o *LegacyNsoResponseTypes) HasUpdateOperation() bool

HasUpdateOperation returns a boolean if a field has been set.

func (LegacyNsoResponseTypes) MarshalJSON

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

func (*LegacyNsoResponseTypes) SetCreateOperation

func (o *LegacyNsoResponseTypes) SetCreateOperation(v string)

SetCreateOperation gets a reference to the given string and assigns it to the CreateOperation field.

func (*LegacyNsoResponseTypes) SetDeleteOperation

func (o *LegacyNsoResponseTypes) SetDeleteOperation(v string)

SetDeleteOperation gets a reference to the given string and assigns it to the DeleteOperation field.

func (*LegacyNsoResponseTypes) SetUpdateOperation

func (o *LegacyNsoResponseTypes) SetUpdateOperation(v string)

SetUpdateOperation gets a reference to the given string and assigns it to the UpdateOperation field.

type LegacyRelativeConfig

type LegacyRelativeConfig struct {
	ScheduleIn *string `json:"scheduleIn,omitempty"`
}

LegacyRelativeConfig struct for LegacyRelativeConfig

func NewLegacyRelativeConfig

func NewLegacyRelativeConfig() *LegacyRelativeConfig

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

func NewLegacyRelativeConfigWithDefaults

func NewLegacyRelativeConfigWithDefaults() *LegacyRelativeConfig

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

func (*LegacyRelativeConfig) GetScheduleIn

func (o *LegacyRelativeConfig) GetScheduleIn() string

GetScheduleIn returns the ScheduleIn field value if set, zero value otherwise.

func (*LegacyRelativeConfig) GetScheduleInOk

func (o *LegacyRelativeConfig) GetScheduleInOk() (*string, bool)

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

func (*LegacyRelativeConfig) HasScheduleIn

func (o *LegacyRelativeConfig) HasScheduleIn() bool

HasScheduleIn returns a boolean if a field has been set.

func (LegacyRelativeConfig) MarshalJSON

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

func (*LegacyRelativeConfig) SetScheduleIn

func (o *LegacyRelativeConfig) SetScheduleIn(v string)

SetScheduleIn gets a reference to the given string and assigns it to the ScheduleIn field.

type LegacyScheduleConfig

type LegacyScheduleConfig struct {
	Method   *string               `json:"method,omitempty"`
	Relative *LegacyRelativeConfig `json:"relative,omitempty"`
	Absolute *LegacyAbsoluteConfig `json:"absolute,omitempty"`
}

LegacyScheduleConfig struct for LegacyScheduleConfig

func NewLegacyScheduleConfig

func NewLegacyScheduleConfig() *LegacyScheduleConfig

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

func NewLegacyScheduleConfigWithDefaults

func NewLegacyScheduleConfigWithDefaults() *LegacyScheduleConfig

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

func (*LegacyScheduleConfig) GetAbsolute

func (o *LegacyScheduleConfig) GetAbsolute() LegacyAbsoluteConfig

GetAbsolute returns the Absolute field value if set, zero value otherwise.

func (*LegacyScheduleConfig) GetAbsoluteOk

func (o *LegacyScheduleConfig) GetAbsoluteOk() (*LegacyAbsoluteConfig, bool)

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

func (*LegacyScheduleConfig) GetMethod

func (o *LegacyScheduleConfig) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*LegacyScheduleConfig) GetMethodOk

func (o *LegacyScheduleConfig) GetMethodOk() (*string, bool)

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

func (*LegacyScheduleConfig) GetRelative

func (o *LegacyScheduleConfig) GetRelative() LegacyRelativeConfig

GetRelative returns the Relative field value if set, zero value otherwise.

func (*LegacyScheduleConfig) GetRelativeOk

func (o *LegacyScheduleConfig) GetRelativeOk() (*LegacyRelativeConfig, bool)

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

func (*LegacyScheduleConfig) HasAbsolute

func (o *LegacyScheduleConfig) HasAbsolute() bool

HasAbsolute returns a boolean if a field has been set.

func (*LegacyScheduleConfig) HasMethod

func (o *LegacyScheduleConfig) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*LegacyScheduleConfig) HasRelative

func (o *LegacyScheduleConfig) HasRelative() bool

HasRelative returns a boolean if a field has been set.

func (LegacyScheduleConfig) MarshalJSON

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

func (*LegacyScheduleConfig) SetAbsolute

func (o *LegacyScheduleConfig) SetAbsolute(v LegacyAbsoluteConfig)

SetAbsolute gets a reference to the given LegacyAbsoluteConfig and assigns it to the Absolute field.

func (*LegacyScheduleConfig) SetMethod

func (o *LegacyScheduleConfig) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*LegacyScheduleConfig) SetRelative

func (o *LegacyScheduleConfig) SetRelative(v LegacyRelativeConfig)

SetRelative gets a reference to the given LegacyRelativeConfig and assigns it to the Relative field.

type LegacyServiceOrder

type LegacyServiceOrder struct {
	MessageId       *string                   `json:"messageId,omitempty"`
	Type            *string                   `json:"type,omitempty"`
	ServiceType     *string                   `json:"serviceType,omitempty"`
	Action          *string                   `json:"action,omitempty"`
	Schedule        *LegacyScheduleConfig     `json:"schedule,omitempty"`
	Payload         *LegacyServiceOrderDetail `json:"payload,omitempty"`
	TransactionUUID *string                   `json:"transactionUUID,omitempty"`
}

LegacyServiceOrder struct for LegacyServiceOrder

func NewLegacyServiceOrder

func NewLegacyServiceOrder() *LegacyServiceOrder

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

func NewLegacyServiceOrderWithDefaults

func NewLegacyServiceOrderWithDefaults() *LegacyServiceOrder

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

func (*LegacyServiceOrder) GetAction

func (o *LegacyServiceOrder) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*LegacyServiceOrder) GetActionOk

func (o *LegacyServiceOrder) GetActionOk() (*string, bool)

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

func (*LegacyServiceOrder) GetMessageId

func (o *LegacyServiceOrder) GetMessageId() string

GetMessageId returns the MessageId field value if set, zero value otherwise.

func (*LegacyServiceOrder) GetMessageIdOk

func (o *LegacyServiceOrder) GetMessageIdOk() (*string, bool)

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

func (*LegacyServiceOrder) GetPayload

GetPayload returns the Payload field value if set, zero value otherwise.

func (*LegacyServiceOrder) GetPayloadOk

func (o *LegacyServiceOrder) GetPayloadOk() (*LegacyServiceOrderDetail, bool)

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

func (*LegacyServiceOrder) GetSchedule

func (o *LegacyServiceOrder) GetSchedule() LegacyScheduleConfig

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*LegacyServiceOrder) GetScheduleOk

func (o *LegacyServiceOrder) GetScheduleOk() (*LegacyScheduleConfig, bool)

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

func (*LegacyServiceOrder) GetServiceType

func (o *LegacyServiceOrder) GetServiceType() string

GetServiceType returns the ServiceType field value if set, zero value otherwise.

func (*LegacyServiceOrder) GetServiceTypeOk

func (o *LegacyServiceOrder) GetServiceTypeOk() (*string, bool)

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

func (*LegacyServiceOrder) GetTransactionUUID

func (o *LegacyServiceOrder) GetTransactionUUID() string

GetTransactionUUID returns the TransactionUUID field value if set, zero value otherwise.

func (*LegacyServiceOrder) GetTransactionUUIDOk

func (o *LegacyServiceOrder) GetTransactionUUIDOk() (*string, bool)

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

func (*LegacyServiceOrder) GetType

func (o *LegacyServiceOrder) GetType() string

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

func (*LegacyServiceOrder) GetTypeOk

func (o *LegacyServiceOrder) 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 (*LegacyServiceOrder) HasAction

func (o *LegacyServiceOrder) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*LegacyServiceOrder) HasMessageId

func (o *LegacyServiceOrder) HasMessageId() bool

HasMessageId returns a boolean if a field has been set.

func (*LegacyServiceOrder) HasPayload

func (o *LegacyServiceOrder) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*LegacyServiceOrder) HasSchedule

func (o *LegacyServiceOrder) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*LegacyServiceOrder) HasServiceType

func (o *LegacyServiceOrder) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (*LegacyServiceOrder) HasTransactionUUID

func (o *LegacyServiceOrder) HasTransactionUUID() bool

HasTransactionUUID returns a boolean if a field has been set.

func (*LegacyServiceOrder) HasType

func (o *LegacyServiceOrder) HasType() bool

HasType returns a boolean if a field has been set.

func (LegacyServiceOrder) MarshalJSON

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

func (*LegacyServiceOrder) SetAction

func (o *LegacyServiceOrder) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*LegacyServiceOrder) SetMessageId

func (o *LegacyServiceOrder) SetMessageId(v string)

SetMessageId gets a reference to the given string and assigns it to the MessageId field.

func (*LegacyServiceOrder) SetPayload

SetPayload gets a reference to the given LegacyServiceOrderDetail and assigns it to the Payload field.

func (*LegacyServiceOrder) SetSchedule

func (o *LegacyServiceOrder) SetSchedule(v LegacyScheduleConfig)

SetSchedule gets a reference to the given LegacyScheduleConfig and assigns it to the Schedule field.

func (*LegacyServiceOrder) SetServiceType

func (o *LegacyServiceOrder) SetServiceType(v string)

SetServiceType gets a reference to the given string and assigns it to the ServiceType field.

func (*LegacyServiceOrder) SetTransactionUUID

func (o *LegacyServiceOrder) SetTransactionUUID(v string)

SetTransactionUUID gets a reference to the given string and assigns it to the TransactionUUID field.

func (*LegacyServiceOrder) SetType

func (o *LegacyServiceOrder) SetType(v string)

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

type LegacyServiceOrderDetail

type LegacyServiceOrderDetail struct {
	Service            *map[string]string                 `json:"service,omitempty"`
	Tenant             *map[string]string                 `json:"tenant,omitempty"`
	User               *map[string]string                 `json:"user,omitempty"`
	Provider           *map[string]string                 `json:"provider,omitempty"`
	Offer              *map[string]string                 `json:"offer,omitempty"`
	Cost               *map[string]string                 `json:"cost,omitempty"`
	SubscriptionId     *string                            `json:"subscriptionId,omitempty"`
	SubscriptionName   *string                            `json:"subscriptionName,omitempty"`
	SubscriptionDetail *LegacySubscriptionDetail          `json:"subscriptionDetail,omitempty"`
	ServiceDowngrade   *map[string]map[string]interface{} `json:"serviceDowngrade,omitempty"`
	NsoResponseTypes   *LegacyNsoResponseTypes            `json:"nsoResponseTypes,omitempty"`
}

LegacyServiceOrderDetail struct for LegacyServiceOrderDetail

func NewLegacyServiceOrderDetail

func NewLegacyServiceOrderDetail() *LegacyServiceOrderDetail

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

func NewLegacyServiceOrderDetailWithDefaults

func NewLegacyServiceOrderDetailWithDefaults() *LegacyServiceOrderDetail

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

func (*LegacyServiceOrderDetail) GetCost

func (o *LegacyServiceOrderDetail) GetCost() map[string]string

GetCost returns the Cost field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetCostOk

func (o *LegacyServiceOrderDetail) GetCostOk() (*map[string]string, bool)

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

func (*LegacyServiceOrderDetail) GetNsoResponseTypes

func (o *LegacyServiceOrderDetail) GetNsoResponseTypes() LegacyNsoResponseTypes

GetNsoResponseTypes returns the NsoResponseTypes field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetNsoResponseTypesOk

func (o *LegacyServiceOrderDetail) GetNsoResponseTypesOk() (*LegacyNsoResponseTypes, bool)

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

func (*LegacyServiceOrderDetail) GetOffer

func (o *LegacyServiceOrderDetail) GetOffer() map[string]string

GetOffer returns the Offer field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetOfferOk

func (o *LegacyServiceOrderDetail) GetOfferOk() (*map[string]string, bool)

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

func (*LegacyServiceOrderDetail) GetProvider

func (o *LegacyServiceOrderDetail) GetProvider() map[string]string

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

func (*LegacyServiceOrderDetail) GetProviderOk

func (o *LegacyServiceOrderDetail) GetProviderOk() (*map[string]string, bool)

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

func (*LegacyServiceOrderDetail) GetService

func (o *LegacyServiceOrderDetail) GetService() map[string]string

GetService returns the Service field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetServiceDowngrade

func (o *LegacyServiceOrderDetail) GetServiceDowngrade() map[string]map[string]interface{}

GetServiceDowngrade returns the ServiceDowngrade field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetServiceDowngradeOk

func (o *LegacyServiceOrderDetail) GetServiceDowngradeOk() (*map[string]map[string]interface{}, bool)

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

func (*LegacyServiceOrderDetail) GetServiceOk

func (o *LegacyServiceOrderDetail) GetServiceOk() (*map[string]string, bool)

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

func (*LegacyServiceOrderDetail) GetSubscriptionDetail

func (o *LegacyServiceOrderDetail) GetSubscriptionDetail() LegacySubscriptionDetail

GetSubscriptionDetail returns the SubscriptionDetail field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetSubscriptionDetailOk

func (o *LegacyServiceOrderDetail) GetSubscriptionDetailOk() (*LegacySubscriptionDetail, bool)

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

func (*LegacyServiceOrderDetail) GetSubscriptionId

func (o *LegacyServiceOrderDetail) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetSubscriptionIdOk

func (o *LegacyServiceOrderDetail) GetSubscriptionIdOk() (*string, bool)

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

func (*LegacyServiceOrderDetail) GetSubscriptionName

func (o *LegacyServiceOrderDetail) GetSubscriptionName() string

GetSubscriptionName returns the SubscriptionName field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetSubscriptionNameOk

func (o *LegacyServiceOrderDetail) GetSubscriptionNameOk() (*string, bool)

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

func (*LegacyServiceOrderDetail) GetTenant

func (o *LegacyServiceOrderDetail) GetTenant() map[string]string

GetTenant returns the Tenant field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetTenantOk

func (o *LegacyServiceOrderDetail) GetTenantOk() (*map[string]string, bool)

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

func (*LegacyServiceOrderDetail) GetUser

func (o *LegacyServiceOrderDetail) GetUser() map[string]string

GetUser returns the User field value if set, zero value otherwise.

func (*LegacyServiceOrderDetail) GetUserOk

func (o *LegacyServiceOrderDetail) GetUserOk() (*map[string]string, bool)

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

func (*LegacyServiceOrderDetail) HasCost

func (o *LegacyServiceOrderDetail) HasCost() bool

HasCost returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasNsoResponseTypes

func (o *LegacyServiceOrderDetail) HasNsoResponseTypes() bool

HasNsoResponseTypes returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasOffer

func (o *LegacyServiceOrderDetail) HasOffer() bool

HasOffer returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasProvider

func (o *LegacyServiceOrderDetail) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasService

func (o *LegacyServiceOrderDetail) HasService() bool

HasService returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasServiceDowngrade

func (o *LegacyServiceOrderDetail) HasServiceDowngrade() bool

HasServiceDowngrade returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasSubscriptionDetail

func (o *LegacyServiceOrderDetail) HasSubscriptionDetail() bool

HasSubscriptionDetail returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasSubscriptionId

func (o *LegacyServiceOrderDetail) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasSubscriptionName

func (o *LegacyServiceOrderDetail) HasSubscriptionName() bool

HasSubscriptionName returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasTenant

func (o *LegacyServiceOrderDetail) HasTenant() bool

HasTenant returns a boolean if a field has been set.

func (*LegacyServiceOrderDetail) HasUser

func (o *LegacyServiceOrderDetail) HasUser() bool

HasUser returns a boolean if a field has been set.

func (LegacyServiceOrderDetail) MarshalJSON

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

func (*LegacyServiceOrderDetail) SetCost

func (o *LegacyServiceOrderDetail) SetCost(v map[string]string)

SetCost gets a reference to the given map[string]string and assigns it to the Cost field.

func (*LegacyServiceOrderDetail) SetNsoResponseTypes

func (o *LegacyServiceOrderDetail) SetNsoResponseTypes(v LegacyNsoResponseTypes)

SetNsoResponseTypes gets a reference to the given LegacyNsoResponseTypes and assigns it to the NsoResponseTypes field.

func (*LegacyServiceOrderDetail) SetOffer

func (o *LegacyServiceOrderDetail) SetOffer(v map[string]string)

SetOffer gets a reference to the given map[string]string and assigns it to the Offer field.

func (*LegacyServiceOrderDetail) SetProvider

func (o *LegacyServiceOrderDetail) SetProvider(v map[string]string)

SetProvider gets a reference to the given map[string]string and assigns it to the Provider field.

func (*LegacyServiceOrderDetail) SetService

func (o *LegacyServiceOrderDetail) SetService(v map[string]string)

SetService gets a reference to the given map[string]string and assigns it to the Service field.

func (*LegacyServiceOrderDetail) SetServiceDowngrade

func (o *LegacyServiceOrderDetail) SetServiceDowngrade(v map[string]map[string]interface{})

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

func (*LegacyServiceOrderDetail) SetSubscriptionDetail

func (o *LegacyServiceOrderDetail) SetSubscriptionDetail(v LegacySubscriptionDetail)

SetSubscriptionDetail gets a reference to the given LegacySubscriptionDetail and assigns it to the SubscriptionDetail field.

func (*LegacyServiceOrderDetail) SetSubscriptionId

func (o *LegacyServiceOrderDetail) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*LegacyServiceOrderDetail) SetSubscriptionName

func (o *LegacyServiceOrderDetail) SetSubscriptionName(v string)

SetSubscriptionName gets a reference to the given string and assigns it to the SubscriptionName field.

func (*LegacyServiceOrderDetail) SetTenant

func (o *LegacyServiceOrderDetail) SetTenant(v map[string]string)

SetTenant gets a reference to the given map[string]string and assigns it to the Tenant field.

func (*LegacyServiceOrderDetail) SetUser

func (o *LegacyServiceOrderDetail) SetUser(v map[string]string)

SetUser gets a reference to the given map[string]string and assigns it to the User field.

type LegacyServiceOrderResponse

type LegacyServiceOrderResponse struct {
	Message            *string                   `json:"message,omitempty"`
	TransactionUUID    *string                   `json:"transactionUUID,omitempty"`
	SubscriptionId     *string                   `json:"subscriptionId,omitempty"`
	Url                *string                   `json:"url,omitempty"`
	Status             *string                   `json:"status,omitempty"`
	ServiceInstanceIds *[]string                 `json:"serviceInstanceIds,omitempty"`
	Sites              *[]map[string]interface{} `json:"sites,omitempty"`
	Devices            *[]map[string]interface{} `json:"devices,omitempty"`
}

LegacyServiceOrderResponse struct for LegacyServiceOrderResponse

func NewLegacyServiceOrderResponse

func NewLegacyServiceOrderResponse() *LegacyServiceOrderResponse

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

func NewLegacyServiceOrderResponseWithDefaults

func NewLegacyServiceOrderResponseWithDefaults() *LegacyServiceOrderResponse

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

func (*LegacyServiceOrderResponse) GetDevices

func (o *LegacyServiceOrderResponse) GetDevices() []map[string]interface{}

GetDevices returns the Devices field value if set, zero value otherwise.

func (*LegacyServiceOrderResponse) GetDevicesOk

func (o *LegacyServiceOrderResponse) GetDevicesOk() (*[]map[string]interface{}, bool)

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

func (*LegacyServiceOrderResponse) GetMessage

func (o *LegacyServiceOrderResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*LegacyServiceOrderResponse) GetMessageOk

func (o *LegacyServiceOrderResponse) GetMessageOk() (*string, bool)

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

func (*LegacyServiceOrderResponse) GetServiceInstanceIds

func (o *LegacyServiceOrderResponse) GetServiceInstanceIds() []string

GetServiceInstanceIds returns the ServiceInstanceIds field value if set, zero value otherwise.

func (*LegacyServiceOrderResponse) GetServiceInstanceIdsOk

func (o *LegacyServiceOrderResponse) GetServiceInstanceIdsOk() (*[]string, bool)

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

func (*LegacyServiceOrderResponse) GetSites

func (o *LegacyServiceOrderResponse) GetSites() []map[string]interface{}

GetSites returns the Sites field value if set, zero value otherwise.

func (*LegacyServiceOrderResponse) GetSitesOk

func (o *LegacyServiceOrderResponse) GetSitesOk() (*[]map[string]interface{}, bool)

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

func (*LegacyServiceOrderResponse) GetStatus

func (o *LegacyServiceOrderResponse) GetStatus() string

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

func (*LegacyServiceOrderResponse) GetStatusOk

func (o *LegacyServiceOrderResponse) 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 (*LegacyServiceOrderResponse) GetSubscriptionId

func (o *LegacyServiceOrderResponse) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*LegacyServiceOrderResponse) GetSubscriptionIdOk

func (o *LegacyServiceOrderResponse) GetSubscriptionIdOk() (*string, bool)

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

func (*LegacyServiceOrderResponse) GetTransactionUUID

func (o *LegacyServiceOrderResponse) GetTransactionUUID() string

GetTransactionUUID returns the TransactionUUID field value if set, zero value otherwise.

func (*LegacyServiceOrderResponse) GetTransactionUUIDOk

func (o *LegacyServiceOrderResponse) GetTransactionUUIDOk() (*string, bool)

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

func (*LegacyServiceOrderResponse) GetUrl

func (o *LegacyServiceOrderResponse) GetUrl() string

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

func (*LegacyServiceOrderResponse) GetUrlOk

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

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

func (*LegacyServiceOrderResponse) HasDevices

func (o *LegacyServiceOrderResponse) HasDevices() bool

HasDevices returns a boolean if a field has been set.

func (*LegacyServiceOrderResponse) HasMessage

func (o *LegacyServiceOrderResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*LegacyServiceOrderResponse) HasServiceInstanceIds

func (o *LegacyServiceOrderResponse) HasServiceInstanceIds() bool

HasServiceInstanceIds returns a boolean if a field has been set.

func (*LegacyServiceOrderResponse) HasSites

func (o *LegacyServiceOrderResponse) HasSites() bool

HasSites returns a boolean if a field has been set.

func (*LegacyServiceOrderResponse) HasStatus

func (o *LegacyServiceOrderResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*LegacyServiceOrderResponse) HasSubscriptionId

func (o *LegacyServiceOrderResponse) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*LegacyServiceOrderResponse) HasTransactionUUID

func (o *LegacyServiceOrderResponse) HasTransactionUUID() bool

HasTransactionUUID returns a boolean if a field has been set.

func (*LegacyServiceOrderResponse) HasUrl

func (o *LegacyServiceOrderResponse) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (LegacyServiceOrderResponse) MarshalJSON

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

func (*LegacyServiceOrderResponse) SetDevices

func (o *LegacyServiceOrderResponse) SetDevices(v []map[string]interface{})

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

func (*LegacyServiceOrderResponse) SetMessage

func (o *LegacyServiceOrderResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*LegacyServiceOrderResponse) SetServiceInstanceIds

func (o *LegacyServiceOrderResponse) SetServiceInstanceIds(v []string)

SetServiceInstanceIds gets a reference to the given []string and assigns it to the ServiceInstanceIds field.

func (*LegacyServiceOrderResponse) SetSites

func (o *LegacyServiceOrderResponse) SetSites(v []map[string]interface{})

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

func (*LegacyServiceOrderResponse) SetStatus

func (o *LegacyServiceOrderResponse) SetStatus(v string)

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

func (*LegacyServiceOrderResponse) SetSubscriptionId

func (o *LegacyServiceOrderResponse) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*LegacyServiceOrderResponse) SetTransactionUUID

func (o *LegacyServiceOrderResponse) SetTransactionUUID(v string)

SetTransactionUUID gets a reference to the given string and assigns it to the TransactionUUID field.

func (*LegacyServiceOrderResponse) SetUrl

func (o *LegacyServiceOrderResponse) SetUrl(v string)

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

type LegacySite

type LegacySite struct {
	SiteId            string                             `json:"siteId"`
	SiteName          string                             `json:"siteName"`
	DisplayName       *string                            `json:"displayName,omitempty"`
	Address           LegacyAddress                      `json:"address"`
	Devices           *[]LegacySiteDevice                `json:"devices,omitempty"`
	SiteAttributes    *map[string]map[string]interface{} `json:"siteAttributes,omitempty"`
	Delete            *bool                              `json:"delete,omitempty"`
	OperationalStatus *string                            `json:"operationalStatus,omitempty"`
}

LegacySite struct for LegacySite

func NewLegacySite

func NewLegacySite(siteId string, siteName string, address LegacyAddress) *LegacySite

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

func NewLegacySiteWithDefaults

func NewLegacySiteWithDefaults() *LegacySite

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

func (*LegacySite) GetAddress

func (o *LegacySite) GetAddress() LegacyAddress

GetAddress returns the Address field value

func (*LegacySite) GetAddressOk

func (o *LegacySite) GetAddressOk() (*LegacyAddress, bool)

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

func (*LegacySite) GetDelete

func (o *LegacySite) GetDelete() bool

GetDelete returns the Delete field value if set, zero value otherwise.

func (*LegacySite) GetDeleteOk

func (o *LegacySite) GetDeleteOk() (*bool, bool)

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

func (*LegacySite) GetDevices

func (o *LegacySite) GetDevices() []LegacySiteDevice

GetDevices returns the Devices field value if set, zero value otherwise.

func (*LegacySite) GetDevicesOk

func (o *LegacySite) GetDevicesOk() (*[]LegacySiteDevice, bool)

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

func (*LegacySite) GetDisplayName

func (o *LegacySite) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*LegacySite) GetDisplayNameOk

func (o *LegacySite) GetDisplayNameOk() (*string, bool)

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

func (*LegacySite) GetOperationalStatus

func (o *LegacySite) GetOperationalStatus() string

GetOperationalStatus returns the OperationalStatus field value if set, zero value otherwise.

func (*LegacySite) GetOperationalStatusOk

func (o *LegacySite) GetOperationalStatusOk() (*string, bool)

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

func (*LegacySite) GetSiteAttributes

func (o *LegacySite) GetSiteAttributes() map[string]map[string]interface{}

GetSiteAttributes returns the SiteAttributes field value if set, zero value otherwise.

func (*LegacySite) GetSiteAttributesOk

func (o *LegacySite) GetSiteAttributesOk() (*map[string]map[string]interface{}, bool)

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

func (*LegacySite) GetSiteId

func (o *LegacySite) GetSiteId() string

GetSiteId returns the SiteId field value

func (*LegacySite) GetSiteIdOk

func (o *LegacySite) GetSiteIdOk() (*string, bool)

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

func (*LegacySite) GetSiteName

func (o *LegacySite) GetSiteName() string

GetSiteName returns the SiteName field value

func (*LegacySite) GetSiteNameOk

func (o *LegacySite) GetSiteNameOk() (*string, bool)

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

func (*LegacySite) HasDelete

func (o *LegacySite) HasDelete() bool

HasDelete returns a boolean if a field has been set.

func (*LegacySite) HasDevices

func (o *LegacySite) HasDevices() bool

HasDevices returns a boolean if a field has been set.

func (*LegacySite) HasDisplayName

func (o *LegacySite) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*LegacySite) HasOperationalStatus

func (o *LegacySite) HasOperationalStatus() bool

HasOperationalStatus returns a boolean if a field has been set.

func (*LegacySite) HasSiteAttributes

func (o *LegacySite) HasSiteAttributes() bool

HasSiteAttributes returns a boolean if a field has been set.

func (LegacySite) MarshalJSON

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

func (*LegacySite) SetAddress

func (o *LegacySite) SetAddress(v LegacyAddress)

SetAddress sets field value

func (*LegacySite) SetDelete

func (o *LegacySite) SetDelete(v bool)

SetDelete gets a reference to the given bool and assigns it to the Delete field.

func (*LegacySite) SetDevices

func (o *LegacySite) SetDevices(v []LegacySiteDevice)

SetDevices gets a reference to the given []LegacySiteDevice and assigns it to the Devices field.

func (*LegacySite) SetDisplayName

func (o *LegacySite) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*LegacySite) SetOperationalStatus

func (o *LegacySite) SetOperationalStatus(v string)

SetOperationalStatus gets a reference to the given string and assigns it to the OperationalStatus field.

func (*LegacySite) SetSiteAttributes

func (o *LegacySite) SetSiteAttributes(v map[string]map[string]interface{})

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

func (*LegacySite) SetSiteId

func (o *LegacySite) SetSiteId(v string)

SetSiteId sets field value

func (*LegacySite) SetSiteName

func (o *LegacySite) SetSiteName(v string)

SetSiteName sets field value

type LegacySiteDevice

type LegacySiteDevice struct {
	DeviceId         *string                            `json:"deviceId,omitempty"`
	Name             string                             `json:"name"`
	Model            *string                            `json:"model,omitempty"`
	Type             *string                            `json:"type,omitempty"`
	DeviceAttributes *map[string]map[string]interface{} `json:"deviceAttributes,omitempty"`
	DeviceOnboarding *LegacySiteDeviceOnboard           `json:"deviceOnboarding,omitempty"`
	Delete           *bool                              `json:"delete,omitempty"`
}

LegacySiteDevice struct for LegacySiteDevice

func NewLegacySiteDevice

func NewLegacySiteDevice(name string) *LegacySiteDevice

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

func NewLegacySiteDeviceWithDefaults

func NewLegacySiteDeviceWithDefaults() *LegacySiteDevice

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

func (*LegacySiteDevice) GetDelete

func (o *LegacySiteDevice) GetDelete() bool

GetDelete returns the Delete field value if set, zero value otherwise.

func (*LegacySiteDevice) GetDeleteOk

func (o *LegacySiteDevice) GetDeleteOk() (*bool, bool)

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

func (*LegacySiteDevice) GetDeviceAttributes

func (o *LegacySiteDevice) GetDeviceAttributes() map[string]map[string]interface{}

GetDeviceAttributes returns the DeviceAttributes field value if set, zero value otherwise.

func (*LegacySiteDevice) GetDeviceAttributesOk

func (o *LegacySiteDevice) GetDeviceAttributesOk() (*map[string]map[string]interface{}, bool)

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

func (*LegacySiteDevice) GetDeviceId

func (o *LegacySiteDevice) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*LegacySiteDevice) GetDeviceIdOk

func (o *LegacySiteDevice) GetDeviceIdOk() (*string, bool)

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

func (*LegacySiteDevice) GetDeviceOnboarding

func (o *LegacySiteDevice) GetDeviceOnboarding() LegacySiteDeviceOnboard

GetDeviceOnboarding returns the DeviceOnboarding field value if set, zero value otherwise.

func (*LegacySiteDevice) GetDeviceOnboardingOk

func (o *LegacySiteDevice) GetDeviceOnboardingOk() (*LegacySiteDeviceOnboard, bool)

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

func (*LegacySiteDevice) GetModel

func (o *LegacySiteDevice) GetModel() string

GetModel returns the Model field value if set, zero value otherwise.

func (*LegacySiteDevice) GetModelOk

func (o *LegacySiteDevice) GetModelOk() (*string, bool)

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

func (*LegacySiteDevice) GetName

func (o *LegacySiteDevice) GetName() string

GetName returns the Name field value

func (*LegacySiteDevice) GetNameOk

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

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

func (*LegacySiteDevice) GetType

func (o *LegacySiteDevice) GetType() string

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

func (*LegacySiteDevice) GetTypeOk

func (o *LegacySiteDevice) 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 (*LegacySiteDevice) HasDelete

func (o *LegacySiteDevice) HasDelete() bool

HasDelete returns a boolean if a field has been set.

func (*LegacySiteDevice) HasDeviceAttributes

func (o *LegacySiteDevice) HasDeviceAttributes() bool

HasDeviceAttributes returns a boolean if a field has been set.

func (*LegacySiteDevice) HasDeviceId

func (o *LegacySiteDevice) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*LegacySiteDevice) HasDeviceOnboarding

func (o *LegacySiteDevice) HasDeviceOnboarding() bool

HasDeviceOnboarding returns a boolean if a field has been set.

func (*LegacySiteDevice) HasModel

func (o *LegacySiteDevice) HasModel() bool

HasModel returns a boolean if a field has been set.

func (*LegacySiteDevice) HasType

func (o *LegacySiteDevice) HasType() bool

HasType returns a boolean if a field has been set.

func (LegacySiteDevice) MarshalJSON

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

func (*LegacySiteDevice) SetDelete

func (o *LegacySiteDevice) SetDelete(v bool)

SetDelete gets a reference to the given bool and assigns it to the Delete field.

func (*LegacySiteDevice) SetDeviceAttributes

func (o *LegacySiteDevice) SetDeviceAttributes(v map[string]map[string]interface{})

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

func (*LegacySiteDevice) SetDeviceId

func (o *LegacySiteDevice) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*LegacySiteDevice) SetDeviceOnboarding

func (o *LegacySiteDevice) SetDeviceOnboarding(v LegacySiteDeviceOnboard)

SetDeviceOnboarding gets a reference to the given LegacySiteDeviceOnboard and assigns it to the DeviceOnboarding field.

func (*LegacySiteDevice) SetModel

func (o *LegacySiteDevice) SetModel(v string)

SetModel gets a reference to the given string and assigns it to the Model field.

func (*LegacySiteDevice) SetName

func (o *LegacySiteDevice) SetName(v string)

SetName sets field value

func (*LegacySiteDevice) SetType

func (o *LegacySiteDevice) SetType(v string)

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

type LegacySiteDeviceOnboard

type LegacySiteDeviceOnboard struct {
	DeviceInstanceId         *string                            `json:"deviceInstanceId,omitempty"`
	TenantId                 *string                            `json:"tenantId,omitempty"`
	DeviceName               *string                            `json:"deviceName,omitempty"`
	Managed                  *bool                              `json:"managed,omitempty"`
	DeviceModel              *string                            `json:"deviceModel,omitempty"`
	DeviceOnboardingType     *string                            `json:"deviceOnboardingType,omitempty"`
	DeviceOnboardInformation *map[string]map[string]interface{} `json:"deviceOnboardInformation,omitempty"`
}

LegacySiteDeviceOnboard struct for LegacySiteDeviceOnboard

func NewLegacySiteDeviceOnboard

func NewLegacySiteDeviceOnboard() *LegacySiteDeviceOnboard

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

func NewLegacySiteDeviceOnboardWithDefaults

func NewLegacySiteDeviceOnboardWithDefaults() *LegacySiteDeviceOnboard

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

func (*LegacySiteDeviceOnboard) GetDeviceInstanceId

func (o *LegacySiteDeviceOnboard) GetDeviceInstanceId() string

GetDeviceInstanceId returns the DeviceInstanceId field value if set, zero value otherwise.

func (*LegacySiteDeviceOnboard) GetDeviceInstanceIdOk

func (o *LegacySiteDeviceOnboard) GetDeviceInstanceIdOk() (*string, bool)

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

func (*LegacySiteDeviceOnboard) GetDeviceModel

func (o *LegacySiteDeviceOnboard) GetDeviceModel() string

GetDeviceModel returns the DeviceModel field value if set, zero value otherwise.

func (*LegacySiteDeviceOnboard) GetDeviceModelOk

func (o *LegacySiteDeviceOnboard) GetDeviceModelOk() (*string, bool)

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

func (*LegacySiteDeviceOnboard) GetDeviceName

func (o *LegacySiteDeviceOnboard) GetDeviceName() string

GetDeviceName returns the DeviceName field value if set, zero value otherwise.

func (*LegacySiteDeviceOnboard) GetDeviceNameOk

func (o *LegacySiteDeviceOnboard) GetDeviceNameOk() (*string, bool)

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

func (*LegacySiteDeviceOnboard) GetDeviceOnboardInformation

func (o *LegacySiteDeviceOnboard) GetDeviceOnboardInformation() map[string]map[string]interface{}

GetDeviceOnboardInformation returns the DeviceOnboardInformation field value if set, zero value otherwise.

func (*LegacySiteDeviceOnboard) GetDeviceOnboardInformationOk

func (o *LegacySiteDeviceOnboard) GetDeviceOnboardInformationOk() (*map[string]map[string]interface{}, bool)

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

func (*LegacySiteDeviceOnboard) GetDeviceOnboardingType

func (o *LegacySiteDeviceOnboard) GetDeviceOnboardingType() string

GetDeviceOnboardingType returns the DeviceOnboardingType field value if set, zero value otherwise.

func (*LegacySiteDeviceOnboard) GetDeviceOnboardingTypeOk

func (o *LegacySiteDeviceOnboard) GetDeviceOnboardingTypeOk() (*string, bool)

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

func (*LegacySiteDeviceOnboard) GetManaged

func (o *LegacySiteDeviceOnboard) GetManaged() bool

GetManaged returns the Managed field value if set, zero value otherwise.

func (*LegacySiteDeviceOnboard) GetManagedOk

func (o *LegacySiteDeviceOnboard) GetManagedOk() (*bool, bool)

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

func (*LegacySiteDeviceOnboard) GetTenantId

func (o *LegacySiteDeviceOnboard) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*LegacySiteDeviceOnboard) GetTenantIdOk

func (o *LegacySiteDeviceOnboard) GetTenantIdOk() (*string, bool)

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

func (*LegacySiteDeviceOnboard) HasDeviceInstanceId

func (o *LegacySiteDeviceOnboard) HasDeviceInstanceId() bool

HasDeviceInstanceId returns a boolean if a field has been set.

func (*LegacySiteDeviceOnboard) HasDeviceModel

func (o *LegacySiteDeviceOnboard) HasDeviceModel() bool

HasDeviceModel returns a boolean if a field has been set.

func (*LegacySiteDeviceOnboard) HasDeviceName

func (o *LegacySiteDeviceOnboard) HasDeviceName() bool

HasDeviceName returns a boolean if a field has been set.

func (*LegacySiteDeviceOnboard) HasDeviceOnboardInformation

func (o *LegacySiteDeviceOnboard) HasDeviceOnboardInformation() bool

HasDeviceOnboardInformation returns a boolean if a field has been set.

func (*LegacySiteDeviceOnboard) HasDeviceOnboardingType

func (o *LegacySiteDeviceOnboard) HasDeviceOnboardingType() bool

HasDeviceOnboardingType returns a boolean if a field has been set.

func (*LegacySiteDeviceOnboard) HasManaged

func (o *LegacySiteDeviceOnboard) HasManaged() bool

HasManaged returns a boolean if a field has been set.

func (*LegacySiteDeviceOnboard) HasTenantId

func (o *LegacySiteDeviceOnboard) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (LegacySiteDeviceOnboard) MarshalJSON

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

func (*LegacySiteDeviceOnboard) SetDeviceInstanceId

func (o *LegacySiteDeviceOnboard) SetDeviceInstanceId(v string)

SetDeviceInstanceId gets a reference to the given string and assigns it to the DeviceInstanceId field.

func (*LegacySiteDeviceOnboard) SetDeviceModel

func (o *LegacySiteDeviceOnboard) SetDeviceModel(v string)

SetDeviceModel gets a reference to the given string and assigns it to the DeviceModel field.

func (*LegacySiteDeviceOnboard) SetDeviceName

func (o *LegacySiteDeviceOnboard) SetDeviceName(v string)

SetDeviceName gets a reference to the given string and assigns it to the DeviceName field.

func (*LegacySiteDeviceOnboard) SetDeviceOnboardInformation

func (o *LegacySiteDeviceOnboard) SetDeviceOnboardInformation(v map[string]map[string]interface{})

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

func (*LegacySiteDeviceOnboard) SetDeviceOnboardingType

func (o *LegacySiteDeviceOnboard) SetDeviceOnboardingType(v string)

SetDeviceOnboardingType gets a reference to the given string and assigns it to the DeviceOnboardingType field.

func (*LegacySiteDeviceOnboard) SetManaged

func (o *LegacySiteDeviceOnboard) SetManaged(v bool)

SetManaged gets a reference to the given bool and assigns it to the Managed field.

func (*LegacySiteDeviceOnboard) SetTenantId

func (o *LegacySiteDeviceOnboard) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

type LegacySubscriptionDetail

type LegacySubscriptionDetail struct {
	SiteCount             *map[string]interface{}            `json:"siteCount,omitempty"`
	Sites                 *[]LegacySite                      `json:"sites,omitempty"`
	OfferSelection        *map[string]map[string]interface{} `json:"offerSelection,omitempty"`
	ServiceInstanceDetail *map[string]map[string]interface{} `json:"serviceInstanceDetail,omitempty"`
	PriceDetail           *map[string]map[string]interface{} `json:"priceDetail,omitempty"`
	DealerCode            *string                            `json:"dealerCode,omitempty"`
	PricePlanId           *string                            `json:"pricePlanId,omitempty"`
	TermsAndConditionId   *string                            `json:"termsAndConditionId,omitempty"`
	Configuration         *map[string]string                 `json:"configuration,omitempty"`
}

LegacySubscriptionDetail struct for LegacySubscriptionDetail

func NewLegacySubscriptionDetail

func NewLegacySubscriptionDetail() *LegacySubscriptionDetail

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

func NewLegacySubscriptionDetailWithDefaults

func NewLegacySubscriptionDetailWithDefaults() *LegacySubscriptionDetail

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

func (*LegacySubscriptionDetail) GetConfiguration

func (o *LegacySubscriptionDetail) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetConfigurationOk

func (o *LegacySubscriptionDetail) GetConfigurationOk() (*map[string]string, bool)

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

func (*LegacySubscriptionDetail) GetDealerCode

func (o *LegacySubscriptionDetail) GetDealerCode() string

GetDealerCode returns the DealerCode field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetDealerCodeOk

func (o *LegacySubscriptionDetail) GetDealerCodeOk() (*string, bool)

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

func (*LegacySubscriptionDetail) GetOfferSelection

func (o *LegacySubscriptionDetail) GetOfferSelection() map[string]map[string]interface{}

GetOfferSelection returns the OfferSelection field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetOfferSelectionOk

func (o *LegacySubscriptionDetail) GetOfferSelectionOk() (*map[string]map[string]interface{}, bool)

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

func (*LegacySubscriptionDetail) GetPriceDetail

func (o *LegacySubscriptionDetail) GetPriceDetail() map[string]map[string]interface{}

GetPriceDetail returns the PriceDetail field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetPriceDetailOk

func (o *LegacySubscriptionDetail) GetPriceDetailOk() (*map[string]map[string]interface{}, bool)

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

func (*LegacySubscriptionDetail) GetPricePlanId

func (o *LegacySubscriptionDetail) GetPricePlanId() string

GetPricePlanId returns the PricePlanId field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetPricePlanIdOk

func (o *LegacySubscriptionDetail) GetPricePlanIdOk() (*string, bool)

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

func (*LegacySubscriptionDetail) GetServiceInstanceDetail

func (o *LegacySubscriptionDetail) GetServiceInstanceDetail() map[string]map[string]interface{}

GetServiceInstanceDetail returns the ServiceInstanceDetail field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetServiceInstanceDetailOk

func (o *LegacySubscriptionDetail) GetServiceInstanceDetailOk() (*map[string]map[string]interface{}, bool)

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

func (*LegacySubscriptionDetail) GetSiteCount

func (o *LegacySubscriptionDetail) GetSiteCount() map[string]interface{}

GetSiteCount returns the SiteCount field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetSiteCountOk

func (o *LegacySubscriptionDetail) GetSiteCountOk() (*map[string]interface{}, bool)

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

func (*LegacySubscriptionDetail) GetSites

func (o *LegacySubscriptionDetail) GetSites() []LegacySite

GetSites returns the Sites field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetSitesOk

func (o *LegacySubscriptionDetail) GetSitesOk() (*[]LegacySite, bool)

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

func (*LegacySubscriptionDetail) GetTermsAndConditionId

func (o *LegacySubscriptionDetail) GetTermsAndConditionId() string

GetTermsAndConditionId returns the TermsAndConditionId field value if set, zero value otherwise.

func (*LegacySubscriptionDetail) GetTermsAndConditionIdOk

func (o *LegacySubscriptionDetail) GetTermsAndConditionIdOk() (*string, bool)

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

func (*LegacySubscriptionDetail) HasConfiguration

func (o *LegacySubscriptionDetail) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*LegacySubscriptionDetail) HasDealerCode

func (o *LegacySubscriptionDetail) HasDealerCode() bool

HasDealerCode returns a boolean if a field has been set.

func (*LegacySubscriptionDetail) HasOfferSelection

func (o *LegacySubscriptionDetail) HasOfferSelection() bool

HasOfferSelection returns a boolean if a field has been set.

func (*LegacySubscriptionDetail) HasPriceDetail

func (o *LegacySubscriptionDetail) HasPriceDetail() bool

HasPriceDetail returns a boolean if a field has been set.

func (*LegacySubscriptionDetail) HasPricePlanId

func (o *LegacySubscriptionDetail) HasPricePlanId() bool

HasPricePlanId returns a boolean if a field has been set.

func (*LegacySubscriptionDetail) HasServiceInstanceDetail

func (o *LegacySubscriptionDetail) HasServiceInstanceDetail() bool

HasServiceInstanceDetail returns a boolean if a field has been set.

func (*LegacySubscriptionDetail) HasSiteCount

func (o *LegacySubscriptionDetail) HasSiteCount() bool

HasSiteCount returns a boolean if a field has been set.

func (*LegacySubscriptionDetail) HasSites

func (o *LegacySubscriptionDetail) HasSites() bool

HasSites returns a boolean if a field has been set.

func (*LegacySubscriptionDetail) HasTermsAndConditionId

func (o *LegacySubscriptionDetail) HasTermsAndConditionId() bool

HasTermsAndConditionId returns a boolean if a field has been set.

func (LegacySubscriptionDetail) MarshalJSON

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

func (*LegacySubscriptionDetail) SetConfiguration

func (o *LegacySubscriptionDetail) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*LegacySubscriptionDetail) SetDealerCode

func (o *LegacySubscriptionDetail) SetDealerCode(v string)

SetDealerCode gets a reference to the given string and assigns it to the DealerCode field.

func (*LegacySubscriptionDetail) SetOfferSelection

func (o *LegacySubscriptionDetail) SetOfferSelection(v map[string]map[string]interface{})

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

func (*LegacySubscriptionDetail) SetPriceDetail

func (o *LegacySubscriptionDetail) SetPriceDetail(v map[string]map[string]interface{})

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

func (*LegacySubscriptionDetail) SetPricePlanId

func (o *LegacySubscriptionDetail) SetPricePlanId(v string)

SetPricePlanId gets a reference to the given string and assigns it to the PricePlanId field.

func (*LegacySubscriptionDetail) SetServiceInstanceDetail

func (o *LegacySubscriptionDetail) SetServiceInstanceDetail(v map[string]map[string]interface{})

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

func (*LegacySubscriptionDetail) SetSiteCount

func (o *LegacySubscriptionDetail) SetSiteCount(v map[string]interface{})

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

func (*LegacySubscriptionDetail) SetSites

func (o *LegacySubscriptionDetail) SetSites(v []LegacySite)

SetSites gets a reference to the given []LegacySite and assigns it to the Sites field.

func (*LegacySubscriptionDetail) SetTermsAndConditionId

func (o *LegacySubscriptionDetail) SetTermsAndConditionId(v string)

SetTermsAndConditionId gets a reference to the given string and assigns it to the TermsAndConditionId field.

type NSOConfigDataXPath

type NSOConfigDataXPath struct {
	ServiceInstanceXPath   string    `json:"serviceInstanceXPath"`
	ServiceType            *string   `json:"serviceType,omitempty"`
	PossibleXPathLocations *[]string `json:"possibleXPathLocations,omitempty"`
}

NSOConfigDataXPath struct for NSOConfigDataXPath

func NewNSOConfigDataXPath

func NewNSOConfigDataXPath(serviceInstanceXPath string) *NSOConfigDataXPath

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

func NewNSOConfigDataXPathWithDefaults

func NewNSOConfigDataXPathWithDefaults() *NSOConfigDataXPath

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

func (*NSOConfigDataXPath) GetPossibleXPathLocations

func (o *NSOConfigDataXPath) GetPossibleXPathLocations() []string

GetPossibleXPathLocations returns the PossibleXPathLocations field value if set, zero value otherwise.

func (*NSOConfigDataXPath) GetPossibleXPathLocationsOk

func (o *NSOConfigDataXPath) GetPossibleXPathLocationsOk() (*[]string, bool)

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

func (*NSOConfigDataXPath) GetServiceInstanceXPath

func (o *NSOConfigDataXPath) GetServiceInstanceXPath() string

GetServiceInstanceXPath returns the ServiceInstanceXPath field value

func (*NSOConfigDataXPath) GetServiceInstanceXPathOk

func (o *NSOConfigDataXPath) GetServiceInstanceXPathOk() (*string, bool)

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

func (*NSOConfigDataXPath) GetServiceType

func (o *NSOConfigDataXPath) GetServiceType() string

GetServiceType returns the ServiceType field value if set, zero value otherwise.

func (*NSOConfigDataXPath) GetServiceTypeOk

func (o *NSOConfigDataXPath) GetServiceTypeOk() (*string, bool)

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

func (*NSOConfigDataXPath) HasPossibleXPathLocations

func (o *NSOConfigDataXPath) HasPossibleXPathLocations() bool

HasPossibleXPathLocations returns a boolean if a field has been set.

func (*NSOConfigDataXPath) HasServiceType

func (o *NSOConfigDataXPath) HasServiceType() bool

HasServiceType returns a boolean if a field has been set.

func (NSOConfigDataXPath) MarshalJSON

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

func (*NSOConfigDataXPath) SetPossibleXPathLocations

func (o *NSOConfigDataXPath) SetPossibleXPathLocations(v []string)

SetPossibleXPathLocations gets a reference to the given []string and assigns it to the PossibleXPathLocations field.

func (*NSOConfigDataXPath) SetServiceInstanceXPath

func (o *NSOConfigDataXPath) SetServiceInstanceXPath(v string)

SetServiceInstanceXPath sets field value

func (*NSOConfigDataXPath) SetServiceType

func (o *NSOConfigDataXPath) SetServiceType(v string)

SetServiceType gets a reference to the given string and assigns it to the ServiceType field.

type NameValue

type NameValue struct {
	Name  *string `json:"name,omitempty"`
	Value *string `json:"value,omitempty"`
}

NameValue struct for NameValue

func NewNameValue

func NewNameValue() *NameValue

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

func NewNameValueWithDefaults

func NewNameValueWithDefaults() *NameValue

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

func (*NameValue) GetName

func (o *NameValue) GetName() string

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

func (*NameValue) GetNameOk

func (o *NameValue) 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 (*NameValue) GetValue

func (o *NameValue) GetValue() string

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

func (*NameValue) GetValueOk

func (o *NameValue) GetValueOk() (*string, 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 (*NameValue) HasName

func (o *NameValue) HasName() bool

HasName returns a boolean if a field has been set.

func (*NameValue) HasValue

func (o *NameValue) HasValue() bool

HasValue returns a boolean if a field has been set.

func (NameValue) MarshalJSON

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

func (*NameValue) SetName

func (o *NameValue) SetName(v string)

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

func (*NameValue) SetValue

func (o *NameValue) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type NullableAccessToken

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

func NewNullableAccessToken

func NewNullableAccessToken(val *AccessToken) *NullableAccessToken

func (NullableAccessToken) Get

func (NullableAccessToken) IsSet

func (v NullableAccessToken) IsSet() bool

func (NullableAccessToken) MarshalJSON

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

func (*NullableAccessToken) Set

func (v *NullableAccessToken) Set(val *AccessToken)

func (*NullableAccessToken) UnmarshalJSON

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

func (*NullableAccessToken) Unset

func (v *NullableAccessToken) 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 NullableCatalogAssignment

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

func NewNullableCatalogAssignment

func NewNullableCatalogAssignment(val *CatalogAssignment) *NullableCatalogAssignment

func (NullableCatalogAssignment) Get

func (NullableCatalogAssignment) IsSet

func (v NullableCatalogAssignment) IsSet() bool

func (NullableCatalogAssignment) MarshalJSON

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

func (*NullableCatalogAssignment) Set

func (*NullableCatalogAssignment) UnmarshalJSON

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

func (*NullableCatalogAssignment) Unset

func (v *NullableCatalogAssignment) Unset()

type NullableDevice

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

func NewNullableDevice

func NewNullableDevice(val *Device) *NullableDevice

func (NullableDevice) Get

func (v NullableDevice) Get() *Device

func (NullableDevice) IsSet

func (v NullableDevice) IsSet() bool

func (NullableDevice) MarshalJSON

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

func (*NullableDevice) Set

func (v *NullableDevice) Set(val *Device)

func (*NullableDevice) UnmarshalJSON

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

func (*NullableDevice) Unset

func (v *NullableDevice) Unset()

type NullableDeviceAllOf

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

func NewNullableDeviceAllOf

func NewNullableDeviceAllOf(val *DeviceAllOf) *NullableDeviceAllOf

func (NullableDeviceAllOf) Get

func (NullableDeviceAllOf) IsSet

func (v NullableDeviceAllOf) IsSet() bool

func (NullableDeviceAllOf) MarshalJSON

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

func (*NullableDeviceAllOf) Set

func (v *NullableDeviceAllOf) Set(val *DeviceAllOf)

func (*NullableDeviceAllOf) UnmarshalJSON

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

func (*NullableDeviceAllOf) Unset

func (v *NullableDeviceAllOf) Unset()

type NullableDeviceBilling

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

func NewNullableDeviceBilling

func NewNullableDeviceBilling(val *DeviceBilling) *NullableDeviceBilling

func (NullableDeviceBilling) Get

func (NullableDeviceBilling) IsSet

func (v NullableDeviceBilling) IsSet() bool

func (NullableDeviceBilling) MarshalJSON

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

func (*NullableDeviceBilling) Set

func (v *NullableDeviceBilling) Set(val *DeviceBilling)

func (*NullableDeviceBilling) UnmarshalJSON

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

func (*NullableDeviceBilling) Unset

func (v *NullableDeviceBilling) Unset()

type NullableDeviceCreate

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

func NewNullableDeviceCreate

func NewNullableDeviceCreate(val *DeviceCreate) *NullableDeviceCreate

func (NullableDeviceCreate) Get

func (NullableDeviceCreate) IsSet

func (v NullableDeviceCreate) IsSet() bool

func (NullableDeviceCreate) MarshalJSON

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

func (*NullableDeviceCreate) Set

func (v *NullableDeviceCreate) Set(val *DeviceCreate)

func (*NullableDeviceCreate) UnmarshalJSON

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

func (*NullableDeviceCreate) Unset

func (v *NullableDeviceCreate) Unset()

type NullableDeviceCreateAllOf

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

func NewNullableDeviceCreateAllOf

func NewNullableDeviceCreateAllOf(val *DeviceCreateAllOf) *NullableDeviceCreateAllOf

func (NullableDeviceCreateAllOf) Get

func (NullableDeviceCreateAllOf) IsSet

func (v NullableDeviceCreateAllOf) IsSet() bool

func (NullableDeviceCreateAllOf) MarshalJSON

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

func (*NullableDeviceCreateAllOf) Set

func (*NullableDeviceCreateAllOf) UnmarshalJSON

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

func (*NullableDeviceCreateAllOf) Unset

func (v *NullableDeviceCreateAllOf) Unset()

type NullableDeviceSummary

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

func NewNullableDeviceSummary

func NewNullableDeviceSummary(val *DeviceSummary) *NullableDeviceSummary

func (NullableDeviceSummary) Get

func (NullableDeviceSummary) IsSet

func (v NullableDeviceSummary) IsSet() bool

func (NullableDeviceSummary) MarshalJSON

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

func (*NullableDeviceSummary) Set

func (v *NullableDeviceSummary) Set(val *DeviceSummary)

func (*NullableDeviceSummary) UnmarshalJSON

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

func (*NullableDeviceSummary) Unset

func (v *NullableDeviceSummary) Unset()

type NullableDeviceTemplate

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

func NewNullableDeviceTemplate

func NewNullableDeviceTemplate(val *DeviceTemplate) *NullableDeviceTemplate

func (NullableDeviceTemplate) Get

func (NullableDeviceTemplate) IsSet

func (v NullableDeviceTemplate) IsSet() bool

func (NullableDeviceTemplate) MarshalJSON

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

func (*NullableDeviceTemplate) Set

func (*NullableDeviceTemplate) UnmarshalJSON

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

func (*NullableDeviceTemplate) Unset

func (v *NullableDeviceTemplate) Unset()

type NullableDeviceTemplateAccess

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

func NewNullableDeviceTemplateAccess

func NewNullableDeviceTemplateAccess(val *DeviceTemplateAccess) *NullableDeviceTemplateAccess

func (NullableDeviceTemplateAccess) Get

func (NullableDeviceTemplateAccess) IsSet

func (NullableDeviceTemplateAccess) MarshalJSON

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

func (*NullableDeviceTemplateAccess) Set

func (*NullableDeviceTemplateAccess) UnmarshalJSON

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

func (*NullableDeviceTemplateAccess) Unset

func (v *NullableDeviceTemplateAccess) Unset()

type NullableDeviceTemplateAccessResponse

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

func (NullableDeviceTemplateAccessResponse) Get

func (NullableDeviceTemplateAccessResponse) IsSet

func (NullableDeviceTemplateAccessResponse) MarshalJSON

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

func (*NullableDeviceTemplateAccessResponse) Set

func (*NullableDeviceTemplateAccessResponse) UnmarshalJSON

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

func (*NullableDeviceTemplateAccessResponse) Unset

type NullableDeviceTemplateAllOf

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

func NewNullableDeviceTemplateAllOf

func NewNullableDeviceTemplateAllOf(val *DeviceTemplateAllOf) *NullableDeviceTemplateAllOf

func (NullableDeviceTemplateAllOf) Get

func (NullableDeviceTemplateAllOf) IsSet

func (NullableDeviceTemplateAllOf) MarshalJSON

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

func (*NullableDeviceTemplateAllOf) Set

func (*NullableDeviceTemplateAllOf) UnmarshalJSON

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

func (*NullableDeviceTemplateAllOf) Unset

func (v *NullableDeviceTemplateAllOf) Unset()

type NullableDeviceTemplateAttachRequest

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

func (NullableDeviceTemplateAttachRequest) Get

func (NullableDeviceTemplateAttachRequest) IsSet

func (NullableDeviceTemplateAttachRequest) MarshalJSON

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

func (*NullableDeviceTemplateAttachRequest) Set

func (*NullableDeviceTemplateAttachRequest) UnmarshalJSON

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

func (*NullableDeviceTemplateAttachRequest) Unset

type NullableDeviceTemplateCreate

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

func NewNullableDeviceTemplateCreate

func NewNullableDeviceTemplateCreate(val *DeviceTemplateCreate) *NullableDeviceTemplateCreate

func (NullableDeviceTemplateCreate) Get

func (NullableDeviceTemplateCreate) IsSet

func (NullableDeviceTemplateCreate) MarshalJSON

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

func (*NullableDeviceTemplateCreate) Set

func (*NullableDeviceTemplateCreate) UnmarshalJSON

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

func (*NullableDeviceTemplateCreate) Unset

func (v *NullableDeviceTemplateCreate) Unset()

type NullableDeviceTemplateDetails

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

func (NullableDeviceTemplateDetails) Get

func (NullableDeviceTemplateDetails) IsSet

func (NullableDeviceTemplateDetails) MarshalJSON

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

func (*NullableDeviceTemplateDetails) Set

func (*NullableDeviceTemplateDetails) UnmarshalJSON

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

func (*NullableDeviceTemplateDetails) Unset

func (v *NullableDeviceTemplateDetails) Unset()

type NullableDeviceTemplateHistory

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

func (NullableDeviceTemplateHistory) Get

func (NullableDeviceTemplateHistory) IsSet

func (NullableDeviceTemplateHistory) MarshalJSON

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

func (*NullableDeviceTemplateHistory) Set

func (*NullableDeviceTemplateHistory) UnmarshalJSON

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

func (*NullableDeviceTemplateHistory) Unset

func (v *NullableDeviceTemplateHistory) Unset()

type NullableDeviceTemplateUpdateDetails

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

func (NullableDeviceTemplateUpdateDetails) Get

func (NullableDeviceTemplateUpdateDetails) IsSet

func (NullableDeviceTemplateUpdateDetails) MarshalJSON

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

func (*NullableDeviceTemplateUpdateDetails) Set

func (*NullableDeviceTemplateUpdateDetails) UnmarshalJSON

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

func (*NullableDeviceTemplateUpdateDetails) Unset

type NullableDeviceTemplateUpdateRequest

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

func (NullableDeviceTemplateUpdateRequest) Get

func (NullableDeviceTemplateUpdateRequest) IsSet

func (NullableDeviceTemplateUpdateRequest) MarshalJSON

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

func (*NullableDeviceTemplateUpdateRequest) Set

func (*NullableDeviceTemplateUpdateRequest) UnmarshalJSON

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

func (*NullableDeviceTemplateUpdateRequest) Unset

type NullableDeviceUpdate

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

func NewNullableDeviceUpdate

func NewNullableDeviceUpdate(val *DeviceUpdate) *NullableDeviceUpdate

func (NullableDeviceUpdate) Get

func (NullableDeviceUpdate) IsSet

func (v NullableDeviceUpdate) IsSet() bool

func (NullableDeviceUpdate) MarshalJSON

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

func (*NullableDeviceUpdate) Set

func (v *NullableDeviceUpdate) Set(val *DeviceUpdate)

func (*NullableDeviceUpdate) UnmarshalJSON

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

func (*NullableDeviceUpdate) Unset

func (v *NullableDeviceUpdate) Unset()

type NullableDevicesPage

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

func NewNullableDevicesPage

func NewNullableDevicesPage(val *DevicesPage) *NullableDevicesPage

func (NullableDevicesPage) Get

func (NullableDevicesPage) IsSet

func (v NullableDevicesPage) IsSet() bool

func (NullableDevicesPage) MarshalJSON

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

func (*NullableDevicesPage) Set

func (v *NullableDevicesPage) Set(val *DevicesPage)

func (*NullableDevicesPage) UnmarshalJSON

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

func (*NullableDevicesPage) Unset

func (v *NullableDevicesPage) Unset()

type NullableDevicesPageAllOf

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

func NewNullableDevicesPageAllOf

func NewNullableDevicesPageAllOf(val *DevicesPageAllOf) *NullableDevicesPageAllOf

func (NullableDevicesPageAllOf) Get

func (NullableDevicesPageAllOf) IsSet

func (v NullableDevicesPageAllOf) IsSet() bool

func (NullableDevicesPageAllOf) MarshalJSON

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

func (*NullableDevicesPageAllOf) Set

func (*NullableDevicesPageAllOf) UnmarshalJSON

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

func (*NullableDevicesPageAllOf) Unset

func (v *NullableDevicesPageAllOf) Unset()

type NullableError

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

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

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

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

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

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableLegacyAbsoluteConfig

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

func NewNullableLegacyAbsoluteConfig

func NewNullableLegacyAbsoluteConfig(val *LegacyAbsoluteConfig) *NullableLegacyAbsoluteConfig

func (NullableLegacyAbsoluteConfig) Get

func (NullableLegacyAbsoluteConfig) IsSet

func (NullableLegacyAbsoluteConfig) MarshalJSON

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

func (*NullableLegacyAbsoluteConfig) Set

func (*NullableLegacyAbsoluteConfig) UnmarshalJSON

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

func (*NullableLegacyAbsoluteConfig) Unset

func (v *NullableLegacyAbsoluteConfig) Unset()

type NullableLegacyAddress

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

func NewNullableLegacyAddress

func NewNullableLegacyAddress(val *LegacyAddress) *NullableLegacyAddress

func (NullableLegacyAddress) Get

func (NullableLegacyAddress) IsSet

func (v NullableLegacyAddress) IsSet() bool

func (NullableLegacyAddress) MarshalJSON

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

func (*NullableLegacyAddress) Set

func (v *NullableLegacyAddress) Set(val *LegacyAddress)

func (*NullableLegacyAddress) UnmarshalJSON

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

func (*NullableLegacyAddress) Unset

func (v *NullableLegacyAddress) Unset()

type NullableLegacyNsoResponseTypes

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

func (NullableLegacyNsoResponseTypes) Get

func (NullableLegacyNsoResponseTypes) IsSet

func (NullableLegacyNsoResponseTypes) MarshalJSON

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

func (*NullableLegacyNsoResponseTypes) Set

func (*NullableLegacyNsoResponseTypes) UnmarshalJSON

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

func (*NullableLegacyNsoResponseTypes) Unset

func (v *NullableLegacyNsoResponseTypes) Unset()

type NullableLegacyRelativeConfig

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

func NewNullableLegacyRelativeConfig

func NewNullableLegacyRelativeConfig(val *LegacyRelativeConfig) *NullableLegacyRelativeConfig

func (NullableLegacyRelativeConfig) Get

func (NullableLegacyRelativeConfig) IsSet

func (NullableLegacyRelativeConfig) MarshalJSON

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

func (*NullableLegacyRelativeConfig) Set

func (*NullableLegacyRelativeConfig) UnmarshalJSON

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

func (*NullableLegacyRelativeConfig) Unset

func (v *NullableLegacyRelativeConfig) Unset()

type NullableLegacyScheduleConfig

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

func NewNullableLegacyScheduleConfig

func NewNullableLegacyScheduleConfig(val *LegacyScheduleConfig) *NullableLegacyScheduleConfig

func (NullableLegacyScheduleConfig) Get

func (NullableLegacyScheduleConfig) IsSet

func (NullableLegacyScheduleConfig) MarshalJSON

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

func (*NullableLegacyScheduleConfig) Set

func (*NullableLegacyScheduleConfig) UnmarshalJSON

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

func (*NullableLegacyScheduleConfig) Unset

func (v *NullableLegacyScheduleConfig) Unset()

type NullableLegacyServiceOrder

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

func NewNullableLegacyServiceOrder

func NewNullableLegacyServiceOrder(val *LegacyServiceOrder) *NullableLegacyServiceOrder

func (NullableLegacyServiceOrder) Get

func (NullableLegacyServiceOrder) IsSet

func (v NullableLegacyServiceOrder) IsSet() bool

func (NullableLegacyServiceOrder) MarshalJSON

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

func (*NullableLegacyServiceOrder) Set

func (*NullableLegacyServiceOrder) UnmarshalJSON

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

func (*NullableLegacyServiceOrder) Unset

func (v *NullableLegacyServiceOrder) Unset()

type NullableLegacyServiceOrderDetail

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

func (NullableLegacyServiceOrderDetail) Get

func (NullableLegacyServiceOrderDetail) IsSet

func (NullableLegacyServiceOrderDetail) MarshalJSON

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

func (*NullableLegacyServiceOrderDetail) Set

func (*NullableLegacyServiceOrderDetail) UnmarshalJSON

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

func (*NullableLegacyServiceOrderDetail) Unset

type NullableLegacyServiceOrderResponse

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

func (NullableLegacyServiceOrderResponse) Get

func (NullableLegacyServiceOrderResponse) IsSet

func (NullableLegacyServiceOrderResponse) MarshalJSON

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

func (*NullableLegacyServiceOrderResponse) Set

func (*NullableLegacyServiceOrderResponse) UnmarshalJSON

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

func (*NullableLegacyServiceOrderResponse) Unset

type NullableLegacySite

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

func NewNullableLegacySite

func NewNullableLegacySite(val *LegacySite) *NullableLegacySite

func (NullableLegacySite) Get

func (v NullableLegacySite) Get() *LegacySite

func (NullableLegacySite) IsSet

func (v NullableLegacySite) IsSet() bool

func (NullableLegacySite) MarshalJSON

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

func (*NullableLegacySite) Set

func (v *NullableLegacySite) Set(val *LegacySite)

func (*NullableLegacySite) UnmarshalJSON

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

func (*NullableLegacySite) Unset

func (v *NullableLegacySite) Unset()

type NullableLegacySiteDevice

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

func NewNullableLegacySiteDevice

func NewNullableLegacySiteDevice(val *LegacySiteDevice) *NullableLegacySiteDevice

func (NullableLegacySiteDevice) Get

func (NullableLegacySiteDevice) IsSet

func (v NullableLegacySiteDevice) IsSet() bool

func (NullableLegacySiteDevice) MarshalJSON

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

func (*NullableLegacySiteDevice) Set

func (*NullableLegacySiteDevice) UnmarshalJSON

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

func (*NullableLegacySiteDevice) Unset

func (v *NullableLegacySiteDevice) Unset()

type NullableLegacySiteDeviceOnboard

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

func (NullableLegacySiteDeviceOnboard) Get

func (NullableLegacySiteDeviceOnboard) IsSet

func (NullableLegacySiteDeviceOnboard) MarshalJSON

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

func (*NullableLegacySiteDeviceOnboard) Set

func (*NullableLegacySiteDeviceOnboard) UnmarshalJSON

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

func (*NullableLegacySiteDeviceOnboard) Unset

type NullableLegacySubscriptionDetail

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

func (NullableLegacySubscriptionDetail) Get

func (NullableLegacySubscriptionDetail) IsSet

func (NullableLegacySubscriptionDetail) MarshalJSON

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

func (*NullableLegacySubscriptionDetail) Set

func (*NullableLegacySubscriptionDetail) UnmarshalJSON

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

func (*NullableLegacySubscriptionDetail) Unset

type NullableNSOConfigDataXPath

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

func NewNullableNSOConfigDataXPath

func NewNullableNSOConfigDataXPath(val *NSOConfigDataXPath) *NullableNSOConfigDataXPath

func (NullableNSOConfigDataXPath) Get

func (NullableNSOConfigDataXPath) IsSet

func (v NullableNSOConfigDataXPath) IsSet() bool

func (NullableNSOConfigDataXPath) MarshalJSON

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

func (*NullableNSOConfigDataXPath) Set

func (*NullableNSOConfigDataXPath) UnmarshalJSON

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

func (*NullableNSOConfigDataXPath) Unset

func (v *NullableNSOConfigDataXPath) Unset()

type NullableNameValue

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

func NewNullableNameValue

func NewNullableNameValue(val *NameValue) *NullableNameValue

func (NullableNameValue) Get

func (v NullableNameValue) Get() *NameValue

func (NullableNameValue) IsSet

func (v NullableNameValue) IsSet() bool

func (NullableNameValue) MarshalJSON

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

func (*NullableNameValue) Set

func (v *NullableNameValue) Set(val *NameValue)

func (*NullableNameValue) UnmarshalJSON

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

func (*NullableNameValue) Unset

func (v *NullableNameValue) Unset()

type NullableOffer

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

func NewNullableOffer

func NewNullableOffer(val *Offer) *NullableOffer

func (NullableOffer) Get

func (v NullableOffer) Get() *Offer

func (NullableOffer) IsSet

func (v NullableOffer) IsSet() bool

func (NullableOffer) MarshalJSON

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

func (*NullableOffer) Set

func (v *NullableOffer) Set(val *Offer)

func (*NullableOffer) UnmarshalJSON

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

func (*NullableOffer) Unset

func (v *NullableOffer) Unset()

type NullableOfferAllOf

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

func NewNullableOfferAllOf

func NewNullableOfferAllOf(val *OfferAllOf) *NullableOfferAllOf

func (NullableOfferAllOf) Get

func (v NullableOfferAllOf) Get() *OfferAllOf

func (NullableOfferAllOf) IsSet

func (v NullableOfferAllOf) IsSet() bool

func (NullableOfferAllOf) MarshalJSON

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

func (*NullableOfferAllOf) Set

func (v *NullableOfferAllOf) Set(val *OfferAllOf)

func (*NullableOfferAllOf) UnmarshalJSON

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

func (*NullableOfferAllOf) Unset

func (v *NullableOfferAllOf) Unset()

type NullableOfferCreate

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

func NewNullableOfferCreate

func NewNullableOfferCreate(val *OfferCreate) *NullableOfferCreate

func (NullableOfferCreate) Get

func (NullableOfferCreate) IsSet

func (v NullableOfferCreate) IsSet() bool

func (NullableOfferCreate) MarshalJSON

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

func (*NullableOfferCreate) Set

func (v *NullableOfferCreate) Set(val *OfferCreate)

func (*NullableOfferCreate) UnmarshalJSON

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

func (*NullableOfferCreate) Unset

func (v *NullableOfferCreate) Unset()

type NullableOfferUpdate

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

func NewNullableOfferUpdate

func NewNullableOfferUpdate(val *OfferUpdate) *NullableOfferUpdate

func (NullableOfferUpdate) Get

func (NullableOfferUpdate) IsSet

func (v NullableOfferUpdate) IsSet() bool

func (NullableOfferUpdate) MarshalJSON

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

func (*NullableOfferUpdate) Set

func (v *NullableOfferUpdate) Set(val *OfferUpdate)

func (*NullableOfferUpdate) UnmarshalJSON

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

func (*NullableOfferUpdate) Unset

func (v *NullableOfferUpdate) Unset()

type NullableOffersPage

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

func NewNullableOffersPage

func NewNullableOffersPage(val *OffersPage) *NullableOffersPage

func (NullableOffersPage) Get

func (v NullableOffersPage) Get() *OffersPage

func (NullableOffersPage) IsSet

func (v NullableOffersPage) IsSet() bool

func (NullableOffersPage) MarshalJSON

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

func (*NullableOffersPage) Set

func (v *NullableOffersPage) Set(val *OffersPage)

func (*NullableOffersPage) UnmarshalJSON

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

func (*NullableOffersPage) Unset

func (v *NullableOffersPage) Unset()

type NullableOffersPageAllOf

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

func NewNullableOffersPageAllOf

func NewNullableOffersPageAllOf(val *OffersPageAllOf) *NullableOffersPageAllOf

func (NullableOffersPageAllOf) Get

func (NullableOffersPageAllOf) IsSet

func (v NullableOffersPageAllOf) IsSet() bool

func (NullableOffersPageAllOf) MarshalJSON

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

func (*NullableOffersPageAllOf) Set

func (*NullableOffersPageAllOf) UnmarshalJSON

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

func (*NullableOffersPageAllOf) Unset

func (v *NullableOffersPageAllOf) Unset()

type NullablePageHeader

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

func NewNullablePageHeader

func NewNullablePageHeader(val *PageHeader) *NullablePageHeader

func (NullablePageHeader) Get

func (v NullablePageHeader) Get() *PageHeader

func (NullablePageHeader) IsSet

func (v NullablePageHeader) IsSet() bool

func (NullablePageHeader) MarshalJSON

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

func (*NullablePageHeader) Set

func (v *NullablePageHeader) Set(val *PageHeader)

func (*NullablePageHeader) UnmarshalJSON

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

func (*NullablePageHeader) Unset

func (v *NullablePageHeader) Unset()

type NullableProduct

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

func NewNullableProduct

func NewNullableProduct(val *Product) *NullableProduct

func (NullableProduct) Get

func (v NullableProduct) Get() *Product

func (NullableProduct) IsSet

func (v NullableProduct) IsSet() bool

func (NullableProduct) MarshalJSON

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

func (*NullableProduct) Set

func (v *NullableProduct) Set(val *Product)

func (*NullableProduct) UnmarshalJSON

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

func (*NullableProduct) Unset

func (v *NullableProduct) Unset()

type NullableProductAllOf

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

func NewNullableProductAllOf

func NewNullableProductAllOf(val *ProductAllOf) *NullableProductAllOf

func (NullableProductAllOf) Get

func (NullableProductAllOf) IsSet

func (v NullableProductAllOf) IsSet() bool

func (NullableProductAllOf) MarshalJSON

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

func (*NullableProductAllOf) Set

func (v *NullableProductAllOf) Set(val *ProductAllOf)

func (*NullableProductAllOf) UnmarshalJSON

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

func (*NullableProductAllOf) Unset

func (v *NullableProductAllOf) Unset()

type NullableProductCreate

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

func NewNullableProductCreate

func NewNullableProductCreate(val *ProductCreate) *NullableProductCreate

func (NullableProductCreate) Get

func (NullableProductCreate) IsSet

func (v NullableProductCreate) IsSet() bool

func (NullableProductCreate) MarshalJSON

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

func (*NullableProductCreate) Set

func (v *NullableProductCreate) Set(val *ProductCreate)

func (*NullableProductCreate) UnmarshalJSON

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

func (*NullableProductCreate) Unset

func (v *NullableProductCreate) Unset()

type NullableProductUpdate

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

func NewNullableProductUpdate

func NewNullableProductUpdate(val *ProductUpdate) *NullableProductUpdate

func (NullableProductUpdate) Get

func (NullableProductUpdate) IsSet

func (v NullableProductUpdate) IsSet() bool

func (NullableProductUpdate) MarshalJSON

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

func (*NullableProductUpdate) Set

func (v *NullableProductUpdate) Set(val *ProductUpdate)

func (*NullableProductUpdate) UnmarshalJSON

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

func (*NullableProductUpdate) Unset

func (v *NullableProductUpdate) Unset()

type NullableProductsPage

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

func NewNullableProductsPage

func NewNullableProductsPage(val *ProductsPage) *NullableProductsPage

func (NullableProductsPage) Get

func (NullableProductsPage) IsSet

func (v NullableProductsPage) IsSet() bool

func (NullableProductsPage) MarshalJSON

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

func (*NullableProductsPage) Set

func (v *NullableProductsPage) Set(val *ProductsPage)

func (*NullableProductsPage) UnmarshalJSON

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

func (*NullableProductsPage) Unset

func (v *NullableProductsPage) Unset()

type NullableProductsPageAllOf

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

func NewNullableProductsPageAllOf

func NewNullableProductsPageAllOf(val *ProductsPageAllOf) *NullableProductsPageAllOf

func (NullableProductsPageAllOf) Get

func (NullableProductsPageAllOf) IsSet

func (v NullableProductsPageAllOf) IsSet() bool

func (NullableProductsPageAllOf) MarshalJSON

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

func (*NullableProductsPageAllOf) Set

func (*NullableProductsPageAllOf) UnmarshalJSON

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

func (*NullableProductsPageAllOf) Unset

func (v *NullableProductsPageAllOf) Unset()

type NullableResourceHealth

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

func NewNullableResourceHealth

func NewNullableResourceHealth(val *ResourceHealth) *NullableResourceHealth

func (NullableResourceHealth) Get

func (NullableResourceHealth) IsSet

func (v NullableResourceHealth) IsSet() bool

func (NullableResourceHealth) MarshalJSON

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

func (*NullableResourceHealth) Set

func (*NullableResourceHealth) UnmarshalJSON

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

func (*NullableResourceHealth) Unset

func (v *NullableResourceHealth) Unset()

type NullableResourceStatus

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

func NewNullableResourceStatus

func NewNullableResourceStatus(val *ResourceStatus) *NullableResourceStatus

func (NullableResourceStatus) Get

func (NullableResourceStatus) IsSet

func (v NullableResourceStatus) IsSet() bool

func (NullableResourceStatus) MarshalJSON

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

func (*NullableResourceStatus) Set

func (*NullableResourceStatus) UnmarshalJSON

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

func (*NullableResourceStatus) Unset

func (v *NullableResourceStatus) Unset()

type NullableResourceType

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

func NewNullableResourceType

func NewNullableResourceType(val *ResourceType) *NullableResourceType

func (NullableResourceType) Get

func (NullableResourceType) IsSet

func (v NullableResourceType) IsSet() bool

func (NullableResourceType) MarshalJSON

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

func (*NullableResourceType) Set

func (v *NullableResourceType) Set(val *ResourceType)

func (*NullableResourceType) UnmarshalJSON

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

func (*NullableResourceType) Unset

func (v *NullableResourceType) 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 NullableService

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

func NewNullableService

func NewNullableService(val *Service) *NullableService

func (NullableService) Get

func (v NullableService) Get() *Service

func (NullableService) IsSet

func (v NullableService) IsSet() bool

func (NullableService) MarshalJSON

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

func (*NullableService) Set

func (v *NullableService) Set(val *Service)

func (*NullableService) UnmarshalJSON

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

func (*NullableService) Unset

func (v *NullableService) Unset()

type NullableServiceElement

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

func NewNullableServiceElement

func NewNullableServiceElement(val *ServiceElement) *NullableServiceElement

func (NullableServiceElement) Get

func (NullableServiceElement) IsSet

func (v NullableServiceElement) IsSet() bool

func (NullableServiceElement) MarshalJSON

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

func (*NullableServiceElement) Set

func (*NullableServiceElement) UnmarshalJSON

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

func (*NullableServiceElement) Unset

func (v *NullableServiceElement) Unset()

type NullableServiceElementPrice

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

func NewNullableServiceElementPrice

func NewNullableServiceElementPrice(val *ServiceElementPrice) *NullableServiceElementPrice

func (NullableServiceElementPrice) Get

func (NullableServiceElementPrice) IsSet

func (NullableServiceElementPrice) MarshalJSON

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

func (*NullableServiceElementPrice) Set

func (*NullableServiceElementPrice) UnmarshalJSON

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

func (*NullableServiceElementPrice) Unset

func (v *NullableServiceElementPrice) Unset()

type NullableServiceUIConfig

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

func NewNullableServiceUIConfig

func NewNullableServiceUIConfig(val *ServiceUIConfig) *NullableServiceUIConfig

func (NullableServiceUIConfig) Get

func (NullableServiceUIConfig) IsSet

func (v NullableServiceUIConfig) IsSet() bool

func (NullableServiceUIConfig) MarshalJSON

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

func (*NullableServiceUIConfig) Set

func (*NullableServiceUIConfig) UnmarshalJSON

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

func (*NullableServiceUIConfig) Unset

func (v *NullableServiceUIConfig) Unset()
type NullableServiceUILink struct {
	// contains filtered or unexported fields
}
func NewNullableServiceUILink(val *ServiceUILink) *NullableServiceUILink

func (NullableServiceUILink) Get

func (NullableServiceUILink) IsSet

func (v NullableServiceUILink) IsSet() bool

func (NullableServiceUILink) MarshalJSON

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

func (*NullableServiceUILink) Set

func (v *NullableServiceUILink) Set(val *ServiceUILink)

func (*NullableServiceUILink) UnmarshalJSON

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

func (*NullableServiceUILink) Unset

func (v *NullableServiceUILink) Unset()

type NullableServicesPage

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

func NewNullableServicesPage

func NewNullableServicesPage(val *ServicesPage) *NullableServicesPage

func (NullableServicesPage) Get

func (NullableServicesPage) IsSet

func (v NullableServicesPage) IsSet() bool

func (NullableServicesPage) MarshalJSON

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

func (*NullableServicesPage) Set

func (v *NullableServicesPage) Set(val *ServicesPage)

func (*NullableServicesPage) UnmarshalJSON

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

func (*NullableServicesPage) Unset

func (v *NullableServicesPage) Unset()

type NullableServicesPageAllOf

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

func NewNullableServicesPageAllOf

func NewNullableServicesPageAllOf(val *ServicesPageAllOf) *NullableServicesPageAllOf

func (NullableServicesPageAllOf) Get

func (NullableServicesPageAllOf) IsSet

func (v NullableServicesPageAllOf) IsSet() bool

func (NullableServicesPageAllOf) MarshalJSON

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

func (*NullableServicesPageAllOf) Set

func (*NullableServicesPageAllOf) UnmarshalJSON

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

func (*NullableServicesPageAllOf) Unset

func (v *NullableServicesPageAllOf) Unset()

type NullableSite

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

func NewNullableSite

func NewNullableSite(val *Site) *NullableSite

func (NullableSite) Get

func (v NullableSite) Get() *Site

func (NullableSite) IsSet

func (v NullableSite) IsSet() bool

func (NullableSite) MarshalJSON

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

func (*NullableSite) Set

func (v *NullableSite) Set(val *Site)

func (*NullableSite) UnmarshalJSON

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

func (*NullableSite) Unset

func (v *NullableSite) Unset()

type NullableSiteAddress

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

func NewNullableSiteAddress

func NewNullableSiteAddress(val *SiteAddress) *NullableSiteAddress

func (NullableSiteAddress) Get

func (NullableSiteAddress) IsSet

func (v NullableSiteAddress) IsSet() bool

func (NullableSiteAddress) MarshalJSON

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

func (*NullableSiteAddress) Set

func (v *NullableSiteAddress) Set(val *SiteAddress)

func (*NullableSiteAddress) UnmarshalJSON

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

func (*NullableSiteAddress) Unset

func (v *NullableSiteAddress) Unset()

type NullableSiteContact

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

func NewNullableSiteContact

func NewNullableSiteContact(val *SiteContact) *NullableSiteContact

func (NullableSiteContact) Get

func (NullableSiteContact) IsSet

func (v NullableSiteContact) IsSet() bool

func (NullableSiteContact) MarshalJSON

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

func (*NullableSiteContact) Set

func (v *NullableSiteContact) Set(val *SiteContact)

func (*NullableSiteContact) UnmarshalJSON

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

func (*NullableSiteContact) Unset

func (v *NullableSiteContact) Unset()

type NullableSiteCreate

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

func NewNullableSiteCreate

func NewNullableSiteCreate(val *SiteCreate) *NullableSiteCreate

func (NullableSiteCreate) Get

func (v NullableSiteCreate) Get() *SiteCreate

func (NullableSiteCreate) IsSet

func (v NullableSiteCreate) IsSet() bool

func (NullableSiteCreate) MarshalJSON

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

func (*NullableSiteCreate) Set

func (v *NullableSiteCreate) Set(val *SiteCreate)

func (*NullableSiteCreate) UnmarshalJSON

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

func (*NullableSiteCreate) Unset

func (v *NullableSiteCreate) Unset()

type NullableSiteCreateAllOf

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

func NewNullableSiteCreateAllOf

func NewNullableSiteCreateAllOf(val *SiteCreateAllOf) *NullableSiteCreateAllOf

func (NullableSiteCreateAllOf) Get

func (NullableSiteCreateAllOf) IsSet

func (v NullableSiteCreateAllOf) IsSet() bool

func (NullableSiteCreateAllOf) MarshalJSON

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

func (*NullableSiteCreateAllOf) Set

func (*NullableSiteCreateAllOf) UnmarshalJSON

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

func (*NullableSiteCreateAllOf) Unset

func (v *NullableSiteCreateAllOf) Unset()

type NullableSiteLocation

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

func NewNullableSiteLocation

func NewNullableSiteLocation(val *SiteLocation) *NullableSiteLocation

func (NullableSiteLocation) Get

func (NullableSiteLocation) IsSet

func (v NullableSiteLocation) IsSet() bool

func (NullableSiteLocation) MarshalJSON

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

func (*NullableSiteLocation) Set

func (v *NullableSiteLocation) Set(val *SiteLocation)

func (*NullableSiteLocation) UnmarshalJSON

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

func (*NullableSiteLocation) Unset

func (v *NullableSiteLocation) Unset()

type NullableSiteStatus

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

func NewNullableSiteStatus

func NewNullableSiteStatus(val *SiteStatus) *NullableSiteStatus

func (NullableSiteStatus) Get

func (v NullableSiteStatus) Get() *SiteStatus

func (NullableSiteStatus) IsSet

func (v NullableSiteStatus) IsSet() bool

func (NullableSiteStatus) MarshalJSON

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

func (*NullableSiteStatus) Set

func (v *NullableSiteStatus) Set(val *SiteStatus)

func (*NullableSiteStatus) UnmarshalJSON

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

func (*NullableSiteStatus) Unset

func (v *NullableSiteStatus) Unset()

type NullableSiteUpdate

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

func NewNullableSiteUpdate

func NewNullableSiteUpdate(val *SiteUpdate) *NullableSiteUpdate

func (NullableSiteUpdate) Get

func (v NullableSiteUpdate) Get() *SiteUpdate

func (NullableSiteUpdate) IsSet

func (v NullableSiteUpdate) IsSet() bool

func (NullableSiteUpdate) MarshalJSON

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

func (*NullableSiteUpdate) Set

func (v *NullableSiteUpdate) Set(val *SiteUpdate)

func (*NullableSiteUpdate) UnmarshalJSON

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

func (*NullableSiteUpdate) Unset

func (v *NullableSiteUpdate) Unset()

type NullableSitesPage

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

func NewNullableSitesPage

func NewNullableSitesPage(val *SitesPage) *NullableSitesPage

func (NullableSitesPage) Get

func (v NullableSitesPage) Get() *SitesPage

func (NullableSitesPage) IsSet

func (v NullableSitesPage) IsSet() bool

func (NullableSitesPage) MarshalJSON

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

func (*NullableSitesPage) Set

func (v *NullableSitesPage) Set(val *SitesPage)

func (*NullableSitesPage) UnmarshalJSON

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

func (*NullableSitesPage) Unset

func (v *NullableSitesPage) Unset()

type NullableSitesPageAllOf

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

func NewNullableSitesPageAllOf

func NewNullableSitesPageAllOf(val *SitesPageAllOf) *NullableSitesPageAllOf

func (NullableSitesPageAllOf) Get

func (NullableSitesPageAllOf) IsSet

func (v NullableSitesPageAllOf) IsSet() bool

func (NullableSitesPageAllOf) MarshalJSON

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

func (*NullableSitesPageAllOf) Set

func (*NullableSitesPageAllOf) UnmarshalJSON

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

func (*NullableSitesPageAllOf) Unset

func (v *NullableSitesPageAllOf) Unset()

type NullableStartWorkflowResponse

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

func (NullableStartWorkflowResponse) Get

func (NullableStartWorkflowResponse) IsSet

func (NullableStartWorkflowResponse) MarshalJSON

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

func (*NullableStartWorkflowResponse) Set

func (*NullableStartWorkflowResponse) UnmarshalJSON

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

func (*NullableStartWorkflowResponse) Unset

func (v *NullableStartWorkflowResponse) 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 NullableTemplateParameterValidator

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

func (NullableTemplateParameterValidator) Get

func (NullableTemplateParameterValidator) IsSet

func (NullableTemplateParameterValidator) MarshalJSON

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

func (*NullableTemplateParameterValidator) Set

func (*NullableTemplateParameterValidator) UnmarshalJSON

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

func (*NullableTemplateParameterValidator) Unset

type NullableTenant

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

func NewNullableTenant

func NewNullableTenant(val *Tenant) *NullableTenant

func (NullableTenant) Get

func (v NullableTenant) Get() *Tenant

func (NullableTenant) IsSet

func (v NullableTenant) IsSet() bool

func (NullableTenant) MarshalJSON

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

func (*NullableTenant) Set

func (v *NullableTenant) Set(val *Tenant)

func (*NullableTenant) UnmarshalJSON

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

func (*NullableTenant) Unset

func (v *NullableTenant) Unset()

type NullableTenantAllOf

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

func NewNullableTenantAllOf

func NewNullableTenantAllOf(val *TenantAllOf) *NullableTenantAllOf

func (NullableTenantAllOf) Get

func (NullableTenantAllOf) IsSet

func (v NullableTenantAllOf) IsSet() bool

func (NullableTenantAllOf) MarshalJSON

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

func (*NullableTenantAllOf) Set

func (v *NullableTenantAllOf) Set(val *TenantAllOf)

func (*NullableTenantAllOf) UnmarshalJSON

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

func (*NullableTenantAllOf) Unset

func (v *NullableTenantAllOf) Unset()

type NullableTenantCreate

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

func NewNullableTenantCreate

func NewNullableTenantCreate(val *TenantCreate) *NullableTenantCreate

func (NullableTenantCreate) Get

func (NullableTenantCreate) IsSet

func (v NullableTenantCreate) IsSet() bool

func (NullableTenantCreate) MarshalJSON

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

func (*NullableTenantCreate) Set

func (v *NullableTenantCreate) Set(val *TenantCreate)

func (*NullableTenantCreate) UnmarshalJSON

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

func (*NullableTenantCreate) Unset

func (v *NullableTenantCreate) Unset()

type NullableTenantUpdate

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

func NewNullableTenantUpdate

func NewNullableTenantUpdate(val *TenantUpdate) *NullableTenantUpdate

func (NullableTenantUpdate) Get

func (NullableTenantUpdate) IsSet

func (v NullableTenantUpdate) IsSet() bool

func (NullableTenantUpdate) MarshalJSON

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

func (*NullableTenantUpdate) Set

func (v *NullableTenantUpdate) Set(val *TenantUpdate)

func (*NullableTenantUpdate) UnmarshalJSON

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

func (*NullableTenantUpdate) Unset

func (v *NullableTenantUpdate) Unset()

type NullableTenantsPage

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

func NewNullableTenantsPage

func NewNullableTenantsPage(val *TenantsPage) *NullableTenantsPage

func (NullableTenantsPage) Get

func (NullableTenantsPage) IsSet

func (v NullableTenantsPage) IsSet() bool

func (NullableTenantsPage) MarshalJSON

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

func (*NullableTenantsPage) Set

func (v *NullableTenantsPage) Set(val *TenantsPage)

func (*NullableTenantsPage) UnmarshalJSON

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

func (*NullableTenantsPage) Unset

func (v *NullableTenantsPage) Unset()

type NullableTenantsPageAllOf

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

func NewNullableTenantsPageAllOf

func NewNullableTenantsPageAllOf(val *TenantsPageAllOf) *NullableTenantsPageAllOf

func (NullableTenantsPageAllOf) Get

func (NullableTenantsPageAllOf) IsSet

func (v NullableTenantsPageAllOf) IsSet() bool

func (NullableTenantsPageAllOf) MarshalJSON

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

func (*NullableTenantsPageAllOf) Set

func (*NullableTenantsPageAllOf) UnmarshalJSON

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

func (*NullableTenantsPageAllOf) Unset

func (v *NullableTenantsPageAllOf) 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 NullableUpdatePassword

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

func NewNullableUpdatePassword

func NewNullableUpdatePassword(val *UpdatePassword) *NullableUpdatePassword

func (NullableUpdatePassword) Get

func (NullableUpdatePassword) IsSet

func (v NullableUpdatePassword) IsSet() bool

func (NullableUpdatePassword) MarshalJSON

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

func (*NullableUpdatePassword) Set

func (*NullableUpdatePassword) UnmarshalJSON

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

func (*NullableUpdatePassword) Unset

func (v *NullableUpdatePassword) Unset()

type NullableUser

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

func NewNullableUser

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get

func (v NullableUser) Get() *User

func (NullableUser) IsSet

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON

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

func (*NullableUser) Set

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON

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

func (*NullableUser) Unset

func (v *NullableUser) Unset()

type NullableUserAllOf

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

func NewNullableUserAllOf

func NewNullableUserAllOf(val *UserAllOf) *NullableUserAllOf

func (NullableUserAllOf) Get

func (v NullableUserAllOf) Get() *UserAllOf

func (NullableUserAllOf) IsSet

func (v NullableUserAllOf) IsSet() bool

func (NullableUserAllOf) MarshalJSON

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

func (*NullableUserAllOf) Set

func (v *NullableUserAllOf) Set(val *UserAllOf)

func (*NullableUserAllOf) UnmarshalJSON

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

func (*NullableUserAllOf) Unset

func (v *NullableUserAllOf) Unset()

type NullableUserCreate

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

func NewNullableUserCreate

func NewNullableUserCreate(val *UserCreate) *NullableUserCreate

func (NullableUserCreate) Get

func (v NullableUserCreate) Get() *UserCreate

func (NullableUserCreate) IsSet

func (v NullableUserCreate) IsSet() bool

func (NullableUserCreate) MarshalJSON

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

func (*NullableUserCreate) Set

func (v *NullableUserCreate) Set(val *UserCreate)

func (*NullableUserCreate) UnmarshalJSON

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

func (*NullableUserCreate) Unset

func (v *NullableUserCreate) Unset()

type NullableUserCreateAllOf

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

func NewNullableUserCreateAllOf

func NewNullableUserCreateAllOf(val *UserCreateAllOf) *NullableUserCreateAllOf

func (NullableUserCreateAllOf) Get

func (NullableUserCreateAllOf) IsSet

func (v NullableUserCreateAllOf) IsSet() bool

func (NullableUserCreateAllOf) MarshalJSON

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

func (*NullableUserCreateAllOf) Set

func (*NullableUserCreateAllOf) UnmarshalJSON

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

func (*NullableUserCreateAllOf) Unset

func (v *NullableUserCreateAllOf) Unset()

type NullableUserUpdate

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

func NewNullableUserUpdate

func NewNullableUserUpdate(val *UserUpdate) *NullableUserUpdate

func (NullableUserUpdate) Get

func (v NullableUserUpdate) Get() *UserUpdate

func (NullableUserUpdate) IsSet

func (v NullableUserUpdate) IsSet() bool

func (NullableUserUpdate) MarshalJSON

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

func (*NullableUserUpdate) Set

func (v *NullableUserUpdate) Set(val *UserUpdate)

func (*NullableUserUpdate) UnmarshalJSON

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

func (*NullableUserUpdate) Unset

func (v *NullableUserUpdate) Unset()

type NullableUsersPage

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

func NewNullableUsersPage

func NewNullableUsersPage(val *UsersPage) *NullableUsersPage

func (NullableUsersPage) Get

func (v NullableUsersPage) Get() *UsersPage

func (NullableUsersPage) IsSet

func (v NullableUsersPage) IsSet() bool

func (NullableUsersPage) MarshalJSON

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

func (*NullableUsersPage) Set

func (v *NullableUsersPage) Set(val *UsersPage)

func (*NullableUsersPage) UnmarshalJSON

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

func (*NullableUsersPage) Unset

func (v *NullableUsersPage) Unset()

type NullableUsersPageAllOf

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

func NewNullableUsersPageAllOf

func NewNullableUsersPageAllOf(val *UsersPageAllOf) *NullableUsersPageAllOf

func (NullableUsersPageAllOf) Get

func (NullableUsersPageAllOf) IsSet

func (v NullableUsersPageAllOf) IsSet() bool

func (NullableUsersPageAllOf) MarshalJSON

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

func (*NullableUsersPageAllOf) Set

func (*NullableUsersPageAllOf) UnmarshalJSON

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

func (*NullableUsersPageAllOf) Unset

func (v *NullableUsersPageAllOf) Unset()

type NullableValidateWorkflowResponse

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

func (NullableValidateWorkflowResponse) Get

func (NullableValidateWorkflowResponse) IsSet

func (NullableValidateWorkflowResponse) MarshalJSON

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

func (*NullableValidateWorkflowResponse) Set

func (*NullableValidateWorkflowResponse) UnmarshalJSON

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

func (*NullableValidateWorkflowResponse) Unset

type NullableWorkflow

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

func NewNullableWorkflow

func NewNullableWorkflow(val *Workflow) *NullableWorkflow

func (NullableWorkflow) Get

func (v NullableWorkflow) Get() *Workflow

func (NullableWorkflow) IsSet

func (v NullableWorkflow) IsSet() bool

func (NullableWorkflow) MarshalJSON

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

func (*NullableWorkflow) Set

func (v *NullableWorkflow) Set(val *Workflow)

func (*NullableWorkflow) UnmarshalJSON

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

func (*NullableWorkflow) Unset

func (v *NullableWorkflow) Unset()

type NullableWorkflowAccessMeta

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

func NewNullableWorkflowAccessMeta

func NewNullableWorkflowAccessMeta(val *WorkflowAccessMeta) *NullableWorkflowAccessMeta

func (NullableWorkflowAccessMeta) Get

func (NullableWorkflowAccessMeta) IsSet

func (v NullableWorkflowAccessMeta) IsSet() bool

func (NullableWorkflowAccessMeta) MarshalJSON

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

func (*NullableWorkflowAccessMeta) Set

func (*NullableWorkflowAccessMeta) UnmarshalJSON

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

func (*NullableWorkflowAccessMeta) Unset

func (v *NullableWorkflowAccessMeta) Unset()

type NullableWorkflowAccessMetaType

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

func (NullableWorkflowAccessMetaType) Get

func (NullableWorkflowAccessMetaType) IsSet

func (NullableWorkflowAccessMetaType) MarshalJSON

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

func (*NullableWorkflowAccessMetaType) Set

func (*NullableWorkflowAccessMetaType) UnmarshalJSON

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

func (*NullableWorkflowAccessMetaType) Unset

func (v *NullableWorkflowAccessMetaType) Unset()

type NullableWorkflowAction

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

func NewNullableWorkflowAction

func NewNullableWorkflowAction(val *WorkflowAction) *NullableWorkflowAction

func (NullableWorkflowAction) Get

func (NullableWorkflowAction) IsSet

func (v NullableWorkflowAction) IsSet() bool

func (NullableWorkflowAction) MarshalJSON

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

func (*NullableWorkflowAction) Set

func (*NullableWorkflowAction) UnmarshalJSON

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

func (*NullableWorkflowAction) Unset

func (v *NullableWorkflowAction) Unset()

type NullableWorkflowActionBlock

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

func NewNullableWorkflowActionBlock

func NewNullableWorkflowActionBlock(val *WorkflowActionBlock) *NullableWorkflowActionBlock

func (NullableWorkflowActionBlock) Get

func (NullableWorkflowActionBlock) IsSet

func (NullableWorkflowActionBlock) MarshalJSON

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

func (*NullableWorkflowActionBlock) Set

func (*NullableWorkflowActionBlock) UnmarshalJSON

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

func (*NullableWorkflowActionBlock) Unset

func (v *NullableWorkflowActionBlock) Unset()

type NullableWorkflowAllOf

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

func NewNullableWorkflowAllOf

func NewNullableWorkflowAllOf(val *WorkflowAllOf) *NullableWorkflowAllOf

func (NullableWorkflowAllOf) Get

func (NullableWorkflowAllOf) IsSet

func (v NullableWorkflowAllOf) IsSet() bool

func (NullableWorkflowAllOf) MarshalJSON

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

func (*NullableWorkflowAllOf) Set

func (v *NullableWorkflowAllOf) Set(val *WorkflowAllOf)

func (*NullableWorkflowAllOf) UnmarshalJSON

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

func (*NullableWorkflowAllOf) Unset

func (v *NullableWorkflowAllOf) Unset()

type NullableWorkflowCategory

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

func NewNullableWorkflowCategory

func NewNullableWorkflowCategory(val *WorkflowCategory) *NullableWorkflowCategory

func (NullableWorkflowCategory) Get

func (NullableWorkflowCategory) IsSet

func (v NullableWorkflowCategory) IsSet() bool

func (NullableWorkflowCategory) MarshalJSON

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

func (*NullableWorkflowCategory) Set

func (*NullableWorkflowCategory) UnmarshalJSON

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

func (*NullableWorkflowCategory) Unset

func (v *NullableWorkflowCategory) Unset()

type NullableWorkflowCategoryAllOf

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

func (NullableWorkflowCategoryAllOf) Get

func (NullableWorkflowCategoryAllOf) IsSet

func (NullableWorkflowCategoryAllOf) MarshalJSON

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

func (*NullableWorkflowCategoryAllOf) Set

func (*NullableWorkflowCategoryAllOf) UnmarshalJSON

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

func (*NullableWorkflowCategoryAllOf) Unset

func (v *NullableWorkflowCategoryAllOf) Unset()

type NullableWorkflowCategoryCreate

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

func (NullableWorkflowCategoryCreate) Get

func (NullableWorkflowCategoryCreate) IsSet

func (NullableWorkflowCategoryCreate) MarshalJSON

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

func (*NullableWorkflowCategoryCreate) Set

func (*NullableWorkflowCategoryCreate) UnmarshalJSON

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

func (*NullableWorkflowCategoryCreate) Unset

func (v *NullableWorkflowCategoryCreate) Unset()

type NullableWorkflowCategoryUpdate

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

func (NullableWorkflowCategoryUpdate) Get

func (NullableWorkflowCategoryUpdate) IsSet

func (NullableWorkflowCategoryUpdate) MarshalJSON

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

func (*NullableWorkflowCategoryUpdate) Set

func (*NullableWorkflowCategoryUpdate) UnmarshalJSON

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

func (*NullableWorkflowCategoryUpdate) Unset

func (v *NullableWorkflowCategoryUpdate) Unset()

type NullableWorkflowDefAccessMeta

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

func (NullableWorkflowDefAccessMeta) Get

func (NullableWorkflowDefAccessMeta) IsSet

func (NullableWorkflowDefAccessMeta) MarshalJSON

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

func (*NullableWorkflowDefAccessMeta) Set

func (*NullableWorkflowDefAccessMeta) UnmarshalJSON

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

func (*NullableWorkflowDefAccessMeta) Unset

func (v *NullableWorkflowDefAccessMeta) Unset()

type NullableWorkflowEvent

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

func NewNullableWorkflowEvent

func NewNullableWorkflowEvent(val *WorkflowEvent) *NullableWorkflowEvent

func (NullableWorkflowEvent) Get

func (NullableWorkflowEvent) IsSet

func (v NullableWorkflowEvent) IsSet() bool

func (NullableWorkflowEvent) MarshalJSON

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

func (*NullableWorkflowEvent) Set

func (v *NullableWorkflowEvent) Set(val *WorkflowEvent)

func (*NullableWorkflowEvent) UnmarshalJSON

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

func (*NullableWorkflowEvent) Unset

func (v *NullableWorkflowEvent) Unset()

type NullableWorkflowEventAllOf

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

func NewNullableWorkflowEventAllOf

func NewNullableWorkflowEventAllOf(val *WorkflowEventAllOf) *NullableWorkflowEventAllOf

func (NullableWorkflowEventAllOf) Get

func (NullableWorkflowEventAllOf) IsSet

func (v NullableWorkflowEventAllOf) IsSet() bool

func (NullableWorkflowEventAllOf) MarshalJSON

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

func (*NullableWorkflowEventAllOf) Set

func (*NullableWorkflowEventAllOf) UnmarshalJSON

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

func (*NullableWorkflowEventAllOf) Unset

func (v *NullableWorkflowEventAllOf) Unset()

type NullableWorkflowEventCreate

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

func NewNullableWorkflowEventCreate

func NewNullableWorkflowEventCreate(val *WorkflowEventCreate) *NullableWorkflowEventCreate

func (NullableWorkflowEventCreate) Get

func (NullableWorkflowEventCreate) IsSet

func (NullableWorkflowEventCreate) MarshalJSON

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

func (*NullableWorkflowEventCreate) Set

func (*NullableWorkflowEventCreate) UnmarshalJSON

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

func (*NullableWorkflowEventCreate) Unset

func (v *NullableWorkflowEventCreate) Unset()

type NullableWorkflowEventUpdate

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

func NewNullableWorkflowEventUpdate

func NewNullableWorkflowEventUpdate(val *WorkflowEventUpdate) *NullableWorkflowEventUpdate

func (NullableWorkflowEventUpdate) Get

func (NullableWorkflowEventUpdate) IsSet

func (NullableWorkflowEventUpdate) MarshalJSON

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

func (*NullableWorkflowEventUpdate) Set

func (*NullableWorkflowEventUpdate) UnmarshalJSON

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

func (*NullableWorkflowEventUpdate) Unset

func (v *NullableWorkflowEventUpdate) Unset()

type NullableWorkflowFooter

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

func NewNullableWorkflowFooter

func NewNullableWorkflowFooter(val *WorkflowFooter) *NullableWorkflowFooter

func (NullableWorkflowFooter) Get

func (NullableWorkflowFooter) IsSet

func (v NullableWorkflowFooter) IsSet() bool

func (NullableWorkflowFooter) MarshalJSON

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

func (*NullableWorkflowFooter) Set

func (*NullableWorkflowFooter) UnmarshalJSON

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

func (*NullableWorkflowFooter) Unset

func (v *NullableWorkflowFooter) Unset()

type NullableWorkflowInstance

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

func NewNullableWorkflowInstance

func NewNullableWorkflowInstance(val *WorkflowInstance) *NullableWorkflowInstance

func (NullableWorkflowInstance) Get

func (NullableWorkflowInstance) IsSet

func (v NullableWorkflowInstance) IsSet() bool

func (NullableWorkflowInstance) MarshalJSON

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

func (*NullableWorkflowInstance) Set

func (*NullableWorkflowInstance) UnmarshalJSON

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

func (*NullableWorkflowInstance) Unset

func (v *NullableWorkflowInstance) Unset()

type NullableWorkflowInstanceAllOf

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

func (NullableWorkflowInstanceAllOf) Get

func (NullableWorkflowInstanceAllOf) IsSet

func (NullableWorkflowInstanceAllOf) MarshalJSON

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

func (*NullableWorkflowInstanceAllOf) Set

func (*NullableWorkflowInstanceAllOf) UnmarshalJSON

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

func (*NullableWorkflowInstanceAllOf) Unset

func (v *NullableWorkflowInstanceAllOf) Unset()

type NullableWorkflowInstanceDeleteResponse

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

func (NullableWorkflowInstanceDeleteResponse) Get

func (NullableWorkflowInstanceDeleteResponse) IsSet

func (NullableWorkflowInstanceDeleteResponse) MarshalJSON

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

func (*NullableWorkflowInstanceDeleteResponse) Set

func (*NullableWorkflowInstanceDeleteResponse) UnmarshalJSON

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

func (*NullableWorkflowInstanceDeleteResponse) Unset

type NullableWorkflowMapping

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

func NewNullableWorkflowMapping

func NewNullableWorkflowMapping(val *WorkflowMapping) *NullableWorkflowMapping

func (NullableWorkflowMapping) Get

func (NullableWorkflowMapping) IsSet

func (v NullableWorkflowMapping) IsSet() bool

func (NullableWorkflowMapping) MarshalJSON

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

func (*NullableWorkflowMapping) Set

func (*NullableWorkflowMapping) UnmarshalJSON

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

func (*NullableWorkflowMapping) Unset

func (v *NullableWorkflowMapping) Unset()

type NullableWorkflowMetadata

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

func NewNullableWorkflowMetadata

func NewNullableWorkflowMetadata(val *WorkflowMetadata) *NullableWorkflowMetadata

func (NullableWorkflowMetadata) Get

func (NullableWorkflowMetadata) IsSet

func (v NullableWorkflowMetadata) IsSet() bool

func (NullableWorkflowMetadata) MarshalJSON

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

func (*NullableWorkflowMetadata) Set

func (*NullableWorkflowMetadata) UnmarshalJSON

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

func (*NullableWorkflowMetadata) Unset

func (v *NullableWorkflowMetadata) Unset()

type NullableWorkflowMetadataGitInfo

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

func (NullableWorkflowMetadataGitInfo) Get

func (NullableWorkflowMetadataGitInfo) IsSet

func (NullableWorkflowMetadataGitInfo) MarshalJSON

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

func (*NullableWorkflowMetadataGitInfo) Set

func (*NullableWorkflowMetadataGitInfo) UnmarshalJSON

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

func (*NullableWorkflowMetadataGitInfo) Unset

type NullableWorkflowSchema

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

func NewNullableWorkflowSchema

func NewNullableWorkflowSchema(val *WorkflowSchema) *NullableWorkflowSchema

func (NullableWorkflowSchema) Get

func (NullableWorkflowSchema) IsSet

func (v NullableWorkflowSchema) IsSet() bool

func (NullableWorkflowSchema) MarshalJSON

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

func (*NullableWorkflowSchema) Set

func (*NullableWorkflowSchema) UnmarshalJSON

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

func (*NullableWorkflowSchema) Unset

func (v *NullableWorkflowSchema) Unset()

type NullableWorkflowSchemaAllOf

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

func NewNullableWorkflowSchemaAllOf

func NewNullableWorkflowSchemaAllOf(val *WorkflowSchemaAllOf) *NullableWorkflowSchemaAllOf

func (NullableWorkflowSchemaAllOf) Get

func (NullableWorkflowSchemaAllOf) IsSet

func (NullableWorkflowSchemaAllOf) MarshalJSON

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

func (*NullableWorkflowSchemaAllOf) Set

func (*NullableWorkflowSchemaAllOf) UnmarshalJSON

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

func (*NullableWorkflowSchemaAllOf) Unset

func (v *NullableWorkflowSchemaAllOf) Unset()

type NullableWorkflowSchemaByTypeResponse

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

func (NullableWorkflowSchemaByTypeResponse) Get

func (NullableWorkflowSchemaByTypeResponse) IsSet

func (NullableWorkflowSchemaByTypeResponse) MarshalJSON

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

func (*NullableWorkflowSchemaByTypeResponse) Set

func (*NullableWorkflowSchemaByTypeResponse) UnmarshalJSON

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

func (*NullableWorkflowSchemaByTypeResponse) Unset

type NullableWorkflowStartConfig

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

func NewNullableWorkflowStartConfig

func NewNullableWorkflowStartConfig(val *WorkflowStartConfig) *NullableWorkflowStartConfig

func (NullableWorkflowStartConfig) Get

func (NullableWorkflowStartConfig) IsSet

func (NullableWorkflowStartConfig) MarshalJSON

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

func (*NullableWorkflowStartConfig) Set

func (*NullableWorkflowStartConfig) UnmarshalJSON

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

func (*NullableWorkflowStartConfig) Unset

func (v *NullableWorkflowStartConfig) Unset()

type NullableWorkflowTarget

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

func NewNullableWorkflowTarget

func NewNullableWorkflowTarget(val *WorkflowTarget) *NullableWorkflowTarget

func (NullableWorkflowTarget) Get

func (NullableWorkflowTarget) IsSet

func (v NullableWorkflowTarget) IsSet() bool

func (NullableWorkflowTarget) MarshalJSON

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

func (*NullableWorkflowTarget) Set

func (*NullableWorkflowTarget) UnmarshalJSON

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

func (*NullableWorkflowTarget) Unset

func (v *NullableWorkflowTarget) Unset()

type NullableWorkflowTargetAllOf

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

func NewNullableWorkflowTargetAllOf

func NewNullableWorkflowTargetAllOf(val *WorkflowTargetAllOf) *NullableWorkflowTargetAllOf

func (NullableWorkflowTargetAllOf) Get

func (NullableWorkflowTargetAllOf) IsSet

func (NullableWorkflowTargetAllOf) MarshalJSON

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

func (*NullableWorkflowTargetAllOf) Set

func (*NullableWorkflowTargetAllOf) UnmarshalJSON

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

func (*NullableWorkflowTargetAllOf) Unset

func (v *NullableWorkflowTargetAllOf) Unset()

type NullableWorkflowTargetCreate

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

func NewNullableWorkflowTargetCreate

func NewNullableWorkflowTargetCreate(val *WorkflowTargetCreate) *NullableWorkflowTargetCreate

func (NullableWorkflowTargetCreate) Get

func (NullableWorkflowTargetCreate) IsSet

func (NullableWorkflowTargetCreate) MarshalJSON

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

func (*NullableWorkflowTargetCreate) Set

func (*NullableWorkflowTargetCreate) UnmarshalJSON

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

func (*NullableWorkflowTargetCreate) Unset

func (v *NullableWorkflowTargetCreate) Unset()

type NullableWorkflowTargetUpdate

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

func NewNullableWorkflowTargetUpdate

func NewNullableWorkflowTargetUpdate(val *WorkflowTargetUpdate) *NullableWorkflowTargetUpdate

func (NullableWorkflowTargetUpdate) Get

func (NullableWorkflowTargetUpdate) IsSet

func (NullableWorkflowTargetUpdate) MarshalJSON

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

func (*NullableWorkflowTargetUpdate) Set

func (*NullableWorkflowTargetUpdate) UnmarshalJSON

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

func (*NullableWorkflowTargetUpdate) Unset

func (v *NullableWorkflowTargetUpdate) Unset()

type NullableWorkflowVariable

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

func NewNullableWorkflowVariable

func NewNullableWorkflowVariable(val *WorkflowVariable) *NullableWorkflowVariable

func (NullableWorkflowVariable) Get

func (NullableWorkflowVariable) IsSet

func (v NullableWorkflowVariable) IsSet() bool

func (NullableWorkflowVariable) MarshalJSON

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

func (*NullableWorkflowVariable) Set

func (*NullableWorkflowVariable) UnmarshalJSON

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

func (*NullableWorkflowVariable) Unset

func (v *NullableWorkflowVariable) Unset()

type NullableWorkflowVariableAllOf

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

func (NullableWorkflowVariableAllOf) Get

func (NullableWorkflowVariableAllOf) IsSet

func (NullableWorkflowVariableAllOf) MarshalJSON

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

func (*NullableWorkflowVariableAllOf) Set

func (*NullableWorkflowVariableAllOf) UnmarshalJSON

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

func (*NullableWorkflowVariableAllOf) Unset

func (v *NullableWorkflowVariableAllOf) Unset()

type Offer

type Offer struct {
	Id                  *string              `json:"id,omitempty"`
	Name                string               `json:"name"`
	Label               string               `json:"label"`
	Description         string               `json:"description"`
	ProductId           string               `json:"productId"`
	Version             int32                `json:"version"`
	DisplayOrder        int32                `json:"displayOrder"`
	Image               string               `json:"image"`
	Price               *string              `json:"price,omitempty"`
	Type                *string              `json:"type,omitempty"`
	SupportedProperties []string             `json:"supportedProperties"`
	SupportedOptions    []NameValue          `json:"supportedOptions"`
	Approvals           *map[string][]string `json:"approvals,omitempty"`
}

Offer struct for Offer

func NewOffer

func NewOffer(name string, label string, description string, productId string, version int32, displayOrder int32, image string, supportedProperties []string, supportedOptions []NameValue) *Offer

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

func NewOfferWithDefaults

func NewOfferWithDefaults() *Offer

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

func (*Offer) GetApprovals

func (o *Offer) GetApprovals() map[string][]string

GetApprovals returns the Approvals field value if set, zero value otherwise.

func (*Offer) GetApprovalsOk

func (o *Offer) GetApprovalsOk() (*map[string][]string, bool)

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

func (*Offer) GetDescription

func (o *Offer) GetDescription() string

GetDescription returns the Description field value

func (*Offer) GetDescriptionOk

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

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

func (*Offer) GetDisplayOrder

func (o *Offer) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value

func (*Offer) GetDisplayOrderOk

func (o *Offer) GetDisplayOrderOk() (*int32, bool)

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

func (*Offer) GetId

func (o *Offer) GetId() string

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

func (*Offer) GetIdOk

func (o *Offer) 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 (*Offer) GetImage

func (o *Offer) GetImage() string

GetImage returns the Image field value

func (*Offer) GetImageOk

func (o *Offer) GetImageOk() (*string, bool)

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

func (*Offer) GetLabel

func (o *Offer) GetLabel() string

GetLabel returns the Label field value

func (*Offer) GetLabelOk

func (o *Offer) GetLabelOk() (*string, bool)

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

func (*Offer) GetName

func (o *Offer) GetName() string

GetName returns the Name field value

func (*Offer) GetNameOk

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

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

func (*Offer) GetPrice

func (o *Offer) GetPrice() string

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

func (*Offer) GetPriceOk

func (o *Offer) GetPriceOk() (*string, bool)

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

func (*Offer) GetProductId

func (o *Offer) GetProductId() string

GetProductId returns the ProductId field value

func (*Offer) GetProductIdOk

func (o *Offer) GetProductIdOk() (*string, bool)

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

func (*Offer) GetSupportedOptions

func (o *Offer) GetSupportedOptions() []NameValue

GetSupportedOptions returns the SupportedOptions field value

func (*Offer) GetSupportedOptionsOk

func (o *Offer) GetSupportedOptionsOk() (*[]NameValue, bool)

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

func (*Offer) GetSupportedProperties

func (o *Offer) GetSupportedProperties() []string

GetSupportedProperties returns the SupportedProperties field value

func (*Offer) GetSupportedPropertiesOk

func (o *Offer) GetSupportedPropertiesOk() (*[]string, bool)

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

func (*Offer) GetType

func (o *Offer) GetType() string

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

func (*Offer) GetTypeOk

func (o *Offer) 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 (*Offer) GetVersion

func (o *Offer) GetVersion() int32

GetVersion returns the Version field value

func (*Offer) GetVersionOk

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

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

func (*Offer) HasApprovals

func (o *Offer) HasApprovals() bool

HasApprovals returns a boolean if a field has been set.

func (*Offer) HasId

func (o *Offer) HasId() bool

HasId returns a boolean if a field has been set.

func (*Offer) HasPrice

func (o *Offer) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*Offer) HasType

func (o *Offer) HasType() bool

HasType returns a boolean if a field has been set.

func (Offer) MarshalJSON

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

func (*Offer) SetApprovals

func (o *Offer) SetApprovals(v map[string][]string)

SetApprovals gets a reference to the given map[string][]string and assigns it to the Approvals field.

func (*Offer) SetDescription

func (o *Offer) SetDescription(v string)

SetDescription sets field value

func (*Offer) SetDisplayOrder

func (o *Offer) SetDisplayOrder(v int32)

SetDisplayOrder sets field value

func (*Offer) SetId

func (o *Offer) SetId(v string)

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

func (*Offer) SetImage

func (o *Offer) SetImage(v string)

SetImage sets field value

func (*Offer) SetLabel

func (o *Offer) SetLabel(v string)

SetLabel sets field value

func (*Offer) SetName

func (o *Offer) SetName(v string)

SetName sets field value

func (*Offer) SetPrice

func (o *Offer) SetPrice(v string)

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

func (*Offer) SetProductId

func (o *Offer) SetProductId(v string)

SetProductId sets field value

func (*Offer) SetSupportedOptions

func (o *Offer) SetSupportedOptions(v []NameValue)

SetSupportedOptions sets field value

func (*Offer) SetSupportedProperties

func (o *Offer) SetSupportedProperties(v []string)

SetSupportedProperties sets field value

func (*Offer) SetType

func (o *Offer) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Offer) SetVersion

func (o *Offer) SetVersion(v int32)

SetVersion sets field value

type OfferAllOf

type OfferAllOf struct {
	Id *string `json:"id,omitempty"`
}

OfferAllOf struct for OfferAllOf

func NewOfferAllOf

func NewOfferAllOf() *OfferAllOf

NewOfferAllOf instantiates a new OfferAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOfferAllOfWithDefaults

func NewOfferAllOfWithDefaults() *OfferAllOf

NewOfferAllOfWithDefaults instantiates a new OfferAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OfferAllOf) GetId

func (o *OfferAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OfferAllOf) GetIdOk

func (o *OfferAllOf) 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 (*OfferAllOf) HasId

func (o *OfferAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (OfferAllOf) MarshalJSON

func (o OfferAllOf) MarshalJSON() ([]byte, error)

func (*OfferAllOf) SetId

func (o *OfferAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

type OfferCreate

type OfferCreate struct {
	Name                string               `json:"name"`
	Label               string               `json:"label"`
	Description         string               `json:"description"`
	ProductId           string               `json:"productId"`
	Version             int32                `json:"version"`
	DisplayOrder        int32                `json:"displayOrder"`
	Image               string               `json:"image"`
	Price               *string              `json:"price,omitempty"`
	Type                *string              `json:"type,omitempty"`
	SupportedProperties []string             `json:"supportedProperties"`
	SupportedOptions    []NameValue          `json:"supportedOptions"`
	Approvals           *map[string][]string `json:"approvals,omitempty"`
}

OfferCreate struct for OfferCreate

func NewOfferCreate

func NewOfferCreate(name string, label string, description string, productId string, version int32, displayOrder int32, image string, supportedProperties []string, supportedOptions []NameValue) *OfferCreate

NewOfferCreate instantiates a new OfferCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOfferCreateWithDefaults

func NewOfferCreateWithDefaults() *OfferCreate

NewOfferCreateWithDefaults instantiates a new OfferCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OfferCreate) GetApprovals

func (o *OfferCreate) GetApprovals() map[string][]string

GetApprovals returns the Approvals field value if set, zero value otherwise.

func (*OfferCreate) GetApprovalsOk

func (o *OfferCreate) GetApprovalsOk() (*map[string][]string, bool)

GetApprovalsOk returns a tuple with the Approvals field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OfferCreate) GetDescription

func (o *OfferCreate) GetDescription() string

GetDescription returns the Description field value

func (*OfferCreate) GetDescriptionOk

func (o *OfferCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*OfferCreate) GetDisplayOrder

func (o *OfferCreate) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value

func (*OfferCreate) GetDisplayOrderOk

func (o *OfferCreate) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder field value and a boolean to check if the value has been set.

func (*OfferCreate) GetImage

func (o *OfferCreate) GetImage() string

GetImage returns the Image field value

func (*OfferCreate) GetImageOk

func (o *OfferCreate) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value and a boolean to check if the value has been set.

func (*OfferCreate) GetLabel

func (o *OfferCreate) GetLabel() string

GetLabel returns the Label field value

func (*OfferCreate) GetLabelOk

func (o *OfferCreate) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*OfferCreate) GetName

func (o *OfferCreate) GetName() string

GetName returns the Name field value

func (*OfferCreate) GetNameOk

func (o *OfferCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OfferCreate) GetPrice

func (o *OfferCreate) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*OfferCreate) GetPriceOk

func (o *OfferCreate) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OfferCreate) GetProductId

func (o *OfferCreate) GetProductId() string

GetProductId returns the ProductId field value

func (*OfferCreate) GetProductIdOk

func (o *OfferCreate) GetProductIdOk() (*string, bool)

GetProductIdOk returns a tuple with the ProductId field value and a boolean to check if the value has been set.

func (*OfferCreate) GetSupportedOptions

func (o *OfferCreate) GetSupportedOptions() []NameValue

GetSupportedOptions returns the SupportedOptions field value

func (*OfferCreate) GetSupportedOptionsOk

func (o *OfferCreate) GetSupportedOptionsOk() (*[]NameValue, bool)

GetSupportedOptionsOk returns a tuple with the SupportedOptions field value and a boolean to check if the value has been set.

func (*OfferCreate) GetSupportedProperties

func (o *OfferCreate) GetSupportedProperties() []string

GetSupportedProperties returns the SupportedProperties field value

func (*OfferCreate) GetSupportedPropertiesOk

func (o *OfferCreate) GetSupportedPropertiesOk() (*[]string, bool)

GetSupportedPropertiesOk returns a tuple with the SupportedProperties field value and a boolean to check if the value has been set.

func (*OfferCreate) GetType

func (o *OfferCreate) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*OfferCreate) GetTypeOk

func (o *OfferCreate) 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 (*OfferCreate) GetVersion

func (o *OfferCreate) GetVersion() int32

GetVersion returns the Version field value

func (*OfferCreate) GetVersionOk

func (o *OfferCreate) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (*OfferCreate) HasApprovals

func (o *OfferCreate) HasApprovals() bool

HasApprovals returns a boolean if a field has been set.

func (*OfferCreate) HasPrice

func (o *OfferCreate) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*OfferCreate) HasType

func (o *OfferCreate) HasType() bool

HasType returns a boolean if a field has been set.

func (OfferCreate) MarshalJSON

func (o OfferCreate) MarshalJSON() ([]byte, error)

func (*OfferCreate) SetApprovals

func (o *OfferCreate) SetApprovals(v map[string][]string)

SetApprovals gets a reference to the given map[string][]string and assigns it to the Approvals field.

func (*OfferCreate) SetDescription

func (o *OfferCreate) SetDescription(v string)

SetDescription sets field value

func (*OfferCreate) SetDisplayOrder

func (o *OfferCreate) SetDisplayOrder(v int32)

SetDisplayOrder sets field value

func (*OfferCreate) SetImage

func (o *OfferCreate) SetImage(v string)

SetImage sets field value

func (*OfferCreate) SetLabel

func (o *OfferCreate) SetLabel(v string)

SetLabel sets field value

func (*OfferCreate) SetName

func (o *OfferCreate) SetName(v string)

SetName sets field value

func (*OfferCreate) SetPrice

func (o *OfferCreate) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*OfferCreate) SetProductId

func (o *OfferCreate) SetProductId(v string)

SetProductId sets field value

func (*OfferCreate) SetSupportedOptions

func (o *OfferCreate) SetSupportedOptions(v []NameValue)

SetSupportedOptions sets field value

func (*OfferCreate) SetSupportedProperties

func (o *OfferCreate) SetSupportedProperties(v []string)

SetSupportedProperties sets field value

func (*OfferCreate) SetType

func (o *OfferCreate) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*OfferCreate) SetVersion

func (o *OfferCreate) SetVersion(v int32)

SetVersion sets field value

type OfferUpdate

type OfferUpdate struct {
	Name                string               `json:"name"`
	Label               string               `json:"label"`
	Description         string               `json:"description"`
	ProductId           string               `json:"productId"`
	Version             int32                `json:"version"`
	DisplayOrder        int32                `json:"displayOrder"`
	Image               string               `json:"image"`
	Price               *string              `json:"price,omitempty"`
	Type                *string              `json:"type,omitempty"`
	SupportedProperties []string             `json:"supportedProperties"`
	SupportedOptions    []NameValue          `json:"supportedOptions"`
	Approvals           *map[string][]string `json:"approvals,omitempty"`
}

OfferUpdate struct for OfferUpdate

func NewOfferUpdate

func NewOfferUpdate(name string, label string, description string, productId string, version int32, displayOrder int32, image string, supportedProperties []string, supportedOptions []NameValue) *OfferUpdate

NewOfferUpdate instantiates a new OfferUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOfferUpdateWithDefaults

func NewOfferUpdateWithDefaults() *OfferUpdate

NewOfferUpdateWithDefaults instantiates a new OfferUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OfferUpdate) GetApprovals

func (o *OfferUpdate) GetApprovals() map[string][]string

GetApprovals returns the Approvals field value if set, zero value otherwise.

func (*OfferUpdate) GetApprovalsOk

func (o *OfferUpdate) GetApprovalsOk() (*map[string][]string, bool)

GetApprovalsOk returns a tuple with the Approvals field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OfferUpdate) GetDescription

func (o *OfferUpdate) GetDescription() string

GetDescription returns the Description field value

func (*OfferUpdate) GetDescriptionOk

func (o *OfferUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*OfferUpdate) GetDisplayOrder

func (o *OfferUpdate) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value

func (*OfferUpdate) GetDisplayOrderOk

func (o *OfferUpdate) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder field value and a boolean to check if the value has been set.

func (*OfferUpdate) GetImage

func (o *OfferUpdate) GetImage() string

GetImage returns the Image field value

func (*OfferUpdate) GetImageOk

func (o *OfferUpdate) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value and a boolean to check if the value has been set.

func (*OfferUpdate) GetLabel

func (o *OfferUpdate) GetLabel() string

GetLabel returns the Label field value

func (*OfferUpdate) GetLabelOk

func (o *OfferUpdate) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*OfferUpdate) GetName

func (o *OfferUpdate) GetName() string

GetName returns the Name field value

func (*OfferUpdate) GetNameOk

func (o *OfferUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OfferUpdate) GetPrice

func (o *OfferUpdate) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*OfferUpdate) GetPriceOk

func (o *OfferUpdate) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OfferUpdate) GetProductId

func (o *OfferUpdate) GetProductId() string

GetProductId returns the ProductId field value

func (*OfferUpdate) GetProductIdOk

func (o *OfferUpdate) GetProductIdOk() (*string, bool)

GetProductIdOk returns a tuple with the ProductId field value and a boolean to check if the value has been set.

func (*OfferUpdate) GetSupportedOptions

func (o *OfferUpdate) GetSupportedOptions() []NameValue

GetSupportedOptions returns the SupportedOptions field value

func (*OfferUpdate) GetSupportedOptionsOk

func (o *OfferUpdate) GetSupportedOptionsOk() (*[]NameValue, bool)

GetSupportedOptionsOk returns a tuple with the SupportedOptions field value and a boolean to check if the value has been set.

func (*OfferUpdate) GetSupportedProperties

func (o *OfferUpdate) GetSupportedProperties() []string

GetSupportedProperties returns the SupportedProperties field value

func (*OfferUpdate) GetSupportedPropertiesOk

func (o *OfferUpdate) GetSupportedPropertiesOk() (*[]string, bool)

GetSupportedPropertiesOk returns a tuple with the SupportedProperties field value and a boolean to check if the value has been set.

func (*OfferUpdate) GetType

func (o *OfferUpdate) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*OfferUpdate) GetTypeOk

func (o *OfferUpdate) 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 (*OfferUpdate) GetVersion

func (o *OfferUpdate) GetVersion() int32

GetVersion returns the Version field value

func (*OfferUpdate) GetVersionOk

func (o *OfferUpdate) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (*OfferUpdate) HasApprovals

func (o *OfferUpdate) HasApprovals() bool

HasApprovals returns a boolean if a field has been set.

func (*OfferUpdate) HasPrice

func (o *OfferUpdate) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*OfferUpdate) HasType

func (o *OfferUpdate) HasType() bool

HasType returns a boolean if a field has been set.

func (OfferUpdate) MarshalJSON

func (o OfferUpdate) MarshalJSON() ([]byte, error)

func (*OfferUpdate) SetApprovals

func (o *OfferUpdate) SetApprovals(v map[string][]string)

SetApprovals gets a reference to the given map[string][]string and assigns it to the Approvals field.

func (*OfferUpdate) SetDescription

func (o *OfferUpdate) SetDescription(v string)

SetDescription sets field value

func (*OfferUpdate) SetDisplayOrder

func (o *OfferUpdate) SetDisplayOrder(v int32)

SetDisplayOrder sets field value

func (*OfferUpdate) SetImage

func (o *OfferUpdate) SetImage(v string)

SetImage sets field value

func (*OfferUpdate) SetLabel

func (o *OfferUpdate) SetLabel(v string)

SetLabel sets field value

func (*OfferUpdate) SetName

func (o *OfferUpdate) SetName(v string)

SetName sets field value

func (*OfferUpdate) SetPrice

func (o *OfferUpdate) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*OfferUpdate) SetProductId

func (o *OfferUpdate) SetProductId(v string)

SetProductId sets field value

func (*OfferUpdate) SetSupportedOptions

func (o *OfferUpdate) SetSupportedOptions(v []NameValue)

SetSupportedOptions sets field value

func (*OfferUpdate) SetSupportedProperties

func (o *OfferUpdate) SetSupportedProperties(v []string)

SetSupportedProperties sets field value

func (*OfferUpdate) SetType

func (o *OfferUpdate) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*OfferUpdate) SetVersion

func (o *OfferUpdate) SetVersion(v int32)

SetVersion sets field value

type OffersApiService

type OffersApiService service

OffersApiService OffersApi service

func (*OffersApiService) AddOfferAssignments

func (a *OffersApiService) AddOfferAssignments(ctx _context.Context, id string) ApiAddOfferAssignmentsRequest

* AddOfferAssignments Assigns a product offer to one or more tenants. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiAddOfferAssignmentsRequest

func (*OffersApiService) AddOfferAssignmentsExecute

* Execute executes the request * @return []CatalogAssignment

func (*OffersApiService) CreateOffer

* CreateOffer Creates a product offer. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateOfferRequest

func (*OffersApiService) CreateOfferExecute

func (a *OffersApiService) CreateOfferExecute(r ApiCreateOfferRequest) (Offer, *_nethttp.Response, error)

* Execute executes the request * @return Offer

func (*OffersApiService) DeleteOffer

* DeleteOffer Deletes a product offer * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteOfferRequest

func (*OffersApiService) DeleteOfferExecute

func (a *OffersApiService) DeleteOfferExecute(r ApiDeleteOfferRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*OffersApiService) GetOffer

* GetOffer Returns a product offer. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetOfferRequest

func (*OffersApiService) GetOfferAssignmentsList

func (a *OffersApiService) GetOfferAssignmentsList(ctx _context.Context, id string) ApiGetOfferAssignmentsListRequest

* GetOfferAssignmentsList Returns a list of tenant assignments for a product offer. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetOfferAssignmentsListRequest

func (*OffersApiService) GetOfferAssignmentsListExecute

func (a *OffersApiService) GetOfferAssignmentsListExecute(r ApiGetOfferAssignmentsListRequest) ([]CatalogAssignment, *_nethttp.Response, error)

* Execute executes the request * @return []CatalogAssignment

func (*OffersApiService) GetOfferExecute

func (a *OffersApiService) GetOfferExecute(r ApiGetOfferRequest) (Offer, *_nethttp.Response, error)

* Execute executes the request * @return Offer

func (*OffersApiService) GetOffersCount

* GetOffersCount Returns the number of product offers. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetOffersCountRequest

func (*OffersApiService) GetOffersCountExecute

func (a *OffersApiService) GetOffersCountExecute(r ApiGetOffersCountRequest) (int64, *_nethttp.Response, error)

* Execute executes the request * @return int64

func (*OffersApiService) GetOffersPage

* GetOffersPage Returns a page of product offers. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetOffersPageRequest

func (*OffersApiService) GetOffersPageExecute

* Execute executes the request * @return OffersPage

func (*OffersApiService) RemoveOfferAssignments

func (a *OffersApiService) RemoveOfferAssignments(ctx _context.Context, id string) ApiRemoveOfferAssignmentsRequest

* RemoveOfferAssignments Unassigns a product offer from one or more tenants. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiRemoveOfferAssignmentsRequest

func (*OffersApiService) RemoveOfferAssignmentsExecute

* Execute executes the request * @return []CatalogAssignment

func (*OffersApiService) UpdateOffer

* UpdateOffer Updates a product offer. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateOfferRequest

func (*OffersApiService) UpdateOfferAssignments

func (a *OffersApiService) UpdateOfferAssignments(ctx _context.Context, id string) ApiUpdateOfferAssignmentsRequest

* UpdateOfferAssignments Updates the tenant assignemnts for a product offer. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateOfferAssignmentsRequest

func (*OffersApiService) UpdateOfferAssignmentsExecute

* Execute executes the request * @return []CatalogAssignment

func (*OffersApiService) UpdateOfferExecute

func (a *OffersApiService) UpdateOfferExecute(r ApiUpdateOfferRequest) (Offer, *_nethttp.Response, error)

* Execute executes the request * @return Offer

type OffersPage

type OffersPage struct {
	Page        *int32       `json:"page,omitempty"`
	PageSize    *int32       `json:"pageSize,omitempty"`
	TotalItems  *int64       `json:"totalItems,omitempty"`
	HasNext     NullableBool `json:"hasNext,omitempty"`
	HasPrevious NullableBool `json:"hasPrevious,omitempty"`
	SortBy      *string      `json:"sortBy,omitempty"`
	SortOrder   *string      `json:"sortOrder,omitempty"`
	Contents    *[]Offer     `json:"contents,omitempty"`
}

OffersPage struct for OffersPage

func NewOffersPage

func NewOffersPage() *OffersPage

NewOffersPage instantiates a new OffersPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOffersPageWithDefaults

func NewOffersPageWithDefaults() *OffersPage

NewOffersPageWithDefaults instantiates a new OffersPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OffersPage) GetContents

func (o *OffersPage) GetContents() []Offer

GetContents returns the Contents field value if set, zero value otherwise.

func (*OffersPage) GetContentsOk

func (o *OffersPage) GetContentsOk() (*[]Offer, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OffersPage) GetHasNext

func (o *OffersPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OffersPage) GetHasNextOk

func (o *OffersPage) GetHasNextOk() (*bool, bool)

GetHasNextOk returns a tuple with the HasNext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OffersPage) GetHasPrevious

func (o *OffersPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OffersPage) GetHasPreviousOk

func (o *OffersPage) GetHasPreviousOk() (*bool, bool)

GetHasPreviousOk returns a tuple with the HasPrevious field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OffersPage) GetPage

func (o *OffersPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*OffersPage) GetPageOk

func (o *OffersPage) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OffersPage) GetPageSize

func (o *OffersPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*OffersPage) GetPageSizeOk

func (o *OffersPage) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OffersPage) GetSortBy

func (o *OffersPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise.

func (*OffersPage) GetSortByOk

func (o *OffersPage) GetSortByOk() (*string, bool)

GetSortByOk returns a tuple with the SortBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OffersPage) GetSortOrder

func (o *OffersPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*OffersPage) GetSortOrderOk

func (o *OffersPage) GetSortOrderOk() (*string, bool)

GetSortOrderOk returns a tuple with the SortOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OffersPage) GetTotalItems

func (o *OffersPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*OffersPage) GetTotalItemsOk

func (o *OffersPage) GetTotalItemsOk() (*int64, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OffersPage) HasContents

func (o *OffersPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*OffersPage) HasHasNext

func (o *OffersPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*OffersPage) HasHasPrevious

func (o *OffersPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*OffersPage) HasPage

func (o *OffersPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*OffersPage) HasPageSize

func (o *OffersPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*OffersPage) HasSortBy

func (o *OffersPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*OffersPage) HasSortOrder

func (o *OffersPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*OffersPage) HasTotalItems

func (o *OffersPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (OffersPage) MarshalJSON

func (o OffersPage) MarshalJSON() ([]byte, error)

func (*OffersPage) SetContents

func (o *OffersPage) SetContents(v []Offer)

SetContents gets a reference to the given []Offer and assigns it to the Contents field.

func (*OffersPage) SetHasNext

func (o *OffersPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*OffersPage) SetHasNextNil

func (o *OffersPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*OffersPage) SetHasPrevious

func (o *OffersPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*OffersPage) SetHasPreviousNil

func (o *OffersPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*OffersPage) SetPage

func (o *OffersPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*OffersPage) SetPageSize

func (o *OffersPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*OffersPage) SetSortBy

func (o *OffersPage) SetSortBy(v string)

SetSortBy gets a reference to the given string and assigns it to the SortBy field.

func (*OffersPage) SetSortOrder

func (o *OffersPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given string and assigns it to the SortOrder field.

func (*OffersPage) SetTotalItems

func (o *OffersPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given int64 and assigns it to the TotalItems field.

func (*OffersPage) UnsetHasNext

func (o *OffersPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*OffersPage) UnsetHasPrevious

func (o *OffersPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

type OffersPageAllOf

type OffersPageAllOf struct {
	Contents *[]Offer `json:"contents,omitempty"`
}

OffersPageAllOf struct for OffersPageAllOf

func NewOffersPageAllOf

func NewOffersPageAllOf() *OffersPageAllOf

NewOffersPageAllOf instantiates a new OffersPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOffersPageAllOfWithDefaults

func NewOffersPageAllOfWithDefaults() *OffersPageAllOf

NewOffersPageAllOfWithDefaults instantiates a new OffersPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OffersPageAllOf) GetContents

func (o *OffersPageAllOf) GetContents() []Offer

GetContents returns the Contents field value if set, zero value otherwise.

func (*OffersPageAllOf) GetContentsOk

func (o *OffersPageAllOf) GetContentsOk() (*[]Offer, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OffersPageAllOf) HasContents

func (o *OffersPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (OffersPageAllOf) MarshalJSON

func (o OffersPageAllOf) MarshalJSON() ([]byte, error)

func (*OffersPageAllOf) SetContents

func (o *OffersPageAllOf) SetContents(v []Offer)

SetContents gets a reference to the given []Offer and assigns it to the Contents field.

type PageHeader struct {
	Page        *int32       `json:"page,omitempty"`
	PageSize    *int32       `json:"pageSize,omitempty"`
	TotalItems  *int64       `json:"totalItems,omitempty"`
	HasNext     NullableBool `json:"hasNext,omitempty"`
	HasPrevious NullableBool `json:"hasPrevious,omitempty"`
	SortBy      *string      `json:"sortBy,omitempty"`
	SortOrder   *string      `json:"sortOrder,omitempty"`
}

PageHeader struct for PageHeader

func NewPageHeader

func NewPageHeader() *PageHeader

NewPageHeader instantiates a new PageHeader object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPageHeaderWithDefaults

func NewPageHeaderWithDefaults() *PageHeader

NewPageHeaderWithDefaults instantiates a new PageHeader object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PageHeader) GetHasNext

func (o *PageHeader) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PageHeader) GetHasNextOk

func (o *PageHeader) GetHasNextOk() (*bool, bool)

GetHasNextOk returns a tuple with the HasNext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PageHeader) GetHasPrevious

func (o *PageHeader) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PageHeader) GetHasPreviousOk

func (o *PageHeader) GetHasPreviousOk() (*bool, bool)

GetHasPreviousOk returns a tuple with the HasPrevious field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PageHeader) GetPage

func (o *PageHeader) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*PageHeader) GetPageOk

func (o *PageHeader) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PageHeader) GetPageSize

func (o *PageHeader) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*PageHeader) GetPageSizeOk

func (o *PageHeader) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PageHeader) GetSortBy

func (o *PageHeader) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise.

func (*PageHeader) GetSortByOk

func (o *PageHeader) GetSortByOk() (*string, bool)

GetSortByOk returns a tuple with the SortBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PageHeader) GetSortOrder

func (o *PageHeader) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*PageHeader) GetSortOrderOk

func (o *PageHeader) GetSortOrderOk() (*string, bool)

GetSortOrderOk returns a tuple with the SortOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PageHeader) GetTotalItems

func (o *PageHeader) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*PageHeader) GetTotalItemsOk

func (o *PageHeader) GetTotalItemsOk() (*int64, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PageHeader) HasHasNext

func (o *PageHeader) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*PageHeader) HasHasPrevious

func (o *PageHeader) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*PageHeader) HasPage

func (o *PageHeader) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*PageHeader) HasPageSize

func (o *PageHeader) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*PageHeader) HasSortBy

func (o *PageHeader) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*PageHeader) HasSortOrder

func (o *PageHeader) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*PageHeader) HasTotalItems

func (o *PageHeader) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (PageHeader) MarshalJSON

func (o PageHeader) MarshalJSON() ([]byte, error)

func (*PageHeader) SetHasNext

func (o *PageHeader) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*PageHeader) SetHasNextNil

func (o *PageHeader) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*PageHeader) SetHasPrevious

func (o *PageHeader) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*PageHeader) SetHasPreviousNil

func (o *PageHeader) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*PageHeader) SetPage

func (o *PageHeader) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*PageHeader) SetPageSize

func (o *PageHeader) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*PageHeader) SetSortBy

func (o *PageHeader) SetSortBy(v string)

SetSortBy gets a reference to the given string and assigns it to the SortBy field.

func (*PageHeader) SetSortOrder

func (o *PageHeader) SetSortOrder(v string)

SetSortOrder gets a reference to the given string and assigns it to the SortOrder field.

func (*PageHeader) SetTotalItems

func (o *PageHeader) SetTotalItems(v int64)

SetTotalItems gets a reference to the given int64 and assigns it to the TotalItems field.

func (*PageHeader) UnsetHasNext

func (o *PageHeader) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*PageHeader) UnsetHasPrevious

func (o *PageHeader) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

type Product

type Product struct {
	Id                           *string               `json:"id,omitempty"`
	Name                         string                `json:"name"`
	Label                        string                `json:"label"`
	Version                      int32                 `json:"version"`
	Description                  string                `json:"description"`
	Image                        string                `json:"image"`
	MultipleInstanceAllowed      *bool                 `json:"multipleInstanceAllowed,omitempty"`
	Price                        string                `json:"price"`
	DisplayOrder                 *int32                `json:"displayOrder,omitempty"`
	Active                       *bool                 `json:"active,omitempty"`
	OrderLimit                   *int32                `json:"orderLimit,omitempty"`
	Options                      []ServiceElement      `json:"options"`
	Properties                   []ServiceElement      `json:"properties"`
	Configuration                map[string]string     `json:"configuration"`
	IsResource                   bool                  `json:"isResource"`
	HasChildren                  bool                  `json:"hasChildren"`
	ParentId                     *string               `json:"parentId,omitempty"`
	ServiceExtensions            *[]NSOConfigDataXPath `json:"serviceExtensions,omitempty"`
	ServiceConfigQueryRootXPaths *[]string             `json:"serviceConfigQueryRootXPaths,omitempty"`
	UiConfig                     *ServiceUIConfig      `json:"uiConfig,omitempty"`
}

Product struct for Product

func NewProduct

func NewProduct(name string, label string, version int32, description string, image string, price string, options []ServiceElement, properties []ServiceElement, configuration map[string]string, isResource bool, hasChildren bool) *Product

NewProduct instantiates a new Product object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductWithDefaults

func NewProductWithDefaults() *Product

NewProductWithDefaults instantiates a new Product object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Product) GetActive

func (o *Product) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*Product) GetActiveOk

func (o *Product) 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 (*Product) GetConfiguration

func (o *Product) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value

func (*Product) GetConfigurationOk

func (o *Product) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration field value and a boolean to check if the value has been set.

func (*Product) GetDescription

func (o *Product) GetDescription() string

GetDescription returns the Description field value

func (*Product) GetDescriptionOk

func (o *Product) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*Product) GetDisplayOrder

func (o *Product) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*Product) GetDisplayOrderOk

func (o *Product) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Product) GetHasChildren

func (o *Product) GetHasChildren() bool

GetHasChildren returns the HasChildren field value

func (*Product) GetHasChildrenOk

func (o *Product) GetHasChildrenOk() (*bool, bool)

GetHasChildrenOk returns a tuple with the HasChildren field value and a boolean to check if the value has been set.

func (*Product) GetId

func (o *Product) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Product) GetIdOk

func (o *Product) 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 (*Product) GetImage

func (o *Product) GetImage() string

GetImage returns the Image field value

func (*Product) GetImageOk

func (o *Product) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value and a boolean to check if the value has been set.

func (*Product) GetIsResource

func (o *Product) GetIsResource() bool

GetIsResource returns the IsResource field value

func (*Product) GetIsResourceOk

func (o *Product) GetIsResourceOk() (*bool, bool)

GetIsResourceOk returns a tuple with the IsResource field value and a boolean to check if the value has been set.

func (*Product) GetLabel

func (o *Product) GetLabel() string

GetLabel returns the Label field value

func (*Product) GetLabelOk

func (o *Product) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*Product) GetMultipleInstanceAllowed

func (o *Product) GetMultipleInstanceAllowed() bool

GetMultipleInstanceAllowed returns the MultipleInstanceAllowed field value if set, zero value otherwise.

func (*Product) GetMultipleInstanceAllowedOk

func (o *Product) GetMultipleInstanceAllowedOk() (*bool, bool)

GetMultipleInstanceAllowedOk returns a tuple with the MultipleInstanceAllowed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Product) GetName

func (o *Product) GetName() string

GetName returns the Name field value

func (*Product) GetNameOk

func (o *Product) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Product) GetOptions

func (o *Product) GetOptions() []ServiceElement

GetOptions returns the Options field value

func (*Product) GetOptionsOk

func (o *Product) GetOptionsOk() (*[]ServiceElement, bool)

GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.

func (*Product) GetOrderLimit

func (o *Product) GetOrderLimit() int32

GetOrderLimit returns the OrderLimit field value if set, zero value otherwise.

func (*Product) GetOrderLimitOk

func (o *Product) GetOrderLimitOk() (*int32, bool)

GetOrderLimitOk returns a tuple with the OrderLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Product) GetParentId

func (o *Product) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*Product) GetParentIdOk

func (o *Product) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Product) GetPrice

func (o *Product) GetPrice() string

GetPrice returns the Price field value

func (*Product) GetPriceOk

func (o *Product) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value and a boolean to check if the value has been set.

func (*Product) GetProperties

func (o *Product) GetProperties() []ServiceElement

GetProperties returns the Properties field value

func (*Product) GetPropertiesOk

func (o *Product) GetPropertiesOk() (*[]ServiceElement, bool)

GetPropertiesOk returns a tuple with the Properties field value and a boolean to check if the value has been set.

func (*Product) GetServiceConfigQueryRootXPaths

func (o *Product) GetServiceConfigQueryRootXPaths() []string

GetServiceConfigQueryRootXPaths returns the ServiceConfigQueryRootXPaths field value if set, zero value otherwise.

func (*Product) GetServiceConfigQueryRootXPathsOk

func (o *Product) GetServiceConfigQueryRootXPathsOk() (*[]string, bool)

GetServiceConfigQueryRootXPathsOk returns a tuple with the ServiceConfigQueryRootXPaths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Product) GetServiceExtensions

func (o *Product) GetServiceExtensions() []NSOConfigDataXPath

GetServiceExtensions returns the ServiceExtensions field value if set, zero value otherwise.

func (*Product) GetServiceExtensionsOk

func (o *Product) GetServiceExtensionsOk() (*[]NSOConfigDataXPath, bool)

GetServiceExtensionsOk returns a tuple with the ServiceExtensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Product) GetUiConfig

func (o *Product) GetUiConfig() ServiceUIConfig

GetUiConfig returns the UiConfig field value if set, zero value otherwise.

func (*Product) GetUiConfigOk

func (o *Product) GetUiConfigOk() (*ServiceUIConfig, bool)

GetUiConfigOk returns a tuple with the UiConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Product) GetVersion

func (o *Product) GetVersion() int32

GetVersion returns the Version field value

func (*Product) GetVersionOk

func (o *Product) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (*Product) HasActive

func (o *Product) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*Product) HasDisplayOrder

func (o *Product) HasDisplayOrder() bool

HasDisplayOrder returns a boolean if a field has been set.

func (*Product) HasId

func (o *Product) HasId() bool

HasId returns a boolean if a field has been set.

func (*Product) HasMultipleInstanceAllowed

func (o *Product) HasMultipleInstanceAllowed() bool

HasMultipleInstanceAllowed returns a boolean if a field has been set.

func (*Product) HasOrderLimit

func (o *Product) HasOrderLimit() bool

HasOrderLimit returns a boolean if a field has been set.

func (*Product) HasParentId

func (o *Product) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*Product) HasServiceConfigQueryRootXPaths

func (o *Product) HasServiceConfigQueryRootXPaths() bool

HasServiceConfigQueryRootXPaths returns a boolean if a field has been set.

func (*Product) HasServiceExtensions

func (o *Product) HasServiceExtensions() bool

HasServiceExtensions returns a boolean if a field has been set.

func (*Product) HasUiConfig

func (o *Product) HasUiConfig() bool

HasUiConfig returns a boolean if a field has been set.

func (Product) MarshalJSON

func (o Product) MarshalJSON() ([]byte, error)

func (*Product) SetActive

func (o *Product) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*Product) SetConfiguration

func (o *Product) SetConfiguration(v map[string]string)

SetConfiguration sets field value

func (*Product) SetDescription

func (o *Product) SetDescription(v string)

SetDescription sets field value

func (*Product) SetDisplayOrder

func (o *Product) SetDisplayOrder(v int32)

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*Product) SetHasChildren

func (o *Product) SetHasChildren(v bool)

SetHasChildren sets field value

func (*Product) SetId

func (o *Product) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Product) SetImage

func (o *Product) SetImage(v string)

SetImage sets field value

func (*Product) SetIsResource

func (o *Product) SetIsResource(v bool)

SetIsResource sets field value

func (*Product) SetLabel

func (o *Product) SetLabel(v string)

SetLabel sets field value

func (*Product) SetMultipleInstanceAllowed

func (o *Product) SetMultipleInstanceAllowed(v bool)

SetMultipleInstanceAllowed gets a reference to the given bool and assigns it to the MultipleInstanceAllowed field.

func (*Product) SetName

func (o *Product) SetName(v string)

SetName sets field value

func (*Product) SetOptions

func (o *Product) SetOptions(v []ServiceElement)

SetOptions sets field value

func (*Product) SetOrderLimit

func (o *Product) SetOrderLimit(v int32)

SetOrderLimit gets a reference to the given int32 and assigns it to the OrderLimit field.

func (*Product) SetParentId

func (o *Product) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*Product) SetPrice

func (o *Product) SetPrice(v string)

SetPrice sets field value

func (*Product) SetProperties

func (o *Product) SetProperties(v []ServiceElement)

SetProperties sets field value

func (*Product) SetServiceConfigQueryRootXPaths

func (o *Product) SetServiceConfigQueryRootXPaths(v []string)

SetServiceConfigQueryRootXPaths gets a reference to the given []string and assigns it to the ServiceConfigQueryRootXPaths field.

func (*Product) SetServiceExtensions

func (o *Product) SetServiceExtensions(v []NSOConfigDataXPath)

SetServiceExtensions gets a reference to the given []NSOConfigDataXPath and assigns it to the ServiceExtensions field.

func (*Product) SetUiConfig

func (o *Product) SetUiConfig(v ServiceUIConfig)

SetUiConfig gets a reference to the given ServiceUIConfig and assigns it to the UiConfig field.

func (*Product) SetVersion

func (o *Product) SetVersion(v int32)

SetVersion sets field value

type ProductAllOf

type ProductAllOf struct {
	Id *string `json:"id,omitempty"`
}

ProductAllOf struct for ProductAllOf

func NewProductAllOf

func NewProductAllOf() *ProductAllOf

NewProductAllOf instantiates a new ProductAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductAllOfWithDefaults

func NewProductAllOfWithDefaults() *ProductAllOf

NewProductAllOfWithDefaults instantiates a new ProductAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductAllOf) GetId

func (o *ProductAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ProductAllOf) GetIdOk

func (o *ProductAllOf) 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 (*ProductAllOf) HasId

func (o *ProductAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (ProductAllOf) MarshalJSON

func (o ProductAllOf) MarshalJSON() ([]byte, error)

func (*ProductAllOf) SetId

func (o *ProductAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

type ProductCreate

type ProductCreate struct {
	Name                         string                `json:"name"`
	Label                        string                `json:"label"`
	Version                      int32                 `json:"version"`
	Description                  string                `json:"description"`
	Image                        string                `json:"image"`
	MultipleInstanceAllowed      *bool                 `json:"multipleInstanceAllowed,omitempty"`
	Price                        string                `json:"price"`
	DisplayOrder                 *int32                `json:"displayOrder,omitempty"`
	Active                       *bool                 `json:"active,omitempty"`
	OrderLimit                   *int32                `json:"orderLimit,omitempty"`
	Options                      []ServiceElement      `json:"options"`
	Properties                   []ServiceElement      `json:"properties"`
	Configuration                map[string]string     `json:"configuration"`
	IsResource                   bool                  `json:"isResource"`
	HasChildren                  bool                  `json:"hasChildren"`
	ParentId                     *string               `json:"parentId,omitempty"`
	ServiceExtensions            *[]NSOConfigDataXPath `json:"serviceExtensions,omitempty"`
	ServiceConfigQueryRootXPaths *[]string             `json:"serviceConfigQueryRootXPaths,omitempty"`
	UiConfig                     *ServiceUIConfig      `json:"uiConfig,omitempty"`
}

ProductCreate struct for ProductCreate

func NewProductCreate

func NewProductCreate(name string, label string, version int32, description string, image string, price string, options []ServiceElement, properties []ServiceElement, configuration map[string]string, isResource bool, hasChildren bool) *ProductCreate

NewProductCreate instantiates a new ProductCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductCreateWithDefaults

func NewProductCreateWithDefaults() *ProductCreate

NewProductCreateWithDefaults instantiates a new ProductCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductCreate) GetActive

func (o *ProductCreate) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*ProductCreate) GetActiveOk

func (o *ProductCreate) 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 (*ProductCreate) GetConfiguration

func (o *ProductCreate) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value

func (*ProductCreate) GetConfigurationOk

func (o *ProductCreate) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration field value and a boolean to check if the value has been set.

func (*ProductCreate) GetDescription

func (o *ProductCreate) GetDescription() string

GetDescription returns the Description field value

func (*ProductCreate) GetDescriptionOk

func (o *ProductCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*ProductCreate) GetDisplayOrder

func (o *ProductCreate) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*ProductCreate) GetDisplayOrderOk

func (o *ProductCreate) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductCreate) GetHasChildren

func (o *ProductCreate) GetHasChildren() bool

GetHasChildren returns the HasChildren field value

func (*ProductCreate) GetHasChildrenOk

func (o *ProductCreate) GetHasChildrenOk() (*bool, bool)

GetHasChildrenOk returns a tuple with the HasChildren field value and a boolean to check if the value has been set.

func (*ProductCreate) GetImage

func (o *ProductCreate) GetImage() string

GetImage returns the Image field value

func (*ProductCreate) GetImageOk

func (o *ProductCreate) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value and a boolean to check if the value has been set.

func (*ProductCreate) GetIsResource

func (o *ProductCreate) GetIsResource() bool

GetIsResource returns the IsResource field value

func (*ProductCreate) GetIsResourceOk

func (o *ProductCreate) GetIsResourceOk() (*bool, bool)

GetIsResourceOk returns a tuple with the IsResource field value and a boolean to check if the value has been set.

func (*ProductCreate) GetLabel

func (o *ProductCreate) GetLabel() string

GetLabel returns the Label field value

func (*ProductCreate) GetLabelOk

func (o *ProductCreate) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*ProductCreate) GetMultipleInstanceAllowed

func (o *ProductCreate) GetMultipleInstanceAllowed() bool

GetMultipleInstanceAllowed returns the MultipleInstanceAllowed field value if set, zero value otherwise.

func (*ProductCreate) GetMultipleInstanceAllowedOk

func (o *ProductCreate) GetMultipleInstanceAllowedOk() (*bool, bool)

GetMultipleInstanceAllowedOk returns a tuple with the MultipleInstanceAllowed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductCreate) GetName

func (o *ProductCreate) GetName() string

GetName returns the Name field value

func (*ProductCreate) GetNameOk

func (o *ProductCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProductCreate) GetOptions

func (o *ProductCreate) GetOptions() []ServiceElement

GetOptions returns the Options field value

func (*ProductCreate) GetOptionsOk

func (o *ProductCreate) GetOptionsOk() (*[]ServiceElement, bool)

GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.

func (*ProductCreate) GetOrderLimit

func (o *ProductCreate) GetOrderLimit() int32

GetOrderLimit returns the OrderLimit field value if set, zero value otherwise.

func (*ProductCreate) GetOrderLimitOk

func (o *ProductCreate) GetOrderLimitOk() (*int32, bool)

GetOrderLimitOk returns a tuple with the OrderLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductCreate) GetParentId

func (o *ProductCreate) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*ProductCreate) GetParentIdOk

func (o *ProductCreate) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductCreate) GetPrice

func (o *ProductCreate) GetPrice() string

GetPrice returns the Price field value

func (*ProductCreate) GetPriceOk

func (o *ProductCreate) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value and a boolean to check if the value has been set.

func (*ProductCreate) GetProperties

func (o *ProductCreate) GetProperties() []ServiceElement

GetProperties returns the Properties field value

func (*ProductCreate) GetPropertiesOk

func (o *ProductCreate) GetPropertiesOk() (*[]ServiceElement, bool)

GetPropertiesOk returns a tuple with the Properties field value and a boolean to check if the value has been set.

func (*ProductCreate) GetServiceConfigQueryRootXPaths

func (o *ProductCreate) GetServiceConfigQueryRootXPaths() []string

GetServiceConfigQueryRootXPaths returns the ServiceConfigQueryRootXPaths field value if set, zero value otherwise.

func (*ProductCreate) GetServiceConfigQueryRootXPathsOk

func (o *ProductCreate) GetServiceConfigQueryRootXPathsOk() (*[]string, bool)

GetServiceConfigQueryRootXPathsOk returns a tuple with the ServiceConfigQueryRootXPaths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductCreate) GetServiceExtensions

func (o *ProductCreate) GetServiceExtensions() []NSOConfigDataXPath

GetServiceExtensions returns the ServiceExtensions field value if set, zero value otherwise.

func (*ProductCreate) GetServiceExtensionsOk

func (o *ProductCreate) GetServiceExtensionsOk() (*[]NSOConfigDataXPath, bool)

GetServiceExtensionsOk returns a tuple with the ServiceExtensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductCreate) GetUiConfig

func (o *ProductCreate) GetUiConfig() ServiceUIConfig

GetUiConfig returns the UiConfig field value if set, zero value otherwise.

func (*ProductCreate) GetUiConfigOk

func (o *ProductCreate) GetUiConfigOk() (*ServiceUIConfig, bool)

GetUiConfigOk returns a tuple with the UiConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductCreate) GetVersion

func (o *ProductCreate) GetVersion() int32

GetVersion returns the Version field value

func (*ProductCreate) GetVersionOk

func (o *ProductCreate) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (*ProductCreate) HasActive

func (o *ProductCreate) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*ProductCreate) HasDisplayOrder

func (o *ProductCreate) HasDisplayOrder() bool

HasDisplayOrder returns a boolean if a field has been set.

func (*ProductCreate) HasMultipleInstanceAllowed

func (o *ProductCreate) HasMultipleInstanceAllowed() bool

HasMultipleInstanceAllowed returns a boolean if a field has been set.

func (*ProductCreate) HasOrderLimit

func (o *ProductCreate) HasOrderLimit() bool

HasOrderLimit returns a boolean if a field has been set.

func (*ProductCreate) HasParentId

func (o *ProductCreate) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*ProductCreate) HasServiceConfigQueryRootXPaths

func (o *ProductCreate) HasServiceConfigQueryRootXPaths() bool

HasServiceConfigQueryRootXPaths returns a boolean if a field has been set.

func (*ProductCreate) HasServiceExtensions

func (o *ProductCreate) HasServiceExtensions() bool

HasServiceExtensions returns a boolean if a field has been set.

func (*ProductCreate) HasUiConfig

func (o *ProductCreate) HasUiConfig() bool

HasUiConfig returns a boolean if a field has been set.

func (ProductCreate) MarshalJSON

func (o ProductCreate) MarshalJSON() ([]byte, error)

func (*ProductCreate) SetActive

func (o *ProductCreate) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*ProductCreate) SetConfiguration

func (o *ProductCreate) SetConfiguration(v map[string]string)

SetConfiguration sets field value

func (*ProductCreate) SetDescription

func (o *ProductCreate) SetDescription(v string)

SetDescription sets field value

func (*ProductCreate) SetDisplayOrder

func (o *ProductCreate) SetDisplayOrder(v int32)

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*ProductCreate) SetHasChildren

func (o *ProductCreate) SetHasChildren(v bool)

SetHasChildren sets field value

func (*ProductCreate) SetImage

func (o *ProductCreate) SetImage(v string)

SetImage sets field value

func (*ProductCreate) SetIsResource

func (o *ProductCreate) SetIsResource(v bool)

SetIsResource sets field value

func (*ProductCreate) SetLabel

func (o *ProductCreate) SetLabel(v string)

SetLabel sets field value

func (*ProductCreate) SetMultipleInstanceAllowed

func (o *ProductCreate) SetMultipleInstanceAllowed(v bool)

SetMultipleInstanceAllowed gets a reference to the given bool and assigns it to the MultipleInstanceAllowed field.

func (*ProductCreate) SetName

func (o *ProductCreate) SetName(v string)

SetName sets field value

func (*ProductCreate) SetOptions

func (o *ProductCreate) SetOptions(v []ServiceElement)

SetOptions sets field value

func (*ProductCreate) SetOrderLimit

func (o *ProductCreate) SetOrderLimit(v int32)

SetOrderLimit gets a reference to the given int32 and assigns it to the OrderLimit field.

func (*ProductCreate) SetParentId

func (o *ProductCreate) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*ProductCreate) SetPrice

func (o *ProductCreate) SetPrice(v string)

SetPrice sets field value

func (*ProductCreate) SetProperties

func (o *ProductCreate) SetProperties(v []ServiceElement)

SetProperties sets field value

func (*ProductCreate) SetServiceConfigQueryRootXPaths

func (o *ProductCreate) SetServiceConfigQueryRootXPaths(v []string)

SetServiceConfigQueryRootXPaths gets a reference to the given []string and assigns it to the ServiceConfigQueryRootXPaths field.

func (*ProductCreate) SetServiceExtensions

func (o *ProductCreate) SetServiceExtensions(v []NSOConfigDataXPath)

SetServiceExtensions gets a reference to the given []NSOConfigDataXPath and assigns it to the ServiceExtensions field.

func (*ProductCreate) SetUiConfig

func (o *ProductCreate) SetUiConfig(v ServiceUIConfig)

SetUiConfig gets a reference to the given ServiceUIConfig and assigns it to the UiConfig field.

func (*ProductCreate) SetVersion

func (o *ProductCreate) SetVersion(v int32)

SetVersion sets field value

type ProductUpdate

type ProductUpdate struct {
	Name                         string                `json:"name"`
	Label                        string                `json:"label"`
	Version                      int32                 `json:"version"`
	Description                  string                `json:"description"`
	Image                        string                `json:"image"`
	MultipleInstanceAllowed      *bool                 `json:"multipleInstanceAllowed,omitempty"`
	Price                        string                `json:"price"`
	DisplayOrder                 *int32                `json:"displayOrder,omitempty"`
	Active                       *bool                 `json:"active,omitempty"`
	OrderLimit                   *int32                `json:"orderLimit,omitempty"`
	Options                      []ServiceElement      `json:"options"`
	Properties                   []ServiceElement      `json:"properties"`
	Configuration                map[string]string     `json:"configuration"`
	IsResource                   bool                  `json:"isResource"`
	HasChildren                  bool                  `json:"hasChildren"`
	ParentId                     *string               `json:"parentId,omitempty"`
	ServiceExtensions            *[]NSOConfigDataXPath `json:"serviceExtensions,omitempty"`
	ServiceConfigQueryRootXPaths *[]string             `json:"serviceConfigQueryRootXPaths,omitempty"`
	UiConfig                     *ServiceUIConfig      `json:"uiConfig,omitempty"`
}

ProductUpdate struct for ProductUpdate

func NewProductUpdate

func NewProductUpdate(name string, label string, version int32, description string, image string, price string, options []ServiceElement, properties []ServiceElement, configuration map[string]string, isResource bool, hasChildren bool) *ProductUpdate

NewProductUpdate instantiates a new ProductUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductUpdateWithDefaults

func NewProductUpdateWithDefaults() *ProductUpdate

NewProductUpdateWithDefaults instantiates a new ProductUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductUpdate) GetActive

func (o *ProductUpdate) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*ProductUpdate) GetActiveOk

func (o *ProductUpdate) 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 (*ProductUpdate) GetConfiguration

func (o *ProductUpdate) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value

func (*ProductUpdate) GetConfigurationOk

func (o *ProductUpdate) GetConfigurationOk() (*map[string]string, bool)

GetConfigurationOk returns a tuple with the Configuration field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetDescription

func (o *ProductUpdate) GetDescription() string

GetDescription returns the Description field value

func (*ProductUpdate) GetDescriptionOk

func (o *ProductUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetDisplayOrder

func (o *ProductUpdate) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*ProductUpdate) GetDisplayOrderOk

func (o *ProductUpdate) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductUpdate) GetHasChildren

func (o *ProductUpdate) GetHasChildren() bool

GetHasChildren returns the HasChildren field value

func (*ProductUpdate) GetHasChildrenOk

func (o *ProductUpdate) GetHasChildrenOk() (*bool, bool)

GetHasChildrenOk returns a tuple with the HasChildren field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetImage

func (o *ProductUpdate) GetImage() string

GetImage returns the Image field value

func (*ProductUpdate) GetImageOk

func (o *ProductUpdate) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetIsResource

func (o *ProductUpdate) GetIsResource() bool

GetIsResource returns the IsResource field value

func (*ProductUpdate) GetIsResourceOk

func (o *ProductUpdate) GetIsResourceOk() (*bool, bool)

GetIsResourceOk returns a tuple with the IsResource field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetLabel

func (o *ProductUpdate) GetLabel() string

GetLabel returns the Label field value

func (*ProductUpdate) GetLabelOk

func (o *ProductUpdate) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetMultipleInstanceAllowed

func (o *ProductUpdate) GetMultipleInstanceAllowed() bool

GetMultipleInstanceAllowed returns the MultipleInstanceAllowed field value if set, zero value otherwise.

func (*ProductUpdate) GetMultipleInstanceAllowedOk

func (o *ProductUpdate) GetMultipleInstanceAllowedOk() (*bool, bool)

GetMultipleInstanceAllowedOk returns a tuple with the MultipleInstanceAllowed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductUpdate) GetName

func (o *ProductUpdate) GetName() string

GetName returns the Name field value

func (*ProductUpdate) GetNameOk

func (o *ProductUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetOptions

func (o *ProductUpdate) GetOptions() []ServiceElement

GetOptions returns the Options field value

func (*ProductUpdate) GetOptionsOk

func (o *ProductUpdate) GetOptionsOk() (*[]ServiceElement, bool)

GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetOrderLimit

func (o *ProductUpdate) GetOrderLimit() int32

GetOrderLimit returns the OrderLimit field value if set, zero value otherwise.

func (*ProductUpdate) GetOrderLimitOk

func (o *ProductUpdate) GetOrderLimitOk() (*int32, bool)

GetOrderLimitOk returns a tuple with the OrderLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductUpdate) GetParentId

func (o *ProductUpdate) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*ProductUpdate) GetParentIdOk

func (o *ProductUpdate) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductUpdate) GetPrice

func (o *ProductUpdate) GetPrice() string

GetPrice returns the Price field value

func (*ProductUpdate) GetPriceOk

func (o *ProductUpdate) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetProperties

func (o *ProductUpdate) GetProperties() []ServiceElement

GetProperties returns the Properties field value

func (*ProductUpdate) GetPropertiesOk

func (o *ProductUpdate) GetPropertiesOk() (*[]ServiceElement, bool)

GetPropertiesOk returns a tuple with the Properties field value and a boolean to check if the value has been set.

func (*ProductUpdate) GetServiceConfigQueryRootXPaths

func (o *ProductUpdate) GetServiceConfigQueryRootXPaths() []string

GetServiceConfigQueryRootXPaths returns the ServiceConfigQueryRootXPaths field value if set, zero value otherwise.

func (*ProductUpdate) GetServiceConfigQueryRootXPathsOk

func (o *ProductUpdate) GetServiceConfigQueryRootXPathsOk() (*[]string, bool)

GetServiceConfigQueryRootXPathsOk returns a tuple with the ServiceConfigQueryRootXPaths field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductUpdate) GetServiceExtensions

func (o *ProductUpdate) GetServiceExtensions() []NSOConfigDataXPath

GetServiceExtensions returns the ServiceExtensions field value if set, zero value otherwise.

func (*ProductUpdate) GetServiceExtensionsOk

func (o *ProductUpdate) GetServiceExtensionsOk() (*[]NSOConfigDataXPath, bool)

GetServiceExtensionsOk returns a tuple with the ServiceExtensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductUpdate) GetUiConfig

func (o *ProductUpdate) GetUiConfig() ServiceUIConfig

GetUiConfig returns the UiConfig field value if set, zero value otherwise.

func (*ProductUpdate) GetUiConfigOk

func (o *ProductUpdate) GetUiConfigOk() (*ServiceUIConfig, bool)

GetUiConfigOk returns a tuple with the UiConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductUpdate) GetVersion

func (o *ProductUpdate) GetVersion() int32

GetVersion returns the Version field value

func (*ProductUpdate) GetVersionOk

func (o *ProductUpdate) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (*ProductUpdate) HasActive

func (o *ProductUpdate) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*ProductUpdate) HasDisplayOrder

func (o *ProductUpdate) HasDisplayOrder() bool

HasDisplayOrder returns a boolean if a field has been set.

func (*ProductUpdate) HasMultipleInstanceAllowed

func (o *ProductUpdate) HasMultipleInstanceAllowed() bool

HasMultipleInstanceAllowed returns a boolean if a field has been set.

func (*ProductUpdate) HasOrderLimit

func (o *ProductUpdate) HasOrderLimit() bool

HasOrderLimit returns a boolean if a field has been set.

func (*ProductUpdate) HasParentId

func (o *ProductUpdate) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*ProductUpdate) HasServiceConfigQueryRootXPaths

func (o *ProductUpdate) HasServiceConfigQueryRootXPaths() bool

HasServiceConfigQueryRootXPaths returns a boolean if a field has been set.

func (*ProductUpdate) HasServiceExtensions

func (o *ProductUpdate) HasServiceExtensions() bool

HasServiceExtensions returns a boolean if a field has been set.

func (*ProductUpdate) HasUiConfig

func (o *ProductUpdate) HasUiConfig() bool

HasUiConfig returns a boolean if a field has been set.

func (ProductUpdate) MarshalJSON

func (o ProductUpdate) MarshalJSON() ([]byte, error)

func (*ProductUpdate) SetActive

func (o *ProductUpdate) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*ProductUpdate) SetConfiguration

func (o *ProductUpdate) SetConfiguration(v map[string]string)

SetConfiguration sets field value

func (*ProductUpdate) SetDescription

func (o *ProductUpdate) SetDescription(v string)

SetDescription sets field value

func (*ProductUpdate) SetDisplayOrder

func (o *ProductUpdate) SetDisplayOrder(v int32)

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*ProductUpdate) SetHasChildren

func (o *ProductUpdate) SetHasChildren(v bool)

SetHasChildren sets field value

func (*ProductUpdate) SetImage

func (o *ProductUpdate) SetImage(v string)

SetImage sets field value

func (*ProductUpdate) SetIsResource

func (o *ProductUpdate) SetIsResource(v bool)

SetIsResource sets field value

func (*ProductUpdate) SetLabel

func (o *ProductUpdate) SetLabel(v string)

SetLabel sets field value

func (*ProductUpdate) SetMultipleInstanceAllowed

func (o *ProductUpdate) SetMultipleInstanceAllowed(v bool)

SetMultipleInstanceAllowed gets a reference to the given bool and assigns it to the MultipleInstanceAllowed field.

func (*ProductUpdate) SetName

func (o *ProductUpdate) SetName(v string)

SetName sets field value

func (*ProductUpdate) SetOptions

func (o *ProductUpdate) SetOptions(v []ServiceElement)

SetOptions sets field value

func (*ProductUpdate) SetOrderLimit

func (o *ProductUpdate) SetOrderLimit(v int32)

SetOrderLimit gets a reference to the given int32 and assigns it to the OrderLimit field.

func (*ProductUpdate) SetParentId

func (o *ProductUpdate) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*ProductUpdate) SetPrice

func (o *ProductUpdate) SetPrice(v string)

SetPrice sets field value

func (*ProductUpdate) SetProperties

func (o *ProductUpdate) SetProperties(v []ServiceElement)

SetProperties sets field value

func (*ProductUpdate) SetServiceConfigQueryRootXPaths

func (o *ProductUpdate) SetServiceConfigQueryRootXPaths(v []string)

SetServiceConfigQueryRootXPaths gets a reference to the given []string and assigns it to the ServiceConfigQueryRootXPaths field.

func (*ProductUpdate) SetServiceExtensions

func (o *ProductUpdate) SetServiceExtensions(v []NSOConfigDataXPath)

SetServiceExtensions gets a reference to the given []NSOConfigDataXPath and assigns it to the ServiceExtensions field.

func (*ProductUpdate) SetUiConfig

func (o *ProductUpdate) SetUiConfig(v ServiceUIConfig)

SetUiConfig gets a reference to the given ServiceUIConfig and assigns it to the UiConfig field.

func (*ProductUpdate) SetVersion

func (o *ProductUpdate) SetVersion(v int32)

SetVersion sets field value

type ProductsApiService

type ProductsApiService service

ProductsApiService ProductsApi service

func (*ProductsApiService) AddProductAssignments

func (a *ProductsApiService) AddProductAssignments(ctx _context.Context, id string) ApiAddProductAssignmentsRequest

* AddProductAssignments Assigns a product to one or more tenants. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiAddProductAssignmentsRequest

func (*ProductsApiService) AddProductAssignmentsExecute

* Execute executes the request * @return []CatalogAssignment

func (*ProductsApiService) CreateProduct

* CreateProduct Creates a product. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateProductRequest

func (*ProductsApiService) CreateProductExecute

func (a *ProductsApiService) CreateProductExecute(r ApiCreateProductRequest) (Product, *_nethttp.Response, error)

* Execute executes the request * @return Product

func (*ProductsApiService) DeleteProduct

* DeleteProduct Deletes a product. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteProductRequest

func (*ProductsApiService) DeleteProductExecute

func (a *ProductsApiService) DeleteProductExecute(r ApiDeleteProductRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*ProductsApiService) GetProduct

* GetProduct Returns a product. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetProductRequest

func (*ProductsApiService) GetProductAssignmentsList

func (a *ProductsApiService) GetProductAssignmentsList(ctx _context.Context, id string) ApiGetProductAssignmentsListRequest

* GetProductAssignmentsList Returns a list of tenant assignments for a product . * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetProductAssignmentsListRequest

func (*ProductsApiService) GetProductAssignmentsListExecute

* Execute executes the request * @return []CatalogAssignment

func (*ProductsApiService) GetProductExecute

* Execute executes the request * @return Product

func (*ProductsApiService) GetProductsCount

* GetProductsCount Returns the number of products. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetProductsCountRequest

func (*ProductsApiService) GetProductsCountExecute

func (a *ProductsApiService) GetProductsCountExecute(r ApiGetProductsCountRequest) (int64, *_nethttp.Response, error)

* Execute executes the request * @return int64

func (*ProductsApiService) GetProductsPage

* GetProductsPage Returns a page of products. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetProductsPageRequest

func (*ProductsApiService) GetProductsPageExecute

* Execute executes the request * @return ProductsPage

func (*ProductsApiService) RemoveProductAssignments

func (a *ProductsApiService) RemoveProductAssignments(ctx _context.Context, id string) ApiRemoveProductAssignmentsRequest

* RemoveProductAssignments Unassigns a product from one or more tenants * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiRemoveProductAssignmentsRequest

func (*ProductsApiService) RemoveProductAssignmentsExecute

* Execute executes the request * @return []CatalogAssignment

func (*ProductsApiService) UpdateProduct

* UpdateProduct Updates a product. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateProductRequest

func (*ProductsApiService) UpdateProductAssignments

func (a *ProductsApiService) UpdateProductAssignments(ctx _context.Context, id string) ApiUpdateProductAssignmentsRequest

* UpdateProductAssignments Updates the tenant assignments for a product. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateProductAssignmentsRequest

func (*ProductsApiService) UpdateProductAssignmentsExecute

* Execute executes the request * @return []CatalogAssignment

func (*ProductsApiService) UpdateProductExecute

func (a *ProductsApiService) UpdateProductExecute(r ApiUpdateProductRequest) (Product, *_nethttp.Response, error)

* Execute executes the request * @return Product

type ProductsPage

type ProductsPage struct {
	Page        *int32       `json:"page,omitempty"`
	PageSize    *int32       `json:"pageSize,omitempty"`
	TotalItems  *int64       `json:"totalItems,omitempty"`
	HasNext     NullableBool `json:"hasNext,omitempty"`
	HasPrevious NullableBool `json:"hasPrevious,omitempty"`
	SortBy      *string      `json:"sortBy,omitempty"`
	SortOrder   *string      `json:"sortOrder,omitempty"`
	Contents    *[]Product   `json:"contents,omitempty"`
}

ProductsPage struct for ProductsPage

func NewProductsPage

func NewProductsPage() *ProductsPage

NewProductsPage instantiates a new ProductsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductsPageWithDefaults

func NewProductsPageWithDefaults() *ProductsPage

NewProductsPageWithDefaults instantiates a new ProductsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductsPage) GetContents

func (o *ProductsPage) GetContents() []Product

GetContents returns the Contents field value if set, zero value otherwise.

func (*ProductsPage) GetContentsOk

func (o *ProductsPage) GetContentsOk() (*[]Product, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductsPage) GetHasNext

func (o *ProductsPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductsPage) GetHasNextOk

func (o *ProductsPage) GetHasNextOk() (*bool, bool)

GetHasNextOk returns a tuple with the HasNext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProductsPage) GetHasPrevious

func (o *ProductsPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProductsPage) GetHasPreviousOk

func (o *ProductsPage) GetHasPreviousOk() (*bool, bool)

GetHasPreviousOk returns a tuple with the HasPrevious field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProductsPage) GetPage

func (o *ProductsPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*ProductsPage) GetPageOk

func (o *ProductsPage) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductsPage) GetPageSize

func (o *ProductsPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*ProductsPage) GetPageSizeOk

func (o *ProductsPage) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductsPage) GetSortBy

func (o *ProductsPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise.

func (*ProductsPage) GetSortByOk

func (o *ProductsPage) GetSortByOk() (*string, bool)

GetSortByOk returns a tuple with the SortBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductsPage) GetSortOrder

func (o *ProductsPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*ProductsPage) GetSortOrderOk

func (o *ProductsPage) GetSortOrderOk() (*string, bool)

GetSortOrderOk returns a tuple with the SortOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductsPage) GetTotalItems

func (o *ProductsPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*ProductsPage) GetTotalItemsOk

func (o *ProductsPage) GetTotalItemsOk() (*int64, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductsPage) HasContents

func (o *ProductsPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*ProductsPage) HasHasNext

func (o *ProductsPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*ProductsPage) HasHasPrevious

func (o *ProductsPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*ProductsPage) HasPage

func (o *ProductsPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ProductsPage) HasPageSize

func (o *ProductsPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*ProductsPage) HasSortBy

func (o *ProductsPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*ProductsPage) HasSortOrder

func (o *ProductsPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*ProductsPage) HasTotalItems

func (o *ProductsPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ProductsPage) MarshalJSON

func (o ProductsPage) MarshalJSON() ([]byte, error)

func (*ProductsPage) SetContents

func (o *ProductsPage) SetContents(v []Product)

SetContents gets a reference to the given []Product and assigns it to the Contents field.

func (*ProductsPage) SetHasNext

func (o *ProductsPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*ProductsPage) SetHasNextNil

func (o *ProductsPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*ProductsPage) SetHasPrevious

func (o *ProductsPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*ProductsPage) SetHasPreviousNil

func (o *ProductsPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*ProductsPage) SetPage

func (o *ProductsPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*ProductsPage) SetPageSize

func (o *ProductsPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*ProductsPage) SetSortBy

func (o *ProductsPage) SetSortBy(v string)

SetSortBy gets a reference to the given string and assigns it to the SortBy field.

func (*ProductsPage) SetSortOrder

func (o *ProductsPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given string and assigns it to the SortOrder field.

func (*ProductsPage) SetTotalItems

func (o *ProductsPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given int64 and assigns it to the TotalItems field.

func (*ProductsPage) UnsetHasNext

func (o *ProductsPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*ProductsPage) UnsetHasPrevious

func (o *ProductsPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

type ProductsPageAllOf

type ProductsPageAllOf struct {
	Contents *[]Product `json:"contents,omitempty"`
}

ProductsPageAllOf struct for ProductsPageAllOf

func NewProductsPageAllOf

func NewProductsPageAllOf() *ProductsPageAllOf

NewProductsPageAllOf instantiates a new ProductsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProductsPageAllOfWithDefaults

func NewProductsPageAllOfWithDefaults() *ProductsPageAllOf

NewProductsPageAllOfWithDefaults instantiates a new ProductsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProductsPageAllOf) GetContents

func (o *ProductsPageAllOf) GetContents() []Product

GetContents returns the Contents field value if set, zero value otherwise.

func (*ProductsPageAllOf) GetContentsOk

func (o *ProductsPageAllOf) GetContentsOk() (*[]Product, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProductsPageAllOf) HasContents

func (o *ProductsPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (ProductsPageAllOf) MarshalJSON

func (o ProductsPageAllOf) MarshalJSON() ([]byte, error)

func (*ProductsPageAllOf) SetContents

func (o *ProductsPageAllOf) SetContents(v []Product)

SetContents gets a reference to the given []Product and assigns it to the Contents field.

type ResourceHealth

type ResourceHealth struct {
	Id          string         `json:"id"`
	Type        ResourceType   `json:"type"`
	Status      ResourceStatus `json:"status"`
	Description *string        `json:"description,omitempty"`
}

ResourceHealth struct for ResourceHealth

func NewResourceHealth

func NewResourceHealth(id string, type_ ResourceType, status ResourceStatus) *ResourceHealth

NewResourceHealth instantiates a new ResourceHealth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceHealthWithDefaults

func NewResourceHealthWithDefaults() *ResourceHealth

NewResourceHealthWithDefaults instantiates a new ResourceHealth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceHealth) GetDescription

func (o *ResourceHealth) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ResourceHealth) GetDescriptionOk

func (o *ResourceHealth) 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 (*ResourceHealth) GetId

func (o *ResourceHealth) GetId() string

GetId returns the Id field value

func (*ResourceHealth) GetIdOk

func (o *ResourceHealth) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ResourceHealth) GetStatus

func (o *ResourceHealth) GetStatus() ResourceStatus

GetStatus returns the Status field value

func (*ResourceHealth) GetStatusOk

func (o *ResourceHealth) GetStatusOk() (*ResourceStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*ResourceHealth) GetType

func (o *ResourceHealth) GetType() ResourceType

GetType returns the Type field value

func (*ResourceHealth) GetTypeOk

func (o *ResourceHealth) GetTypeOk() (*ResourceType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ResourceHealth) HasDescription

func (o *ResourceHealth) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (ResourceHealth) MarshalJSON

func (o ResourceHealth) MarshalJSON() ([]byte, error)

func (*ResourceHealth) SetDescription

func (o *ResourceHealth) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ResourceHealth) SetId

func (o *ResourceHealth) SetId(v string)

SetId sets field value

func (*ResourceHealth) SetStatus

func (o *ResourceHealth) SetStatus(v ResourceStatus)

SetStatus sets field value

func (*ResourceHealth) SetType

func (o *ResourceHealth) SetType(v ResourceType)

SetType sets field value

type ResourceStatus

type ResourceStatus string

ResourceStatus the model 'ResourceStatus'

const (
	UP      ResourceStatus = "up"
	DOWN    ResourceStatus = "down"
	UNKNOWN ResourceStatus = "unknown"
)

List of ResourceStatus

func (ResourceStatus) Ptr

func (v ResourceStatus) Ptr() *ResourceStatus

Ptr returns reference to ResourceStatus value

func (*ResourceStatus) UnmarshalJSON

func (v *ResourceStatus) UnmarshalJSON(src []byte) error

type ResourceType

type ResourceType string

ResourceType the model 'ResourceType'

const (
	SERVICE ResourceType = "service"
	DEVICE  ResourceType = "device"
)

List of ResourceType

func (ResourceType) Ptr

func (v ResourceType) Ptr() *ResourceType

Ptr returns reference to ResourceType value

func (*ResourceType) UnmarshalJSON

func (v *ResourceType) UnmarshalJSON(src []byte) error

type Role

type Role struct {
	Id          *string   `json:"id,omitempty"`
	Name        *string   `json:"name,omitempty"`
	Description *string   `json:"description,omitempty"`
	Permissions *[]string `json:"permissions,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) GetDescription

func (o *Role) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Role) GetDescriptionOk

func (o *Role) 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 (*Role) GetId

func (o *Role) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Role) GetIdOk

func (o *Role) 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 (*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) GetPermissions

func (o *Role) GetPermissions() []string

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*Role) GetPermissionsOk

func (o *Role) GetPermissionsOk() (*[]string, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) HasDescription

func (o *Role) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Role) HasId

func (o *Role) HasId() bool

HasId 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) HasPermissions

func (o *Role) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (Role) MarshalJSON

func (o Role) MarshalJSON() ([]byte, error)

func (*Role) SetDescription

func (o *Role) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Role) SetId

func (o *Role) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id 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) SetPermissions

func (o *Role) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

type RolesApiService

type RolesApiService service

RolesApiService RolesApi service

func (*RolesApiService) GetRoleByName

func (a *RolesApiService) GetRoleByName(ctx _context.Context, name string) ApiGetRoleByNameRequest

* GetRoleByName Returns a role by name. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param name * @return ApiGetRoleByNameRequest

func (*RolesApiService) GetRoleByNameExecute

func (a *RolesApiService) GetRoleByNameExecute(r ApiGetRoleByNameRequest) (Role, *_nethttp.Response, error)

* Execute executes the request * @return Role

func (*RolesApiService) GetRolesList

* GetRolesList Returns a list of roles. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetRolesListRequest

func (*RolesApiService) GetRolesListExecute

func (a *RolesApiService) GetRolesListExecute(r ApiGetRolesListRequest) ([]Role, *_nethttp.Response, error)

* Execute executes the request * @return []Role

type SecurityApiService

type SecurityApiService service

SecurityApiService SecurityApi service

func (*SecurityApiService) GetAccessToken

* GetAccessToken Returns an access token. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetAccessTokenRequest

func (*SecurityApiService) GetAccessTokenExecute

* Execute executes the request * @return AccessToken

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 Service

type Service struct {
	Id                   *string                            `json:"id,omitempty"`
	ProviderId           *string                            `json:"providerId,omitempty"`
	TenantId             *string                            `json:"tenantId,omitempty"`
	UserId               *string                            `json:"userId,omitempty"`
	SubscriptionId       *string                            `json:"subscriptionId,omitempty"`
	CreatedOn            *time.Time                         `json:"createdOn,omitempty"`
	ModifiedOn           *time.Time                         `json:"modifiedOn,omitempty"`
	ProvisionedOn        *time.Time                         `json:"provisionedOn,omitempty"`
	Status               *map[string]string                 `json:"status,omitempty"`
	DefinitionAttributes *map[string]map[string]interface{} `json:"definitionAttributes,omitempty"`
	Attributes           *map[string]map[string]interface{} `json:"attributes,omitempty"`
}

Service struct for Service

func NewService

func NewService() *Service

NewService instantiates a new Service object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceWithDefaults

func NewServiceWithDefaults() *Service

NewServiceWithDefaults instantiates a new Service object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Service) GetAttributes

func (o *Service) GetAttributes() map[string]map[string]interface{}

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Service) GetAttributesOk

func (o *Service) GetAttributesOk() (*map[string]map[string]interface{}, bool)

GetAttributesOk returns a tuple with the Attributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetCreatedOn

func (o *Service) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*Service) GetCreatedOnOk

func (o *Service) GetCreatedOnOk() (*time.Time, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetDefinitionAttributes

func (o *Service) GetDefinitionAttributes() map[string]map[string]interface{}

GetDefinitionAttributes returns the DefinitionAttributes field value if set, zero value otherwise.

func (*Service) GetDefinitionAttributesOk

func (o *Service) GetDefinitionAttributesOk() (*map[string]map[string]interface{}, bool)

GetDefinitionAttributesOk returns a tuple with the DefinitionAttributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetId

func (o *Service) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Service) GetIdOk

func (o *Service) 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 (*Service) GetModifiedOn

func (o *Service) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise.

func (*Service) GetModifiedOnOk

func (o *Service) GetModifiedOnOk() (*time.Time, bool)

GetModifiedOnOk returns a tuple with the ModifiedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetProviderId

func (o *Service) GetProviderId() string

GetProviderId returns the ProviderId field value if set, zero value otherwise.

func (*Service) GetProviderIdOk

func (o *Service) GetProviderIdOk() (*string, bool)

GetProviderIdOk returns a tuple with the ProviderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetProvisionedOn

func (o *Service) GetProvisionedOn() time.Time

GetProvisionedOn returns the ProvisionedOn field value if set, zero value otherwise.

func (*Service) GetProvisionedOnOk

func (o *Service) GetProvisionedOnOk() (*time.Time, bool)

GetProvisionedOnOk returns a tuple with the ProvisionedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetStatus

func (o *Service) GetStatus() map[string]string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Service) GetStatusOk

func (o *Service) GetStatusOk() (*map[string]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 (*Service) GetSubscriptionId

func (o *Service) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*Service) GetSubscriptionIdOk

func (o *Service) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTenantId

func (o *Service) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Service) GetTenantIdOk

func (o *Service) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetUserId

func (o *Service) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Service) GetUserIdOk

func (o *Service) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) HasAttributes

func (o *Service) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Service) HasCreatedOn

func (o *Service) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*Service) HasDefinitionAttributes

func (o *Service) HasDefinitionAttributes() bool

HasDefinitionAttributes returns a boolean if a field has been set.

func (*Service) HasId

func (o *Service) HasId() bool

HasId returns a boolean if a field has been set.

func (*Service) HasModifiedOn

func (o *Service) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*Service) HasProviderId

func (o *Service) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

func (*Service) HasProvisionedOn

func (o *Service) HasProvisionedOn() bool

HasProvisionedOn returns a boolean if a field has been set.

func (*Service) HasStatus

func (o *Service) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Service) HasSubscriptionId

func (o *Service) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*Service) HasTenantId

func (o *Service) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Service) HasUserId

func (o *Service) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (Service) MarshalJSON

func (o Service) MarshalJSON() ([]byte, error)

func (*Service) SetAttributes

func (o *Service) SetAttributes(v map[string]map[string]interface{})

SetAttributes gets a reference to the given map[string]map[string]interface{} and assigns it to the Attributes field.

func (*Service) SetCreatedOn

func (o *Service) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*Service) SetDefinitionAttributes

func (o *Service) SetDefinitionAttributes(v map[string]map[string]interface{})

SetDefinitionAttributes gets a reference to the given map[string]map[string]interface{} and assigns it to the DefinitionAttributes field.

func (*Service) SetId

func (o *Service) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Service) SetModifiedOn

func (o *Service) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given time.Time and assigns it to the ModifiedOn field.

func (*Service) SetProviderId

func (o *Service) SetProviderId(v string)

SetProviderId gets a reference to the given string and assigns it to the ProviderId field.

func (*Service) SetProvisionedOn

func (o *Service) SetProvisionedOn(v time.Time)

SetProvisionedOn gets a reference to the given time.Time and assigns it to the ProvisionedOn field.

func (*Service) SetStatus

func (o *Service) SetStatus(v map[string]string)

SetStatus gets a reference to the given map[string]string and assigns it to the Status field.

func (*Service) SetSubscriptionId

func (o *Service) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*Service) SetTenantId

func (o *Service) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Service) SetUserId

func (o *Service) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type ServiceElement

type ServiceElement struct {
	Name                *string                              `json:"name,omitempty"`
	Label               *string                              `json:"label,omitempty"`
	Header              *string                              `json:"header,omitempty"`
	Description         *string                              `json:"description,omitempty"`
	Hint                *string                              `json:"hint,omitempty"`
	InputType           *string                              `json:"inputType,omitempty"`
	Type                *string                              `json:"type,omitempty"`
	Component           *string                              `json:"component,omitempty"`
	MaxLimit            *string                              `json:"maxLimit,omitempty"`
	MinLimit            *string                              `json:"minLimit,omitempty"`
	Value               *string                              `json:"value,omitempty"`
	ValueList           *[]map[string]interface{}            `json:"valueList,omitempty"`
	AllowedOptionValues *[]string                            `json:"allowedOptionValues,omitempty"`
	AllowedValues       *[]map[string]map[string]interface{} `json:"allowedValues,omitempty"`
	Mandatory           *bool                                `json:"mandatory,omitempty"`
	Section             *string                              `json:"section,omitempty"`
	Billable            *bool                                `json:"billable,omitempty"`
	Hidden              *bool                                `json:"hidden,omitempty"`
	ParentName          *string                              `json:"parentName,omitempty"`
	Supported           *bool                                `json:"supported,omitempty"`
	DynamicData         *bool                                `json:"dynamicData,omitempty"`
	MinValue            *int32                               `json:"minValue,omitempty"`
	MaxValue            *int32                               `json:"maxValue,omitempty"`
	StepSize            *int32                               `json:"stepSize,omitempty"`
	PricingAtttributes  *ServiceElementPrice                 `json:"pricingAtttributes,omitempty"`
	ChildElements       *[]ServiceElement                    `json:"childElements,omitempty"`
}

ServiceElement struct for ServiceElement

func NewServiceElement

func NewServiceElement() *ServiceElement

NewServiceElement instantiates a new ServiceElement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceElementWithDefaults

func NewServiceElementWithDefaults() *ServiceElement

NewServiceElementWithDefaults instantiates a new ServiceElement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceElement) GetAllowedOptionValues

func (o *ServiceElement) GetAllowedOptionValues() []string

GetAllowedOptionValues returns the AllowedOptionValues field value if set, zero value otherwise.

func (*ServiceElement) GetAllowedOptionValuesOk

func (o *ServiceElement) GetAllowedOptionValuesOk() (*[]string, bool)

GetAllowedOptionValuesOk returns a tuple with the AllowedOptionValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetAllowedValues

func (o *ServiceElement) GetAllowedValues() []map[string]map[string]interface{}

GetAllowedValues returns the AllowedValues field value if set, zero value otherwise.

func (*ServiceElement) GetAllowedValuesOk

func (o *ServiceElement) GetAllowedValuesOk() (*[]map[string]map[string]interface{}, bool)

GetAllowedValuesOk returns a tuple with the AllowedValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetBillable

func (o *ServiceElement) GetBillable() bool

GetBillable returns the Billable field value if set, zero value otherwise.

func (*ServiceElement) GetBillableOk

func (o *ServiceElement) GetBillableOk() (*bool, bool)

GetBillableOk returns a tuple with the Billable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetChildElements

func (o *ServiceElement) GetChildElements() []ServiceElement

GetChildElements returns the ChildElements field value if set, zero value otherwise.

func (*ServiceElement) GetChildElementsOk

func (o *ServiceElement) GetChildElementsOk() (*[]ServiceElement, bool)

GetChildElementsOk returns a tuple with the ChildElements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetComponent

func (o *ServiceElement) GetComponent() string

GetComponent returns the Component field value if set, zero value otherwise.

func (*ServiceElement) GetComponentOk

func (o *ServiceElement) GetComponentOk() (*string, bool)

GetComponentOk returns a tuple with the Component field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetDescription

func (o *ServiceElement) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServiceElement) GetDescriptionOk

func (o *ServiceElement) 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 (*ServiceElement) GetDynamicData

func (o *ServiceElement) GetDynamicData() bool

GetDynamicData returns the DynamicData field value if set, zero value otherwise.

func (*ServiceElement) GetDynamicDataOk

func (o *ServiceElement) GetDynamicDataOk() (*bool, bool)

GetDynamicDataOk returns a tuple with the DynamicData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetHeader

func (o *ServiceElement) GetHeader() string

GetHeader returns the Header field value if set, zero value otherwise.

func (*ServiceElement) GetHeaderOk

func (o *ServiceElement) GetHeaderOk() (*string, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetHidden

func (o *ServiceElement) GetHidden() bool

GetHidden returns the Hidden field value if set, zero value otherwise.

func (*ServiceElement) GetHiddenOk

func (o *ServiceElement) GetHiddenOk() (*bool, bool)

GetHiddenOk returns a tuple with the Hidden field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetHint

func (o *ServiceElement) GetHint() string

GetHint returns the Hint field value if set, zero value otherwise.

func (*ServiceElement) GetHintOk

func (o *ServiceElement) GetHintOk() (*string, bool)

GetHintOk returns a tuple with the Hint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetInputType

func (o *ServiceElement) GetInputType() string

GetInputType returns the InputType field value if set, zero value otherwise.

func (*ServiceElement) GetInputTypeOk

func (o *ServiceElement) GetInputTypeOk() (*string, bool)

GetInputTypeOk returns a tuple with the InputType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetLabel

func (o *ServiceElement) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ServiceElement) GetLabelOk

func (o *ServiceElement) 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 (*ServiceElement) GetMandatory

func (o *ServiceElement) GetMandatory() bool

GetMandatory returns the Mandatory field value if set, zero value otherwise.

func (*ServiceElement) GetMandatoryOk

func (o *ServiceElement) GetMandatoryOk() (*bool, bool)

GetMandatoryOk returns a tuple with the Mandatory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetMaxLimit

func (o *ServiceElement) GetMaxLimit() string

GetMaxLimit returns the MaxLimit field value if set, zero value otherwise.

func (*ServiceElement) GetMaxLimitOk

func (o *ServiceElement) GetMaxLimitOk() (*string, bool)

GetMaxLimitOk returns a tuple with the MaxLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetMaxValue

func (o *ServiceElement) GetMaxValue() int32

GetMaxValue returns the MaxValue field value if set, zero value otherwise.

func (*ServiceElement) GetMaxValueOk

func (o *ServiceElement) GetMaxValueOk() (*int32, bool)

GetMaxValueOk returns a tuple with the MaxValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetMinLimit

func (o *ServiceElement) GetMinLimit() string

GetMinLimit returns the MinLimit field value if set, zero value otherwise.

func (*ServiceElement) GetMinLimitOk

func (o *ServiceElement) GetMinLimitOk() (*string, bool)

GetMinLimitOk returns a tuple with the MinLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetMinValue

func (o *ServiceElement) GetMinValue() int32

GetMinValue returns the MinValue field value if set, zero value otherwise.

func (*ServiceElement) GetMinValueOk

func (o *ServiceElement) GetMinValueOk() (*int32, bool)

GetMinValueOk returns a tuple with the MinValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetName

func (o *ServiceElement) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ServiceElement) GetNameOk

func (o *ServiceElement) 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 (*ServiceElement) GetParentName

func (o *ServiceElement) GetParentName() string

GetParentName returns the ParentName field value if set, zero value otherwise.

func (*ServiceElement) GetParentNameOk

func (o *ServiceElement) GetParentNameOk() (*string, bool)

GetParentNameOk returns a tuple with the ParentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetPricingAtttributes

func (o *ServiceElement) GetPricingAtttributes() ServiceElementPrice

GetPricingAtttributes returns the PricingAtttributes field value if set, zero value otherwise.

func (*ServiceElement) GetPricingAtttributesOk

func (o *ServiceElement) GetPricingAtttributesOk() (*ServiceElementPrice, bool)

GetPricingAtttributesOk returns a tuple with the PricingAtttributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetSection

func (o *ServiceElement) GetSection() string

GetSection returns the Section field value if set, zero value otherwise.

func (*ServiceElement) GetSectionOk

func (o *ServiceElement) GetSectionOk() (*string, bool)

GetSectionOk returns a tuple with the Section field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetStepSize

func (o *ServiceElement) GetStepSize() int32

GetStepSize returns the StepSize field value if set, zero value otherwise.

func (*ServiceElement) GetStepSizeOk

func (o *ServiceElement) GetStepSizeOk() (*int32, bool)

GetStepSizeOk returns a tuple with the StepSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetSupported

func (o *ServiceElement) GetSupported() bool

GetSupported returns the Supported field value if set, zero value otherwise.

func (*ServiceElement) GetSupportedOk

func (o *ServiceElement) GetSupportedOk() (*bool, bool)

GetSupportedOk returns a tuple with the Supported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetType

func (o *ServiceElement) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ServiceElement) GetTypeOk

func (o *ServiceElement) 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 (*ServiceElement) GetValue

func (o *ServiceElement) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ServiceElement) GetValueList

func (o *ServiceElement) GetValueList() []map[string]interface{}

GetValueList returns the ValueList field value if set, zero value otherwise.

func (*ServiceElement) GetValueListOk

func (o *ServiceElement) GetValueListOk() (*[]map[string]interface{}, bool)

GetValueListOk returns a tuple with the ValueList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElement) GetValueOk

func (o *ServiceElement) GetValueOk() (*string, 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 (*ServiceElement) HasAllowedOptionValues

func (o *ServiceElement) HasAllowedOptionValues() bool

HasAllowedOptionValues returns a boolean if a field has been set.

func (*ServiceElement) HasAllowedValues

func (o *ServiceElement) HasAllowedValues() bool

HasAllowedValues returns a boolean if a field has been set.

func (*ServiceElement) HasBillable

func (o *ServiceElement) HasBillable() bool

HasBillable returns a boolean if a field has been set.

func (*ServiceElement) HasChildElements

func (o *ServiceElement) HasChildElements() bool

HasChildElements returns a boolean if a field has been set.

func (*ServiceElement) HasComponent

func (o *ServiceElement) HasComponent() bool

HasComponent returns a boolean if a field has been set.

func (*ServiceElement) HasDescription

func (o *ServiceElement) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceElement) HasDynamicData

func (o *ServiceElement) HasDynamicData() bool

HasDynamicData returns a boolean if a field has been set.

func (*ServiceElement) HasHeader

func (o *ServiceElement) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*ServiceElement) HasHidden

func (o *ServiceElement) HasHidden() bool

HasHidden returns a boolean if a field has been set.

func (*ServiceElement) HasHint

func (o *ServiceElement) HasHint() bool

HasHint returns a boolean if a field has been set.

func (*ServiceElement) HasInputType

func (o *ServiceElement) HasInputType() bool

HasInputType returns a boolean if a field has been set.

func (*ServiceElement) HasLabel

func (o *ServiceElement) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ServiceElement) HasMandatory

func (o *ServiceElement) HasMandatory() bool

HasMandatory returns a boolean if a field has been set.

func (*ServiceElement) HasMaxLimit

func (o *ServiceElement) HasMaxLimit() bool

HasMaxLimit returns a boolean if a field has been set.

func (*ServiceElement) HasMaxValue

func (o *ServiceElement) HasMaxValue() bool

HasMaxValue returns a boolean if a field has been set.

func (*ServiceElement) HasMinLimit

func (o *ServiceElement) HasMinLimit() bool

HasMinLimit returns a boolean if a field has been set.

func (*ServiceElement) HasMinValue

func (o *ServiceElement) HasMinValue() bool

HasMinValue returns a boolean if a field has been set.

func (*ServiceElement) HasName

func (o *ServiceElement) HasName() bool

HasName returns a boolean if a field has been set.

func (*ServiceElement) HasParentName

func (o *ServiceElement) HasParentName() bool

HasParentName returns a boolean if a field has been set.

func (*ServiceElement) HasPricingAtttributes

func (o *ServiceElement) HasPricingAtttributes() bool

HasPricingAtttributes returns a boolean if a field has been set.

func (*ServiceElement) HasSection

func (o *ServiceElement) HasSection() bool

HasSection returns a boolean if a field has been set.

func (*ServiceElement) HasStepSize

func (o *ServiceElement) HasStepSize() bool

HasStepSize returns a boolean if a field has been set.

func (*ServiceElement) HasSupported

func (o *ServiceElement) HasSupported() bool

HasSupported returns a boolean if a field has been set.

func (*ServiceElement) HasType

func (o *ServiceElement) HasType() bool

HasType returns a boolean if a field has been set.

func (*ServiceElement) HasValue

func (o *ServiceElement) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*ServiceElement) HasValueList

func (o *ServiceElement) HasValueList() bool

HasValueList returns a boolean if a field has been set.

func (ServiceElement) MarshalJSON

func (o ServiceElement) MarshalJSON() ([]byte, error)

func (*ServiceElement) SetAllowedOptionValues

func (o *ServiceElement) SetAllowedOptionValues(v []string)

SetAllowedOptionValues gets a reference to the given []string and assigns it to the AllowedOptionValues field.

func (*ServiceElement) SetAllowedValues

func (o *ServiceElement) SetAllowedValues(v []map[string]map[string]interface{})

SetAllowedValues gets a reference to the given []map[string]map[string]interface{} and assigns it to the AllowedValues field.

func (*ServiceElement) SetBillable

func (o *ServiceElement) SetBillable(v bool)

SetBillable gets a reference to the given bool and assigns it to the Billable field.

func (*ServiceElement) SetChildElements

func (o *ServiceElement) SetChildElements(v []ServiceElement)

SetChildElements gets a reference to the given []ServiceElement and assigns it to the ChildElements field.

func (*ServiceElement) SetComponent

func (o *ServiceElement) SetComponent(v string)

SetComponent gets a reference to the given string and assigns it to the Component field.

func (*ServiceElement) SetDescription

func (o *ServiceElement) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServiceElement) SetDynamicData

func (o *ServiceElement) SetDynamicData(v bool)

SetDynamicData gets a reference to the given bool and assigns it to the DynamicData field.

func (*ServiceElement) SetHeader

func (o *ServiceElement) SetHeader(v string)

SetHeader gets a reference to the given string and assigns it to the Header field.

func (*ServiceElement) SetHidden

func (o *ServiceElement) SetHidden(v bool)

SetHidden gets a reference to the given bool and assigns it to the Hidden field.

func (*ServiceElement) SetHint

func (o *ServiceElement) SetHint(v string)

SetHint gets a reference to the given string and assigns it to the Hint field.

func (*ServiceElement) SetInputType

func (o *ServiceElement) SetInputType(v string)

SetInputType gets a reference to the given string and assigns it to the InputType field.

func (*ServiceElement) SetLabel

func (o *ServiceElement) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ServiceElement) SetMandatory

func (o *ServiceElement) SetMandatory(v bool)

SetMandatory gets a reference to the given bool and assigns it to the Mandatory field.

func (*ServiceElement) SetMaxLimit

func (o *ServiceElement) SetMaxLimit(v string)

SetMaxLimit gets a reference to the given string and assigns it to the MaxLimit field.

func (*ServiceElement) SetMaxValue

func (o *ServiceElement) SetMaxValue(v int32)

SetMaxValue gets a reference to the given int32 and assigns it to the MaxValue field.

func (*ServiceElement) SetMinLimit

func (o *ServiceElement) SetMinLimit(v string)

SetMinLimit gets a reference to the given string and assigns it to the MinLimit field.

func (*ServiceElement) SetMinValue

func (o *ServiceElement) SetMinValue(v int32)

SetMinValue gets a reference to the given int32 and assigns it to the MinValue field.

func (*ServiceElement) SetName

func (o *ServiceElement) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ServiceElement) SetParentName

func (o *ServiceElement) SetParentName(v string)

SetParentName gets a reference to the given string and assigns it to the ParentName field.

func (*ServiceElement) SetPricingAtttributes

func (o *ServiceElement) SetPricingAtttributes(v ServiceElementPrice)

SetPricingAtttributes gets a reference to the given ServiceElementPrice and assigns it to the PricingAtttributes field.

func (*ServiceElement) SetSection

func (o *ServiceElement) SetSection(v string)

SetSection gets a reference to the given string and assigns it to the Section field.

func (*ServiceElement) SetStepSize

func (o *ServiceElement) SetStepSize(v int32)

SetStepSize gets a reference to the given int32 and assigns it to the StepSize field.

func (*ServiceElement) SetSupported

func (o *ServiceElement) SetSupported(v bool)

SetSupported gets a reference to the given bool and assigns it to the Supported field.

func (*ServiceElement) SetType

func (o *ServiceElement) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ServiceElement) SetValue

func (o *ServiceElement) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (*ServiceElement) SetValueList

func (o *ServiceElement) SetValueList(v []map[string]interface{})

SetValueList gets a reference to the given []map[string]interface{} and assigns it to the ValueList field.

type ServiceElementPrice

type ServiceElementPrice struct {
	OneTimePrice            *string `json:"oneTimePrice,omitempty"`
	PeriodicPrice           *string `json:"periodicPrice,omitempty"`
	TimePeriod              *string `json:"timePeriod,omitempty"`
	UnitOfMeasure           *string `json:"unitOfMeasure,omitempty"`
	IncludedQuantity        *int32  `json:"includedQuantity,omitempty"`
	AdditionalOneTimePrice  *string `json:"additionalOneTimePrice,omitempty"`
	AdditionalPeriodicPrice *string `json:"additionalPeriodicPrice,omitempty"`
	AdditionalQuantity      *int32  `json:"additionalQuantity,omitempty"`
}

ServiceElementPrice struct for ServiceElementPrice

func NewServiceElementPrice

func NewServiceElementPrice() *ServiceElementPrice

NewServiceElementPrice instantiates a new ServiceElementPrice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceElementPriceWithDefaults

func NewServiceElementPriceWithDefaults() *ServiceElementPrice

NewServiceElementPriceWithDefaults instantiates a new ServiceElementPrice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceElementPrice) GetAdditionalOneTimePrice

func (o *ServiceElementPrice) GetAdditionalOneTimePrice() string

GetAdditionalOneTimePrice returns the AdditionalOneTimePrice field value if set, zero value otherwise.

func (*ServiceElementPrice) GetAdditionalOneTimePriceOk

func (o *ServiceElementPrice) GetAdditionalOneTimePriceOk() (*string, bool)

GetAdditionalOneTimePriceOk returns a tuple with the AdditionalOneTimePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElementPrice) GetAdditionalPeriodicPrice

func (o *ServiceElementPrice) GetAdditionalPeriodicPrice() string

GetAdditionalPeriodicPrice returns the AdditionalPeriodicPrice field value if set, zero value otherwise.

func (*ServiceElementPrice) GetAdditionalPeriodicPriceOk

func (o *ServiceElementPrice) GetAdditionalPeriodicPriceOk() (*string, bool)

GetAdditionalPeriodicPriceOk returns a tuple with the AdditionalPeriodicPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElementPrice) GetAdditionalQuantity

func (o *ServiceElementPrice) GetAdditionalQuantity() int32

GetAdditionalQuantity returns the AdditionalQuantity field value if set, zero value otherwise.

func (*ServiceElementPrice) GetAdditionalQuantityOk

func (o *ServiceElementPrice) GetAdditionalQuantityOk() (*int32, bool)

GetAdditionalQuantityOk returns a tuple with the AdditionalQuantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElementPrice) GetIncludedQuantity

func (o *ServiceElementPrice) GetIncludedQuantity() int32

GetIncludedQuantity returns the IncludedQuantity field value if set, zero value otherwise.

func (*ServiceElementPrice) GetIncludedQuantityOk

func (o *ServiceElementPrice) GetIncludedQuantityOk() (*int32, bool)

GetIncludedQuantityOk returns a tuple with the IncludedQuantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElementPrice) GetOneTimePrice

func (o *ServiceElementPrice) GetOneTimePrice() string

GetOneTimePrice returns the OneTimePrice field value if set, zero value otherwise.

func (*ServiceElementPrice) GetOneTimePriceOk

func (o *ServiceElementPrice) GetOneTimePriceOk() (*string, bool)

GetOneTimePriceOk returns a tuple with the OneTimePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElementPrice) GetPeriodicPrice

func (o *ServiceElementPrice) GetPeriodicPrice() string

GetPeriodicPrice returns the PeriodicPrice field value if set, zero value otherwise.

func (*ServiceElementPrice) GetPeriodicPriceOk

func (o *ServiceElementPrice) GetPeriodicPriceOk() (*string, bool)

GetPeriodicPriceOk returns a tuple with the PeriodicPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElementPrice) GetTimePeriod

func (o *ServiceElementPrice) GetTimePeriod() string

GetTimePeriod returns the TimePeriod field value if set, zero value otherwise.

func (*ServiceElementPrice) GetTimePeriodOk

func (o *ServiceElementPrice) GetTimePeriodOk() (*string, bool)

GetTimePeriodOk returns a tuple with the TimePeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElementPrice) GetUnitOfMeasure

func (o *ServiceElementPrice) GetUnitOfMeasure() string

GetUnitOfMeasure returns the UnitOfMeasure field value if set, zero value otherwise.

func (*ServiceElementPrice) GetUnitOfMeasureOk

func (o *ServiceElementPrice) GetUnitOfMeasureOk() (*string, bool)

GetUnitOfMeasureOk returns a tuple with the UnitOfMeasure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceElementPrice) HasAdditionalOneTimePrice

func (o *ServiceElementPrice) HasAdditionalOneTimePrice() bool

HasAdditionalOneTimePrice returns a boolean if a field has been set.

func (*ServiceElementPrice) HasAdditionalPeriodicPrice

func (o *ServiceElementPrice) HasAdditionalPeriodicPrice() bool

HasAdditionalPeriodicPrice returns a boolean if a field has been set.

func (*ServiceElementPrice) HasAdditionalQuantity

func (o *ServiceElementPrice) HasAdditionalQuantity() bool

HasAdditionalQuantity returns a boolean if a field has been set.

func (*ServiceElementPrice) HasIncludedQuantity

func (o *ServiceElementPrice) HasIncludedQuantity() bool

HasIncludedQuantity returns a boolean if a field has been set.

func (*ServiceElementPrice) HasOneTimePrice

func (o *ServiceElementPrice) HasOneTimePrice() bool

HasOneTimePrice returns a boolean if a field has been set.

func (*ServiceElementPrice) HasPeriodicPrice

func (o *ServiceElementPrice) HasPeriodicPrice() bool

HasPeriodicPrice returns a boolean if a field has been set.

func (*ServiceElementPrice) HasTimePeriod

func (o *ServiceElementPrice) HasTimePeriod() bool

HasTimePeriod returns a boolean if a field has been set.

func (*ServiceElementPrice) HasUnitOfMeasure

func (o *ServiceElementPrice) HasUnitOfMeasure() bool

HasUnitOfMeasure returns a boolean if a field has been set.

func (ServiceElementPrice) MarshalJSON

func (o ServiceElementPrice) MarshalJSON() ([]byte, error)

func (*ServiceElementPrice) SetAdditionalOneTimePrice

func (o *ServiceElementPrice) SetAdditionalOneTimePrice(v string)

SetAdditionalOneTimePrice gets a reference to the given string and assigns it to the AdditionalOneTimePrice field.

func (*ServiceElementPrice) SetAdditionalPeriodicPrice

func (o *ServiceElementPrice) SetAdditionalPeriodicPrice(v string)

SetAdditionalPeriodicPrice gets a reference to the given string and assigns it to the AdditionalPeriodicPrice field.

func (*ServiceElementPrice) SetAdditionalQuantity

func (o *ServiceElementPrice) SetAdditionalQuantity(v int32)

SetAdditionalQuantity gets a reference to the given int32 and assigns it to the AdditionalQuantity field.

func (*ServiceElementPrice) SetIncludedQuantity

func (o *ServiceElementPrice) SetIncludedQuantity(v int32)

SetIncludedQuantity gets a reference to the given int32 and assigns it to the IncludedQuantity field.

func (*ServiceElementPrice) SetOneTimePrice

func (o *ServiceElementPrice) SetOneTimePrice(v string)

SetOneTimePrice gets a reference to the given string and assigns it to the OneTimePrice field.

func (*ServiceElementPrice) SetPeriodicPrice

func (o *ServiceElementPrice) SetPeriodicPrice(v string)

SetPeriodicPrice gets a reference to the given string and assigns it to the PeriodicPrice field.

func (*ServiceElementPrice) SetTimePeriod

func (o *ServiceElementPrice) SetTimePeriod(v string)

SetTimePeriod gets a reference to the given string and assigns it to the TimePeriod field.

func (*ServiceElementPrice) SetUnitOfMeasure

func (o *ServiceElementPrice) SetUnitOfMeasure(v string)

SetUnitOfMeasure gets a reference to the given string and assigns it to the UnitOfMeasure field.

type ServiceUIConfig

type ServiceUIConfig struct {
	BannerImage *string          `json:"bannerImage,omitempty"`
	Links       *[]ServiceUILink `json:"links,omitempty"`
}

ServiceUIConfig struct for ServiceUIConfig

func NewServiceUIConfig

func NewServiceUIConfig() *ServiceUIConfig

NewServiceUIConfig instantiates a new ServiceUIConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceUIConfigWithDefaults

func NewServiceUIConfigWithDefaults() *ServiceUIConfig

NewServiceUIConfigWithDefaults instantiates a new ServiceUIConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceUIConfig) GetBannerImage

func (o *ServiceUIConfig) GetBannerImage() string

GetBannerImage returns the BannerImage field value if set, zero value otherwise.

func (*ServiceUIConfig) GetBannerImageOk

func (o *ServiceUIConfig) GetBannerImageOk() (*string, bool)

GetBannerImageOk returns a tuple with the BannerImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ServiceUIConfig) GetLinks() []ServiceUILink

GetLinks returns the Links field value if set, zero value otherwise.

func (*ServiceUIConfig) GetLinksOk

func (o *ServiceUIConfig) GetLinksOk() (*[]ServiceUILink, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceUIConfig) HasBannerImage

func (o *ServiceUIConfig) HasBannerImage() bool

HasBannerImage returns a boolean if a field has been set.

func (o *ServiceUIConfig) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (ServiceUIConfig) MarshalJSON

func (o ServiceUIConfig) MarshalJSON() ([]byte, error)

func (*ServiceUIConfig) SetBannerImage

func (o *ServiceUIConfig) SetBannerImage(v string)

SetBannerImage gets a reference to the given string and assigns it to the BannerImage field.

func (o *ServiceUIConfig) SetLinks(v []ServiceUILink)

SetLinks gets a reference to the given []ServiceUILink and assigns it to the Links field.

type ServiceUILink struct {
	Type    *string `json:"type,omitempty"`
	Label   *string `json:"label,omitempty"`
	Address *string `json:"address,omitempty"`
	Target  *string `json:"target,omitempty"`
}

ServiceUILink struct for ServiceUILink

func NewServiceUILink() *ServiceUILink

NewServiceUILink instantiates a new ServiceUILink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceUILinkWithDefaults

func NewServiceUILinkWithDefaults() *ServiceUILink

NewServiceUILinkWithDefaults instantiates a new ServiceUILink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceUILink) GetAddress

func (o *ServiceUILink) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*ServiceUILink) GetAddressOk

func (o *ServiceUILink) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceUILink) GetLabel

func (o *ServiceUILink) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ServiceUILink) GetLabelOk

func (o *ServiceUILink) 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 (*ServiceUILink) GetTarget

func (o *ServiceUILink) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*ServiceUILink) GetTargetOk

func (o *ServiceUILink) GetTargetOk() (*string, bool)

GetTargetOk returns a tuple with the Target field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceUILink) GetType

func (o *ServiceUILink) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ServiceUILink) GetTypeOk

func (o *ServiceUILink) 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 (*ServiceUILink) HasAddress

func (o *ServiceUILink) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*ServiceUILink) HasLabel

func (o *ServiceUILink) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ServiceUILink) HasTarget

func (o *ServiceUILink) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*ServiceUILink) HasType

func (o *ServiceUILink) HasType() bool

HasType returns a boolean if a field has been set.

func (ServiceUILink) MarshalJSON

func (o ServiceUILink) MarshalJSON() ([]byte, error)

func (*ServiceUILink) SetAddress

func (o *ServiceUILink) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*ServiceUILink) SetLabel

func (o *ServiceUILink) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ServiceUILink) SetTarget

func (o *ServiceUILink) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (*ServiceUILink) SetType

func (o *ServiceUILink) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ServicesApiService

type ServicesApiService service

ServicesApiService ServicesApi service

func (*ServicesApiService) DeleteService

* DeleteService Deletes a service. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteServiceRequest

func (*ServicesApiService) DeleteServiceExecute

func (a *ServicesApiService) DeleteServiceExecute(r ApiDeleteServiceRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*ServicesApiService) GetService

* GetService Returns a service. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetServiceRequest

func (*ServicesApiService) GetServiceExecute

* Execute executes the request * @return Service

func (*ServicesApiService) GetServicesPage

* GetServicesPage Returns a page of services. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetServicesPageRequest

func (*ServicesApiService) GetServicesPageExecute

* Execute executes the request * @return ServicesPage

func (*ServicesApiService) SubmitOrder

* SubmitOrder Submits an order. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiSubmitOrderRequest

func (*ServicesApiService) SubmitOrderExecute

* Execute executes the request * @return LegacyServiceOrderResponse

func (*ServicesApiService) UpdateOrder

* UpdateOrder Updates an order. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiUpdateOrderRequest

func (*ServicesApiService) UpdateOrderExecute

* Execute executes the request * @return LegacyServiceOrderResponse

type ServicesPage

type ServicesPage struct {
	Page        *int32       `json:"page,omitempty"`
	PageSize    *int32       `json:"pageSize,omitempty"`
	TotalItems  *int64       `json:"totalItems,omitempty"`
	HasNext     NullableBool `json:"hasNext,omitempty"`
	HasPrevious NullableBool `json:"hasPrevious,omitempty"`
	SortBy      *string      `json:"sortBy,omitempty"`
	SortOrder   *string      `json:"sortOrder,omitempty"`
	Contents    *[]Service   `json:"contents,omitempty"`
}

ServicesPage struct for ServicesPage

func NewServicesPage

func NewServicesPage() *ServicesPage

NewServicesPage instantiates a new ServicesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServicesPageWithDefaults

func NewServicesPageWithDefaults() *ServicesPage

NewServicesPageWithDefaults instantiates a new ServicesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServicesPage) GetContents

func (o *ServicesPage) GetContents() []Service

GetContents returns the Contents field value if set, zero value otherwise.

func (*ServicesPage) GetContentsOk

func (o *ServicesPage) GetContentsOk() (*[]Service, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesPage) GetHasNext

func (o *ServicesPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServicesPage) GetHasNextOk

func (o *ServicesPage) GetHasNextOk() (*bool, bool)

GetHasNextOk returns a tuple with the HasNext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServicesPage) GetHasPrevious

func (o *ServicesPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ServicesPage) GetHasPreviousOk

func (o *ServicesPage) GetHasPreviousOk() (*bool, bool)

GetHasPreviousOk returns a tuple with the HasPrevious field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ServicesPage) GetPage

func (o *ServicesPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*ServicesPage) GetPageOk

func (o *ServicesPage) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesPage) GetPageSize

func (o *ServicesPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*ServicesPage) GetPageSizeOk

func (o *ServicesPage) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesPage) GetSortBy

func (o *ServicesPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise.

func (*ServicesPage) GetSortByOk

func (o *ServicesPage) GetSortByOk() (*string, bool)

GetSortByOk returns a tuple with the SortBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesPage) GetSortOrder

func (o *ServicesPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*ServicesPage) GetSortOrderOk

func (o *ServicesPage) GetSortOrderOk() (*string, bool)

GetSortOrderOk returns a tuple with the SortOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesPage) GetTotalItems

func (o *ServicesPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*ServicesPage) GetTotalItemsOk

func (o *ServicesPage) GetTotalItemsOk() (*int64, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesPage) HasContents

func (o *ServicesPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*ServicesPage) HasHasNext

func (o *ServicesPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*ServicesPage) HasHasPrevious

func (o *ServicesPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*ServicesPage) HasPage

func (o *ServicesPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ServicesPage) HasPageSize

func (o *ServicesPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*ServicesPage) HasSortBy

func (o *ServicesPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*ServicesPage) HasSortOrder

func (o *ServicesPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*ServicesPage) HasTotalItems

func (o *ServicesPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (ServicesPage) MarshalJSON

func (o ServicesPage) MarshalJSON() ([]byte, error)

func (*ServicesPage) SetContents

func (o *ServicesPage) SetContents(v []Service)

SetContents gets a reference to the given []Service and assigns it to the Contents field.

func (*ServicesPage) SetHasNext

func (o *ServicesPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*ServicesPage) SetHasNextNil

func (o *ServicesPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*ServicesPage) SetHasPrevious

func (o *ServicesPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*ServicesPage) SetHasPreviousNil

func (o *ServicesPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*ServicesPage) SetPage

func (o *ServicesPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*ServicesPage) SetPageSize

func (o *ServicesPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*ServicesPage) SetSortBy

func (o *ServicesPage) SetSortBy(v string)

SetSortBy gets a reference to the given string and assigns it to the SortBy field.

func (*ServicesPage) SetSortOrder

func (o *ServicesPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given string and assigns it to the SortOrder field.

func (*ServicesPage) SetTotalItems

func (o *ServicesPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given int64 and assigns it to the TotalItems field.

func (*ServicesPage) UnsetHasNext

func (o *ServicesPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*ServicesPage) UnsetHasPrevious

func (o *ServicesPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

type ServicesPageAllOf

type ServicesPageAllOf struct {
	Contents *[]Service `json:"contents,omitempty"`
}

ServicesPageAllOf struct for ServicesPageAllOf

func NewServicesPageAllOf

func NewServicesPageAllOf() *ServicesPageAllOf

NewServicesPageAllOf instantiates a new ServicesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServicesPageAllOfWithDefaults

func NewServicesPageAllOfWithDefaults() *ServicesPageAllOf

NewServicesPageAllOfWithDefaults instantiates a new ServicesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServicesPageAllOf) GetContents

func (o *ServicesPageAllOf) GetContents() []Service

GetContents returns the Contents field value if set, zero value otherwise.

func (*ServicesPageAllOf) GetContentsOk

func (o *ServicesPageAllOf) GetContentsOk() (*[]Service, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesPageAllOf) HasContents

func (o *ServicesPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (ServicesPageAllOf) MarshalJSON

func (o ServicesPageAllOf) MarshalJSON() ([]byte, error)

func (*ServicesPageAllOf) SetContents

func (o *ServicesPageAllOf) SetContents(v []Service)

SetContents gets a reference to the given []Service and assigns it to the Contents field.

type Site

type Site struct {
	Id                 *string             `json:"id,omitempty"`
	TenantId           *string             `json:"tenantId,omitempty"`
	ParentId           *string             `json:"parentId,omitempty"`
	Name               *string             `json:"name,omitempty"`
	Type               *string             `json:"type,omitempty"`
	Description        *string             `json:"description,omitempty"`
	Address            NullableSiteAddress `json:"address,omitempty"`
	Contact            NullableSiteContact `json:"contact,omitempty"`
	Image              *string             `json:"image,omitempty"`
	Attributes         *map[string]string  `json:"attributes,omitempty"`
	Devices            *[]DeviceSummary    `json:"devices,omitempty"`
	ServiceInstanceIds *[]string           `json:"serviceInstanceIds,omitempty"`
	Location           *SiteLocation       `json:"location,omitempty"`
	Status             *SiteStatus         `json:"status,omitempty"`
	CreatedOn          *time.Time          `json:"createdOn,omitempty"`
	CreatedBy          *string             `json:"createdBy,omitempty"`
	ModifiedOn         *time.Time          `json:"modifiedOn,omitempty"`
	ModifiedBy         *string             `json:"modifiedBy,omitempty"`
}

Site struct for Site

func NewSite

func NewSite() *Site

NewSite instantiates a new Site object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteWithDefaults

func NewSiteWithDefaults() *Site

NewSiteWithDefaults instantiates a new Site object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Site) GetAddress

func (o *Site) GetAddress() SiteAddress

GetAddress returns the Address field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Site) GetAddressOk

func (o *Site) GetAddressOk() (*SiteAddress, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Site) GetAttributes

func (o *Site) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Site) GetAttributesOk

func (o *Site) GetAttributesOk() (*map[string]string, bool)

GetAttributesOk returns a tuple with the Attributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetContact

func (o *Site) GetContact() SiteContact

GetContact returns the Contact field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Site) GetContactOk

func (o *Site) GetContactOk() (*SiteContact, bool)

GetContactOk returns a tuple with the Contact field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Site) GetCreatedBy

func (o *Site) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*Site) GetCreatedByOk

func (o *Site) 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 (*Site) GetCreatedOn

func (o *Site) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*Site) GetCreatedOnOk

func (o *Site) GetCreatedOnOk() (*time.Time, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetDescription

func (o *Site) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Site) GetDescriptionOk

func (o *Site) 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 (*Site) GetDevices

func (o *Site) GetDevices() []DeviceSummary

GetDevices returns the Devices field value if set, zero value otherwise.

func (*Site) GetDevicesOk

func (o *Site) GetDevicesOk() (*[]DeviceSummary, bool)

GetDevicesOk returns a tuple with the Devices field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetId

func (o *Site) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Site) GetIdOk

func (o *Site) 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 (*Site) GetImage

func (o *Site) GetImage() string

GetImage returns the Image field value if set, zero value otherwise.

func (*Site) GetImageOk

func (o *Site) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetLocation

func (o *Site) GetLocation() SiteLocation

GetLocation returns the Location field value if set, zero value otherwise.

func (*Site) GetLocationOk

func (o *Site) GetLocationOk() (*SiteLocation, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetModifiedBy

func (o *Site) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise.

func (*Site) GetModifiedByOk

func (o *Site) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetModifiedOn

func (o *Site) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise.

func (*Site) GetModifiedOnOk

func (o *Site) GetModifiedOnOk() (*time.Time, bool)

GetModifiedOnOk returns a tuple with the ModifiedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetName

func (o *Site) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Site) GetNameOk

func (o *Site) 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 (*Site) GetParentId

func (o *Site) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*Site) GetParentIdOk

func (o *Site) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetServiceInstanceIds

func (o *Site) GetServiceInstanceIds() []string

GetServiceInstanceIds returns the ServiceInstanceIds field value if set, zero value otherwise.

func (*Site) GetServiceInstanceIdsOk

func (o *Site) GetServiceInstanceIdsOk() (*[]string, bool)

GetServiceInstanceIdsOk returns a tuple with the ServiceInstanceIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetStatus

func (o *Site) GetStatus() SiteStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Site) GetStatusOk

func (o *Site) GetStatusOk() (*SiteStatus, 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 (*Site) GetTenantId

func (o *Site) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Site) GetTenantIdOk

func (o *Site) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Site) GetType

func (o *Site) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Site) GetTypeOk

func (o *Site) 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 (*Site) HasAddress

func (o *Site) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*Site) HasAttributes

func (o *Site) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Site) HasContact

func (o *Site) HasContact() bool

HasContact returns a boolean if a field has been set.

func (*Site) HasCreatedBy

func (o *Site) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Site) HasCreatedOn

func (o *Site) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*Site) HasDescription

func (o *Site) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Site) HasDevices

func (o *Site) HasDevices() bool

HasDevices returns a boolean if a field has been set.

func (*Site) HasId

func (o *Site) HasId() bool

HasId returns a boolean if a field has been set.

func (*Site) HasImage

func (o *Site) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*Site) HasLocation

func (o *Site) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*Site) HasModifiedBy

func (o *Site) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*Site) HasModifiedOn

func (o *Site) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*Site) HasName

func (o *Site) HasName() bool

HasName returns a boolean if a field has been set.

func (*Site) HasParentId

func (o *Site) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*Site) HasServiceInstanceIds

func (o *Site) HasServiceInstanceIds() bool

HasServiceInstanceIds returns a boolean if a field has been set.

func (*Site) HasStatus

func (o *Site) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Site) HasTenantId

func (o *Site) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Site) HasType

func (o *Site) HasType() bool

HasType returns a boolean if a field has been set.

func (Site) MarshalJSON

func (o Site) MarshalJSON() ([]byte, error)

func (*Site) SetAddress

func (o *Site) SetAddress(v SiteAddress)

SetAddress gets a reference to the given NullableSiteAddress and assigns it to the Address field.

func (*Site) SetAddressNil added in v1.0.1

func (o *Site) SetAddressNil()

SetAddressNil sets the value for Address to be an explicit nil

func (*Site) SetAttributes

func (o *Site) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*Site) SetContact

func (o *Site) SetContact(v SiteContact)

SetContact gets a reference to the given NullableSiteContact and assigns it to the Contact field.

func (*Site) SetContactNil added in v1.0.1

func (o *Site) SetContactNil()

SetContactNil sets the value for Contact to be an explicit nil

func (*Site) SetCreatedBy

func (o *Site) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*Site) SetCreatedOn

func (o *Site) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*Site) SetDescription

func (o *Site) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Site) SetDevices

func (o *Site) SetDevices(v []DeviceSummary)

SetDevices gets a reference to the given []DeviceSummary and assigns it to the Devices field.

func (*Site) SetId

func (o *Site) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Site) SetImage

func (o *Site) SetImage(v string)

SetImage gets a reference to the given string and assigns it to the Image field.

func (*Site) SetLocation

func (o *Site) SetLocation(v SiteLocation)

SetLocation gets a reference to the given SiteLocation and assigns it to the Location field.

func (*Site) SetModifiedBy

func (o *Site) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given string and assigns it to the ModifiedBy field.

func (*Site) SetModifiedOn

func (o *Site) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given time.Time and assigns it to the ModifiedOn field.

func (*Site) SetName

func (o *Site) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Site) SetParentId

func (o *Site) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*Site) SetServiceInstanceIds

func (o *Site) SetServiceInstanceIds(v []string)

SetServiceInstanceIds gets a reference to the given []string and assigns it to the ServiceInstanceIds field.

func (*Site) SetStatus

func (o *Site) SetStatus(v SiteStatus)

SetStatus gets a reference to the given SiteStatus and assigns it to the Status field.

func (*Site) SetTenantId

func (o *Site) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Site) SetType

func (o *Site) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Site) UnsetAddress added in v1.0.1

func (o *Site) UnsetAddress()

UnsetAddress ensures that no value is present for Address, not even an explicit nil

func (*Site) UnsetContact added in v1.0.1

func (o *Site) UnsetContact()

UnsetContact ensures that no value is present for Contact, not even an explicit nil

type SiteAddress

type SiteAddress struct {
	Name             *string `json:"name,omitempty"`
	Company          *string `json:"company,omitempty"`
	FormattedAddress *string `json:"formattedAddress,omitempty"`
	Address1         *string `json:"address1,omitempty"`
	Address2         *string `json:"address2,omitempty"`
	City             *string `json:"city,omitempty"`
	State            *string `json:"state,omitempty"`
	Country          *string `json:"country,omitempty"`
	PostCode         *string `json:"postCode,omitempty"`
}

SiteAddress struct for SiteAddress

func NewSiteAddress

func NewSiteAddress() *SiteAddress

NewSiteAddress instantiates a new SiteAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteAddressWithDefaults

func NewSiteAddressWithDefaults() *SiteAddress

NewSiteAddressWithDefaults instantiates a new SiteAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteAddress) GetAddress1

func (o *SiteAddress) GetAddress1() string

GetAddress1 returns the Address1 field value if set, zero value otherwise.

func (*SiteAddress) GetAddress1Ok

func (o *SiteAddress) GetAddress1Ok() (*string, bool)

GetAddress1Ok returns a tuple with the Address1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteAddress) GetAddress2

func (o *SiteAddress) GetAddress2() string

GetAddress2 returns the Address2 field value if set, zero value otherwise.

func (*SiteAddress) GetAddress2Ok

func (o *SiteAddress) GetAddress2Ok() (*string, bool)

GetAddress2Ok returns a tuple with the Address2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteAddress) GetCity

func (o *SiteAddress) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*SiteAddress) GetCityOk

func (o *SiteAddress) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteAddress) GetCompany

func (o *SiteAddress) GetCompany() string

GetCompany returns the Company field value if set, zero value otherwise.

func (*SiteAddress) GetCompanyOk

func (o *SiteAddress) GetCompanyOk() (*string, bool)

GetCompanyOk returns a tuple with the Company field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteAddress) GetCountry

func (o *SiteAddress) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*SiteAddress) GetCountryOk

func (o *SiteAddress) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteAddress) GetFormattedAddress

func (o *SiteAddress) GetFormattedAddress() string

GetFormattedAddress returns the FormattedAddress field value if set, zero value otherwise.

func (*SiteAddress) GetFormattedAddressOk

func (o *SiteAddress) GetFormattedAddressOk() (*string, bool)

GetFormattedAddressOk returns a tuple with the FormattedAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteAddress) GetName

func (o *SiteAddress) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SiteAddress) GetNameOk

func (o *SiteAddress) 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 (*SiteAddress) GetPostCode

func (o *SiteAddress) GetPostCode() string

GetPostCode returns the PostCode field value if set, zero value otherwise.

func (*SiteAddress) GetPostCodeOk

func (o *SiteAddress) GetPostCodeOk() (*string, bool)

GetPostCodeOk returns a tuple with the PostCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteAddress) GetState

func (o *SiteAddress) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*SiteAddress) GetStateOk

func (o *SiteAddress) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteAddress) HasAddress1

func (o *SiteAddress) HasAddress1() bool

HasAddress1 returns a boolean if a field has been set.

func (*SiteAddress) HasAddress2

func (o *SiteAddress) HasAddress2() bool

HasAddress2 returns a boolean if a field has been set.

func (*SiteAddress) HasCity

func (o *SiteAddress) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*SiteAddress) HasCompany

func (o *SiteAddress) HasCompany() bool

HasCompany returns a boolean if a field has been set.

func (*SiteAddress) HasCountry

func (o *SiteAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*SiteAddress) HasFormattedAddress

func (o *SiteAddress) HasFormattedAddress() bool

HasFormattedAddress returns a boolean if a field has been set.

func (*SiteAddress) HasName

func (o *SiteAddress) HasName() bool

HasName returns a boolean if a field has been set.

func (*SiteAddress) HasPostCode

func (o *SiteAddress) HasPostCode() bool

HasPostCode returns a boolean if a field has been set.

func (*SiteAddress) HasState

func (o *SiteAddress) HasState() bool

HasState returns a boolean if a field has been set.

func (SiteAddress) MarshalJSON

func (o SiteAddress) MarshalJSON() ([]byte, error)

func (*SiteAddress) SetAddress1

func (o *SiteAddress) SetAddress1(v string)

SetAddress1 gets a reference to the given string and assigns it to the Address1 field.

func (*SiteAddress) SetAddress2

func (o *SiteAddress) SetAddress2(v string)

SetAddress2 gets a reference to the given string and assigns it to the Address2 field.

func (*SiteAddress) SetCity

func (o *SiteAddress) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*SiteAddress) SetCompany

func (o *SiteAddress) SetCompany(v string)

SetCompany gets a reference to the given string and assigns it to the Company field.

func (*SiteAddress) SetCountry

func (o *SiteAddress) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*SiteAddress) SetFormattedAddress

func (o *SiteAddress) SetFormattedAddress(v string)

SetFormattedAddress gets a reference to the given string and assigns it to the FormattedAddress field.

func (*SiteAddress) SetName

func (o *SiteAddress) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*SiteAddress) SetPostCode

func (o *SiteAddress) SetPostCode(v string)

SetPostCode gets a reference to the given string and assigns it to the PostCode field.

func (*SiteAddress) SetState

func (o *SiteAddress) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

type SiteContact

type SiteContact struct {
	Name  string  `json:"name"`
	Phone string  `json:"phone"`
	Email *string `json:"email,omitempty"`
}

SiteContact struct for SiteContact

func NewSiteContact

func NewSiteContact(name string, phone string) *SiteContact

NewSiteContact instantiates a new SiteContact object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteContactWithDefaults

func NewSiteContactWithDefaults() *SiteContact

NewSiteContactWithDefaults instantiates a new SiteContact object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteContact) GetEmail

func (o *SiteContact) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*SiteContact) GetEmailOk

func (o *SiteContact) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteContact) GetName

func (o *SiteContact) GetName() string

GetName returns the Name field value

func (*SiteContact) GetNameOk

func (o *SiteContact) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SiteContact) GetPhone

func (o *SiteContact) GetPhone() string

GetPhone returns the Phone field value

func (*SiteContact) GetPhoneOk

func (o *SiteContact) GetPhoneOk() (*string, bool)

GetPhoneOk returns a tuple with the Phone field value and a boolean to check if the value has been set.

func (*SiteContact) HasEmail

func (o *SiteContact) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (SiteContact) MarshalJSON

func (o SiteContact) MarshalJSON() ([]byte, error)

func (*SiteContact) SetEmail

func (o *SiteContact) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*SiteContact) SetName

func (o *SiteContact) SetName(v string)

SetName sets field value

func (*SiteContact) SetPhone

func (o *SiteContact) SetPhone(v string)

SetPhone sets field value

type SiteCreate

type SiteCreate struct {
	TenantId    string              `json:"tenantId"`
	DeviceIds   *[]string           `json:"deviceIds,omitempty"`
	ServiceIds  *[]string           `json:"serviceIds,omitempty"`
	ParentId    *string             `json:"parentId,omitempty"`
	Name        string              `json:"name"`
	Description *string             `json:"description,omitempty"`
	Type        *string             `json:"type,omitempty"`
	Address     NullableSiteAddress `json:"address,omitempty"`
	Contact     NullableSiteContact `json:"contact,omitempty"`
	Location    *SiteLocation       `json:"location,omitempty"`
	Image       *string             `json:"image,omitempty"`
	Attributes  *map[string]string  `json:"attributes,omitempty"`
}

SiteCreate struct for SiteCreate

func NewSiteCreate

func NewSiteCreate(tenantId string, name string) *SiteCreate

NewSiteCreate instantiates a new SiteCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteCreateWithDefaults

func NewSiteCreateWithDefaults() *SiteCreate

NewSiteCreateWithDefaults instantiates a new SiteCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteCreate) GetAddress

func (o *SiteCreate) GetAddress() SiteAddress

GetAddress returns the Address field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SiteCreate) GetAddressOk

func (o *SiteCreate) GetAddressOk() (*SiteAddress, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SiteCreate) GetAttributes

func (o *SiteCreate) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*SiteCreate) GetAttributesOk

func (o *SiteCreate) GetAttributesOk() (*map[string]string, bool)

GetAttributesOk returns a tuple with the Attributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreate) GetContact

func (o *SiteCreate) GetContact() SiteContact

GetContact returns the Contact field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SiteCreate) GetContactOk

func (o *SiteCreate) GetContactOk() (*SiteContact, bool)

GetContactOk returns a tuple with the Contact field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SiteCreate) GetDescription

func (o *SiteCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*SiteCreate) GetDescriptionOk

func (o *SiteCreate) 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 (*SiteCreate) GetDeviceIds

func (o *SiteCreate) GetDeviceIds() []string

GetDeviceIds returns the DeviceIds field value if set, zero value otherwise.

func (*SiteCreate) GetDeviceIdsOk

func (o *SiteCreate) GetDeviceIdsOk() (*[]string, bool)

GetDeviceIdsOk returns a tuple with the DeviceIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreate) GetImage

func (o *SiteCreate) GetImage() string

GetImage returns the Image field value if set, zero value otherwise.

func (*SiteCreate) GetImageOk

func (o *SiteCreate) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreate) GetLocation

func (o *SiteCreate) GetLocation() SiteLocation

GetLocation returns the Location field value if set, zero value otherwise.

func (*SiteCreate) GetLocationOk

func (o *SiteCreate) GetLocationOk() (*SiteLocation, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreate) GetName

func (o *SiteCreate) GetName() string

GetName returns the Name field value

func (*SiteCreate) GetNameOk

func (o *SiteCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SiteCreate) GetParentId

func (o *SiteCreate) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*SiteCreate) GetParentIdOk

func (o *SiteCreate) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreate) GetServiceIds

func (o *SiteCreate) GetServiceIds() []string

GetServiceIds returns the ServiceIds field value if set, zero value otherwise.

func (*SiteCreate) GetServiceIdsOk

func (o *SiteCreate) GetServiceIdsOk() (*[]string, bool)

GetServiceIdsOk returns a tuple with the ServiceIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreate) GetTenantId

func (o *SiteCreate) GetTenantId() string

GetTenantId returns the TenantId field value

func (*SiteCreate) GetTenantIdOk

func (o *SiteCreate) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value and a boolean to check if the value has been set.

func (*SiteCreate) GetType

func (o *SiteCreate) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SiteCreate) GetTypeOk

func (o *SiteCreate) 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 (*SiteCreate) HasAddress

func (o *SiteCreate) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*SiteCreate) HasAttributes

func (o *SiteCreate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*SiteCreate) HasContact

func (o *SiteCreate) HasContact() bool

HasContact returns a boolean if a field has been set.

func (*SiteCreate) HasDescription

func (o *SiteCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SiteCreate) HasDeviceIds

func (o *SiteCreate) HasDeviceIds() bool

HasDeviceIds returns a boolean if a field has been set.

func (*SiteCreate) HasImage

func (o *SiteCreate) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*SiteCreate) HasLocation

func (o *SiteCreate) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*SiteCreate) HasParentId

func (o *SiteCreate) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*SiteCreate) HasServiceIds

func (o *SiteCreate) HasServiceIds() bool

HasServiceIds returns a boolean if a field has been set.

func (*SiteCreate) HasType

func (o *SiteCreate) HasType() bool

HasType returns a boolean if a field has been set.

func (SiteCreate) MarshalJSON

func (o SiteCreate) MarshalJSON() ([]byte, error)

func (*SiteCreate) SetAddress

func (o *SiteCreate) SetAddress(v SiteAddress)

SetAddress gets a reference to the given NullableSiteAddress and assigns it to the Address field.

func (*SiteCreate) SetAddressNil added in v1.0.1

func (o *SiteCreate) SetAddressNil()

SetAddressNil sets the value for Address to be an explicit nil

func (*SiteCreate) SetAttributes

func (o *SiteCreate) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*SiteCreate) SetContact

func (o *SiteCreate) SetContact(v SiteContact)

SetContact gets a reference to the given NullableSiteContact and assigns it to the Contact field.

func (*SiteCreate) SetContactNil added in v1.0.1

func (o *SiteCreate) SetContactNil()

SetContactNil sets the value for Contact to be an explicit nil

func (*SiteCreate) SetDescription

func (o *SiteCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*SiteCreate) SetDeviceIds

func (o *SiteCreate) SetDeviceIds(v []string)

SetDeviceIds gets a reference to the given []string and assigns it to the DeviceIds field.

func (*SiteCreate) SetImage

func (o *SiteCreate) SetImage(v string)

SetImage gets a reference to the given string and assigns it to the Image field.

func (*SiteCreate) SetLocation

func (o *SiteCreate) SetLocation(v SiteLocation)

SetLocation gets a reference to the given SiteLocation and assigns it to the Location field.

func (*SiteCreate) SetName

func (o *SiteCreate) SetName(v string)

SetName sets field value

func (*SiteCreate) SetParentId

func (o *SiteCreate) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*SiteCreate) SetServiceIds

func (o *SiteCreate) SetServiceIds(v []string)

SetServiceIds gets a reference to the given []string and assigns it to the ServiceIds field.

func (*SiteCreate) SetTenantId

func (o *SiteCreate) SetTenantId(v string)

SetTenantId sets field value

func (*SiteCreate) SetType

func (o *SiteCreate) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*SiteCreate) UnsetAddress added in v1.0.1

func (o *SiteCreate) UnsetAddress()

UnsetAddress ensures that no value is present for Address, not even an explicit nil

func (*SiteCreate) UnsetContact added in v1.0.1

func (o *SiteCreate) UnsetContact()

UnsetContact ensures that no value is present for Contact, not even an explicit nil

type SiteCreateAllOf

type SiteCreateAllOf struct {
	TenantId   string    `json:"tenantId"`
	DeviceIds  *[]string `json:"deviceIds,omitempty"`
	ServiceIds *[]string `json:"serviceIds,omitempty"`
}

SiteCreateAllOf struct for SiteCreateAllOf

func NewSiteCreateAllOf

func NewSiteCreateAllOf(tenantId string) *SiteCreateAllOf

NewSiteCreateAllOf instantiates a new SiteCreateAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteCreateAllOfWithDefaults

func NewSiteCreateAllOfWithDefaults() *SiteCreateAllOf

NewSiteCreateAllOfWithDefaults instantiates a new SiteCreateAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteCreateAllOf) GetDeviceIds

func (o *SiteCreateAllOf) GetDeviceIds() []string

GetDeviceIds returns the DeviceIds field value if set, zero value otherwise.

func (*SiteCreateAllOf) GetDeviceIdsOk

func (o *SiteCreateAllOf) GetDeviceIdsOk() (*[]string, bool)

GetDeviceIdsOk returns a tuple with the DeviceIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreateAllOf) GetServiceIds

func (o *SiteCreateAllOf) GetServiceIds() []string

GetServiceIds returns the ServiceIds field value if set, zero value otherwise.

func (*SiteCreateAllOf) GetServiceIdsOk

func (o *SiteCreateAllOf) GetServiceIdsOk() (*[]string, bool)

GetServiceIdsOk returns a tuple with the ServiceIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteCreateAllOf) GetTenantId

func (o *SiteCreateAllOf) GetTenantId() string

GetTenantId returns the TenantId field value

func (*SiteCreateAllOf) GetTenantIdOk

func (o *SiteCreateAllOf) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value and a boolean to check if the value has been set.

func (*SiteCreateAllOf) HasDeviceIds

func (o *SiteCreateAllOf) HasDeviceIds() bool

HasDeviceIds returns a boolean if a field has been set.

func (*SiteCreateAllOf) HasServiceIds

func (o *SiteCreateAllOf) HasServiceIds() bool

HasServiceIds returns a boolean if a field has been set.

func (SiteCreateAllOf) MarshalJSON

func (o SiteCreateAllOf) MarshalJSON() ([]byte, error)

func (*SiteCreateAllOf) SetDeviceIds

func (o *SiteCreateAllOf) SetDeviceIds(v []string)

SetDeviceIds gets a reference to the given []string and assigns it to the DeviceIds field.

func (*SiteCreateAllOf) SetServiceIds

func (o *SiteCreateAllOf) SetServiceIds(v []string)

SetServiceIds gets a reference to the given []string and assigns it to the ServiceIds field.

func (*SiteCreateAllOf) SetTenantId

func (o *SiteCreateAllOf) SetTenantId(v string)

SetTenantId sets field value

type SiteLocation

type SiteLocation struct {
	Latitude  float64 `json:"latitude"`
	Longitude float64 `json:"longitude"`
}

SiteLocation struct for SiteLocation

func NewSiteLocation

func NewSiteLocation(latitude float64, longitude float64) *SiteLocation

NewSiteLocation instantiates a new SiteLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteLocationWithDefaults

func NewSiteLocationWithDefaults() *SiteLocation

NewSiteLocationWithDefaults instantiates a new SiteLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteLocation) GetLatitude

func (o *SiteLocation) GetLatitude() float64

GetLatitude returns the Latitude field value

func (*SiteLocation) GetLatitudeOk

func (o *SiteLocation) GetLatitudeOk() (*float64, bool)

GetLatitudeOk returns a tuple with the Latitude field value and a boolean to check if the value has been set.

func (*SiteLocation) GetLongitude

func (o *SiteLocation) GetLongitude() float64

GetLongitude returns the Longitude field value

func (*SiteLocation) GetLongitudeOk

func (o *SiteLocation) GetLongitudeOk() (*float64, bool)

GetLongitudeOk returns a tuple with the Longitude field value and a boolean to check if the value has been set.

func (SiteLocation) MarshalJSON

func (o SiteLocation) MarshalJSON() ([]byte, error)

func (*SiteLocation) SetLatitude

func (o *SiteLocation) SetLatitude(v float64)

SetLatitude sets field value

func (*SiteLocation) SetLongitude

func (o *SiteLocation) SetLongitude(v float64)

SetLongitude sets field value

type SiteStatus

type SiteStatus struct {
	Type               string     `json:"type"`
	Name               string     `json:"name"`
	Value              string     `json:"value"`
	Severity           string     `json:"severity"`
	LastUpdated        *time.Time `json:"lastUpdated,omitempty"`
	LastUpdatedMessage string     `json:"lastUpdatedMessage"`
}

SiteStatus struct for SiteStatus

func NewSiteStatus

func NewSiteStatus(type_ string, name string, value string, severity string, lastUpdatedMessage string) *SiteStatus

NewSiteStatus instantiates a new SiteStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteStatusWithDefaults

func NewSiteStatusWithDefaults() *SiteStatus

NewSiteStatusWithDefaults instantiates a new SiteStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteStatus) GetLastUpdated

func (o *SiteStatus) GetLastUpdated() time.Time

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*SiteStatus) GetLastUpdatedMessage

func (o *SiteStatus) GetLastUpdatedMessage() string

GetLastUpdatedMessage returns the LastUpdatedMessage field value

func (*SiteStatus) GetLastUpdatedMessageOk

func (o *SiteStatus) GetLastUpdatedMessageOk() (*string, bool)

GetLastUpdatedMessageOk returns a tuple with the LastUpdatedMessage field value and a boolean to check if the value has been set.

func (*SiteStatus) GetLastUpdatedOk

func (o *SiteStatus) GetLastUpdatedOk() (*time.Time, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteStatus) GetName

func (o *SiteStatus) GetName() string

GetName returns the Name field value

func (*SiteStatus) GetNameOk

func (o *SiteStatus) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SiteStatus) GetSeverity

func (o *SiteStatus) GetSeverity() string

GetSeverity returns the Severity field value

func (*SiteStatus) GetSeverityOk

func (o *SiteStatus) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value and a boolean to check if the value has been set.

func (*SiteStatus) GetType

func (o *SiteStatus) GetType() string

GetType returns the Type field value

func (*SiteStatus) GetTypeOk

func (o *SiteStatus) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*SiteStatus) GetValue

func (o *SiteStatus) GetValue() string

GetValue returns the Value field value

func (*SiteStatus) GetValueOk

func (o *SiteStatus) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (*SiteStatus) HasLastUpdated

func (o *SiteStatus) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (SiteStatus) MarshalJSON

func (o SiteStatus) MarshalJSON() ([]byte, error)

func (*SiteStatus) SetLastUpdated

func (o *SiteStatus) SetLastUpdated(v time.Time)

SetLastUpdated gets a reference to the given time.Time and assigns it to the LastUpdated field.

func (*SiteStatus) SetLastUpdatedMessage

func (o *SiteStatus) SetLastUpdatedMessage(v string)

SetLastUpdatedMessage sets field value

func (*SiteStatus) SetName

func (o *SiteStatus) SetName(v string)

SetName sets field value

func (*SiteStatus) SetSeverity

func (o *SiteStatus) SetSeverity(v string)

SetSeverity sets field value

func (*SiteStatus) SetType

func (o *SiteStatus) SetType(v string)

SetType sets field value

func (*SiteStatus) SetValue

func (o *SiteStatus) SetValue(v string)

SetValue sets field value

type SiteUpdate

type SiteUpdate struct {
	ParentId    *string             `json:"parentId,omitempty"`
	Name        string              `json:"name"`
	Description *string             `json:"description,omitempty"`
	Type        *string             `json:"type,omitempty"`
	Address     NullableSiteAddress `json:"address,omitempty"`
	Contact     NullableSiteContact `json:"contact,omitempty"`
	Location    *SiteLocation       `json:"location,omitempty"`
	Image       *string             `json:"image,omitempty"`
	Attributes  *map[string]string  `json:"attributes,omitempty"`
}

SiteUpdate struct for SiteUpdate

func NewSiteUpdate

func NewSiteUpdate(name string) *SiteUpdate

NewSiteUpdate instantiates a new SiteUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSiteUpdateWithDefaults

func NewSiteUpdateWithDefaults() *SiteUpdate

NewSiteUpdateWithDefaults instantiates a new SiteUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SiteUpdate) GetAddress

func (o *SiteUpdate) GetAddress() SiteAddress

GetAddress returns the Address field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SiteUpdate) GetAddressOk

func (o *SiteUpdate) GetAddressOk() (*SiteAddress, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SiteUpdate) GetAttributes

func (o *SiteUpdate) GetAttributes() map[string]string

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*SiteUpdate) GetAttributesOk

func (o *SiteUpdate) GetAttributesOk() (*map[string]string, bool)

GetAttributesOk returns a tuple with the Attributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteUpdate) GetContact

func (o *SiteUpdate) GetContact() SiteContact

GetContact returns the Contact field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SiteUpdate) GetContactOk

func (o *SiteUpdate) GetContactOk() (*SiteContact, bool)

GetContactOk returns a tuple with the Contact field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SiteUpdate) GetDescription

func (o *SiteUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*SiteUpdate) GetDescriptionOk

func (o *SiteUpdate) 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 (*SiteUpdate) GetImage

func (o *SiteUpdate) GetImage() string

GetImage returns the Image field value if set, zero value otherwise.

func (*SiteUpdate) GetImageOk

func (o *SiteUpdate) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteUpdate) GetLocation

func (o *SiteUpdate) GetLocation() SiteLocation

GetLocation returns the Location field value if set, zero value otherwise.

func (*SiteUpdate) GetLocationOk

func (o *SiteUpdate) GetLocationOk() (*SiteLocation, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteUpdate) GetName

func (o *SiteUpdate) GetName() string

GetName returns the Name field value

func (*SiteUpdate) GetNameOk

func (o *SiteUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SiteUpdate) GetParentId

func (o *SiteUpdate) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*SiteUpdate) GetParentIdOk

func (o *SiteUpdate) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SiteUpdate) GetType

func (o *SiteUpdate) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SiteUpdate) GetTypeOk

func (o *SiteUpdate) 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 (*SiteUpdate) HasAddress

func (o *SiteUpdate) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*SiteUpdate) HasAttributes

func (o *SiteUpdate) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*SiteUpdate) HasContact

func (o *SiteUpdate) HasContact() bool

HasContact returns a boolean if a field has been set.

func (*SiteUpdate) HasDescription

func (o *SiteUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SiteUpdate) HasImage

func (o *SiteUpdate) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*SiteUpdate) HasLocation

func (o *SiteUpdate) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*SiteUpdate) HasParentId

func (o *SiteUpdate) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*SiteUpdate) HasType

func (o *SiteUpdate) HasType() bool

HasType returns a boolean if a field has been set.

func (SiteUpdate) MarshalJSON

func (o SiteUpdate) MarshalJSON() ([]byte, error)

func (*SiteUpdate) SetAddress

func (o *SiteUpdate) SetAddress(v SiteAddress)

SetAddress gets a reference to the given NullableSiteAddress and assigns it to the Address field.

func (*SiteUpdate) SetAddressNil added in v1.0.1

func (o *SiteUpdate) SetAddressNil()

SetAddressNil sets the value for Address to be an explicit nil

func (*SiteUpdate) SetAttributes

func (o *SiteUpdate) SetAttributes(v map[string]string)

SetAttributes gets a reference to the given map[string]string and assigns it to the Attributes field.

func (*SiteUpdate) SetContact

func (o *SiteUpdate) SetContact(v SiteContact)

SetContact gets a reference to the given NullableSiteContact and assigns it to the Contact field.

func (*SiteUpdate) SetContactNil added in v1.0.1

func (o *SiteUpdate) SetContactNil()

SetContactNil sets the value for Contact to be an explicit nil

func (*SiteUpdate) SetDescription

func (o *SiteUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*SiteUpdate) SetImage

func (o *SiteUpdate) SetImage(v string)

SetImage gets a reference to the given string and assigns it to the Image field.

func (*SiteUpdate) SetLocation

func (o *SiteUpdate) SetLocation(v SiteLocation)

SetLocation gets a reference to the given SiteLocation and assigns it to the Location field.

func (*SiteUpdate) SetName

func (o *SiteUpdate) SetName(v string)

SetName sets field value

func (*SiteUpdate) SetParentId

func (o *SiteUpdate) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*SiteUpdate) SetType

func (o *SiteUpdate) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*SiteUpdate) UnsetAddress added in v1.0.1

func (o *SiteUpdate) UnsetAddress()

UnsetAddress ensures that no value is present for Address, not even an explicit nil

func (*SiteUpdate) UnsetContact added in v1.0.1

func (o *SiteUpdate) UnsetContact()

UnsetContact ensures that no value is present for Contact, not even an explicit nil

type SitesApiService

type SitesApiService service

SitesApiService SitesApi service

func (*SitesApiService) AddDevicesToSite

func (a *SitesApiService) AddDevicesToSite(ctx _context.Context, id string) ApiAddDevicesToSiteRequest

* AddDevicesToSite Add devices to a site. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiAddDevicesToSiteRequest

func (*SitesApiService) AddDevicesToSiteExecute

func (a *SitesApiService) AddDevicesToSiteExecute(r ApiAddDevicesToSiteRequest) (Site, *_nethttp.Response, error)

* Execute executes the request * @return Site

func (*SitesApiService) AddServicesToSite

func (a *SitesApiService) AddServicesToSite(ctx _context.Context, id string) ApiAddServicesToSiteRequest

* AddServicesToSite Add services to a site. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiAddServicesToSiteRequest

func (*SitesApiService) AddServicesToSiteExecute

func (a *SitesApiService) AddServicesToSiteExecute(r ApiAddServicesToSiteRequest) (Site, *_nethttp.Response, error)

* Execute executes the request * @return Site

func (*SitesApiService) CreateSite

* CreateSite Creates a new site. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateSiteRequest

func (*SitesApiService) CreateSiteExecute

func (a *SitesApiService) CreateSiteExecute(r ApiCreateSiteRequest) (Site, *_nethttp.Response, error)

* Execute executes the request * @return Site

func (*SitesApiService) DeleteSite

* DeleteSite Deletes a site. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteSiteRequest

func (*SitesApiService) DeleteSiteExecute

func (a *SitesApiService) DeleteSiteExecute(r ApiDeleteSiteRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*SitesApiService) GetSite

* GetSite Returns a site. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetSiteRequest

func (*SitesApiService) GetSiteExecute

func (a *SitesApiService) GetSiteExecute(r ApiGetSiteRequest) (Site, *_nethttp.Response, error)

* Execute executes the request * @return Site

func (*SitesApiService) GetSitesPage

* GetSitesPage Returns a page of Sites. Only one filter is supported at a time. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetSitesPageRequest

func (*SitesApiService) GetSitesPageExecute

func (a *SitesApiService) GetSitesPageExecute(r ApiGetSitesPageRequest) (SitesPage, *_nethttp.Response, error)

* Execute executes the request * @return SitesPage

func (*SitesApiService) RemoveDevicesFromSite

func (a *SitesApiService) RemoveDevicesFromSite(ctx _context.Context, id string) ApiRemoveDevicesFromSiteRequest

* RemoveDevicesFromSite Removes devices from a site. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiRemoveDevicesFromSiteRequest

func (*SitesApiService) RemoveDevicesFromSiteExecute

func (a *SitesApiService) RemoveDevicesFromSiteExecute(r ApiRemoveDevicesFromSiteRequest) (Site, *_nethttp.Response, error)

* Execute executes the request * @return Site

func (*SitesApiService) RemoveServicesFromSite

func (a *SitesApiService) RemoveServicesFromSite(ctx _context.Context, id string) ApiRemoveServicesFromSiteRequest

* RemoveServicesFromSite Remove services from a site. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiRemoveServicesFromSiteRequest

func (*SitesApiService) RemoveServicesFromSiteExecute

func (a *SitesApiService) RemoveServicesFromSiteExecute(r ApiRemoveServicesFromSiteRequest) (Site, *_nethttp.Response, error)

* Execute executes the request * @return Site

func (*SitesApiService) UpdateSite

* UpdateSite Updates a site. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateSiteRequest

func (*SitesApiService) UpdateSiteExecute

func (a *SitesApiService) UpdateSiteExecute(r ApiUpdateSiteRequest) (Site, *_nethttp.Response, error)

* Execute executes the request * @return Site

type SitesPage

type SitesPage struct {
	Page        *int32       `json:"page,omitempty"`
	PageSize    *int32       `json:"pageSize,omitempty"`
	TotalItems  *int64       `json:"totalItems,omitempty"`
	HasNext     NullableBool `json:"hasNext,omitempty"`
	HasPrevious NullableBool `json:"hasPrevious,omitempty"`
	SortBy      *string      `json:"sortBy,omitempty"`
	SortOrder   *string      `json:"sortOrder,omitempty"`
	Contents    *[]Site      `json:"contents,omitempty"`
}

SitesPage struct for SitesPage

func NewSitesPage

func NewSitesPage() *SitesPage

NewSitesPage instantiates a new SitesPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSitesPageWithDefaults

func NewSitesPageWithDefaults() *SitesPage

NewSitesPageWithDefaults instantiates a new SitesPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SitesPage) GetContents

func (o *SitesPage) GetContents() []Site

GetContents returns the Contents field value if set, zero value otherwise.

func (*SitesPage) GetContentsOk

func (o *SitesPage) GetContentsOk() (*[]Site, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SitesPage) GetHasNext

func (o *SitesPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SitesPage) GetHasNextOk

func (o *SitesPage) GetHasNextOk() (*bool, bool)

GetHasNextOk returns a tuple with the HasNext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SitesPage) GetHasPrevious

func (o *SitesPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SitesPage) GetHasPreviousOk

func (o *SitesPage) GetHasPreviousOk() (*bool, bool)

GetHasPreviousOk returns a tuple with the HasPrevious field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SitesPage) GetPage

func (o *SitesPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*SitesPage) GetPageOk

func (o *SitesPage) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SitesPage) GetPageSize

func (o *SitesPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*SitesPage) GetPageSizeOk

func (o *SitesPage) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SitesPage) GetSortBy

func (o *SitesPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise.

func (*SitesPage) GetSortByOk

func (o *SitesPage) GetSortByOk() (*string, bool)

GetSortByOk returns a tuple with the SortBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SitesPage) GetSortOrder

func (o *SitesPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*SitesPage) GetSortOrderOk

func (o *SitesPage) GetSortOrderOk() (*string, bool)

GetSortOrderOk returns a tuple with the SortOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SitesPage) GetTotalItems

func (o *SitesPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*SitesPage) GetTotalItemsOk

func (o *SitesPage) GetTotalItemsOk() (*int64, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SitesPage) HasContents

func (o *SitesPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*SitesPage) HasHasNext

func (o *SitesPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*SitesPage) HasHasPrevious

func (o *SitesPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*SitesPage) HasPage

func (o *SitesPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*SitesPage) HasPageSize

func (o *SitesPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*SitesPage) HasSortBy

func (o *SitesPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*SitesPage) HasSortOrder

func (o *SitesPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*SitesPage) HasTotalItems

func (o *SitesPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (SitesPage) MarshalJSON

func (o SitesPage) MarshalJSON() ([]byte, error)

func (*SitesPage) SetContents

func (o *SitesPage) SetContents(v []Site)

SetContents gets a reference to the given []Site and assigns it to the Contents field.

func (*SitesPage) SetHasNext

func (o *SitesPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*SitesPage) SetHasNextNil

func (o *SitesPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*SitesPage) SetHasPrevious

func (o *SitesPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*SitesPage) SetHasPreviousNil

func (o *SitesPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*SitesPage) SetPage

func (o *SitesPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*SitesPage) SetPageSize

func (o *SitesPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*SitesPage) SetSortBy

func (o *SitesPage) SetSortBy(v string)

SetSortBy gets a reference to the given string and assigns it to the SortBy field.

func (*SitesPage) SetSortOrder

func (o *SitesPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given string and assigns it to the SortOrder field.

func (*SitesPage) SetTotalItems

func (o *SitesPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given int64 and assigns it to the TotalItems field.

func (*SitesPage) UnsetHasNext

func (o *SitesPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*SitesPage) UnsetHasPrevious

func (o *SitesPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

type SitesPageAllOf

type SitesPageAllOf struct {
	Contents *[]Site `json:"contents,omitempty"`
}

SitesPageAllOf struct for SitesPageAllOf

func NewSitesPageAllOf

func NewSitesPageAllOf() *SitesPageAllOf

NewSitesPageAllOf instantiates a new SitesPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSitesPageAllOfWithDefaults

func NewSitesPageAllOfWithDefaults() *SitesPageAllOf

NewSitesPageAllOfWithDefaults instantiates a new SitesPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SitesPageAllOf) GetContents

func (o *SitesPageAllOf) GetContents() []Site

GetContents returns the Contents field value if set, zero value otherwise.

func (*SitesPageAllOf) GetContentsOk

func (o *SitesPageAllOf) GetContentsOk() (*[]Site, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SitesPageAllOf) HasContents

func (o *SitesPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (SitesPageAllOf) MarshalJSON

func (o SitesPageAllOf) MarshalJSON() ([]byte, error)

func (*SitesPageAllOf) SetContents

func (o *SitesPageAllOf) SetContents(v []Site)

SetContents gets a reference to the given []Site and assigns it to the Contents field.

type StartWorkflowResponse

type StartWorkflowResponse struct {
	Id           *string                            `json:"id,omitempty"`
	DefinitionId *string                            `json:"definition_id,omitempty"`
	SchemaId     *string                            `json:"schema_id,omitempty"`
	Type         *string                            `json:"type,omitempty"`
	BaseType     *string                            `json:"base_type,omitempty"`
	Status       *map[string]map[string]interface{} `json:"status,omitempty"`
	Version      *string                            `json:"version,omitempty"`
	CreatedBy    *string                            `json:"created_by,omitempty"`
	CreatedOn    *string                            `json:"created_on,omitempty"`
}

StartWorkflowResponse struct for StartWorkflowResponse

func NewStartWorkflowResponse

func NewStartWorkflowResponse() *StartWorkflowResponse

NewStartWorkflowResponse instantiates a new StartWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStartWorkflowResponseWithDefaults

func NewStartWorkflowResponseWithDefaults() *StartWorkflowResponse

NewStartWorkflowResponseWithDefaults instantiates a new StartWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StartWorkflowResponse) GetBaseType

func (o *StartWorkflowResponse) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetBaseTypeOk

func (o *StartWorkflowResponse) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartWorkflowResponse) GetCreatedBy

func (o *StartWorkflowResponse) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetCreatedByOk

func (o *StartWorkflowResponse) 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 (*StartWorkflowResponse) GetCreatedOn

func (o *StartWorkflowResponse) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetCreatedOnOk

func (o *StartWorkflowResponse) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartWorkflowResponse) GetDefinitionId

func (o *StartWorkflowResponse) GetDefinitionId() string

GetDefinitionId returns the DefinitionId field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetDefinitionIdOk

func (o *StartWorkflowResponse) GetDefinitionIdOk() (*string, bool)

GetDefinitionIdOk returns a tuple with the DefinitionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartWorkflowResponse) GetId

func (o *StartWorkflowResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetIdOk

func (o *StartWorkflowResponse) 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 (*StartWorkflowResponse) GetSchemaId

func (o *StartWorkflowResponse) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetSchemaIdOk

func (o *StartWorkflowResponse) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartWorkflowResponse) GetStatus

func (o *StartWorkflowResponse) GetStatus() map[string]map[string]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetStatusOk

func (o *StartWorkflowResponse) GetStatusOk() (*map[string]map[string]interface{}, 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 (*StartWorkflowResponse) GetType

func (o *StartWorkflowResponse) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetTypeOk

func (o *StartWorkflowResponse) 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 (*StartWorkflowResponse) GetVersion

func (o *StartWorkflowResponse) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*StartWorkflowResponse) GetVersionOk

func (o *StartWorkflowResponse) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartWorkflowResponse) HasBaseType

func (o *StartWorkflowResponse) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*StartWorkflowResponse) HasCreatedBy

func (o *StartWorkflowResponse) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*StartWorkflowResponse) HasCreatedOn

func (o *StartWorkflowResponse) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*StartWorkflowResponse) HasDefinitionId

func (o *StartWorkflowResponse) HasDefinitionId() bool

HasDefinitionId returns a boolean if a field has been set.

func (*StartWorkflowResponse) HasId

func (o *StartWorkflowResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*StartWorkflowResponse) HasSchemaId

func (o *StartWorkflowResponse) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*StartWorkflowResponse) HasStatus

func (o *StartWorkflowResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*StartWorkflowResponse) HasType

func (o *StartWorkflowResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (*StartWorkflowResponse) HasVersion

func (o *StartWorkflowResponse) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (StartWorkflowResponse) MarshalJSON

func (o StartWorkflowResponse) MarshalJSON() ([]byte, error)

func (*StartWorkflowResponse) SetBaseType

func (o *StartWorkflowResponse) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*StartWorkflowResponse) SetCreatedBy

func (o *StartWorkflowResponse) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*StartWorkflowResponse) SetCreatedOn

func (o *StartWorkflowResponse) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*StartWorkflowResponse) SetDefinitionId

func (o *StartWorkflowResponse) SetDefinitionId(v string)

SetDefinitionId gets a reference to the given string and assigns it to the DefinitionId field.

func (*StartWorkflowResponse) SetId

func (o *StartWorkflowResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*StartWorkflowResponse) SetSchemaId

func (o *StartWorkflowResponse) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*StartWorkflowResponse) SetStatus

func (o *StartWorkflowResponse) SetStatus(v map[string]map[string]interface{})

SetStatus gets a reference to the given map[string]map[string]interface{} and assigns it to the Status field.

func (*StartWorkflowResponse) SetType

func (o *StartWorkflowResponse) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*StartWorkflowResponse) SetVersion

func (o *StartWorkflowResponse) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type TemplateParameterValidator

type TemplateParameterValidator struct {
	Name          *string   `json:"name,omitempty"`
	HintText      *string   `json:"hintText,omitempty"`
	Label         *string   `json:"label,omitempty"`
	Type          *string   `json:"type,omitempty"`
	DisplayType   *string   `json:"displayType,omitempty"`
	AllowedValues *[]string `json:"allowedValues,omitempty"`
	ToolTipText   *string   `json:"toolTipText,omitempty"`
}

TemplateParameterValidator It's metadata about a parameter for use in the UI. A name to put on the field, a type so it can be validated (e.g. an IP address or an integer value, or list of allowed values for an enumeration/list).

func NewTemplateParameterValidator

func NewTemplateParameterValidator() *TemplateParameterValidator

NewTemplateParameterValidator instantiates a new TemplateParameterValidator object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTemplateParameterValidatorWithDefaults

func NewTemplateParameterValidatorWithDefaults() *TemplateParameterValidator

NewTemplateParameterValidatorWithDefaults instantiates a new TemplateParameterValidator object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TemplateParameterValidator) GetAllowedValues

func (o *TemplateParameterValidator) GetAllowedValues() []string

GetAllowedValues returns the AllowedValues field value if set, zero value otherwise.

func (*TemplateParameterValidator) GetAllowedValuesOk

func (o *TemplateParameterValidator) GetAllowedValuesOk() (*[]string, bool)

GetAllowedValuesOk returns a tuple with the AllowedValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateParameterValidator) GetDisplayType

func (o *TemplateParameterValidator) GetDisplayType() string

GetDisplayType returns the DisplayType field value if set, zero value otherwise.

func (*TemplateParameterValidator) GetDisplayTypeOk

func (o *TemplateParameterValidator) GetDisplayTypeOk() (*string, bool)

GetDisplayTypeOk returns a tuple with the DisplayType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateParameterValidator) GetHintText

func (o *TemplateParameterValidator) GetHintText() string

GetHintText returns the HintText field value if set, zero value otherwise.

func (*TemplateParameterValidator) GetHintTextOk

func (o *TemplateParameterValidator) GetHintTextOk() (*string, bool)

GetHintTextOk returns a tuple with the HintText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateParameterValidator) GetLabel

func (o *TemplateParameterValidator) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*TemplateParameterValidator) GetLabelOk

func (o *TemplateParameterValidator) 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 (*TemplateParameterValidator) GetName

func (o *TemplateParameterValidator) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TemplateParameterValidator) GetNameOk

func (o *TemplateParameterValidator) 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 (*TemplateParameterValidator) GetToolTipText

func (o *TemplateParameterValidator) GetToolTipText() string

GetToolTipText returns the ToolTipText field value if set, zero value otherwise.

func (*TemplateParameterValidator) GetToolTipTextOk

func (o *TemplateParameterValidator) GetToolTipTextOk() (*string, bool)

GetToolTipTextOk returns a tuple with the ToolTipText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TemplateParameterValidator) GetType

func (o *TemplateParameterValidator) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TemplateParameterValidator) GetTypeOk

func (o *TemplateParameterValidator) 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 (*TemplateParameterValidator) HasAllowedValues

func (o *TemplateParameterValidator) HasAllowedValues() bool

HasAllowedValues returns a boolean if a field has been set.

func (*TemplateParameterValidator) HasDisplayType

func (o *TemplateParameterValidator) HasDisplayType() bool

HasDisplayType returns a boolean if a field has been set.

func (*TemplateParameterValidator) HasHintText

func (o *TemplateParameterValidator) HasHintText() bool

HasHintText returns a boolean if a field has been set.

func (*TemplateParameterValidator) HasLabel

func (o *TemplateParameterValidator) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*TemplateParameterValidator) HasName

func (o *TemplateParameterValidator) HasName() bool

HasName returns a boolean if a field has been set.

func (*TemplateParameterValidator) HasToolTipText

func (o *TemplateParameterValidator) HasToolTipText() bool

HasToolTipText returns a boolean if a field has been set.

func (*TemplateParameterValidator) HasType

func (o *TemplateParameterValidator) HasType() bool

HasType returns a boolean if a field has been set.

func (TemplateParameterValidator) MarshalJSON

func (o TemplateParameterValidator) MarshalJSON() ([]byte, error)

func (*TemplateParameterValidator) SetAllowedValues

func (o *TemplateParameterValidator) SetAllowedValues(v []string)

SetAllowedValues gets a reference to the given []string and assigns it to the AllowedValues field.

func (*TemplateParameterValidator) SetDisplayType

func (o *TemplateParameterValidator) SetDisplayType(v string)

SetDisplayType gets a reference to the given string and assigns it to the DisplayType field.

func (*TemplateParameterValidator) SetHintText

func (o *TemplateParameterValidator) SetHintText(v string)

SetHintText gets a reference to the given string and assigns it to the HintText field.

func (*TemplateParameterValidator) SetLabel

func (o *TemplateParameterValidator) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*TemplateParameterValidator) SetName

func (o *TemplateParameterValidator) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TemplateParameterValidator) SetToolTipText

func (o *TemplateParameterValidator) SetToolTipText(v string)

SetToolTipText gets a reference to the given string and assigns it to the ToolTipText field.

func (*TemplateParameterValidator) SetType

func (o *TemplateParameterValidator) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Tenant

type Tenant struct {
	Id               *string        `json:"id,omitempty"`
	CreatedOn        *time.Time     `json:"createdOn,omitempty"`
	ModifiedOn       *time.Time     `json:"modifiedOn,omitempty"`
	Suspended        NullableBool   `json:"suspended,omitempty"`
	Name             string         `json:"name"`
	Description      *string        `json:"description,omitempty"`
	Url              *string        `json:"url,omitempty"`
	Image            NullableString `json:"image,omitempty"`
	ParentId         NullableString `json:"parentId,omitempty"`
	NumberOfChildren NullableInt64  `json:"numberOfChildren,omitempty"`
}

Tenant struct for Tenant

func NewTenant

func NewTenant(name string) *Tenant

NewTenant instantiates a new Tenant object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantWithDefaults

func NewTenantWithDefaults() *Tenant

NewTenantWithDefaults instantiates a new Tenant object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tenant) GetCreatedOn

func (o *Tenant) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*Tenant) GetCreatedOnOk

func (o *Tenant) GetCreatedOnOk() (*time.Time, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetDescription

func (o *Tenant) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Tenant) GetDescriptionOk

func (o *Tenant) 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 (*Tenant) GetId

func (o *Tenant) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Tenant) GetIdOk

func (o *Tenant) 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 (*Tenant) GetImage

func (o *Tenant) GetImage() string

GetImage returns the Image field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetImageOk

func (o *Tenant) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetModifiedOn

func (o *Tenant) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise.

func (*Tenant) GetModifiedOnOk

func (o *Tenant) GetModifiedOnOk() (*time.Time, bool)

GetModifiedOnOk returns a tuple with the ModifiedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetName

func (o *Tenant) GetName() string

GetName returns the Name field value

func (*Tenant) GetNameOk

func (o *Tenant) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Tenant) GetNumberOfChildren

func (o *Tenant) GetNumberOfChildren() int64

GetNumberOfChildren returns the NumberOfChildren field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetNumberOfChildrenOk

func (o *Tenant) GetNumberOfChildrenOk() (*int64, bool)

GetNumberOfChildrenOk returns a tuple with the NumberOfChildren field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetParentId

func (o *Tenant) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetParentIdOk

func (o *Tenant) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetSuspended

func (o *Tenant) GetSuspended() bool

GetSuspended returns the Suspended field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Tenant) GetSuspendedOk

func (o *Tenant) GetSuspendedOk() (*bool, bool)

GetSuspendedOk returns a tuple with the Suspended field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Tenant) GetUrl

func (o *Tenant) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*Tenant) GetUrlOk

func (o *Tenant) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) HasCreatedOn

func (o *Tenant) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*Tenant) HasDescription

func (o *Tenant) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Tenant) HasId

func (o *Tenant) HasId() bool

HasId returns a boolean if a field has been set.

func (*Tenant) HasImage

func (o *Tenant) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*Tenant) HasModifiedOn

func (o *Tenant) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*Tenant) HasNumberOfChildren

func (o *Tenant) HasNumberOfChildren() bool

HasNumberOfChildren returns a boolean if a field has been set.

func (*Tenant) HasParentId

func (o *Tenant) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*Tenant) HasSuspended

func (o *Tenant) HasSuspended() bool

HasSuspended returns a boolean if a field has been set.

func (*Tenant) HasUrl

func (o *Tenant) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (Tenant) MarshalJSON

func (o Tenant) MarshalJSON() ([]byte, error)

func (*Tenant) SetCreatedOn

func (o *Tenant) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*Tenant) SetDescription

func (o *Tenant) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Tenant) SetId

func (o *Tenant) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Tenant) SetImage

func (o *Tenant) SetImage(v string)

SetImage gets a reference to the given NullableString and assigns it to the Image field.

func (*Tenant) SetImageNil added in v1.0.1

func (o *Tenant) SetImageNil()

SetImageNil sets the value for Image to be an explicit nil

func (*Tenant) SetModifiedOn

func (o *Tenant) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given time.Time and assigns it to the ModifiedOn field.

func (*Tenant) SetName

func (o *Tenant) SetName(v string)

SetName sets field value

func (*Tenant) SetNumberOfChildren

func (o *Tenant) SetNumberOfChildren(v int64)

SetNumberOfChildren gets a reference to the given NullableInt64 and assigns it to the NumberOfChildren field.

func (*Tenant) SetNumberOfChildrenNil added in v1.0.1

func (o *Tenant) SetNumberOfChildrenNil()

SetNumberOfChildrenNil sets the value for NumberOfChildren to be an explicit nil

func (*Tenant) SetParentId

func (o *Tenant) SetParentId(v string)

SetParentId gets a reference to the given NullableString and assigns it to the ParentId field.

func (*Tenant) SetParentIdNil added in v1.0.1

func (o *Tenant) SetParentIdNil()

SetParentIdNil sets the value for ParentId to be an explicit nil

func (*Tenant) SetSuspended

func (o *Tenant) SetSuspended(v bool)

SetSuspended gets a reference to the given NullableBool and assigns it to the Suspended field.

func (*Tenant) SetSuspendedNil added in v1.0.1

func (o *Tenant) SetSuspendedNil()

SetSuspendedNil sets the value for Suspended to be an explicit nil

func (*Tenant) SetUrl

func (o *Tenant) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*Tenant) UnsetImage added in v1.0.1

func (o *Tenant) UnsetImage()

UnsetImage ensures that no value is present for Image, not even an explicit nil

func (*Tenant) UnsetNumberOfChildren added in v1.0.1

func (o *Tenant) UnsetNumberOfChildren()

UnsetNumberOfChildren ensures that no value is present for NumberOfChildren, not even an explicit nil

func (*Tenant) UnsetParentId added in v1.0.1

func (o *Tenant) UnsetParentId()

UnsetParentId ensures that no value is present for ParentId, not even an explicit nil

func (*Tenant) UnsetSuspended added in v1.0.1

func (o *Tenant) UnsetSuspended()

UnsetSuspended ensures that no value is present for Suspended, not even an explicit nil

type TenantAllOf

type TenantAllOf struct {
	Id         *string      `json:"id,omitempty"`
	CreatedOn  *time.Time   `json:"createdOn,omitempty"`
	ModifiedOn *time.Time   `json:"modifiedOn,omitempty"`
	Suspended  NullableBool `json:"suspended,omitempty"`
}

TenantAllOf struct for TenantAllOf

func NewTenantAllOf

func NewTenantAllOf() *TenantAllOf

NewTenantAllOf instantiates a new TenantAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantAllOfWithDefaults

func NewTenantAllOfWithDefaults() *TenantAllOf

NewTenantAllOfWithDefaults instantiates a new TenantAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantAllOf) GetCreatedOn

func (o *TenantAllOf) GetCreatedOn() time.Time

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*TenantAllOf) GetCreatedOnOk

func (o *TenantAllOf) GetCreatedOnOk() (*time.Time, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantAllOf) GetId

func (o *TenantAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TenantAllOf) GetIdOk

func (o *TenantAllOf) 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 (*TenantAllOf) GetModifiedOn

func (o *TenantAllOf) GetModifiedOn() time.Time

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise.

func (*TenantAllOf) GetModifiedOnOk

func (o *TenantAllOf) GetModifiedOnOk() (*time.Time, bool)

GetModifiedOnOk returns a tuple with the ModifiedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantAllOf) GetSuspended

func (o *TenantAllOf) GetSuspended() bool

GetSuspended returns the Suspended field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantAllOf) GetSuspendedOk

func (o *TenantAllOf) GetSuspendedOk() (*bool, bool)

GetSuspendedOk returns a tuple with the Suspended field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantAllOf) HasCreatedOn

func (o *TenantAllOf) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*TenantAllOf) HasId

func (o *TenantAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*TenantAllOf) HasModifiedOn

func (o *TenantAllOf) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*TenantAllOf) HasSuspended

func (o *TenantAllOf) HasSuspended() bool

HasSuspended returns a boolean if a field has been set.

func (TenantAllOf) MarshalJSON

func (o TenantAllOf) MarshalJSON() ([]byte, error)

func (*TenantAllOf) SetCreatedOn

func (o *TenantAllOf) SetCreatedOn(v time.Time)

SetCreatedOn gets a reference to the given time.Time and assigns it to the CreatedOn field.

func (*TenantAllOf) SetId

func (o *TenantAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TenantAllOf) SetModifiedOn

func (o *TenantAllOf) SetModifiedOn(v time.Time)

SetModifiedOn gets a reference to the given time.Time and assigns it to the ModifiedOn field.

func (*TenantAllOf) SetSuspended

func (o *TenantAllOf) SetSuspended(v bool)

SetSuspended gets a reference to the given NullableBool and assigns it to the Suspended field.

func (*TenantAllOf) SetSuspendedNil added in v1.0.1

func (o *TenantAllOf) SetSuspendedNil()

SetSuspendedNil sets the value for Suspended to be an explicit nil

func (*TenantAllOf) UnsetSuspended added in v1.0.1

func (o *TenantAllOf) UnsetSuspended()

UnsetSuspended ensures that no value is present for Suspended, not even an explicit nil

type TenantCreate

type TenantCreate struct {
	Name             string         `json:"name"`
	Description      *string        `json:"description,omitempty"`
	Url              *string        `json:"url,omitempty"`
	Image            NullableString `json:"image,omitempty"`
	ParentId         NullableString `json:"parentId,omitempty"`
	NumberOfChildren NullableInt64  `json:"numberOfChildren,omitempty"`
}

TenantCreate struct for TenantCreate

func NewTenantCreate

func NewTenantCreate(name string) *TenantCreate

NewTenantCreate instantiates a new TenantCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantCreateWithDefaults

func NewTenantCreateWithDefaults() *TenantCreate

NewTenantCreateWithDefaults instantiates a new TenantCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantCreate) GetDescription

func (o *TenantCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TenantCreate) GetDescriptionOk

func (o *TenantCreate) 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 (*TenantCreate) GetImage

func (o *TenantCreate) GetImage() string

GetImage returns the Image field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantCreate) GetImageOk

func (o *TenantCreate) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantCreate) GetName

func (o *TenantCreate) GetName() string

GetName returns the Name field value

func (*TenantCreate) GetNameOk

func (o *TenantCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TenantCreate) GetNumberOfChildren

func (o *TenantCreate) GetNumberOfChildren() int64

GetNumberOfChildren returns the NumberOfChildren field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantCreate) GetNumberOfChildrenOk

func (o *TenantCreate) GetNumberOfChildrenOk() (*int64, bool)

GetNumberOfChildrenOk returns a tuple with the NumberOfChildren field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantCreate) GetParentId

func (o *TenantCreate) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantCreate) GetParentIdOk

func (o *TenantCreate) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantCreate) GetUrl

func (o *TenantCreate) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*TenantCreate) GetUrlOk

func (o *TenantCreate) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantCreate) HasDescription

func (o *TenantCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TenantCreate) HasImage

func (o *TenantCreate) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*TenantCreate) HasNumberOfChildren

func (o *TenantCreate) HasNumberOfChildren() bool

HasNumberOfChildren returns a boolean if a field has been set.

func (*TenantCreate) HasParentId

func (o *TenantCreate) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*TenantCreate) HasUrl

func (o *TenantCreate) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (TenantCreate) MarshalJSON

func (o TenantCreate) MarshalJSON() ([]byte, error)

func (*TenantCreate) SetDescription

func (o *TenantCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TenantCreate) SetImage

func (o *TenantCreate) SetImage(v string)

SetImage gets a reference to the given NullableString and assigns it to the Image field.

func (*TenantCreate) SetImageNil added in v1.0.1

func (o *TenantCreate) SetImageNil()

SetImageNil sets the value for Image to be an explicit nil

func (*TenantCreate) SetName

func (o *TenantCreate) SetName(v string)

SetName sets field value

func (*TenantCreate) SetNumberOfChildren

func (o *TenantCreate) SetNumberOfChildren(v int64)

SetNumberOfChildren gets a reference to the given NullableInt64 and assigns it to the NumberOfChildren field.

func (*TenantCreate) SetNumberOfChildrenNil added in v1.0.1

func (o *TenantCreate) SetNumberOfChildrenNil()

SetNumberOfChildrenNil sets the value for NumberOfChildren to be an explicit nil

func (*TenantCreate) SetParentId

func (o *TenantCreate) SetParentId(v string)

SetParentId gets a reference to the given NullableString and assigns it to the ParentId field.

func (*TenantCreate) SetParentIdNil added in v1.0.1

func (o *TenantCreate) SetParentIdNil()

SetParentIdNil sets the value for ParentId to be an explicit nil

func (*TenantCreate) SetUrl

func (o *TenantCreate) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*TenantCreate) UnsetImage added in v1.0.1

func (o *TenantCreate) UnsetImage()

UnsetImage ensures that no value is present for Image, not even an explicit nil

func (*TenantCreate) UnsetNumberOfChildren added in v1.0.1

func (o *TenantCreate) UnsetNumberOfChildren()

UnsetNumberOfChildren ensures that no value is present for NumberOfChildren, not even an explicit nil

func (*TenantCreate) UnsetParentId added in v1.0.1

func (o *TenantCreate) UnsetParentId()

UnsetParentId ensures that no value is present for ParentId, not even an explicit nil

type TenantUpdate

type TenantUpdate struct {
	Name             string  `json:"name"`
	Description      *string `json:"description,omitempty"`
	Url              *string `json:"url,omitempty"`
	Image            *string `json:"image,omitempty"`
	ParentId         *string `json:"parentId,omitempty"`
	NumberOfChildren *int64  `json:"numberOfChildren,omitempty"`
}

TenantUpdate struct for TenantUpdate

func NewTenantUpdate

func NewTenantUpdate(name string) *TenantUpdate

NewTenantUpdate instantiates a new TenantUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantUpdateWithDefaults

func NewTenantUpdateWithDefaults() *TenantUpdate

NewTenantUpdateWithDefaults instantiates a new TenantUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantUpdate) GetDescription

func (o *TenantUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*TenantUpdate) GetDescriptionOk

func (o *TenantUpdate) 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 (*TenantUpdate) GetImage

func (o *TenantUpdate) GetImage() string

GetImage returns the Image field value if set, zero value otherwise.

func (*TenantUpdate) GetImageOk

func (o *TenantUpdate) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantUpdate) GetName

func (o *TenantUpdate) GetName() string

GetName returns the Name field value

func (*TenantUpdate) GetNameOk

func (o *TenantUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*TenantUpdate) GetNumberOfChildren

func (o *TenantUpdate) GetNumberOfChildren() int64

GetNumberOfChildren returns the NumberOfChildren field value if set, zero value otherwise.

func (*TenantUpdate) GetNumberOfChildrenOk

func (o *TenantUpdate) GetNumberOfChildrenOk() (*int64, bool)

GetNumberOfChildrenOk returns a tuple with the NumberOfChildren field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantUpdate) GetParentId

func (o *TenantUpdate) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*TenantUpdate) GetParentIdOk

func (o *TenantUpdate) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantUpdate) GetUrl

func (o *TenantUpdate) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*TenantUpdate) GetUrlOk

func (o *TenantUpdate) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantUpdate) HasDescription

func (o *TenantUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TenantUpdate) HasImage

func (o *TenantUpdate) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*TenantUpdate) HasNumberOfChildren

func (o *TenantUpdate) HasNumberOfChildren() bool

HasNumberOfChildren returns a boolean if a field has been set.

func (*TenantUpdate) HasParentId

func (o *TenantUpdate) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*TenantUpdate) HasUrl

func (o *TenantUpdate) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (TenantUpdate) MarshalJSON

func (o TenantUpdate) MarshalJSON() ([]byte, error)

func (*TenantUpdate) SetDescription

func (o *TenantUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*TenantUpdate) SetImage

func (o *TenantUpdate) SetImage(v string)

SetImage gets a reference to the given string and assigns it to the Image field.

func (*TenantUpdate) SetName

func (o *TenantUpdate) SetName(v string)

SetName sets field value

func (*TenantUpdate) SetNumberOfChildren

func (o *TenantUpdate) SetNumberOfChildren(v int64)

SetNumberOfChildren gets a reference to the given int64 and assigns it to the NumberOfChildren field.

func (*TenantUpdate) SetParentId

func (o *TenantUpdate) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*TenantUpdate) SetUrl

func (o *TenantUpdate) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type TenantsApiService

type TenantsApiService service

TenantsApiService TenantsApi service

func (*TenantsApiService) CreateTenant

* CreateTenant Creates a new tenant. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateTenantRequest

func (*TenantsApiService) CreateTenantExecute

func (a *TenantsApiService) CreateTenantExecute(r ApiCreateTenantRequest) (Tenant, *_nethttp.Response, error)

* Execute executes the request * @return Tenant

func (*TenantsApiService) DeleteTenant

* DeleteTenant Deletes a tenant by id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteTenantRequest

func (*TenantsApiService) DeleteTenantExecute

func (a *TenantsApiService) DeleteTenantExecute(r ApiDeleteTenantRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*TenantsApiService) GetTenant

* GetTenant Returns a tenant by id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetTenantRequest

func (*TenantsApiService) GetTenantExecute

func (a *TenantsApiService) GetTenantExecute(r ApiGetTenantRequest) (Tenant, *_nethttp.Response, error)

* Execute executes the request * @return Tenant

func (*TenantsApiService) GetTenantsList

* GetTenantsList Returns a list of tenants. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetTenantsListRequest

func (*TenantsApiService) GetTenantsListExecute

func (a *TenantsApiService) GetTenantsListExecute(r ApiGetTenantsListRequest) ([]Tenant, *_nethttp.Response, error)

* Execute executes the request * @return []Tenant

func (*TenantsApiService) GetTenantsPage

* GetTenantsPage Returns a page of tenants. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetTenantsPageRequest

func (*TenantsApiService) GetTenantsPageExecute

* Execute executes the request * @return TenantsPage

func (*TenantsApiService) UpdateTenant

* UpdateTenant Updates a tenant by id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateTenantRequest

func (*TenantsApiService) UpdateTenantExecute

func (a *TenantsApiService) UpdateTenantExecute(r ApiUpdateTenantRequest) (Tenant, *_nethttp.Response, error)

* Execute executes the request * @return Tenant

type TenantsPage

type TenantsPage struct {
	Page        *int32       `json:"page,omitempty"`
	PageSize    *int32       `json:"pageSize,omitempty"`
	TotalItems  *int64       `json:"totalItems,omitempty"`
	HasNext     NullableBool `json:"hasNext,omitempty"`
	HasPrevious NullableBool `json:"hasPrevious,omitempty"`
	SortBy      *string      `json:"sortBy,omitempty"`
	SortOrder   *string      `json:"sortOrder,omitempty"`
	Contents    *[]Tenant    `json:"contents,omitempty"`
}

TenantsPage struct for TenantsPage

func NewTenantsPage

func NewTenantsPage() *TenantsPage

NewTenantsPage instantiates a new TenantsPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantsPageWithDefaults

func NewTenantsPageWithDefaults() *TenantsPage

NewTenantsPageWithDefaults instantiates a new TenantsPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantsPage) GetContents

func (o *TenantsPage) GetContents() []Tenant

GetContents returns the Contents field value if set, zero value otherwise.

func (*TenantsPage) GetContentsOk

func (o *TenantsPage) GetContentsOk() (*[]Tenant, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantsPage) GetHasNext

func (o *TenantsPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantsPage) GetHasNextOk

func (o *TenantsPage) GetHasNextOk() (*bool, bool)

GetHasNextOk returns a tuple with the HasNext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantsPage) GetHasPrevious

func (o *TenantsPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TenantsPage) GetHasPreviousOk

func (o *TenantsPage) GetHasPreviousOk() (*bool, bool)

GetHasPreviousOk returns a tuple with the HasPrevious field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TenantsPage) GetPage

func (o *TenantsPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*TenantsPage) GetPageOk

func (o *TenantsPage) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantsPage) GetPageSize

func (o *TenantsPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*TenantsPage) GetPageSizeOk

func (o *TenantsPage) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantsPage) GetSortBy

func (o *TenantsPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise.

func (*TenantsPage) GetSortByOk

func (o *TenantsPage) GetSortByOk() (*string, bool)

GetSortByOk returns a tuple with the SortBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantsPage) GetSortOrder

func (o *TenantsPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*TenantsPage) GetSortOrderOk

func (o *TenantsPage) GetSortOrderOk() (*string, bool)

GetSortOrderOk returns a tuple with the SortOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantsPage) GetTotalItems

func (o *TenantsPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*TenantsPage) GetTotalItemsOk

func (o *TenantsPage) GetTotalItemsOk() (*int64, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantsPage) HasContents

func (o *TenantsPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*TenantsPage) HasHasNext

func (o *TenantsPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*TenantsPage) HasHasPrevious

func (o *TenantsPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*TenantsPage) HasPage

func (o *TenantsPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*TenantsPage) HasPageSize

func (o *TenantsPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*TenantsPage) HasSortBy

func (o *TenantsPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*TenantsPage) HasSortOrder

func (o *TenantsPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*TenantsPage) HasTotalItems

func (o *TenantsPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (TenantsPage) MarshalJSON

func (o TenantsPage) MarshalJSON() ([]byte, error)

func (*TenantsPage) SetContents

func (o *TenantsPage) SetContents(v []Tenant)

SetContents gets a reference to the given []Tenant and assigns it to the Contents field.

func (*TenantsPage) SetHasNext

func (o *TenantsPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*TenantsPage) SetHasNextNil

func (o *TenantsPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*TenantsPage) SetHasPrevious

func (o *TenantsPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*TenantsPage) SetHasPreviousNil

func (o *TenantsPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*TenantsPage) SetPage

func (o *TenantsPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*TenantsPage) SetPageSize

func (o *TenantsPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*TenantsPage) SetSortBy

func (o *TenantsPage) SetSortBy(v string)

SetSortBy gets a reference to the given string and assigns it to the SortBy field.

func (*TenantsPage) SetSortOrder

func (o *TenantsPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given string and assigns it to the SortOrder field.

func (*TenantsPage) SetTotalItems

func (o *TenantsPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given int64 and assigns it to the TotalItems field.

func (*TenantsPage) UnsetHasNext

func (o *TenantsPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*TenantsPage) UnsetHasPrevious

func (o *TenantsPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

type TenantsPageAllOf

type TenantsPageAllOf struct {
	Contents *[]Tenant `json:"contents,omitempty"`
}

TenantsPageAllOf struct for TenantsPageAllOf

func NewTenantsPageAllOf

func NewTenantsPageAllOf() *TenantsPageAllOf

NewTenantsPageAllOf instantiates a new TenantsPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTenantsPageAllOfWithDefaults

func NewTenantsPageAllOfWithDefaults() *TenantsPageAllOf

NewTenantsPageAllOfWithDefaults instantiates a new TenantsPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TenantsPageAllOf) GetContents

func (o *TenantsPageAllOf) GetContents() []Tenant

GetContents returns the Contents field value if set, zero value otherwise.

func (*TenantsPageAllOf) GetContentsOk

func (o *TenantsPageAllOf) GetContentsOk() (*[]Tenant, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TenantsPageAllOf) HasContents

func (o *TenantsPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (TenantsPageAllOf) MarshalJSON

func (o TenantsPageAllOf) MarshalJSON() ([]byte, error)

func (*TenantsPageAllOf) SetContents

func (o *TenantsPageAllOf) SetContents(v []Tenant)

SetContents gets a reference to the given []Tenant and assigns it to the Contents field.

type UpdatePassword

type UpdatePassword struct {
	Username    string         `json:"username"`
	OldPassword NullableString `json:"oldPassword,omitempty"`
	NewPassword string         `json:"newPassword"`
}

UpdatePassword struct for UpdatePassword

func NewUpdatePassword

func NewUpdatePassword(username string, newPassword string) *UpdatePassword

NewUpdatePassword instantiates a new UpdatePassword object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePasswordWithDefaults

func NewUpdatePasswordWithDefaults() *UpdatePassword

NewUpdatePasswordWithDefaults instantiates a new UpdatePassword object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePassword) GetNewPassword

func (o *UpdatePassword) GetNewPassword() string

GetNewPassword returns the NewPassword field value

func (*UpdatePassword) GetNewPasswordOk

func (o *UpdatePassword) GetNewPasswordOk() (*string, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value and a boolean to check if the value has been set.

func (*UpdatePassword) GetOldPassword

func (o *UpdatePassword) GetOldPassword() string

GetOldPassword returns the OldPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdatePassword) GetOldPasswordOk

func (o *UpdatePassword) GetOldPasswordOk() (*string, bool)

GetOldPasswordOk returns a tuple with the OldPassword field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdatePassword) GetUsername

func (o *UpdatePassword) GetUsername() string

GetUsername returns the Username field value

func (*UpdatePassword) GetUsernameOk

func (o *UpdatePassword) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*UpdatePassword) HasOldPassword added in v1.0.1

func (o *UpdatePassword) HasOldPassword() bool

HasOldPassword returns a boolean if a field has been set.

func (UpdatePassword) MarshalJSON

func (o UpdatePassword) MarshalJSON() ([]byte, error)

func (*UpdatePassword) SetNewPassword

func (o *UpdatePassword) SetNewPassword(v string)

SetNewPassword sets field value

func (*UpdatePassword) SetOldPassword

func (o *UpdatePassword) SetOldPassword(v string)

SetOldPassword gets a reference to the given NullableString and assigns it to the OldPassword field.

func (*UpdatePassword) SetOldPasswordNil added in v1.0.1

func (o *UpdatePassword) SetOldPasswordNil()

SetOldPasswordNil sets the value for OldPassword to be an explicit nil

func (*UpdatePassword) SetUsername

func (o *UpdatePassword) SetUsername(v string)

SetUsername sets field value

func (*UpdatePassword) UnsetOldPassword added in v1.0.1

func (o *UpdatePassword) UnsetOldPassword()

UnsetOldPassword ensures that no value is present for OldPassword, not even an explicit nil

type User

type User struct {
	Id                 *string        `json:"id,omitempty"`
	Status             *string        `json:"status,omitempty"`
	Deleted            *string        `json:"deleted,omitempty"`
	FirstName          *string        `json:"firstName,omitempty"`
	LastName           string         `json:"lastName"`
	Email              string         `json:"email"`
	RoleIds            *[]string      `json:"roleIds,omitempty"`
	TenantIds          *[]string      `json:"tenantIds,omitempty"`
	PasswordPolicyName string         `json:"passwordPolicyName"`
	Username           *string        `json:"username,omitempty"`
	Password           NullableString `json:"password,omitempty"`
}

User struct for User

func NewUser

func NewUser(lastName string, email string, passwordPolicyName string) *User

NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserWithDefaults

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*User) GetDeleted

func (o *User) GetDeleted() string

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*User) GetDeletedOk

func (o *User) GetDeletedOk() (*string, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetEmail

func (o *User) GetEmail() string

GetEmail returns the Email field value

func (*User) GetEmailOk

func (o *User) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*User) GetFirstName

func (o *User) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*User) GetFirstNameOk

func (o *User) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetId

func (o *User) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*User) GetIdOk

func (o *User) 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 (*User) GetLastName

func (o *User) GetLastName() string

GetLastName returns the LastName field value

func (*User) GetLastNameOk

func (o *User) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value and a boolean to check if the value has been set.

func (*User) GetPassword

func (o *User) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetPasswordOk

func (o *User) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*User) GetPasswordPolicyName

func (o *User) GetPasswordPolicyName() string

GetPasswordPolicyName returns the PasswordPolicyName field value

func (*User) GetPasswordPolicyNameOk

func (o *User) GetPasswordPolicyNameOk() (*string, bool)

GetPasswordPolicyNameOk returns a tuple with the PasswordPolicyName field value and a boolean to check if the value has been set.

func (*User) GetRoleIds

func (o *User) GetRoleIds() []string

GetRoleIds returns the RoleIds field value if set, zero value otherwise.

func (*User) GetRoleIdsOk

func (o *User) GetRoleIdsOk() (*[]string, bool)

GetRoleIdsOk returns a tuple with the RoleIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetStatus

func (o *User) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*User) GetStatusOk

func (o *User) 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 (*User) GetTenantIds

func (o *User) GetTenantIds() []string

GetTenantIds returns the TenantIds field value if set, zero value otherwise.

func (*User) GetTenantIdsOk

func (o *User) GetTenantIdsOk() (*[]string, bool)

GetTenantIdsOk returns a tuple with the TenantIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetUsername

func (o *User) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*User) GetUsernameOk

func (o *User) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) HasDeleted

func (o *User) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*User) HasFirstName

func (o *User) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*User) HasId

func (o *User) HasId() bool

HasId returns a boolean if a field has been set.

func (*User) HasPassword added in v1.0.1

func (o *User) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*User) HasRoleIds

func (o *User) HasRoleIds() bool

HasRoleIds returns a boolean if a field has been set.

func (*User) HasStatus

func (o *User) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*User) HasTenantIds

func (o *User) HasTenantIds() bool

HasTenantIds returns a boolean if a field has been set.

func (*User) HasUsername

func (o *User) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (User) MarshalJSON

func (o User) MarshalJSON() ([]byte, error)

func (*User) SetDeleted

func (o *User) SetDeleted(v string)

SetDeleted gets a reference to the given string and assigns it to the Deleted field.

func (*User) SetEmail

func (o *User) SetEmail(v string)

SetEmail sets field value

func (*User) SetFirstName

func (o *User) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*User) SetId

func (o *User) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*User) SetLastName

func (o *User) SetLastName(v string)

SetLastName sets field value

func (*User) SetPassword

func (o *User) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*User) SetPasswordNil added in v1.0.1

func (o *User) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*User) SetPasswordPolicyName

func (o *User) SetPasswordPolicyName(v string)

SetPasswordPolicyName sets field value

func (*User) SetRoleIds

func (o *User) SetRoleIds(v []string)

SetRoleIds gets a reference to the given []string and assigns it to the RoleIds field.

func (*User) SetStatus

func (o *User) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*User) SetTenantIds

func (o *User) SetTenantIds(v []string)

SetTenantIds gets a reference to the given []string and assigns it to the TenantIds field.

func (*User) SetUsername

func (o *User) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*User) UnsetPassword added in v1.0.1

func (o *User) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

type UserAllOf

type UserAllOf struct {
	Id      *string `json:"id,omitempty"`
	Status  *string `json:"status,omitempty"`
	Deleted *string `json:"deleted,omitempty"`
}

UserAllOf struct for UserAllOf

func NewUserAllOf

func NewUserAllOf() *UserAllOf

NewUserAllOf instantiates a new UserAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserAllOfWithDefaults

func NewUserAllOfWithDefaults() *UserAllOf

NewUserAllOfWithDefaults instantiates a new UserAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserAllOf) GetDeleted

func (o *UserAllOf) GetDeleted() string

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*UserAllOf) GetDeletedOk

func (o *UserAllOf) GetDeletedOk() (*string, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserAllOf) GetId

func (o *UserAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UserAllOf) GetIdOk

func (o *UserAllOf) 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 (*UserAllOf) GetStatus

func (o *UserAllOf) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*UserAllOf) GetStatusOk

func (o *UserAllOf) 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 (*UserAllOf) HasDeleted

func (o *UserAllOf) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*UserAllOf) HasId

func (o *UserAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserAllOf) HasStatus

func (o *UserAllOf) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (UserAllOf) MarshalJSON

func (o UserAllOf) MarshalJSON() ([]byte, error)

func (*UserAllOf) SetDeleted

func (o *UserAllOf) SetDeleted(v string)

SetDeleted gets a reference to the given string and assigns it to the Deleted field.

func (*UserAllOf) SetId

func (o *UserAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UserAllOf) SetStatus

func (o *UserAllOf) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type UserCreate

type UserCreate struct {
	FirstName          *string        `json:"firstName,omitempty"`
	LastName           string         `json:"lastName"`
	Email              string         `json:"email"`
	RoleIds            *[]string      `json:"roleIds,omitempty"`
	TenantIds          *[]string      `json:"tenantIds,omitempty"`
	PasswordPolicyName string         `json:"passwordPolicyName"`
	Username           *string        `json:"username,omitempty"`
	Password           NullableString `json:"password,omitempty"`
}

UserCreate struct for UserCreate

func NewUserCreate

func NewUserCreate(lastName string, email string, passwordPolicyName string) *UserCreate

NewUserCreate instantiates a new UserCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserCreateWithDefaults

func NewUserCreateWithDefaults() *UserCreate

NewUserCreateWithDefaults instantiates a new UserCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserCreate) GetEmail

func (o *UserCreate) GetEmail() string

GetEmail returns the Email field value

func (*UserCreate) GetEmailOk

func (o *UserCreate) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*UserCreate) GetFirstName

func (o *UserCreate) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*UserCreate) GetFirstNameOk

func (o *UserCreate) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreate) GetLastName

func (o *UserCreate) GetLastName() string

GetLastName returns the LastName field value

func (*UserCreate) GetLastNameOk

func (o *UserCreate) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value and a boolean to check if the value has been set.

func (*UserCreate) GetPassword

func (o *UserCreate) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCreate) GetPasswordOk

func (o *UserCreate) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserCreate) GetPasswordPolicyName

func (o *UserCreate) GetPasswordPolicyName() string

GetPasswordPolicyName returns the PasswordPolicyName field value

func (*UserCreate) GetPasswordPolicyNameOk

func (o *UserCreate) GetPasswordPolicyNameOk() (*string, bool)

GetPasswordPolicyNameOk returns a tuple with the PasswordPolicyName field value and a boolean to check if the value has been set.

func (*UserCreate) GetRoleIds

func (o *UserCreate) GetRoleIds() []string

GetRoleIds returns the RoleIds field value if set, zero value otherwise.

func (*UserCreate) GetRoleIdsOk

func (o *UserCreate) GetRoleIdsOk() (*[]string, bool)

GetRoleIdsOk returns a tuple with the RoleIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreate) GetTenantIds

func (o *UserCreate) GetTenantIds() []string

GetTenantIds returns the TenantIds field value if set, zero value otherwise.

func (*UserCreate) GetTenantIdsOk

func (o *UserCreate) GetTenantIdsOk() (*[]string, bool)

GetTenantIdsOk returns a tuple with the TenantIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreate) GetUsername

func (o *UserCreate) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*UserCreate) GetUsernameOk

func (o *UserCreate) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreate) HasFirstName

func (o *UserCreate) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*UserCreate) HasPassword added in v1.0.1

func (o *UserCreate) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*UserCreate) HasRoleIds

func (o *UserCreate) HasRoleIds() bool

HasRoleIds returns a boolean if a field has been set.

func (*UserCreate) HasTenantIds

func (o *UserCreate) HasTenantIds() bool

HasTenantIds returns a boolean if a field has been set.

func (*UserCreate) HasUsername

func (o *UserCreate) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UserCreate) MarshalJSON

func (o UserCreate) MarshalJSON() ([]byte, error)

func (*UserCreate) SetEmail

func (o *UserCreate) SetEmail(v string)

SetEmail sets field value

func (*UserCreate) SetFirstName

func (o *UserCreate) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*UserCreate) SetLastName

func (o *UserCreate) SetLastName(v string)

SetLastName sets field value

func (*UserCreate) SetPassword

func (o *UserCreate) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*UserCreate) SetPasswordNil added in v1.0.1

func (o *UserCreate) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*UserCreate) SetPasswordPolicyName

func (o *UserCreate) SetPasswordPolicyName(v string)

SetPasswordPolicyName sets field value

func (*UserCreate) SetRoleIds

func (o *UserCreate) SetRoleIds(v []string)

SetRoleIds gets a reference to the given []string and assigns it to the RoleIds field.

func (*UserCreate) SetTenantIds

func (o *UserCreate) SetTenantIds(v []string)

SetTenantIds gets a reference to the given []string and assigns it to the TenantIds field.

func (*UserCreate) SetUsername

func (o *UserCreate) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*UserCreate) UnsetPassword added in v1.0.1

func (o *UserCreate) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

type UserCreateAllOf

type UserCreateAllOf struct {
	Username *string        `json:"username,omitempty"`
	Password NullableString `json:"password,omitempty"`
}

UserCreateAllOf struct for UserCreateAllOf

func NewUserCreateAllOf

func NewUserCreateAllOf() *UserCreateAllOf

NewUserCreateAllOf instantiates a new UserCreateAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserCreateAllOfWithDefaults

func NewUserCreateAllOfWithDefaults() *UserCreateAllOf

NewUserCreateAllOfWithDefaults instantiates a new UserCreateAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserCreateAllOf) GetPassword

func (o *UserCreateAllOf) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCreateAllOf) GetPasswordOk

func (o *UserCreateAllOf) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserCreateAllOf) GetUsername

func (o *UserCreateAllOf) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*UserCreateAllOf) GetUsernameOk

func (o *UserCreateAllOf) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCreateAllOf) HasPassword added in v1.0.1

func (o *UserCreateAllOf) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*UserCreateAllOf) HasUsername

func (o *UserCreateAllOf) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UserCreateAllOf) MarshalJSON

func (o UserCreateAllOf) MarshalJSON() ([]byte, error)

func (*UserCreateAllOf) SetPassword

func (o *UserCreateAllOf) SetPassword(v string)

SetPassword gets a reference to the given NullableString and assigns it to the Password field.

func (*UserCreateAllOf) SetPasswordNil added in v1.0.1

func (o *UserCreateAllOf) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*UserCreateAllOf) SetUsername

func (o *UserCreateAllOf) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*UserCreateAllOf) UnsetPassword added in v1.0.1

func (o *UserCreateAllOf) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

type UserUpdate

type UserUpdate struct {
	FirstName          *string   `json:"firstName,omitempty"`
	LastName           string    `json:"lastName"`
	Email              string    `json:"email"`
	RoleIds            *[]string `json:"roleIds,omitempty"`
	TenantIds          *[]string `json:"tenantIds,omitempty"`
	PasswordPolicyName string    `json:"passwordPolicyName"`
}

UserUpdate struct for UserUpdate

func NewUserUpdate

func NewUserUpdate(lastName string, email string, passwordPolicyName string) *UserUpdate

NewUserUpdate instantiates a new UserUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserUpdateWithDefaults

func NewUserUpdateWithDefaults() *UserUpdate

NewUserUpdateWithDefaults instantiates a new UserUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserUpdate) GetEmail

func (o *UserUpdate) GetEmail() string

GetEmail returns the Email field value

func (*UserUpdate) GetEmailOk

func (o *UserUpdate) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*UserUpdate) GetFirstName

func (o *UserUpdate) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*UserUpdate) GetFirstNameOk

func (o *UserUpdate) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdate) GetLastName

func (o *UserUpdate) GetLastName() string

GetLastName returns the LastName field value

func (*UserUpdate) GetLastNameOk

func (o *UserUpdate) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value and a boolean to check if the value has been set.

func (*UserUpdate) GetPasswordPolicyName

func (o *UserUpdate) GetPasswordPolicyName() string

GetPasswordPolicyName returns the PasswordPolicyName field value

func (*UserUpdate) GetPasswordPolicyNameOk

func (o *UserUpdate) GetPasswordPolicyNameOk() (*string, bool)

GetPasswordPolicyNameOk returns a tuple with the PasswordPolicyName field value and a boolean to check if the value has been set.

func (*UserUpdate) GetRoleIds

func (o *UserUpdate) GetRoleIds() []string

GetRoleIds returns the RoleIds field value if set, zero value otherwise.

func (*UserUpdate) GetRoleIdsOk

func (o *UserUpdate) GetRoleIdsOk() (*[]string, bool)

GetRoleIdsOk returns a tuple with the RoleIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdate) GetTenantIds

func (o *UserUpdate) GetTenantIds() []string

GetTenantIds returns the TenantIds field value if set, zero value otherwise.

func (*UserUpdate) GetTenantIdsOk

func (o *UserUpdate) GetTenantIdsOk() (*[]string, bool)

GetTenantIdsOk returns a tuple with the TenantIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdate) HasFirstName

func (o *UserUpdate) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*UserUpdate) HasRoleIds

func (o *UserUpdate) HasRoleIds() bool

HasRoleIds returns a boolean if a field has been set.

func (*UserUpdate) HasTenantIds

func (o *UserUpdate) HasTenantIds() bool

HasTenantIds returns a boolean if a field has been set.

func (UserUpdate) MarshalJSON

func (o UserUpdate) MarshalJSON() ([]byte, error)

func (*UserUpdate) SetEmail

func (o *UserUpdate) SetEmail(v string)

SetEmail sets field value

func (*UserUpdate) SetFirstName

func (o *UserUpdate) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*UserUpdate) SetLastName

func (o *UserUpdate) SetLastName(v string)

SetLastName sets field value

func (*UserUpdate) SetPasswordPolicyName

func (o *UserUpdate) SetPasswordPolicyName(v string)

SetPasswordPolicyName sets field value

func (*UserUpdate) SetRoleIds

func (o *UserUpdate) SetRoleIds(v []string)

SetRoleIds gets a reference to the given []string and assigns it to the RoleIds field.

func (*UserUpdate) SetTenantIds

func (o *UserUpdate) SetTenantIds(v []string)

SetTenantIds gets a reference to the given []string and assigns it to the TenantIds field.

type UsersApiService

type UsersApiService service

UsersApiService UsersApi service

func (*UsersApiService) CreateUser

* CreateUser Creates a new user. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateUserRequest

func (*UsersApiService) CreateUserExecute

func (a *UsersApiService) CreateUserExecute(r ApiCreateUserRequest) (User, *_nethttp.Response, error)

* Execute executes the request * @return User

func (*UsersApiService) DeleteUser

* DeleteUser Deletes a user by id. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteUserRequest

func (*UsersApiService) DeleteUserExecute

func (a *UsersApiService) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*UsersApiService) GetCurrentUser

* GetCurrentUser Returns the current user. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetCurrentUserRequest

func (*UsersApiService) GetCurrentUserExecute

func (a *UsersApiService) GetCurrentUserExecute(r ApiGetCurrentUserRequest) (User, *_nethttp.Response, error)

* Execute executes the request * @return User

func (*UsersApiService) GetUser

* GetUser Returns an existing user. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetUserRequest

func (*UsersApiService) GetUserExecute

func (a *UsersApiService) GetUserExecute(r ApiGetUserRequest) (User, *_nethttp.Response, error)

* Execute executes the request * @return User

func (*UsersApiService) GetUsersPage

* GetUsersPage Returns a page of users. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetUsersPageRequest

func (*UsersApiService) GetUsersPageExecute

func (a *UsersApiService) GetUsersPageExecute(r ApiGetUsersPageRequest) (UsersPage, *_nethttp.Response, error)

* Execute executes the request * @return UsersPage

func (*UsersApiService) UpdateUser

* UpdateUser Updates an existing user. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateUserRequest

func (*UsersApiService) UpdateUserExecute

func (a *UsersApiService) UpdateUserExecute(r ApiUpdateUserRequest) (User, *_nethttp.Response, error)

* Execute executes the request * @return User

func (*UsersApiService) UpdateUserPassword

func (a *UsersApiService) UpdateUserPassword(ctx _context.Context) ApiUpdateUserPasswordRequest

* UpdateUserPassword Update a user password. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiUpdateUserPasswordRequest

func (*UsersApiService) UpdateUserPasswordExecute

func (a *UsersApiService) UpdateUserPasswordExecute(r ApiUpdateUserPasswordRequest) (*_nethttp.Response, error)

* Execute executes the request

type UsersPage

type UsersPage struct {
	Page        *int32       `json:"page,omitempty"`
	PageSize    *int32       `json:"pageSize,omitempty"`
	TotalItems  *int64       `json:"totalItems,omitempty"`
	HasNext     NullableBool `json:"hasNext,omitempty"`
	HasPrevious NullableBool `json:"hasPrevious,omitempty"`
	SortBy      *string      `json:"sortBy,omitempty"`
	SortOrder   *string      `json:"sortOrder,omitempty"`
	Contents    *[]User      `json:"contents,omitempty"`
}

UsersPage struct for UsersPage

func NewUsersPage

func NewUsersPage() *UsersPage

NewUsersPage instantiates a new UsersPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersPageWithDefaults

func NewUsersPageWithDefaults() *UsersPage

NewUsersPageWithDefaults instantiates a new UsersPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersPage) GetContents

func (o *UsersPage) GetContents() []User

GetContents returns the Contents field value if set, zero value otherwise.

func (*UsersPage) GetContentsOk

func (o *UsersPage) GetContentsOk() (*[]User, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersPage) GetHasNext

func (o *UsersPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsersPage) GetHasNextOk

func (o *UsersPage) GetHasNextOk() (*bool, bool)

GetHasNextOk returns a tuple with the HasNext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsersPage) GetHasPrevious

func (o *UsersPage) GetHasPrevious() bool

GetHasPrevious returns the HasPrevious field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UsersPage) GetHasPreviousOk

func (o *UsersPage) GetHasPreviousOk() (*bool, bool)

GetHasPreviousOk returns a tuple with the HasPrevious field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UsersPage) GetPage

func (o *UsersPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*UsersPage) GetPageOk

func (o *UsersPage) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersPage) GetPageSize

func (o *UsersPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*UsersPage) GetPageSizeOk

func (o *UsersPage) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersPage) GetSortBy

func (o *UsersPage) GetSortBy() string

GetSortBy returns the SortBy field value if set, zero value otherwise.

func (*UsersPage) GetSortByOk

func (o *UsersPage) GetSortByOk() (*string, bool)

GetSortByOk returns a tuple with the SortBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersPage) GetSortOrder

func (o *UsersPage) GetSortOrder() string

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*UsersPage) GetSortOrderOk

func (o *UsersPage) GetSortOrderOk() (*string, bool)

GetSortOrderOk returns a tuple with the SortOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersPage) GetTotalItems

func (o *UsersPage) GetTotalItems() int64

GetTotalItems returns the TotalItems field value if set, zero value otherwise.

func (*UsersPage) GetTotalItemsOk

func (o *UsersPage) GetTotalItemsOk() (*int64, bool)

GetTotalItemsOk returns a tuple with the TotalItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersPage) HasContents

func (o *UsersPage) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*UsersPage) HasHasNext

func (o *UsersPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*UsersPage) HasHasPrevious

func (o *UsersPage) HasHasPrevious() bool

HasHasPrevious returns a boolean if a field has been set.

func (*UsersPage) HasPage

func (o *UsersPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*UsersPage) HasPageSize

func (o *UsersPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*UsersPage) HasSortBy

func (o *UsersPage) HasSortBy() bool

HasSortBy returns a boolean if a field has been set.

func (*UsersPage) HasSortOrder

func (o *UsersPage) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*UsersPage) HasTotalItems

func (o *UsersPage) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

func (UsersPage) MarshalJSON

func (o UsersPage) MarshalJSON() ([]byte, error)

func (*UsersPage) SetContents

func (o *UsersPage) SetContents(v []User)

SetContents gets a reference to the given []User and assigns it to the Contents field.

func (*UsersPage) SetHasNext

func (o *UsersPage) SetHasNext(v bool)

SetHasNext gets a reference to the given NullableBool and assigns it to the HasNext field.

func (*UsersPage) SetHasNextNil

func (o *UsersPage) SetHasNextNil()

SetHasNextNil sets the value for HasNext to be an explicit nil

func (*UsersPage) SetHasPrevious

func (o *UsersPage) SetHasPrevious(v bool)

SetHasPrevious gets a reference to the given NullableBool and assigns it to the HasPrevious field.

func (*UsersPage) SetHasPreviousNil

func (o *UsersPage) SetHasPreviousNil()

SetHasPreviousNil sets the value for HasPrevious to be an explicit nil

func (*UsersPage) SetPage

func (o *UsersPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*UsersPage) SetPageSize

func (o *UsersPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*UsersPage) SetSortBy

func (o *UsersPage) SetSortBy(v string)

SetSortBy gets a reference to the given string and assigns it to the SortBy field.

func (*UsersPage) SetSortOrder

func (o *UsersPage) SetSortOrder(v string)

SetSortOrder gets a reference to the given string and assigns it to the SortOrder field.

func (*UsersPage) SetTotalItems

func (o *UsersPage) SetTotalItems(v int64)

SetTotalItems gets a reference to the given int64 and assigns it to the TotalItems field.

func (*UsersPage) UnsetHasNext

func (o *UsersPage) UnsetHasNext()

UnsetHasNext ensures that no value is present for HasNext, not even an explicit nil

func (*UsersPage) UnsetHasPrevious

func (o *UsersPage) UnsetHasPrevious()

UnsetHasPrevious ensures that no value is present for HasPrevious, not even an explicit nil

type UsersPageAllOf

type UsersPageAllOf struct {
	Contents *[]User `json:"contents,omitempty"`
}

UsersPageAllOf struct for UsersPageAllOf

func NewUsersPageAllOf

func NewUsersPageAllOf() *UsersPageAllOf

NewUsersPageAllOf instantiates a new UsersPageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUsersPageAllOfWithDefaults

func NewUsersPageAllOfWithDefaults() *UsersPageAllOf

NewUsersPageAllOfWithDefaults instantiates a new UsersPageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UsersPageAllOf) GetContents

func (o *UsersPageAllOf) GetContents() []User

GetContents returns the Contents field value if set, zero value otherwise.

func (*UsersPageAllOf) GetContentsOk

func (o *UsersPageAllOf) GetContentsOk() (*[]User, bool)

GetContentsOk returns a tuple with the Contents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsersPageAllOf) HasContents

func (o *UsersPageAllOf) HasContents() bool

HasContents returns a boolean if a field has been set.

func (UsersPageAllOf) MarshalJSON

func (o UsersPageAllOf) MarshalJSON() ([]byte, error)

func (*UsersPageAllOf) SetContents

func (o *UsersPageAllOf) SetContents(v []User)

SetContents gets a reference to the given []User and assigns it to the Contents field.

type ValidateWorkflowResponse

type ValidateWorkflowResponse struct {
	TotalActions     *int32    `json:"total_actions,omitempty"`
	TotalValid       *int32    `json:"total_valid,omitempty"`
	WorkflowValid    *bool     `json:"workflow_valid,omitempty"`
	InvalidActionIds *[]string `json:"invalid_action_ids,omitempty"`
}

ValidateWorkflowResponse struct for ValidateWorkflowResponse

func NewValidateWorkflowResponse

func NewValidateWorkflowResponse() *ValidateWorkflowResponse

NewValidateWorkflowResponse instantiates a new ValidateWorkflowResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateWorkflowResponseWithDefaults

func NewValidateWorkflowResponseWithDefaults() *ValidateWorkflowResponse

NewValidateWorkflowResponseWithDefaults instantiates a new ValidateWorkflowResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateWorkflowResponse) GetInvalidActionIds

func (o *ValidateWorkflowResponse) GetInvalidActionIds() []string

GetInvalidActionIds returns the InvalidActionIds field value if set, zero value otherwise.

func (*ValidateWorkflowResponse) GetInvalidActionIdsOk

func (o *ValidateWorkflowResponse) GetInvalidActionIdsOk() (*[]string, bool)

GetInvalidActionIdsOk returns a tuple with the InvalidActionIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateWorkflowResponse) GetTotalActions

func (o *ValidateWorkflowResponse) GetTotalActions() int32

GetTotalActions returns the TotalActions field value if set, zero value otherwise.

func (*ValidateWorkflowResponse) GetTotalActionsOk

func (o *ValidateWorkflowResponse) GetTotalActionsOk() (*int32, bool)

GetTotalActionsOk returns a tuple with the TotalActions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateWorkflowResponse) GetTotalValid

func (o *ValidateWorkflowResponse) GetTotalValid() int32

GetTotalValid returns the TotalValid field value if set, zero value otherwise.

func (*ValidateWorkflowResponse) GetTotalValidOk

func (o *ValidateWorkflowResponse) GetTotalValidOk() (*int32, bool)

GetTotalValidOk returns a tuple with the TotalValid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateWorkflowResponse) GetWorkflowValid

func (o *ValidateWorkflowResponse) GetWorkflowValid() bool

GetWorkflowValid returns the WorkflowValid field value if set, zero value otherwise.

func (*ValidateWorkflowResponse) GetWorkflowValidOk

func (o *ValidateWorkflowResponse) GetWorkflowValidOk() (*bool, bool)

GetWorkflowValidOk returns a tuple with the WorkflowValid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateWorkflowResponse) HasInvalidActionIds

func (o *ValidateWorkflowResponse) HasInvalidActionIds() bool

HasInvalidActionIds returns a boolean if a field has been set.

func (*ValidateWorkflowResponse) HasTotalActions

func (o *ValidateWorkflowResponse) HasTotalActions() bool

HasTotalActions returns a boolean if a field has been set.

func (*ValidateWorkflowResponse) HasTotalValid

func (o *ValidateWorkflowResponse) HasTotalValid() bool

HasTotalValid returns a boolean if a field has been set.

func (*ValidateWorkflowResponse) HasWorkflowValid

func (o *ValidateWorkflowResponse) HasWorkflowValid() bool

HasWorkflowValid returns a boolean if a field has been set.

func (ValidateWorkflowResponse) MarshalJSON

func (o ValidateWorkflowResponse) MarshalJSON() ([]byte, error)

func (*ValidateWorkflowResponse) SetInvalidActionIds

func (o *ValidateWorkflowResponse) SetInvalidActionIds(v []string)

SetInvalidActionIds gets a reference to the given []string and assigns it to the InvalidActionIds field.

func (*ValidateWorkflowResponse) SetTotalActions

func (o *ValidateWorkflowResponse) SetTotalActions(v int32)

SetTotalActions gets a reference to the given int32 and assigns it to the TotalActions field.

func (*ValidateWorkflowResponse) SetTotalValid

func (o *ValidateWorkflowResponse) SetTotalValid(v int32)

SetTotalValid gets a reference to the given int32 and assigns it to the TotalValid field.

func (*ValidateWorkflowResponse) SetWorkflowValid

func (o *ValidateWorkflowResponse) SetWorkflowValid(v bool)

SetWorkflowValid gets a reference to the given bool and assigns it to the WorkflowValid field.

type Workflow

type Workflow struct {
	Id            *string                            `json:"id,omitempty"`
	SchemaId      *string                            `json:"schema_id,omitempty"`
	Name          *string                            `json:"name,omitempty"`
	Title         *string                            `json:"title,omitempty"`
	Type          *string                            `json:"type,omitempty"`
	BaseType      *string                            `json:"base_type,omitempty"`
	ObjectType    *string                            `json:"object_type,omitempty"`
	Properties    *map[string]map[string]interface{} `json:"properties,omitempty"`
	Valid         *bool                              `json:"valid,omitempty"`
	WorkflowValid *bool                              `json:"workflow_valid,omitempty"`
	Categories    *[]string                          `json:"categories,omitempty"`
	Metadata      *WorkflowMetadata                  `json:"metadata,omitempty"`
	Status        *map[string]map[string]interface{} `json:"status,omitempty"`
	Permissions   *[]string                          `json:"permissions,omitempty"`
	Variables     *[]WorkflowVariable                `json:"variables,omitempty"`
	Actions       *[]WorkflowAction                  `json:"actions,omitempty"`
	CreatedOn     *string                            `json:"created_on,omitempty"`
	CreatedBy     *string                            `json:"created_by,omitempty"`
	UpdatedOn     *string                            `json:"updated_on,omitempty"`
	UpdatedBy     *string                            `json:"updated_by,omitempty"`
	Owner         *string                            `json:"owner,omitempty"`
	UniqueName    *string                            `json:"unique_name,omitempty"`
}

Workflow struct for Workflow

func NewWorkflow

func NewWorkflow() *Workflow

NewWorkflow instantiates a new Workflow object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowWithDefaults

func NewWorkflowWithDefaults() *Workflow

NewWorkflowWithDefaults instantiates a new Workflow object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Workflow) GetActions

func (o *Workflow) GetActions() []WorkflowAction

GetActions returns the Actions field value if set, zero value otherwise.

func (*Workflow) GetActionsOk

func (o *Workflow) GetActionsOk() (*[]WorkflowAction, bool)

GetActionsOk returns a tuple with the Actions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetBaseType

func (o *Workflow) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*Workflow) GetBaseTypeOk

func (o *Workflow) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetCategories

func (o *Workflow) GetCategories() []string

GetCategories returns the Categories field value if set, zero value otherwise.

func (*Workflow) GetCategoriesOk

func (o *Workflow) GetCategoriesOk() (*[]string, 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 (*Workflow) GetCreatedBy

func (o *Workflow) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*Workflow) GetCreatedByOk

func (o *Workflow) 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 (*Workflow) GetCreatedOn

func (o *Workflow) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*Workflow) GetCreatedOnOk

func (o *Workflow) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetId

func (o *Workflow) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Workflow) GetIdOk

func (o *Workflow) 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 (*Workflow) GetMetadata

func (o *Workflow) GetMetadata() WorkflowMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Workflow) GetMetadataOk

func (o *Workflow) GetMetadataOk() (*WorkflowMetadata, 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 (*Workflow) GetName

func (o *Workflow) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Workflow) GetNameOk

func (o *Workflow) 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 (*Workflow) GetObjectType

func (o *Workflow) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*Workflow) GetObjectTypeOk

func (o *Workflow) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetOwner

func (o *Workflow) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*Workflow) GetOwnerOk

func (o *Workflow) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetPermissions

func (o *Workflow) GetPermissions() []string

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*Workflow) GetPermissionsOk

func (o *Workflow) GetPermissionsOk() (*[]string, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetProperties

func (o *Workflow) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*Workflow) GetPropertiesOk

func (o *Workflow) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetSchemaId

func (o *Workflow) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*Workflow) GetSchemaIdOk

func (o *Workflow) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetStatus

func (o *Workflow) GetStatus() map[string]map[string]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*Workflow) GetStatusOk

func (o *Workflow) GetStatusOk() (*map[string]map[string]interface{}, 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 (*Workflow) GetTitle

func (o *Workflow) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*Workflow) GetTitleOk

func (o *Workflow) 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 (*Workflow) GetType

func (o *Workflow) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Workflow) GetTypeOk

func (o *Workflow) 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 (*Workflow) GetUniqueName

func (o *Workflow) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*Workflow) GetUniqueNameOk

func (o *Workflow) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetUpdatedBy

func (o *Workflow) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*Workflow) GetUpdatedByOk

func (o *Workflow) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetUpdatedOn

func (o *Workflow) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field value if set, zero value otherwise.

func (*Workflow) GetUpdatedOnOk

func (o *Workflow) GetUpdatedOnOk() (*string, bool)

GetUpdatedOnOk returns a tuple with the UpdatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetValid

func (o *Workflow) GetValid() bool

GetValid returns the Valid field value if set, zero value otherwise.

func (*Workflow) GetValidOk

func (o *Workflow) GetValidOk() (*bool, bool)

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetVariables

func (o *Workflow) GetVariables() []WorkflowVariable

GetVariables returns the Variables field value if set, zero value otherwise.

func (*Workflow) GetVariablesOk

func (o *Workflow) GetVariablesOk() (*[]WorkflowVariable, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetWorkflowValid

func (o *Workflow) GetWorkflowValid() bool

GetWorkflowValid returns the WorkflowValid field value if set, zero value otherwise.

func (*Workflow) GetWorkflowValidOk

func (o *Workflow) GetWorkflowValidOk() (*bool, bool)

GetWorkflowValidOk returns a tuple with the WorkflowValid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) HasActions

func (o *Workflow) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*Workflow) HasBaseType

func (o *Workflow) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*Workflow) HasCategories

func (o *Workflow) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*Workflow) HasCreatedBy

func (o *Workflow) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*Workflow) HasCreatedOn

func (o *Workflow) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*Workflow) HasId

func (o *Workflow) HasId() bool

HasId returns a boolean if a field has been set.

func (*Workflow) HasMetadata

func (o *Workflow) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Workflow) HasName

func (o *Workflow) HasName() bool

HasName returns a boolean if a field has been set.

func (*Workflow) HasObjectType

func (o *Workflow) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*Workflow) HasOwner

func (o *Workflow) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Workflow) HasPermissions

func (o *Workflow) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*Workflow) HasProperties

func (o *Workflow) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*Workflow) HasSchemaId

func (o *Workflow) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*Workflow) HasStatus

func (o *Workflow) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Workflow) HasTitle

func (o *Workflow) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*Workflow) HasType

func (o *Workflow) HasType() bool

HasType returns a boolean if a field has been set.

func (*Workflow) HasUniqueName

func (o *Workflow) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*Workflow) HasUpdatedBy

func (o *Workflow) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*Workflow) HasUpdatedOn

func (o *Workflow) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

func (*Workflow) HasValid

func (o *Workflow) HasValid() bool

HasValid returns a boolean if a field has been set.

func (*Workflow) HasVariables

func (o *Workflow) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (*Workflow) HasWorkflowValid

func (o *Workflow) HasWorkflowValid() bool

HasWorkflowValid returns a boolean if a field has been set.

func (Workflow) MarshalJSON

func (o Workflow) MarshalJSON() ([]byte, error)

func (*Workflow) SetActions

func (o *Workflow) SetActions(v []WorkflowAction)

SetActions gets a reference to the given []WorkflowAction and assigns it to the Actions field.

func (*Workflow) SetBaseType

func (o *Workflow) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*Workflow) SetCategories

func (o *Workflow) SetCategories(v []string)

SetCategories gets a reference to the given []string and assigns it to the Categories field.

func (*Workflow) SetCreatedBy

func (o *Workflow) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*Workflow) SetCreatedOn

func (o *Workflow) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*Workflow) SetId

func (o *Workflow) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Workflow) SetMetadata

func (o *Workflow) SetMetadata(v WorkflowMetadata)

SetMetadata gets a reference to the given WorkflowMetadata and assigns it to the Metadata field.

func (*Workflow) SetName

func (o *Workflow) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Workflow) SetObjectType

func (o *Workflow) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*Workflow) SetOwner

func (o *Workflow) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*Workflow) SetPermissions

func (o *Workflow) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*Workflow) SetProperties

func (o *Workflow) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*Workflow) SetSchemaId

func (o *Workflow) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*Workflow) SetStatus

func (o *Workflow) SetStatus(v map[string]map[string]interface{})

SetStatus gets a reference to the given map[string]map[string]interface{} and assigns it to the Status field.

func (*Workflow) SetTitle

func (o *Workflow) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*Workflow) SetType

func (o *Workflow) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Workflow) SetUniqueName

func (o *Workflow) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*Workflow) SetUpdatedBy

func (o *Workflow) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*Workflow) SetUpdatedOn

func (o *Workflow) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

func (*Workflow) SetValid

func (o *Workflow) SetValid(v bool)

SetValid gets a reference to the given bool and assigns it to the Valid field.

func (*Workflow) SetVariables

func (o *Workflow) SetVariables(v []WorkflowVariable)

SetVariables gets a reference to the given []WorkflowVariable and assigns it to the Variables field.

func (*Workflow) SetWorkflowValid

func (o *Workflow) SetWorkflowValid(v bool)

SetWorkflowValid gets a reference to the given bool and assigns it to the WorkflowValid field.

type WorkflowAccessMeta

type WorkflowAccessMeta struct {
	Adapter       *WorkflowAccessMetaType   `json:"adapter,omitempty"`
	RuntimeUsers  *[]WorkflowAccessMetaType `json:"runtime_users,omitempty"`
	Targets       *[]WorkflowAccessMetaType `json:"targets,omitempty"`
	IsIntegration *bool                     `json:"is_integration,omitempty"`
	IsInternal    *bool                     `json:"is_internal,omitempty"`
}

WorkflowAccessMeta struct for WorkflowAccessMeta

func NewWorkflowAccessMeta

func NewWorkflowAccessMeta() *WorkflowAccessMeta

NewWorkflowAccessMeta instantiates a new WorkflowAccessMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowAccessMetaWithDefaults

func NewWorkflowAccessMetaWithDefaults() *WorkflowAccessMeta

NewWorkflowAccessMetaWithDefaults instantiates a new WorkflowAccessMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowAccessMeta) GetAdapter

GetAdapter returns the Adapter field value if set, zero value otherwise.

func (*WorkflowAccessMeta) GetAdapterOk

func (o *WorkflowAccessMeta) GetAdapterOk() (*WorkflowAccessMetaType, bool)

GetAdapterOk returns a tuple with the Adapter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAccessMeta) GetIsIntegration

func (o *WorkflowAccessMeta) GetIsIntegration() bool

GetIsIntegration returns the IsIntegration field value if set, zero value otherwise.

func (*WorkflowAccessMeta) GetIsIntegrationOk

func (o *WorkflowAccessMeta) GetIsIntegrationOk() (*bool, bool)

GetIsIntegrationOk returns a tuple with the IsIntegration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAccessMeta) GetIsInternal

func (o *WorkflowAccessMeta) GetIsInternal() bool

GetIsInternal returns the IsInternal field value if set, zero value otherwise.

func (*WorkflowAccessMeta) GetIsInternalOk

func (o *WorkflowAccessMeta) GetIsInternalOk() (*bool, bool)

GetIsInternalOk returns a tuple with the IsInternal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAccessMeta) GetRuntimeUsers

func (o *WorkflowAccessMeta) GetRuntimeUsers() []WorkflowAccessMetaType

GetRuntimeUsers returns the RuntimeUsers field value if set, zero value otherwise.

func (*WorkflowAccessMeta) GetRuntimeUsersOk

func (o *WorkflowAccessMeta) GetRuntimeUsersOk() (*[]WorkflowAccessMetaType, bool)

GetRuntimeUsersOk returns a tuple with the RuntimeUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAccessMeta) GetTargets

func (o *WorkflowAccessMeta) GetTargets() []WorkflowAccessMetaType

GetTargets returns the Targets field value if set, zero value otherwise.

func (*WorkflowAccessMeta) GetTargetsOk

func (o *WorkflowAccessMeta) GetTargetsOk() (*[]WorkflowAccessMetaType, bool)

GetTargetsOk returns a tuple with the Targets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAccessMeta) HasAdapter

func (o *WorkflowAccessMeta) HasAdapter() bool

HasAdapter returns a boolean if a field has been set.

func (*WorkflowAccessMeta) HasIsIntegration

func (o *WorkflowAccessMeta) HasIsIntegration() bool

HasIsIntegration returns a boolean if a field has been set.

func (*WorkflowAccessMeta) HasIsInternal

func (o *WorkflowAccessMeta) HasIsInternal() bool

HasIsInternal returns a boolean if a field has been set.

func (*WorkflowAccessMeta) HasRuntimeUsers

func (o *WorkflowAccessMeta) HasRuntimeUsers() bool

HasRuntimeUsers returns a boolean if a field has been set.

func (*WorkflowAccessMeta) HasTargets

func (o *WorkflowAccessMeta) HasTargets() bool

HasTargets returns a boolean if a field has been set.

func (WorkflowAccessMeta) MarshalJSON

func (o WorkflowAccessMeta) MarshalJSON() ([]byte, error)

func (*WorkflowAccessMeta) SetAdapter

func (o *WorkflowAccessMeta) SetAdapter(v WorkflowAccessMetaType)

SetAdapter gets a reference to the given WorkflowAccessMetaType and assigns it to the Adapter field.

func (*WorkflowAccessMeta) SetIsIntegration

func (o *WorkflowAccessMeta) SetIsIntegration(v bool)

SetIsIntegration gets a reference to the given bool and assigns it to the IsIntegration field.

func (*WorkflowAccessMeta) SetIsInternal

func (o *WorkflowAccessMeta) SetIsInternal(v bool)

SetIsInternal gets a reference to the given bool and assigns it to the IsInternal field.

func (*WorkflowAccessMeta) SetRuntimeUsers

func (o *WorkflowAccessMeta) SetRuntimeUsers(v []WorkflowAccessMetaType)

SetRuntimeUsers gets a reference to the given []WorkflowAccessMetaType and assigns it to the RuntimeUsers field.

func (*WorkflowAccessMeta) SetTargets

func (o *WorkflowAccessMeta) SetTargets(v []WorkflowAccessMetaType)

SetTargets gets a reference to the given []WorkflowAccessMetaType and assigns it to the Targets field.

type WorkflowAccessMetaType

type WorkflowAccessMetaType struct {
	Id      *string `json:"id,omitempty"`
	Type    *string `json:"type,omitempty"`
	Version *string `json:"version,omitempty"`
}

WorkflowAccessMetaType struct for WorkflowAccessMetaType

func NewWorkflowAccessMetaType

func NewWorkflowAccessMetaType() *WorkflowAccessMetaType

NewWorkflowAccessMetaType instantiates a new WorkflowAccessMetaType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowAccessMetaTypeWithDefaults

func NewWorkflowAccessMetaTypeWithDefaults() *WorkflowAccessMetaType

NewWorkflowAccessMetaTypeWithDefaults instantiates a new WorkflowAccessMetaType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowAccessMetaType) GetId

func (o *WorkflowAccessMetaType) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowAccessMetaType) GetIdOk

func (o *WorkflowAccessMetaType) 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 (*WorkflowAccessMetaType) GetType

func (o *WorkflowAccessMetaType) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowAccessMetaType) GetTypeOk

func (o *WorkflowAccessMetaType) 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 (*WorkflowAccessMetaType) GetVersion

func (o *WorkflowAccessMetaType) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*WorkflowAccessMetaType) GetVersionOk

func (o *WorkflowAccessMetaType) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAccessMetaType) HasId

func (o *WorkflowAccessMetaType) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowAccessMetaType) HasType

func (o *WorkflowAccessMetaType) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowAccessMetaType) HasVersion

func (o *WorkflowAccessMetaType) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (WorkflowAccessMetaType) MarshalJSON

func (o WorkflowAccessMetaType) MarshalJSON() ([]byte, error)

func (*WorkflowAccessMetaType) SetId

func (o *WorkflowAccessMetaType) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowAccessMetaType) SetType

func (o *WorkflowAccessMetaType) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowAccessMetaType) SetVersion

func (o *WorkflowAccessMetaType) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type WorkflowAction

type WorkflowAction struct {
	Id           *string                            `json:"id,omitempty"`
	WorkflowId   *string                            `json:"workflow_id,omitempty"`
	DefinitionId *string                            `json:"definition_id,omitempty"`
	SchemaId     *string                            `json:"schema_id,omitempty"`
	AdapterId    *string                            `json:"adapter_id,omitempty"`
	UniqueName   *string                            `json:"unique_name,omitempty"`
	Name         *string                            `json:"name,omitempty"`
	Title        *string                            `json:"title,omitempty"`
	Type         *string                            `json:"type,omitempty"`
	BaseType     *string                            `json:"base_type,omitempty"`
	Properties   *map[string]map[string]interface{} `json:"properties,omitempty"`
	ObjectType   *string                            `json:"object_type,omitempty"`
	StartedBy    *string                            `json:"started_by,omitempty"`
	Blocks       *[]WorkflowActionBlock             `json:"blocks,omitempty"`
	Status       *map[string]map[string]interface{} `json:"status,omitempty"`
	Description  *string                            `json:"description,omitempty"`
	Output       *map[string]map[string]interface{} `json:"output,omitempty"`
	StartedOn    *string                            `json:"started_on,omitempty"`
	EndedOn      *string                            `json:"ended_on,omitempty"`
}

WorkflowAction struct for WorkflowAction

func NewWorkflowAction

func NewWorkflowAction() *WorkflowAction

NewWorkflowAction instantiates a new WorkflowAction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowActionWithDefaults

func NewWorkflowActionWithDefaults() *WorkflowAction

NewWorkflowActionWithDefaults instantiates a new WorkflowAction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowAction) GetAdapterId

func (o *WorkflowAction) GetAdapterId() string

GetAdapterId returns the AdapterId field value if set, zero value otherwise.

func (*WorkflowAction) GetAdapterIdOk

func (o *WorkflowAction) GetAdapterIdOk() (*string, bool)

GetAdapterIdOk returns a tuple with the AdapterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetBaseType

func (o *WorkflowAction) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowAction) GetBaseTypeOk

func (o *WorkflowAction) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetBlocks

func (o *WorkflowAction) GetBlocks() []WorkflowActionBlock

GetBlocks returns the Blocks field value if set, zero value otherwise.

func (*WorkflowAction) GetBlocksOk

func (o *WorkflowAction) GetBlocksOk() (*[]WorkflowActionBlock, bool)

GetBlocksOk returns a tuple with the Blocks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetDefinitionId

func (o *WorkflowAction) GetDefinitionId() string

GetDefinitionId returns the DefinitionId field value if set, zero value otherwise.

func (*WorkflowAction) GetDefinitionIdOk

func (o *WorkflowAction) GetDefinitionIdOk() (*string, bool)

GetDefinitionIdOk returns a tuple with the DefinitionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetDescription

func (o *WorkflowAction) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowAction) GetDescriptionOk

func (o *WorkflowAction) 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 (*WorkflowAction) GetEndedOn

func (o *WorkflowAction) GetEndedOn() string

GetEndedOn returns the EndedOn field value if set, zero value otherwise.

func (*WorkflowAction) GetEndedOnOk

func (o *WorkflowAction) GetEndedOnOk() (*string, bool)

GetEndedOnOk returns a tuple with the EndedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetId

func (o *WorkflowAction) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowAction) GetIdOk

func (o *WorkflowAction) 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 (*WorkflowAction) GetName

func (o *WorkflowAction) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowAction) GetNameOk

func (o *WorkflowAction) 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 (*WorkflowAction) GetObjectType

func (o *WorkflowAction) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*WorkflowAction) GetObjectTypeOk

func (o *WorkflowAction) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetOutput

func (o *WorkflowAction) GetOutput() map[string]map[string]interface{}

GetOutput returns the Output field value if set, zero value otherwise.

func (*WorkflowAction) GetOutputOk

func (o *WorkflowAction) GetOutputOk() (*map[string]map[string]interface{}, bool)

GetOutputOk returns a tuple with the Output field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetProperties

func (o *WorkflowAction) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowAction) GetPropertiesOk

func (o *WorkflowAction) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetSchemaId

func (o *WorkflowAction) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowAction) GetSchemaIdOk

func (o *WorkflowAction) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetStartedBy

func (o *WorkflowAction) GetStartedBy() string

GetStartedBy returns the StartedBy field value if set, zero value otherwise.

func (*WorkflowAction) GetStartedByOk

func (o *WorkflowAction) GetStartedByOk() (*string, bool)

GetStartedByOk returns a tuple with the StartedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetStartedOn

func (o *WorkflowAction) GetStartedOn() string

GetStartedOn returns the StartedOn field value if set, zero value otherwise.

func (*WorkflowAction) GetStartedOnOk

func (o *WorkflowAction) GetStartedOnOk() (*string, bool)

GetStartedOnOk returns a tuple with the StartedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetStatus

func (o *WorkflowAction) GetStatus() map[string]map[string]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowAction) GetStatusOk

func (o *WorkflowAction) GetStatusOk() (*map[string]map[string]interface{}, 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 (*WorkflowAction) GetTitle

func (o *WorkflowAction) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowAction) GetTitleOk

func (o *WorkflowAction) 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 (*WorkflowAction) GetType

func (o *WorkflowAction) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowAction) GetTypeOk

func (o *WorkflowAction) 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 (*WorkflowAction) GetUniqueName

func (o *WorkflowAction) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowAction) GetUniqueNameOk

func (o *WorkflowAction) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) GetWorkflowId

func (o *WorkflowAction) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*WorkflowAction) GetWorkflowIdOk

func (o *WorkflowAction) GetWorkflowIdOk() (*string, bool)

GetWorkflowIdOk returns a tuple with the WorkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAction) HasAdapterId

func (o *WorkflowAction) HasAdapterId() bool

HasAdapterId returns a boolean if a field has been set.

func (*WorkflowAction) HasBaseType

func (o *WorkflowAction) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowAction) HasBlocks

func (o *WorkflowAction) HasBlocks() bool

HasBlocks returns a boolean if a field has been set.

func (*WorkflowAction) HasDefinitionId

func (o *WorkflowAction) HasDefinitionId() bool

HasDefinitionId returns a boolean if a field has been set.

func (*WorkflowAction) HasDescription

func (o *WorkflowAction) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowAction) HasEndedOn

func (o *WorkflowAction) HasEndedOn() bool

HasEndedOn returns a boolean if a field has been set.

func (*WorkflowAction) HasId

func (o *WorkflowAction) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowAction) HasName

func (o *WorkflowAction) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowAction) HasObjectType

func (o *WorkflowAction) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*WorkflowAction) HasOutput

func (o *WorkflowAction) HasOutput() bool

HasOutput returns a boolean if a field has been set.

func (*WorkflowAction) HasProperties

func (o *WorkflowAction) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowAction) HasSchemaId

func (o *WorkflowAction) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowAction) HasStartedBy

func (o *WorkflowAction) HasStartedBy() bool

HasStartedBy returns a boolean if a field has been set.

func (*WorkflowAction) HasStartedOn

func (o *WorkflowAction) HasStartedOn() bool

HasStartedOn returns a boolean if a field has been set.

func (*WorkflowAction) HasStatus

func (o *WorkflowAction) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*WorkflowAction) HasTitle

func (o *WorkflowAction) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowAction) HasType

func (o *WorkflowAction) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowAction) HasUniqueName

func (o *WorkflowAction) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowAction) HasWorkflowId

func (o *WorkflowAction) HasWorkflowId() bool

HasWorkflowId returns a boolean if a field has been set.

func (WorkflowAction) MarshalJSON

func (o WorkflowAction) MarshalJSON() ([]byte, error)

func (*WorkflowAction) SetAdapterId

func (o *WorkflowAction) SetAdapterId(v string)

SetAdapterId gets a reference to the given string and assigns it to the AdapterId field.

func (*WorkflowAction) SetBaseType

func (o *WorkflowAction) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowAction) SetBlocks

func (o *WorkflowAction) SetBlocks(v []WorkflowActionBlock)

SetBlocks gets a reference to the given []WorkflowActionBlock and assigns it to the Blocks field.

func (*WorkflowAction) SetDefinitionId

func (o *WorkflowAction) SetDefinitionId(v string)

SetDefinitionId gets a reference to the given string and assigns it to the DefinitionId field.

func (*WorkflowAction) SetDescription

func (o *WorkflowAction) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowAction) SetEndedOn

func (o *WorkflowAction) SetEndedOn(v string)

SetEndedOn gets a reference to the given string and assigns it to the EndedOn field.

func (*WorkflowAction) SetId

func (o *WorkflowAction) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowAction) SetName

func (o *WorkflowAction) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowAction) SetObjectType

func (o *WorkflowAction) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*WorkflowAction) SetOutput

func (o *WorkflowAction) SetOutput(v map[string]map[string]interface{})

SetOutput gets a reference to the given map[string]map[string]interface{} and assigns it to the Output field.

func (*WorkflowAction) SetProperties

func (o *WorkflowAction) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowAction) SetSchemaId

func (o *WorkflowAction) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowAction) SetStartedBy

func (o *WorkflowAction) SetStartedBy(v string)

SetStartedBy gets a reference to the given string and assigns it to the StartedBy field.

func (*WorkflowAction) SetStartedOn

func (o *WorkflowAction) SetStartedOn(v string)

SetStartedOn gets a reference to the given string and assigns it to the StartedOn field.

func (*WorkflowAction) SetStatus

func (o *WorkflowAction) SetStatus(v map[string]map[string]interface{})

SetStatus gets a reference to the given map[string]map[string]interface{} and assigns it to the Status field.

func (*WorkflowAction) SetTitle

func (o *WorkflowAction) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowAction) SetType

func (o *WorkflowAction) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowAction) SetUniqueName

func (o *WorkflowAction) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowAction) SetWorkflowId

func (o *WorkflowAction) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

type WorkflowActionBlock

type WorkflowActionBlock struct {
	UniqueName    *string                            `json:"unique_name,omitempty"`
	Name          *string                            `json:"name,omitempty"`
	Title         *string                            `json:"title,omitempty"`
	Type          *string                            `json:"type,omitempty"`
	Version       *string                            `json:"version,omitempty"`
	BaseType      *string                            `json:"base_type,omitempty"`
	Properties    *map[string]map[string]interface{} `json:"properties,omitempty"`
	ObjectType    *string                            `json:"object_type,omitempty"`
	Actions       *[]WorkflowAction                  `json:"actions,omitempty"`
	SubworkflowId *string                            `json:"subworkflow_id,omitempty"`
	WorkflowId    *string                            `json:"workflow_id,omitempty"`
	SchemaId      *string                            `json:"schema_id,omitempty"`
}

WorkflowActionBlock struct for WorkflowActionBlock

func NewWorkflowActionBlock

func NewWorkflowActionBlock() *WorkflowActionBlock

NewWorkflowActionBlock instantiates a new WorkflowActionBlock object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowActionBlockWithDefaults

func NewWorkflowActionBlockWithDefaults() *WorkflowActionBlock

NewWorkflowActionBlockWithDefaults instantiates a new WorkflowActionBlock object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowActionBlock) GetActions

func (o *WorkflowActionBlock) GetActions() []WorkflowAction

GetActions returns the Actions field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetActionsOk

func (o *WorkflowActionBlock) GetActionsOk() (*[]WorkflowAction, bool)

GetActionsOk returns a tuple with the Actions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) GetBaseType

func (o *WorkflowActionBlock) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetBaseTypeOk

func (o *WorkflowActionBlock) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) GetName

func (o *WorkflowActionBlock) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetNameOk

func (o *WorkflowActionBlock) 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 (*WorkflowActionBlock) GetObjectType

func (o *WorkflowActionBlock) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetObjectTypeOk

func (o *WorkflowActionBlock) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) GetProperties

func (o *WorkflowActionBlock) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetPropertiesOk

func (o *WorkflowActionBlock) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) GetSchemaId

func (o *WorkflowActionBlock) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetSchemaIdOk

func (o *WorkflowActionBlock) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) GetSubworkflowId

func (o *WorkflowActionBlock) GetSubworkflowId() string

GetSubworkflowId returns the SubworkflowId field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetSubworkflowIdOk

func (o *WorkflowActionBlock) GetSubworkflowIdOk() (*string, bool)

GetSubworkflowIdOk returns a tuple with the SubworkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) GetTitle

func (o *WorkflowActionBlock) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetTitleOk

func (o *WorkflowActionBlock) 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 (*WorkflowActionBlock) GetType

func (o *WorkflowActionBlock) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetTypeOk

func (o *WorkflowActionBlock) 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 (*WorkflowActionBlock) GetUniqueName

func (o *WorkflowActionBlock) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetUniqueNameOk

func (o *WorkflowActionBlock) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) GetVersion

func (o *WorkflowActionBlock) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetVersionOk

func (o *WorkflowActionBlock) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) GetWorkflowId

func (o *WorkflowActionBlock) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*WorkflowActionBlock) GetWorkflowIdOk

func (o *WorkflowActionBlock) GetWorkflowIdOk() (*string, bool)

GetWorkflowIdOk returns a tuple with the WorkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActionBlock) HasActions

func (o *WorkflowActionBlock) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasBaseType

func (o *WorkflowActionBlock) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasName

func (o *WorkflowActionBlock) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasObjectType

func (o *WorkflowActionBlock) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasProperties

func (o *WorkflowActionBlock) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasSchemaId

func (o *WorkflowActionBlock) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasSubworkflowId

func (o *WorkflowActionBlock) HasSubworkflowId() bool

HasSubworkflowId returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasTitle

func (o *WorkflowActionBlock) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasType

func (o *WorkflowActionBlock) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasUniqueName

func (o *WorkflowActionBlock) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasVersion

func (o *WorkflowActionBlock) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*WorkflowActionBlock) HasWorkflowId

func (o *WorkflowActionBlock) HasWorkflowId() bool

HasWorkflowId returns a boolean if a field has been set.

func (WorkflowActionBlock) MarshalJSON

func (o WorkflowActionBlock) MarshalJSON() ([]byte, error)

func (*WorkflowActionBlock) SetActions

func (o *WorkflowActionBlock) SetActions(v []WorkflowAction)

SetActions gets a reference to the given []WorkflowAction and assigns it to the Actions field.

func (*WorkflowActionBlock) SetBaseType

func (o *WorkflowActionBlock) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowActionBlock) SetName

func (o *WorkflowActionBlock) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowActionBlock) SetObjectType

func (o *WorkflowActionBlock) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*WorkflowActionBlock) SetProperties

func (o *WorkflowActionBlock) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowActionBlock) SetSchemaId

func (o *WorkflowActionBlock) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowActionBlock) SetSubworkflowId

func (o *WorkflowActionBlock) SetSubworkflowId(v string)

SetSubworkflowId gets a reference to the given string and assigns it to the SubworkflowId field.

func (*WorkflowActionBlock) SetTitle

func (o *WorkflowActionBlock) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowActionBlock) SetType

func (o *WorkflowActionBlock) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowActionBlock) SetUniqueName

func (o *WorkflowActionBlock) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowActionBlock) SetVersion

func (o *WorkflowActionBlock) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (*WorkflowActionBlock) SetWorkflowId

func (o *WorkflowActionBlock) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

type WorkflowAllOf

type WorkflowAllOf struct {
	Id            *string                            `json:"id,omitempty"`
	SchemaId      *string                            `json:"schema_id,omitempty"`
	Name          *string                            `json:"name,omitempty"`
	Title         *string                            `json:"title,omitempty"`
	Type          *string                            `json:"type,omitempty"`
	BaseType      *string                            `json:"base_type,omitempty"`
	ObjectType    *string                            `json:"object_type,omitempty"`
	Properties    *map[string]map[string]interface{} `json:"properties,omitempty"`
	Valid         *bool                              `json:"valid,omitempty"`
	WorkflowValid *bool                              `json:"workflow_valid,omitempty"`
	Categories    *[]string                          `json:"categories,omitempty"`
	Metadata      *WorkflowMetadata                  `json:"metadata,omitempty"`
	Status        *map[string]map[string]interface{} `json:"status,omitempty"`
	Permissions   *[]string                          `json:"permissions,omitempty"`
	Variables     *[]WorkflowVariable                `json:"variables,omitempty"`
	Actions       *[]WorkflowAction                  `json:"actions,omitempty"`
}

WorkflowAllOf struct for WorkflowAllOf

func NewWorkflowAllOf

func NewWorkflowAllOf() *WorkflowAllOf

NewWorkflowAllOf instantiates a new WorkflowAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowAllOfWithDefaults

func NewWorkflowAllOfWithDefaults() *WorkflowAllOf

NewWorkflowAllOfWithDefaults instantiates a new WorkflowAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowAllOf) GetActions

func (o *WorkflowAllOf) GetActions() []WorkflowAction

GetActions returns the Actions field value if set, zero value otherwise.

func (*WorkflowAllOf) GetActionsOk

func (o *WorkflowAllOf) GetActionsOk() (*[]WorkflowAction, bool)

GetActionsOk returns a tuple with the Actions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) GetBaseType

func (o *WorkflowAllOf) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowAllOf) GetBaseTypeOk

func (o *WorkflowAllOf) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) GetCategories

func (o *WorkflowAllOf) GetCategories() []string

GetCategories returns the Categories field value if set, zero value otherwise.

func (*WorkflowAllOf) GetCategoriesOk

func (o *WorkflowAllOf) GetCategoriesOk() (*[]string, 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 (*WorkflowAllOf) GetId

func (o *WorkflowAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowAllOf) GetIdOk

func (o *WorkflowAllOf) 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 (*WorkflowAllOf) GetMetadata

func (o *WorkflowAllOf) GetMetadata() WorkflowMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*WorkflowAllOf) GetMetadataOk

func (o *WorkflowAllOf) GetMetadataOk() (*WorkflowMetadata, 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 (*WorkflowAllOf) GetName

func (o *WorkflowAllOf) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowAllOf) GetNameOk

func (o *WorkflowAllOf) 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 (*WorkflowAllOf) GetObjectType

func (o *WorkflowAllOf) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*WorkflowAllOf) GetObjectTypeOk

func (o *WorkflowAllOf) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) GetPermissions

func (o *WorkflowAllOf) GetPermissions() []string

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*WorkflowAllOf) GetPermissionsOk

func (o *WorkflowAllOf) GetPermissionsOk() (*[]string, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) GetProperties

func (o *WorkflowAllOf) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowAllOf) GetPropertiesOk

func (o *WorkflowAllOf) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) GetSchemaId

func (o *WorkflowAllOf) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowAllOf) GetSchemaIdOk

func (o *WorkflowAllOf) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) GetStatus

func (o *WorkflowAllOf) GetStatus() map[string]map[string]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowAllOf) GetStatusOk

func (o *WorkflowAllOf) GetStatusOk() (*map[string]map[string]interface{}, 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 (*WorkflowAllOf) GetTitle

func (o *WorkflowAllOf) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowAllOf) GetTitleOk

func (o *WorkflowAllOf) 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 (*WorkflowAllOf) GetType

func (o *WorkflowAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowAllOf) GetTypeOk

func (o *WorkflowAllOf) 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 (*WorkflowAllOf) GetValid

func (o *WorkflowAllOf) GetValid() bool

GetValid returns the Valid field value if set, zero value otherwise.

func (*WorkflowAllOf) GetValidOk

func (o *WorkflowAllOf) GetValidOk() (*bool, bool)

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) GetVariables

func (o *WorkflowAllOf) GetVariables() []WorkflowVariable

GetVariables returns the Variables field value if set, zero value otherwise.

func (*WorkflowAllOf) GetVariablesOk

func (o *WorkflowAllOf) GetVariablesOk() (*[]WorkflowVariable, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) GetWorkflowValid

func (o *WorkflowAllOf) GetWorkflowValid() bool

GetWorkflowValid returns the WorkflowValid field value if set, zero value otherwise.

func (*WorkflowAllOf) GetWorkflowValidOk

func (o *WorkflowAllOf) GetWorkflowValidOk() (*bool, bool)

GetWorkflowValidOk returns a tuple with the WorkflowValid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowAllOf) HasActions

func (o *WorkflowAllOf) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*WorkflowAllOf) HasBaseType

func (o *WorkflowAllOf) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowAllOf) HasCategories

func (o *WorkflowAllOf) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*WorkflowAllOf) HasId

func (o *WorkflowAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowAllOf) HasMetadata

func (o *WorkflowAllOf) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*WorkflowAllOf) HasName

func (o *WorkflowAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowAllOf) HasObjectType

func (o *WorkflowAllOf) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*WorkflowAllOf) HasPermissions

func (o *WorkflowAllOf) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*WorkflowAllOf) HasProperties

func (o *WorkflowAllOf) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowAllOf) HasSchemaId

func (o *WorkflowAllOf) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowAllOf) HasStatus

func (o *WorkflowAllOf) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*WorkflowAllOf) HasTitle

func (o *WorkflowAllOf) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowAllOf) HasType

func (o *WorkflowAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowAllOf) HasValid

func (o *WorkflowAllOf) HasValid() bool

HasValid returns a boolean if a field has been set.

func (*WorkflowAllOf) HasVariables

func (o *WorkflowAllOf) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (*WorkflowAllOf) HasWorkflowValid

func (o *WorkflowAllOf) HasWorkflowValid() bool

HasWorkflowValid returns a boolean if a field has been set.

func (WorkflowAllOf) MarshalJSON

func (o WorkflowAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowAllOf) SetActions

func (o *WorkflowAllOf) SetActions(v []WorkflowAction)

SetActions gets a reference to the given []WorkflowAction and assigns it to the Actions field.

func (*WorkflowAllOf) SetBaseType

func (o *WorkflowAllOf) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowAllOf) SetCategories

func (o *WorkflowAllOf) SetCategories(v []string)

SetCategories gets a reference to the given []string and assigns it to the Categories field.

func (*WorkflowAllOf) SetId

func (o *WorkflowAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowAllOf) SetMetadata

func (o *WorkflowAllOf) SetMetadata(v WorkflowMetadata)

SetMetadata gets a reference to the given WorkflowMetadata and assigns it to the Metadata field.

func (*WorkflowAllOf) SetName

func (o *WorkflowAllOf) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowAllOf) SetObjectType

func (o *WorkflowAllOf) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*WorkflowAllOf) SetPermissions

func (o *WorkflowAllOf) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*WorkflowAllOf) SetProperties

func (o *WorkflowAllOf) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowAllOf) SetSchemaId

func (o *WorkflowAllOf) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowAllOf) SetStatus

func (o *WorkflowAllOf) SetStatus(v map[string]map[string]interface{})

SetStatus gets a reference to the given map[string]map[string]interface{} and assigns it to the Status field.

func (*WorkflowAllOf) SetTitle

func (o *WorkflowAllOf) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowAllOf) SetType

func (o *WorkflowAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowAllOf) SetValid

func (o *WorkflowAllOf) SetValid(v bool)

SetValid gets a reference to the given bool and assigns it to the Valid field.

func (*WorkflowAllOf) SetVariables

func (o *WorkflowAllOf) SetVariables(v []WorkflowVariable)

SetVariables gets a reference to the given []WorkflowVariable and assigns it to the Variables field.

func (*WorkflowAllOf) SetWorkflowValid

func (o *WorkflowAllOf) SetWorkflowValid(v bool)

SetWorkflowValid gets a reference to the given bool and assigns it to the WorkflowValid field.

type WorkflowCategoriesApiService

type WorkflowCategoriesApiService service

WorkflowCategoriesApiService WorkflowCategoriesApi service

func (*WorkflowCategoriesApiService) CreateWorkflowCategory

* CreateWorkflowCategory Creates a new workflow category. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateWorkflowCategoryRequest

func (*WorkflowCategoriesApiService) CreateWorkflowCategoryExecute

* Execute executes the request * @return WorkflowCategory

func (*WorkflowCategoriesApiService) DeleteWorkflowCategory

* DeleteWorkflowCategory Deletes a workflow category. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteWorkflowCategoryRequest

func (*WorkflowCategoriesApiService) DeleteWorkflowCategoryExecute

* Execute executes the request

func (*WorkflowCategoriesApiService) GetWorkflowCategoriesList

* GetWorkflowCategoriesList Returns a list of workflow categories. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetWorkflowCategoriesListRequest

func (*WorkflowCategoriesApiService) GetWorkflowCategoriesListExecute

* Execute executes the request * @return []WorkflowCategory

func (*WorkflowCategoriesApiService) GetWorkflowCategory

* GetWorkflowCategory Returns a workflow category. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetWorkflowCategoryRequest

func (*WorkflowCategoriesApiService) GetWorkflowCategoryExecute

* Execute executes the request * @return WorkflowCategory

func (*WorkflowCategoriesApiService) UpdateWorkflowCategory

* UpdateWorkflowCategory Updates a workflow category. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateWorkflowCategoryRequest

func (*WorkflowCategoriesApiService) UpdateWorkflowCategoryExecute

* Execute executes the request * @return WorkflowCategory

type WorkflowCategory

type WorkflowCategory struct {
	Id           *string `json:"id,omitempty"`
	SchemaId     *string `json:"schema_id,omitempty"`
	Name         *string `json:"name,omitempty"`
	Title        *string `json:"title,omitempty"`
	Type         *string `json:"type,omitempty"`
	BaseType     *string `json:"base_type,omitempty"`
	Description  *string `json:"description,omitempty"`
	CategoryType *string `json:"category_type,omitempty"`
	ObjectType   *string `json:"object_type,omitempty"`
	CreatedOn    *string `json:"created_on,omitempty"`
	CreatedBy    *string `json:"created_by,omitempty"`
	UpdatedOn    *string `json:"updated_on,omitempty"`
	UpdatedBy    *string `json:"updated_by,omitempty"`
	Owner        *string `json:"owner,omitempty"`
	UniqueName   *string `json:"unique_name,omitempty"`
}

WorkflowCategory struct for WorkflowCategory

func NewWorkflowCategory

func NewWorkflowCategory() *WorkflowCategory

NewWorkflowCategory instantiates a new WorkflowCategory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowCategoryWithDefaults

func NewWorkflowCategoryWithDefaults() *WorkflowCategory

NewWorkflowCategoryWithDefaults instantiates a new WorkflowCategory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowCategory) GetBaseType

func (o *WorkflowCategory) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowCategory) GetBaseTypeOk

func (o *WorkflowCategory) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) GetCategoryType

func (o *WorkflowCategory) GetCategoryType() string

GetCategoryType returns the CategoryType field value if set, zero value otherwise.

func (*WorkflowCategory) GetCategoryTypeOk

func (o *WorkflowCategory) GetCategoryTypeOk() (*string, bool)

GetCategoryTypeOk returns a tuple with the CategoryType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) GetCreatedBy

func (o *WorkflowCategory) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowCategory) GetCreatedByOk

func (o *WorkflowCategory) 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 (*WorkflowCategory) GetCreatedOn

func (o *WorkflowCategory) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*WorkflowCategory) GetCreatedOnOk

func (o *WorkflowCategory) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) GetDescription

func (o *WorkflowCategory) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowCategory) GetDescriptionOk

func (o *WorkflowCategory) 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 (*WorkflowCategory) GetId

func (o *WorkflowCategory) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowCategory) GetIdOk

func (o *WorkflowCategory) 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 (*WorkflowCategory) GetName

func (o *WorkflowCategory) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowCategory) GetNameOk

func (o *WorkflowCategory) 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 (*WorkflowCategory) GetObjectType

func (o *WorkflowCategory) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*WorkflowCategory) GetObjectTypeOk

func (o *WorkflowCategory) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) GetOwner

func (o *WorkflowCategory) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*WorkflowCategory) GetOwnerOk

func (o *WorkflowCategory) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) GetSchemaId

func (o *WorkflowCategory) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowCategory) GetSchemaIdOk

func (o *WorkflowCategory) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) GetTitle

func (o *WorkflowCategory) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowCategory) GetTitleOk

func (o *WorkflowCategory) 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 (*WorkflowCategory) GetType

func (o *WorkflowCategory) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowCategory) GetTypeOk

func (o *WorkflowCategory) 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 (*WorkflowCategory) GetUniqueName

func (o *WorkflowCategory) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowCategory) GetUniqueNameOk

func (o *WorkflowCategory) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) GetUpdatedBy

func (o *WorkflowCategory) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkflowCategory) GetUpdatedByOk

func (o *WorkflowCategory) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) GetUpdatedOn

func (o *WorkflowCategory) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field value if set, zero value otherwise.

func (*WorkflowCategory) GetUpdatedOnOk

func (o *WorkflowCategory) GetUpdatedOnOk() (*string, bool)

GetUpdatedOnOk returns a tuple with the UpdatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategory) HasBaseType

func (o *WorkflowCategory) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowCategory) HasCategoryType

func (o *WorkflowCategory) HasCategoryType() bool

HasCategoryType returns a boolean if a field has been set.

func (*WorkflowCategory) HasCreatedBy

func (o *WorkflowCategory) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowCategory) HasCreatedOn

func (o *WorkflowCategory) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*WorkflowCategory) HasDescription

func (o *WorkflowCategory) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowCategory) HasId

func (o *WorkflowCategory) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowCategory) HasName

func (o *WorkflowCategory) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowCategory) HasObjectType

func (o *WorkflowCategory) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*WorkflowCategory) HasOwner

func (o *WorkflowCategory) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*WorkflowCategory) HasSchemaId

func (o *WorkflowCategory) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowCategory) HasTitle

func (o *WorkflowCategory) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowCategory) HasType

func (o *WorkflowCategory) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowCategory) HasUniqueName

func (o *WorkflowCategory) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowCategory) HasUpdatedBy

func (o *WorkflowCategory) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkflowCategory) HasUpdatedOn

func (o *WorkflowCategory) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

func (WorkflowCategory) MarshalJSON

func (o WorkflowCategory) MarshalJSON() ([]byte, error)

func (*WorkflowCategory) SetBaseType

func (o *WorkflowCategory) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowCategory) SetCategoryType

func (o *WorkflowCategory) SetCategoryType(v string)

SetCategoryType gets a reference to the given string and assigns it to the CategoryType field.

func (*WorkflowCategory) SetCreatedBy

func (o *WorkflowCategory) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*WorkflowCategory) SetCreatedOn

func (o *WorkflowCategory) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*WorkflowCategory) SetDescription

func (o *WorkflowCategory) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowCategory) SetId

func (o *WorkflowCategory) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowCategory) SetName

func (o *WorkflowCategory) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowCategory) SetObjectType

func (o *WorkflowCategory) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*WorkflowCategory) SetOwner

func (o *WorkflowCategory) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*WorkflowCategory) SetSchemaId

func (o *WorkflowCategory) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowCategory) SetTitle

func (o *WorkflowCategory) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowCategory) SetType

func (o *WorkflowCategory) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowCategory) SetUniqueName

func (o *WorkflowCategory) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowCategory) SetUpdatedBy

func (o *WorkflowCategory) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*WorkflowCategory) SetUpdatedOn

func (o *WorkflowCategory) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

type WorkflowCategoryAllOf

type WorkflowCategoryAllOf struct {
	Id           *string `json:"id,omitempty"`
	SchemaId     *string `json:"schema_id,omitempty"`
	Name         *string `json:"name,omitempty"`
	Title        *string `json:"title,omitempty"`
	Type         *string `json:"type,omitempty"`
	BaseType     *string `json:"base_type,omitempty"`
	Description  *string `json:"description,omitempty"`
	CategoryType *string `json:"category_type,omitempty"`
	ObjectType   *string `json:"object_type,omitempty"`
}

WorkflowCategoryAllOf struct for WorkflowCategoryAllOf

func NewWorkflowCategoryAllOf

func NewWorkflowCategoryAllOf() *WorkflowCategoryAllOf

NewWorkflowCategoryAllOf instantiates a new WorkflowCategoryAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowCategoryAllOfWithDefaults

func NewWorkflowCategoryAllOfWithDefaults() *WorkflowCategoryAllOf

NewWorkflowCategoryAllOfWithDefaults instantiates a new WorkflowCategoryAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowCategoryAllOf) GetBaseType

func (o *WorkflowCategoryAllOf) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetBaseTypeOk

func (o *WorkflowCategoryAllOf) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategoryAllOf) GetCategoryType

func (o *WorkflowCategoryAllOf) GetCategoryType() string

GetCategoryType returns the CategoryType field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetCategoryTypeOk

func (o *WorkflowCategoryAllOf) GetCategoryTypeOk() (*string, bool)

GetCategoryTypeOk returns a tuple with the CategoryType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategoryAllOf) GetDescription

func (o *WorkflowCategoryAllOf) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetDescriptionOk

func (o *WorkflowCategoryAllOf) 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 (*WorkflowCategoryAllOf) GetId

func (o *WorkflowCategoryAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetIdOk

func (o *WorkflowCategoryAllOf) 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 (*WorkflowCategoryAllOf) GetName

func (o *WorkflowCategoryAllOf) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetNameOk

func (o *WorkflowCategoryAllOf) 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 (*WorkflowCategoryAllOf) GetObjectType

func (o *WorkflowCategoryAllOf) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetObjectTypeOk

func (o *WorkflowCategoryAllOf) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategoryAllOf) GetSchemaId

func (o *WorkflowCategoryAllOf) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetSchemaIdOk

func (o *WorkflowCategoryAllOf) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategoryAllOf) GetTitle

func (o *WorkflowCategoryAllOf) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetTitleOk

func (o *WorkflowCategoryAllOf) 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 (*WorkflowCategoryAllOf) GetType

func (o *WorkflowCategoryAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowCategoryAllOf) GetTypeOk

func (o *WorkflowCategoryAllOf) 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 (*WorkflowCategoryAllOf) HasBaseType

func (o *WorkflowCategoryAllOf) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowCategoryAllOf) HasCategoryType

func (o *WorkflowCategoryAllOf) HasCategoryType() bool

HasCategoryType returns a boolean if a field has been set.

func (*WorkflowCategoryAllOf) HasDescription

func (o *WorkflowCategoryAllOf) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowCategoryAllOf) HasId

func (o *WorkflowCategoryAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowCategoryAllOf) HasName

func (o *WorkflowCategoryAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowCategoryAllOf) HasObjectType

func (o *WorkflowCategoryAllOf) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*WorkflowCategoryAllOf) HasSchemaId

func (o *WorkflowCategoryAllOf) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowCategoryAllOf) HasTitle

func (o *WorkflowCategoryAllOf) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowCategoryAllOf) HasType

func (o *WorkflowCategoryAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (WorkflowCategoryAllOf) MarshalJSON

func (o WorkflowCategoryAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowCategoryAllOf) SetBaseType

func (o *WorkflowCategoryAllOf) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowCategoryAllOf) SetCategoryType

func (o *WorkflowCategoryAllOf) SetCategoryType(v string)

SetCategoryType gets a reference to the given string and assigns it to the CategoryType field.

func (*WorkflowCategoryAllOf) SetDescription

func (o *WorkflowCategoryAllOf) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowCategoryAllOf) SetId

func (o *WorkflowCategoryAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowCategoryAllOf) SetName

func (o *WorkflowCategoryAllOf) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowCategoryAllOf) SetObjectType

func (o *WorkflowCategoryAllOf) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*WorkflowCategoryAllOf) SetSchemaId

func (o *WorkflowCategoryAllOf) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowCategoryAllOf) SetTitle

func (o *WorkflowCategoryAllOf) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowCategoryAllOf) SetType

func (o *WorkflowCategoryAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type WorkflowCategoryCreate

type WorkflowCategoryCreate struct {
	Name        string  `json:"name"`
	Title       string  `json:"title"`
	Description string  `json:"description"`
	SchemaId    string  `json:"schema_id"`
	UniqueName  *string `json:"unique_name,omitempty"`
}

WorkflowCategoryCreate struct for WorkflowCategoryCreate

func NewWorkflowCategoryCreate

func NewWorkflowCategoryCreate(name string, title string, description string, schemaId string) *WorkflowCategoryCreate

NewWorkflowCategoryCreate instantiates a new WorkflowCategoryCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowCategoryCreateWithDefaults

func NewWorkflowCategoryCreateWithDefaults() *WorkflowCategoryCreate

NewWorkflowCategoryCreateWithDefaults instantiates a new WorkflowCategoryCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowCategoryCreate) GetDescription

func (o *WorkflowCategoryCreate) GetDescription() string

GetDescription returns the Description field value

func (*WorkflowCategoryCreate) GetDescriptionOk

func (o *WorkflowCategoryCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*WorkflowCategoryCreate) GetName

func (o *WorkflowCategoryCreate) GetName() string

GetName returns the Name field value

func (*WorkflowCategoryCreate) GetNameOk

func (o *WorkflowCategoryCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkflowCategoryCreate) GetSchemaId

func (o *WorkflowCategoryCreate) GetSchemaId() string

GetSchemaId returns the SchemaId field value

func (*WorkflowCategoryCreate) GetSchemaIdOk

func (o *WorkflowCategoryCreate) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value and a boolean to check if the value has been set.

func (*WorkflowCategoryCreate) GetTitle

func (o *WorkflowCategoryCreate) GetTitle() string

GetTitle returns the Title field value

func (*WorkflowCategoryCreate) GetTitleOk

func (o *WorkflowCategoryCreate) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*WorkflowCategoryCreate) GetUniqueName

func (o *WorkflowCategoryCreate) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowCategoryCreate) GetUniqueNameOk

func (o *WorkflowCategoryCreate) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategoryCreate) HasUniqueName

func (o *WorkflowCategoryCreate) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (WorkflowCategoryCreate) MarshalJSON

func (o WorkflowCategoryCreate) MarshalJSON() ([]byte, error)

func (*WorkflowCategoryCreate) SetDescription

func (o *WorkflowCategoryCreate) SetDescription(v string)

SetDescription sets field value

func (*WorkflowCategoryCreate) SetName

func (o *WorkflowCategoryCreate) SetName(v string)

SetName sets field value

func (*WorkflowCategoryCreate) SetSchemaId

func (o *WorkflowCategoryCreate) SetSchemaId(v string)

SetSchemaId sets field value

func (*WorkflowCategoryCreate) SetTitle

func (o *WorkflowCategoryCreate) SetTitle(v string)

SetTitle sets field value

func (*WorkflowCategoryCreate) SetUniqueName

func (o *WorkflowCategoryCreate) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

type WorkflowCategoryUpdate

type WorkflowCategoryUpdate struct {
	Name        string  `json:"name"`
	Title       string  `json:"title"`
	Description string  `json:"description"`
	SchemaId    string  `json:"schema_id"`
	UniqueName  *string `json:"unique_name,omitempty"`
}

WorkflowCategoryUpdate struct for WorkflowCategoryUpdate

func NewWorkflowCategoryUpdate

func NewWorkflowCategoryUpdate(name string, title string, description string, schemaId string) *WorkflowCategoryUpdate

NewWorkflowCategoryUpdate instantiates a new WorkflowCategoryUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowCategoryUpdateWithDefaults

func NewWorkflowCategoryUpdateWithDefaults() *WorkflowCategoryUpdate

NewWorkflowCategoryUpdateWithDefaults instantiates a new WorkflowCategoryUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowCategoryUpdate) GetDescription

func (o *WorkflowCategoryUpdate) GetDescription() string

GetDescription returns the Description field value

func (*WorkflowCategoryUpdate) GetDescriptionOk

func (o *WorkflowCategoryUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*WorkflowCategoryUpdate) GetName

func (o *WorkflowCategoryUpdate) GetName() string

GetName returns the Name field value

func (*WorkflowCategoryUpdate) GetNameOk

func (o *WorkflowCategoryUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkflowCategoryUpdate) GetSchemaId

func (o *WorkflowCategoryUpdate) GetSchemaId() string

GetSchemaId returns the SchemaId field value

func (*WorkflowCategoryUpdate) GetSchemaIdOk

func (o *WorkflowCategoryUpdate) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value and a boolean to check if the value has been set.

func (*WorkflowCategoryUpdate) GetTitle

func (o *WorkflowCategoryUpdate) GetTitle() string

GetTitle returns the Title field value

func (*WorkflowCategoryUpdate) GetTitleOk

func (o *WorkflowCategoryUpdate) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*WorkflowCategoryUpdate) GetUniqueName

func (o *WorkflowCategoryUpdate) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowCategoryUpdate) GetUniqueNameOk

func (o *WorkflowCategoryUpdate) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowCategoryUpdate) HasUniqueName

func (o *WorkflowCategoryUpdate) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (WorkflowCategoryUpdate) MarshalJSON

func (o WorkflowCategoryUpdate) MarshalJSON() ([]byte, error)

func (*WorkflowCategoryUpdate) SetDescription

func (o *WorkflowCategoryUpdate) SetDescription(v string)

SetDescription sets field value

func (*WorkflowCategoryUpdate) SetName

func (o *WorkflowCategoryUpdate) SetName(v string)

SetName sets field value

func (*WorkflowCategoryUpdate) SetSchemaId

func (o *WorkflowCategoryUpdate) SetSchemaId(v string)

SetSchemaId sets field value

func (*WorkflowCategoryUpdate) SetTitle

func (o *WorkflowCategoryUpdate) SetTitle(v string)

SetTitle sets field value

func (*WorkflowCategoryUpdate) SetUniqueName

func (o *WorkflowCategoryUpdate) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

type WorkflowDefAccessMeta

type WorkflowDefAccessMeta struct {
	IsIntegration *bool `json:"is_integration,omitempty"`
	IsInternal    *bool `json:"is_internal,omitempty"`
}

WorkflowDefAccessMeta struct for WorkflowDefAccessMeta

func NewWorkflowDefAccessMeta

func NewWorkflowDefAccessMeta() *WorkflowDefAccessMeta

NewWorkflowDefAccessMeta instantiates a new WorkflowDefAccessMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowDefAccessMetaWithDefaults

func NewWorkflowDefAccessMetaWithDefaults() *WorkflowDefAccessMeta

NewWorkflowDefAccessMetaWithDefaults instantiates a new WorkflowDefAccessMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowDefAccessMeta) GetIsIntegration

func (o *WorkflowDefAccessMeta) GetIsIntegration() bool

GetIsIntegration returns the IsIntegration field value if set, zero value otherwise.

func (*WorkflowDefAccessMeta) GetIsIntegrationOk

func (o *WorkflowDefAccessMeta) GetIsIntegrationOk() (*bool, bool)

GetIsIntegrationOk returns a tuple with the IsIntegration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowDefAccessMeta) GetIsInternal

func (o *WorkflowDefAccessMeta) GetIsInternal() bool

GetIsInternal returns the IsInternal field value if set, zero value otherwise.

func (*WorkflowDefAccessMeta) GetIsInternalOk

func (o *WorkflowDefAccessMeta) GetIsInternalOk() (*bool, bool)

GetIsInternalOk returns a tuple with the IsInternal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowDefAccessMeta) HasIsIntegration

func (o *WorkflowDefAccessMeta) HasIsIntegration() bool

HasIsIntegration returns a boolean if a field has been set.

func (*WorkflowDefAccessMeta) HasIsInternal

func (o *WorkflowDefAccessMeta) HasIsInternal() bool

HasIsInternal returns a boolean if a field has been set.

func (WorkflowDefAccessMeta) MarshalJSON

func (o WorkflowDefAccessMeta) MarshalJSON() ([]byte, error)

func (*WorkflowDefAccessMeta) SetIsIntegration

func (o *WorkflowDefAccessMeta) SetIsIntegration(v bool)

SetIsIntegration gets a reference to the given bool and assigns it to the IsIntegration field.

func (*WorkflowDefAccessMeta) SetIsInternal

func (o *WorkflowDefAccessMeta) SetIsInternal(v bool)

SetIsInternal gets a reference to the given bool and assigns it to the IsInternal field.

type WorkflowEvent

type WorkflowEvent struct {
	Id         *string                            `json:"id,omitempty"`
	Name       *string                            `json:"name,omitempty"`
	Title      *string                            `json:"title,omitempty"`
	Type       *string                            `json:"type,omitempty"`
	BaseType   *string                            `json:"base_type,omitempty"`
	SchemaId   *string                            `json:"schema_id,omitempty"`
	Properties *map[string]map[string]interface{} `json:"properties,omitempty"`
	CreatedOn  *string                            `json:"created_on,omitempty"`
	CreatedBy  *string                            `json:"created_by,omitempty"`
	UpdatedOn  *string                            `json:"updated_on,omitempty"`
	UpdatedBy  *string                            `json:"updated_by,omitempty"`
	Owner      *string                            `json:"owner,omitempty"`
	UniqueName *string                            `json:"unique_name,omitempty"`
}

WorkflowEvent struct for WorkflowEvent

func NewWorkflowEvent

func NewWorkflowEvent() *WorkflowEvent

NewWorkflowEvent instantiates a new WorkflowEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowEventWithDefaults

func NewWorkflowEventWithDefaults() *WorkflowEvent

NewWorkflowEventWithDefaults instantiates a new WorkflowEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowEvent) GetBaseType

func (o *WorkflowEvent) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowEvent) GetBaseTypeOk

func (o *WorkflowEvent) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEvent) GetCreatedBy

func (o *WorkflowEvent) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowEvent) GetCreatedByOk

func (o *WorkflowEvent) 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 (*WorkflowEvent) GetCreatedOn

func (o *WorkflowEvent) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*WorkflowEvent) GetCreatedOnOk

func (o *WorkflowEvent) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEvent) GetId

func (o *WorkflowEvent) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowEvent) GetIdOk

func (o *WorkflowEvent) 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 (*WorkflowEvent) GetName

func (o *WorkflowEvent) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowEvent) GetNameOk

func (o *WorkflowEvent) 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 (*WorkflowEvent) GetOwner

func (o *WorkflowEvent) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*WorkflowEvent) GetOwnerOk

func (o *WorkflowEvent) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEvent) GetProperties

func (o *WorkflowEvent) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowEvent) GetPropertiesOk

func (o *WorkflowEvent) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEvent) GetSchemaId

func (o *WorkflowEvent) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowEvent) GetSchemaIdOk

func (o *WorkflowEvent) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEvent) GetTitle

func (o *WorkflowEvent) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowEvent) GetTitleOk

func (o *WorkflowEvent) 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 (*WorkflowEvent) GetType

func (o *WorkflowEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowEvent) GetTypeOk

func (o *WorkflowEvent) 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 (*WorkflowEvent) GetUniqueName

func (o *WorkflowEvent) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowEvent) GetUniqueNameOk

func (o *WorkflowEvent) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEvent) GetUpdatedBy

func (o *WorkflowEvent) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkflowEvent) GetUpdatedByOk

func (o *WorkflowEvent) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEvent) GetUpdatedOn

func (o *WorkflowEvent) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field value if set, zero value otherwise.

func (*WorkflowEvent) GetUpdatedOnOk

func (o *WorkflowEvent) GetUpdatedOnOk() (*string, bool)

GetUpdatedOnOk returns a tuple with the UpdatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEvent) HasBaseType

func (o *WorkflowEvent) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowEvent) HasCreatedBy

func (o *WorkflowEvent) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowEvent) HasCreatedOn

func (o *WorkflowEvent) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*WorkflowEvent) HasId

func (o *WorkflowEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowEvent) HasName

func (o *WorkflowEvent) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowEvent) HasOwner

func (o *WorkflowEvent) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*WorkflowEvent) HasProperties

func (o *WorkflowEvent) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowEvent) HasSchemaId

func (o *WorkflowEvent) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowEvent) HasTitle

func (o *WorkflowEvent) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowEvent) HasType

func (o *WorkflowEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowEvent) HasUniqueName

func (o *WorkflowEvent) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowEvent) HasUpdatedBy

func (o *WorkflowEvent) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkflowEvent) HasUpdatedOn

func (o *WorkflowEvent) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

func (WorkflowEvent) MarshalJSON

func (o WorkflowEvent) MarshalJSON() ([]byte, error)

func (*WorkflowEvent) SetBaseType

func (o *WorkflowEvent) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowEvent) SetCreatedBy

func (o *WorkflowEvent) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*WorkflowEvent) SetCreatedOn

func (o *WorkflowEvent) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*WorkflowEvent) SetId

func (o *WorkflowEvent) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowEvent) SetName

func (o *WorkflowEvent) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowEvent) SetOwner

func (o *WorkflowEvent) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*WorkflowEvent) SetProperties

func (o *WorkflowEvent) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowEvent) SetSchemaId

func (o *WorkflowEvent) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowEvent) SetTitle

func (o *WorkflowEvent) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowEvent) SetType

func (o *WorkflowEvent) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowEvent) SetUniqueName

func (o *WorkflowEvent) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowEvent) SetUpdatedBy

func (o *WorkflowEvent) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*WorkflowEvent) SetUpdatedOn

func (o *WorkflowEvent) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

type WorkflowEventAllOf

type WorkflowEventAllOf struct {
	Id         *string                            `json:"id,omitempty"`
	Name       *string                            `json:"name,omitempty"`
	Title      *string                            `json:"title,omitempty"`
	Type       *string                            `json:"type,omitempty"`
	BaseType   *string                            `json:"base_type,omitempty"`
	SchemaId   *string                            `json:"schema_id,omitempty"`
	Properties *map[string]map[string]interface{} `json:"properties,omitempty"`
}

WorkflowEventAllOf struct for WorkflowEventAllOf

func NewWorkflowEventAllOf

func NewWorkflowEventAllOf() *WorkflowEventAllOf

NewWorkflowEventAllOf instantiates a new WorkflowEventAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowEventAllOfWithDefaults

func NewWorkflowEventAllOfWithDefaults() *WorkflowEventAllOf

NewWorkflowEventAllOfWithDefaults instantiates a new WorkflowEventAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowEventAllOf) GetBaseType

func (o *WorkflowEventAllOf) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowEventAllOf) GetBaseTypeOk

func (o *WorkflowEventAllOf) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEventAllOf) GetId

func (o *WorkflowEventAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowEventAllOf) GetIdOk

func (o *WorkflowEventAllOf) 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 (*WorkflowEventAllOf) GetName

func (o *WorkflowEventAllOf) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowEventAllOf) GetNameOk

func (o *WorkflowEventAllOf) 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 (*WorkflowEventAllOf) GetProperties

func (o *WorkflowEventAllOf) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowEventAllOf) GetPropertiesOk

func (o *WorkflowEventAllOf) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEventAllOf) GetSchemaId

func (o *WorkflowEventAllOf) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowEventAllOf) GetSchemaIdOk

func (o *WorkflowEventAllOf) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowEventAllOf) GetTitle

func (o *WorkflowEventAllOf) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowEventAllOf) GetTitleOk

func (o *WorkflowEventAllOf) 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 (*WorkflowEventAllOf) GetType

func (o *WorkflowEventAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowEventAllOf) GetTypeOk

func (o *WorkflowEventAllOf) 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 (*WorkflowEventAllOf) HasBaseType

func (o *WorkflowEventAllOf) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowEventAllOf) HasId

func (o *WorkflowEventAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowEventAllOf) HasName

func (o *WorkflowEventAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowEventAllOf) HasProperties

func (o *WorkflowEventAllOf) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowEventAllOf) HasSchemaId

func (o *WorkflowEventAllOf) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowEventAllOf) HasTitle

func (o *WorkflowEventAllOf) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowEventAllOf) HasType

func (o *WorkflowEventAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (WorkflowEventAllOf) MarshalJSON

func (o WorkflowEventAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowEventAllOf) SetBaseType

func (o *WorkflowEventAllOf) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowEventAllOf) SetId

func (o *WorkflowEventAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowEventAllOf) SetName

func (o *WorkflowEventAllOf) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowEventAllOf) SetProperties

func (o *WorkflowEventAllOf) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowEventAllOf) SetSchemaId

func (o *WorkflowEventAllOf) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowEventAllOf) SetTitle

func (o *WorkflowEventAllOf) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowEventAllOf) SetType

func (o *WorkflowEventAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type WorkflowEventCreate

type WorkflowEventCreate struct {
	Title       string                            `json:"title"`
	Description *string                           `json:"description,omitempty"`
	TargetId    string                            `json:"target_id"`
	SchemaId    string                            `json:"schema_id"`
	Properties  map[string]map[string]interface{} `json:"properties"`
}

WorkflowEventCreate struct for WorkflowEventCreate

func NewWorkflowEventCreate

func NewWorkflowEventCreate(title string, targetId string, schemaId string, properties map[string]map[string]interface{}) *WorkflowEventCreate

NewWorkflowEventCreate instantiates a new WorkflowEventCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowEventCreateWithDefaults

func NewWorkflowEventCreateWithDefaults() *WorkflowEventCreate

NewWorkflowEventCreateWithDefaults instantiates a new WorkflowEventCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowEventCreate) GetDescription

func (o *WorkflowEventCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowEventCreate) GetDescriptionOk

func (o *WorkflowEventCreate) 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 (*WorkflowEventCreate) GetProperties

func (o *WorkflowEventCreate) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value

func (*WorkflowEventCreate) GetPropertiesOk

func (o *WorkflowEventCreate) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value and a boolean to check if the value has been set.

func (*WorkflowEventCreate) GetSchemaId

func (o *WorkflowEventCreate) GetSchemaId() string

GetSchemaId returns the SchemaId field value

func (*WorkflowEventCreate) GetSchemaIdOk

func (o *WorkflowEventCreate) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value and a boolean to check if the value has been set.

func (*WorkflowEventCreate) GetTargetId

func (o *WorkflowEventCreate) GetTargetId() string

GetTargetId returns the TargetId field value

func (*WorkflowEventCreate) GetTargetIdOk

func (o *WorkflowEventCreate) GetTargetIdOk() (*string, bool)

GetTargetIdOk returns a tuple with the TargetId field value and a boolean to check if the value has been set.

func (*WorkflowEventCreate) GetTitle

func (o *WorkflowEventCreate) GetTitle() string

GetTitle returns the Title field value

func (*WorkflowEventCreate) GetTitleOk

func (o *WorkflowEventCreate) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*WorkflowEventCreate) HasDescription

func (o *WorkflowEventCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (WorkflowEventCreate) MarshalJSON

func (o WorkflowEventCreate) MarshalJSON() ([]byte, error)

func (*WorkflowEventCreate) SetDescription

func (o *WorkflowEventCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowEventCreate) SetProperties

func (o *WorkflowEventCreate) SetProperties(v map[string]map[string]interface{})

SetProperties sets field value

func (*WorkflowEventCreate) SetSchemaId

func (o *WorkflowEventCreate) SetSchemaId(v string)

SetSchemaId sets field value

func (*WorkflowEventCreate) SetTargetId

func (o *WorkflowEventCreate) SetTargetId(v string)

SetTargetId sets field value

func (*WorkflowEventCreate) SetTitle

func (o *WorkflowEventCreate) SetTitle(v string)

SetTitle sets field value

type WorkflowEventUpdate

type WorkflowEventUpdate struct {
	Title       string                            `json:"title"`
	Description *string                           `json:"description,omitempty"`
	TargetId    string                            `json:"target_id"`
	SchemaId    string                            `json:"schema_id"`
	Properties  map[string]map[string]interface{} `json:"properties"`
}

WorkflowEventUpdate struct for WorkflowEventUpdate

func NewWorkflowEventUpdate

func NewWorkflowEventUpdate(title string, targetId string, schemaId string, properties map[string]map[string]interface{}) *WorkflowEventUpdate

NewWorkflowEventUpdate instantiates a new WorkflowEventUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowEventUpdateWithDefaults

func NewWorkflowEventUpdateWithDefaults() *WorkflowEventUpdate

NewWorkflowEventUpdateWithDefaults instantiates a new WorkflowEventUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowEventUpdate) GetDescription

func (o *WorkflowEventUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowEventUpdate) GetDescriptionOk

func (o *WorkflowEventUpdate) 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 (*WorkflowEventUpdate) GetProperties

func (o *WorkflowEventUpdate) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value

func (*WorkflowEventUpdate) GetPropertiesOk

func (o *WorkflowEventUpdate) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value and a boolean to check if the value has been set.

func (*WorkflowEventUpdate) GetSchemaId

func (o *WorkflowEventUpdate) GetSchemaId() string

GetSchemaId returns the SchemaId field value

func (*WorkflowEventUpdate) GetSchemaIdOk

func (o *WorkflowEventUpdate) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value and a boolean to check if the value has been set.

func (*WorkflowEventUpdate) GetTargetId

func (o *WorkflowEventUpdate) GetTargetId() string

GetTargetId returns the TargetId field value

func (*WorkflowEventUpdate) GetTargetIdOk

func (o *WorkflowEventUpdate) GetTargetIdOk() (*string, bool)

GetTargetIdOk returns a tuple with the TargetId field value and a boolean to check if the value has been set.

func (*WorkflowEventUpdate) GetTitle

func (o *WorkflowEventUpdate) GetTitle() string

GetTitle returns the Title field value

func (*WorkflowEventUpdate) GetTitleOk

func (o *WorkflowEventUpdate) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*WorkflowEventUpdate) HasDescription

func (o *WorkflowEventUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (WorkflowEventUpdate) MarshalJSON

func (o WorkflowEventUpdate) MarshalJSON() ([]byte, error)

func (*WorkflowEventUpdate) SetDescription

func (o *WorkflowEventUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowEventUpdate) SetProperties

func (o *WorkflowEventUpdate) SetProperties(v map[string]map[string]interface{})

SetProperties sets field value

func (*WorkflowEventUpdate) SetSchemaId

func (o *WorkflowEventUpdate) SetSchemaId(v string)

SetSchemaId sets field value

func (*WorkflowEventUpdate) SetTargetId

func (o *WorkflowEventUpdate) SetTargetId(v string)

SetTargetId sets field value

func (*WorkflowEventUpdate) SetTitle

func (o *WorkflowEventUpdate) SetTitle(v string)

SetTitle sets field value

type WorkflowEventsApiService

type WorkflowEventsApiService service

WorkflowEventsApiService WorkflowEventsApi service

func (*WorkflowEventsApiService) CreateWorkflowEvent

* CreateWorkflowEvent Creates a new workflow event. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateWorkflowEventRequest

func (*WorkflowEventsApiService) CreateWorkflowEventExecute

* Execute executes the request * @return WorkflowEvent

func (*WorkflowEventsApiService) DeleteWorkflowEvent

* DeleteWorkflowEvent Deletes a workflow event. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteWorkflowEventRequest

func (*WorkflowEventsApiService) DeleteWorkflowEventExecute

func (a *WorkflowEventsApiService) DeleteWorkflowEventExecute(r ApiDeleteWorkflowEventRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*WorkflowEventsApiService) GetWorkflowEvent

* GetWorkflowEvent Returns a workflow event. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetWorkflowEventRequest

func (*WorkflowEventsApiService) GetWorkflowEventExecute

* Execute executes the request * @return WorkflowEvent

func (*WorkflowEventsApiService) GetWorkflowEventsList

* GetWorkflowEventsList Returns a list of workflow events. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetWorkflowEventsListRequest

func (*WorkflowEventsApiService) GetWorkflowEventsListExecute

* Execute executes the request * @return []WorkflowEvent

func (*WorkflowEventsApiService) UpdateWorkflowEvent

* UpdateWorkflowEvent Updates a workflow event. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateWorkflowEventRequest

func (*WorkflowEventsApiService) UpdateWorkflowEventExecute

* Execute executes the request * @return WorkflowEvent

type WorkflowFooter

type WorkflowFooter struct {
	CreatedOn  *string `json:"created_on,omitempty"`
	CreatedBy  *string `json:"created_by,omitempty"`
	UpdatedOn  *string `json:"updated_on,omitempty"`
	UpdatedBy  *string `json:"updated_by,omitempty"`
	Owner      *string `json:"owner,omitempty"`
	UniqueName *string `json:"unique_name,omitempty"`
}

WorkflowFooter struct for WorkflowFooter

func NewWorkflowFooter

func NewWorkflowFooter() *WorkflowFooter

NewWorkflowFooter instantiates a new WorkflowFooter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowFooterWithDefaults

func NewWorkflowFooterWithDefaults() *WorkflowFooter

NewWorkflowFooterWithDefaults instantiates a new WorkflowFooter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowFooter) GetCreatedBy

func (o *WorkflowFooter) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowFooter) GetCreatedByOk

func (o *WorkflowFooter) 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 (*WorkflowFooter) GetCreatedOn

func (o *WorkflowFooter) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*WorkflowFooter) GetCreatedOnOk

func (o *WorkflowFooter) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowFooter) GetOwner

func (o *WorkflowFooter) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*WorkflowFooter) GetOwnerOk

func (o *WorkflowFooter) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowFooter) GetUniqueName

func (o *WorkflowFooter) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowFooter) GetUniqueNameOk

func (o *WorkflowFooter) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowFooter) GetUpdatedBy

func (o *WorkflowFooter) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkflowFooter) GetUpdatedByOk

func (o *WorkflowFooter) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowFooter) GetUpdatedOn

func (o *WorkflowFooter) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field value if set, zero value otherwise.

func (*WorkflowFooter) GetUpdatedOnOk

func (o *WorkflowFooter) GetUpdatedOnOk() (*string, bool)

GetUpdatedOnOk returns a tuple with the UpdatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowFooter) HasCreatedBy

func (o *WorkflowFooter) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowFooter) HasCreatedOn

func (o *WorkflowFooter) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*WorkflowFooter) HasOwner

func (o *WorkflowFooter) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*WorkflowFooter) HasUniqueName

func (o *WorkflowFooter) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowFooter) HasUpdatedBy

func (o *WorkflowFooter) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkflowFooter) HasUpdatedOn

func (o *WorkflowFooter) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

func (WorkflowFooter) MarshalJSON

func (o WorkflowFooter) MarshalJSON() ([]byte, error)

func (*WorkflowFooter) SetCreatedBy

func (o *WorkflowFooter) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*WorkflowFooter) SetCreatedOn

func (o *WorkflowFooter) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*WorkflowFooter) SetOwner

func (o *WorkflowFooter) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*WorkflowFooter) SetUniqueName

func (o *WorkflowFooter) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowFooter) SetUpdatedBy

func (o *WorkflowFooter) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*WorkflowFooter) SetUpdatedOn

func (o *WorkflowFooter) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

type WorkflowInstance

type WorkflowInstance struct {
	Id           *string                            `json:"id,omitempty"`
	DefinitionId *string                            `json:"definition_id,omitempty"`
	Name         *string                            `json:"name,omitempty"`
	SchemaId     *string                            `json:"schema_id,omitempty"`
	Version      *string                            `json:"version,omitempty"`
	Type         *string                            `json:"type,omitempty"`
	BaseType     *string                            `json:"base_type,omitempty"`
	Properties   *map[string]map[string]interface{} `json:"properties,omitempty"`
	Actions      *[]WorkflowAction                  `json:"actions,omitempty"`
	Variables    *[]WorkflowVariable                `json:"variables,omitempty"`
	Status       *map[string]map[string]interface{} `json:"status,omitempty"`
	StartedOn    *string                            `json:"started_on,omitempty"`
	EndedOn      *string                            `json:"ended_on,omitempty"`
	CreatedOn    *string                            `json:"created_on,omitempty"`
	CreatedBy    *string                            `json:"created_by,omitempty"`
	UpdatedOn    *string                            `json:"updated_on,omitempty"`
	UpdatedBy    *string                            `json:"updated_by,omitempty"`
	Owner        *string                            `json:"owner,omitempty"`
	UniqueName   *string                            `json:"unique_name,omitempty"`
}

WorkflowInstance struct for WorkflowInstance

func NewWorkflowInstance

func NewWorkflowInstance() *WorkflowInstance

NewWorkflowInstance instantiates a new WorkflowInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowInstanceWithDefaults

func NewWorkflowInstanceWithDefaults() *WorkflowInstance

NewWorkflowInstanceWithDefaults instantiates a new WorkflowInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowInstance) GetActions

func (o *WorkflowInstance) GetActions() []WorkflowAction

GetActions returns the Actions field value if set, zero value otherwise.

func (*WorkflowInstance) GetActionsOk

func (o *WorkflowInstance) GetActionsOk() (*[]WorkflowAction, bool)

GetActionsOk returns a tuple with the Actions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetBaseType

func (o *WorkflowInstance) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowInstance) GetBaseTypeOk

func (o *WorkflowInstance) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetCreatedBy

func (o *WorkflowInstance) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowInstance) GetCreatedByOk

func (o *WorkflowInstance) 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 (*WorkflowInstance) GetCreatedOn

func (o *WorkflowInstance) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*WorkflowInstance) GetCreatedOnOk

func (o *WorkflowInstance) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetDefinitionId

func (o *WorkflowInstance) GetDefinitionId() string

GetDefinitionId returns the DefinitionId field value if set, zero value otherwise.

func (*WorkflowInstance) GetDefinitionIdOk

func (o *WorkflowInstance) GetDefinitionIdOk() (*string, bool)

GetDefinitionIdOk returns a tuple with the DefinitionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetEndedOn

func (o *WorkflowInstance) GetEndedOn() string

GetEndedOn returns the EndedOn field value if set, zero value otherwise.

func (*WorkflowInstance) GetEndedOnOk

func (o *WorkflowInstance) GetEndedOnOk() (*string, bool)

GetEndedOnOk returns a tuple with the EndedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetId

func (o *WorkflowInstance) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowInstance) GetIdOk

func (o *WorkflowInstance) 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 (*WorkflowInstance) GetName

func (o *WorkflowInstance) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowInstance) GetNameOk

func (o *WorkflowInstance) 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 (*WorkflowInstance) GetOwner

func (o *WorkflowInstance) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*WorkflowInstance) GetOwnerOk

func (o *WorkflowInstance) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetProperties

func (o *WorkflowInstance) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowInstance) GetPropertiesOk

func (o *WorkflowInstance) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetSchemaId

func (o *WorkflowInstance) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowInstance) GetSchemaIdOk

func (o *WorkflowInstance) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetStartedOn

func (o *WorkflowInstance) GetStartedOn() string

GetStartedOn returns the StartedOn field value if set, zero value otherwise.

func (*WorkflowInstance) GetStartedOnOk

func (o *WorkflowInstance) GetStartedOnOk() (*string, bool)

GetStartedOnOk returns a tuple with the StartedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetStatus

func (o *WorkflowInstance) GetStatus() map[string]map[string]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowInstance) GetStatusOk

func (o *WorkflowInstance) GetStatusOk() (*map[string]map[string]interface{}, 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 (*WorkflowInstance) GetType

func (o *WorkflowInstance) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowInstance) GetTypeOk

func (o *WorkflowInstance) 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 (*WorkflowInstance) GetUniqueName

func (o *WorkflowInstance) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowInstance) GetUniqueNameOk

func (o *WorkflowInstance) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetUpdatedBy

func (o *WorkflowInstance) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkflowInstance) GetUpdatedByOk

func (o *WorkflowInstance) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetUpdatedOn

func (o *WorkflowInstance) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field value if set, zero value otherwise.

func (*WorkflowInstance) GetUpdatedOnOk

func (o *WorkflowInstance) GetUpdatedOnOk() (*string, bool)

GetUpdatedOnOk returns a tuple with the UpdatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetVariables

func (o *WorkflowInstance) GetVariables() []WorkflowVariable

GetVariables returns the Variables field value if set, zero value otherwise.

func (*WorkflowInstance) GetVariablesOk

func (o *WorkflowInstance) GetVariablesOk() (*[]WorkflowVariable, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) GetVersion

func (o *WorkflowInstance) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*WorkflowInstance) GetVersionOk

func (o *WorkflowInstance) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstance) HasActions

func (o *WorkflowInstance) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*WorkflowInstance) HasBaseType

func (o *WorkflowInstance) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowInstance) HasCreatedBy

func (o *WorkflowInstance) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowInstance) HasCreatedOn

func (o *WorkflowInstance) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*WorkflowInstance) HasDefinitionId

func (o *WorkflowInstance) HasDefinitionId() bool

HasDefinitionId returns a boolean if a field has been set.

func (*WorkflowInstance) HasEndedOn

func (o *WorkflowInstance) HasEndedOn() bool

HasEndedOn returns a boolean if a field has been set.

func (*WorkflowInstance) HasId

func (o *WorkflowInstance) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowInstance) HasName

func (o *WorkflowInstance) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowInstance) HasOwner

func (o *WorkflowInstance) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*WorkflowInstance) HasProperties

func (o *WorkflowInstance) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowInstance) HasSchemaId

func (o *WorkflowInstance) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowInstance) HasStartedOn

func (o *WorkflowInstance) HasStartedOn() bool

HasStartedOn returns a boolean if a field has been set.

func (*WorkflowInstance) HasStatus

func (o *WorkflowInstance) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*WorkflowInstance) HasType

func (o *WorkflowInstance) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowInstance) HasUniqueName

func (o *WorkflowInstance) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowInstance) HasUpdatedBy

func (o *WorkflowInstance) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkflowInstance) HasUpdatedOn

func (o *WorkflowInstance) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

func (*WorkflowInstance) HasVariables

func (o *WorkflowInstance) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (*WorkflowInstance) HasVersion

func (o *WorkflowInstance) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (WorkflowInstance) MarshalJSON

func (o WorkflowInstance) MarshalJSON() ([]byte, error)

func (*WorkflowInstance) SetActions

func (o *WorkflowInstance) SetActions(v []WorkflowAction)

SetActions gets a reference to the given []WorkflowAction and assigns it to the Actions field.

func (*WorkflowInstance) SetBaseType

func (o *WorkflowInstance) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowInstance) SetCreatedBy

func (o *WorkflowInstance) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*WorkflowInstance) SetCreatedOn

func (o *WorkflowInstance) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*WorkflowInstance) SetDefinitionId

func (o *WorkflowInstance) SetDefinitionId(v string)

SetDefinitionId gets a reference to the given string and assigns it to the DefinitionId field.

func (*WorkflowInstance) SetEndedOn

func (o *WorkflowInstance) SetEndedOn(v string)

SetEndedOn gets a reference to the given string and assigns it to the EndedOn field.

func (*WorkflowInstance) SetId

func (o *WorkflowInstance) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowInstance) SetName

func (o *WorkflowInstance) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowInstance) SetOwner

func (o *WorkflowInstance) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*WorkflowInstance) SetProperties

func (o *WorkflowInstance) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowInstance) SetSchemaId

func (o *WorkflowInstance) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowInstance) SetStartedOn

func (o *WorkflowInstance) SetStartedOn(v string)

SetStartedOn gets a reference to the given string and assigns it to the StartedOn field.

func (*WorkflowInstance) SetStatus

func (o *WorkflowInstance) SetStatus(v map[string]map[string]interface{})

SetStatus gets a reference to the given map[string]map[string]interface{} and assigns it to the Status field.

func (*WorkflowInstance) SetType

func (o *WorkflowInstance) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowInstance) SetUniqueName

func (o *WorkflowInstance) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowInstance) SetUpdatedBy

func (o *WorkflowInstance) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*WorkflowInstance) SetUpdatedOn

func (o *WorkflowInstance) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

func (*WorkflowInstance) SetVariables

func (o *WorkflowInstance) SetVariables(v []WorkflowVariable)

SetVariables gets a reference to the given []WorkflowVariable and assigns it to the Variables field.

func (*WorkflowInstance) SetVersion

func (o *WorkflowInstance) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type WorkflowInstanceAllOf

type WorkflowInstanceAllOf struct {
	Id           *string                            `json:"id,omitempty"`
	DefinitionId *string                            `json:"definition_id,omitempty"`
	Name         *string                            `json:"name,omitempty"`
	SchemaId     *string                            `json:"schema_id,omitempty"`
	Version      *string                            `json:"version,omitempty"`
	Type         *string                            `json:"type,omitempty"`
	BaseType     *string                            `json:"base_type,omitempty"`
	Properties   *map[string]map[string]interface{} `json:"properties,omitempty"`
	Actions      *[]WorkflowAction                  `json:"actions,omitempty"`
	Variables    *[]WorkflowVariable                `json:"variables,omitempty"`
	Status       *map[string]map[string]interface{} `json:"status,omitempty"`
	StartedOn    *string                            `json:"started_on,omitempty"`
	EndedOn      *string                            `json:"ended_on,omitempty"`
}

WorkflowInstanceAllOf struct for WorkflowInstanceAllOf

func NewWorkflowInstanceAllOf

func NewWorkflowInstanceAllOf() *WorkflowInstanceAllOf

NewWorkflowInstanceAllOf instantiates a new WorkflowInstanceAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowInstanceAllOfWithDefaults

func NewWorkflowInstanceAllOfWithDefaults() *WorkflowInstanceAllOf

NewWorkflowInstanceAllOfWithDefaults instantiates a new WorkflowInstanceAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowInstanceAllOf) GetActions

func (o *WorkflowInstanceAllOf) GetActions() []WorkflowAction

GetActions returns the Actions field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetActionsOk

func (o *WorkflowInstanceAllOf) GetActionsOk() (*[]WorkflowAction, bool)

GetActionsOk returns a tuple with the Actions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) GetBaseType

func (o *WorkflowInstanceAllOf) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetBaseTypeOk

func (o *WorkflowInstanceAllOf) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) GetDefinitionId

func (o *WorkflowInstanceAllOf) GetDefinitionId() string

GetDefinitionId returns the DefinitionId field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetDefinitionIdOk

func (o *WorkflowInstanceAllOf) GetDefinitionIdOk() (*string, bool)

GetDefinitionIdOk returns a tuple with the DefinitionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) GetEndedOn

func (o *WorkflowInstanceAllOf) GetEndedOn() string

GetEndedOn returns the EndedOn field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetEndedOnOk

func (o *WorkflowInstanceAllOf) GetEndedOnOk() (*string, bool)

GetEndedOnOk returns a tuple with the EndedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) GetId

func (o *WorkflowInstanceAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetIdOk

func (o *WorkflowInstanceAllOf) 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 (*WorkflowInstanceAllOf) GetName

func (o *WorkflowInstanceAllOf) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetNameOk

func (o *WorkflowInstanceAllOf) 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 (*WorkflowInstanceAllOf) GetProperties

func (o *WorkflowInstanceAllOf) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetPropertiesOk

func (o *WorkflowInstanceAllOf) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) GetSchemaId

func (o *WorkflowInstanceAllOf) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetSchemaIdOk

func (o *WorkflowInstanceAllOf) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) GetStartedOn

func (o *WorkflowInstanceAllOf) GetStartedOn() string

GetStartedOn returns the StartedOn field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetStartedOnOk

func (o *WorkflowInstanceAllOf) GetStartedOnOk() (*string, bool)

GetStartedOnOk returns a tuple with the StartedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) GetStatus

func (o *WorkflowInstanceAllOf) GetStatus() map[string]map[string]interface{}

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetStatusOk

func (o *WorkflowInstanceAllOf) GetStatusOk() (*map[string]map[string]interface{}, 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 (*WorkflowInstanceAllOf) GetType

func (o *WorkflowInstanceAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetTypeOk

func (o *WorkflowInstanceAllOf) 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 (*WorkflowInstanceAllOf) GetVariables

func (o *WorkflowInstanceAllOf) GetVariables() []WorkflowVariable

GetVariables returns the Variables field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetVariablesOk

func (o *WorkflowInstanceAllOf) GetVariablesOk() (*[]WorkflowVariable, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) GetVersion

func (o *WorkflowInstanceAllOf) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*WorkflowInstanceAllOf) GetVersionOk

func (o *WorkflowInstanceAllOf) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceAllOf) HasActions

func (o *WorkflowInstanceAllOf) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasBaseType

func (o *WorkflowInstanceAllOf) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasDefinitionId

func (o *WorkflowInstanceAllOf) HasDefinitionId() bool

HasDefinitionId returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasEndedOn

func (o *WorkflowInstanceAllOf) HasEndedOn() bool

HasEndedOn returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasId

func (o *WorkflowInstanceAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasName

func (o *WorkflowInstanceAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasProperties

func (o *WorkflowInstanceAllOf) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasSchemaId

func (o *WorkflowInstanceAllOf) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasStartedOn

func (o *WorkflowInstanceAllOf) HasStartedOn() bool

HasStartedOn returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasStatus

func (o *WorkflowInstanceAllOf) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasType

func (o *WorkflowInstanceAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasVariables

func (o *WorkflowInstanceAllOf) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (*WorkflowInstanceAllOf) HasVersion

func (o *WorkflowInstanceAllOf) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (WorkflowInstanceAllOf) MarshalJSON

func (o WorkflowInstanceAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowInstanceAllOf) SetActions

func (o *WorkflowInstanceAllOf) SetActions(v []WorkflowAction)

SetActions gets a reference to the given []WorkflowAction and assigns it to the Actions field.

func (*WorkflowInstanceAllOf) SetBaseType

func (o *WorkflowInstanceAllOf) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowInstanceAllOf) SetDefinitionId

func (o *WorkflowInstanceAllOf) SetDefinitionId(v string)

SetDefinitionId gets a reference to the given string and assigns it to the DefinitionId field.

func (*WorkflowInstanceAllOf) SetEndedOn

func (o *WorkflowInstanceAllOf) SetEndedOn(v string)

SetEndedOn gets a reference to the given string and assigns it to the EndedOn field.

func (*WorkflowInstanceAllOf) SetId

func (o *WorkflowInstanceAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowInstanceAllOf) SetName

func (o *WorkflowInstanceAllOf) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowInstanceAllOf) SetProperties

func (o *WorkflowInstanceAllOf) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowInstanceAllOf) SetSchemaId

func (o *WorkflowInstanceAllOf) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowInstanceAllOf) SetStartedOn

func (o *WorkflowInstanceAllOf) SetStartedOn(v string)

SetStartedOn gets a reference to the given string and assigns it to the StartedOn field.

func (*WorkflowInstanceAllOf) SetStatus

func (o *WorkflowInstanceAllOf) SetStatus(v map[string]map[string]interface{})

SetStatus gets a reference to the given map[string]map[string]interface{} and assigns it to the Status field.

func (*WorkflowInstanceAllOf) SetType

func (o *WorkflowInstanceAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowInstanceAllOf) SetVariables

func (o *WorkflowInstanceAllOf) SetVariables(v []WorkflowVariable)

SetVariables gets a reference to the given []WorkflowVariable and assigns it to the Variables field.

func (*WorkflowInstanceAllOf) SetVersion

func (o *WorkflowInstanceAllOf) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type WorkflowInstanceDeleteResponse

type WorkflowInstanceDeleteResponse struct {
	DeletedChildWorkflowInstanceIds *[]string `json:"deleted_child_workflow_instance_ids,omitempty"`
}

WorkflowInstanceDeleteResponse struct for WorkflowInstanceDeleteResponse

func NewWorkflowInstanceDeleteResponse

func NewWorkflowInstanceDeleteResponse() *WorkflowInstanceDeleteResponse

NewWorkflowInstanceDeleteResponse instantiates a new WorkflowInstanceDeleteResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowInstanceDeleteResponseWithDefaults

func NewWorkflowInstanceDeleteResponseWithDefaults() *WorkflowInstanceDeleteResponse

NewWorkflowInstanceDeleteResponseWithDefaults instantiates a new WorkflowInstanceDeleteResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowInstanceDeleteResponse) GetDeletedChildWorkflowInstanceIds

func (o *WorkflowInstanceDeleteResponse) GetDeletedChildWorkflowInstanceIds() []string

GetDeletedChildWorkflowInstanceIds returns the DeletedChildWorkflowInstanceIds field value if set, zero value otherwise.

func (*WorkflowInstanceDeleteResponse) GetDeletedChildWorkflowInstanceIdsOk

func (o *WorkflowInstanceDeleteResponse) GetDeletedChildWorkflowInstanceIdsOk() (*[]string, bool)

GetDeletedChildWorkflowInstanceIdsOk returns a tuple with the DeletedChildWorkflowInstanceIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowInstanceDeleteResponse) HasDeletedChildWorkflowInstanceIds

func (o *WorkflowInstanceDeleteResponse) HasDeletedChildWorkflowInstanceIds() bool

HasDeletedChildWorkflowInstanceIds returns a boolean if a field has been set.

func (WorkflowInstanceDeleteResponse) MarshalJSON

func (o WorkflowInstanceDeleteResponse) MarshalJSON() ([]byte, error)

func (*WorkflowInstanceDeleteResponse) SetDeletedChildWorkflowInstanceIds

func (o *WorkflowInstanceDeleteResponse) SetDeletedChildWorkflowInstanceIds(v []string)

SetDeletedChildWorkflowInstanceIds gets a reference to the given []string and assigns it to the DeletedChildWorkflowInstanceIds field.

type WorkflowInstancesApiService

type WorkflowInstancesApiService service

WorkflowInstancesApiService WorkflowInstancesApi service

func (*WorkflowInstancesApiService) CancelWorkflowInstance

* CancelWorkflowInstance Cancels a workflow instance. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiCancelWorkflowInstanceRequest

func (*WorkflowInstancesApiService) CancelWorkflowInstanceExecute

* Execute executes the request * @return WorkflowInstance

func (*WorkflowInstancesApiService) DeleteWorkflowInstance

* DeleteWorkflowInstance Deletes a workflow instance. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteWorkflowInstanceRequest

func (*WorkflowInstancesApiService) DeleteWorkflowInstanceExecute

* Execute executes the request * @return WorkflowInstanceDeleteResponse

func (*WorkflowInstancesApiService) GetWorkflowInstance

* GetWorkflowInstance Returns a workflow instance. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetWorkflowInstanceRequest

func (*WorkflowInstancesApiService) GetWorkflowInstanceAction

func (a *WorkflowInstancesApiService) GetWorkflowInstanceAction(ctx _context.Context, id string, actionId string) ApiGetWorkflowInstanceActionRequest

* GetWorkflowInstanceAction Returns a workflow instance action. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @param actionId * @return ApiGetWorkflowInstanceActionRequest

func (*WorkflowInstancesApiService) GetWorkflowInstanceActionExecute

* Execute executes the request * @return WorkflowAction

func (*WorkflowInstancesApiService) GetWorkflowInstanceExecute

* Execute executes the request * @return WorkflowInstance

func (*WorkflowInstancesApiService) GetWorkflowInstancesList

* GetWorkflowInstancesList Returns a list of workflow instances. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetWorkflowInstancesListRequest

func (*WorkflowInstancesApiService) GetWorkflowInstancesListExecute

* Execute executes the request * @return []WorkflowInstance

type WorkflowMapping

type WorkflowMapping struct {
	Id         *string   `json:"id,omitempty"`
	TenantIds  *[]string `json:"tenantIds,omitempty"`
	UniqueName *string   `json:"uniqueName,omitempty"`
	CreatedBy  *string   `json:"createdBy,omitempty"`
	CreatedOn  *string   `json:"createdOn,omitempty"`
	ModifiedBy *string   `json:"modifiedBy,omitempty"`
	ModifiedOn *string   `json:"modifiedOn,omitempty"`
}

WorkflowMapping struct for WorkflowMapping

func NewWorkflowMapping

func NewWorkflowMapping() *WorkflowMapping

NewWorkflowMapping instantiates a new WorkflowMapping object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowMappingWithDefaults

func NewWorkflowMappingWithDefaults() *WorkflowMapping

NewWorkflowMappingWithDefaults instantiates a new WorkflowMapping object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowMapping) GetCreatedBy

func (o *WorkflowMapping) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowMapping) GetCreatedByOk

func (o *WorkflowMapping) 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 (*WorkflowMapping) GetCreatedOn

func (o *WorkflowMapping) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*WorkflowMapping) GetCreatedOnOk

func (o *WorkflowMapping) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMapping) GetId

func (o *WorkflowMapping) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowMapping) GetIdOk

func (o *WorkflowMapping) 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 (*WorkflowMapping) GetModifiedBy

func (o *WorkflowMapping) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field value if set, zero value otherwise.

func (*WorkflowMapping) GetModifiedByOk

func (o *WorkflowMapping) GetModifiedByOk() (*string, bool)

GetModifiedByOk returns a tuple with the ModifiedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMapping) GetModifiedOn

func (o *WorkflowMapping) GetModifiedOn() string

GetModifiedOn returns the ModifiedOn field value if set, zero value otherwise.

func (*WorkflowMapping) GetModifiedOnOk

func (o *WorkflowMapping) GetModifiedOnOk() (*string, bool)

GetModifiedOnOk returns a tuple with the ModifiedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMapping) GetTenantIds

func (o *WorkflowMapping) GetTenantIds() []string

GetTenantIds returns the TenantIds field value if set, zero value otherwise.

func (*WorkflowMapping) GetTenantIdsOk

func (o *WorkflowMapping) GetTenantIdsOk() (*[]string, bool)

GetTenantIdsOk returns a tuple with the TenantIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMapping) GetUniqueName

func (o *WorkflowMapping) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowMapping) GetUniqueNameOk

func (o *WorkflowMapping) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMapping) HasCreatedBy

func (o *WorkflowMapping) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowMapping) HasCreatedOn

func (o *WorkflowMapping) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*WorkflowMapping) HasId

func (o *WorkflowMapping) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowMapping) HasModifiedBy

func (o *WorkflowMapping) HasModifiedBy() bool

HasModifiedBy returns a boolean if a field has been set.

func (*WorkflowMapping) HasModifiedOn

func (o *WorkflowMapping) HasModifiedOn() bool

HasModifiedOn returns a boolean if a field has been set.

func (*WorkflowMapping) HasTenantIds

func (o *WorkflowMapping) HasTenantIds() bool

HasTenantIds returns a boolean if a field has been set.

func (*WorkflowMapping) HasUniqueName

func (o *WorkflowMapping) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (WorkflowMapping) MarshalJSON

func (o WorkflowMapping) MarshalJSON() ([]byte, error)

func (*WorkflowMapping) SetCreatedBy

func (o *WorkflowMapping) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*WorkflowMapping) SetCreatedOn

func (o *WorkflowMapping) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*WorkflowMapping) SetId

func (o *WorkflowMapping) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowMapping) SetModifiedBy

func (o *WorkflowMapping) SetModifiedBy(v string)

SetModifiedBy gets a reference to the given string and assigns it to the ModifiedBy field.

func (*WorkflowMapping) SetModifiedOn

func (o *WorkflowMapping) SetModifiedOn(v string)

SetModifiedOn gets a reference to the given string and assigns it to the ModifiedOn field.

func (*WorkflowMapping) SetTenantIds

func (o *WorkflowMapping) SetTenantIds(v []string)

SetTenantIds gets a reference to the given []string and assigns it to the TenantIds field.

func (*WorkflowMapping) SetUniqueName

func (o *WorkflowMapping) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

type WorkflowMetadata

type WorkflowMetadata struct {
	GitInfo *WorkflowMetadataGitInfo `json:"git_info,omitempty"`
}

WorkflowMetadata struct for WorkflowMetadata

func NewWorkflowMetadata

func NewWorkflowMetadata() *WorkflowMetadata

NewWorkflowMetadata instantiates a new WorkflowMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowMetadataWithDefaults

func NewWorkflowMetadataWithDefaults() *WorkflowMetadata

NewWorkflowMetadataWithDefaults instantiates a new WorkflowMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowMetadata) GetGitInfo

func (o *WorkflowMetadata) GetGitInfo() WorkflowMetadataGitInfo

GetGitInfo returns the GitInfo field value if set, zero value otherwise.

func (*WorkflowMetadata) GetGitInfoOk

func (o *WorkflowMetadata) GetGitInfoOk() (*WorkflowMetadataGitInfo, bool)

GetGitInfoOk returns a tuple with the GitInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMetadata) HasGitInfo

func (o *WorkflowMetadata) HasGitInfo() bool

HasGitInfo returns a boolean if a field has been set.

func (WorkflowMetadata) MarshalJSON

func (o WorkflowMetadata) MarshalJSON() ([]byte, error)

func (*WorkflowMetadata) SetGitInfo

func (o *WorkflowMetadata) SetGitInfo(v WorkflowMetadataGitInfo)

SetGitInfo gets a reference to the given WorkflowMetadataGitInfo and assigns it to the GitInfo field.

type WorkflowMetadataGitInfo

type WorkflowMetadataGitInfo struct {
	TargetId      *string `json:"target_id,omitempty"`
	CommitHash    *string `json:"commit_hash,omitempty"`
	ComittedBy    *string `json:"comitted_by,omitempty"`
	ComittedOn    *string `json:"comitted_on,omitempty"`
	CommitMessage *string `json:"commit_message,omitempty"`
}

WorkflowMetadataGitInfo struct for WorkflowMetadataGitInfo

func NewWorkflowMetadataGitInfo

func NewWorkflowMetadataGitInfo() *WorkflowMetadataGitInfo

NewWorkflowMetadataGitInfo instantiates a new WorkflowMetadataGitInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowMetadataGitInfoWithDefaults

func NewWorkflowMetadataGitInfoWithDefaults() *WorkflowMetadataGitInfo

NewWorkflowMetadataGitInfoWithDefaults instantiates a new WorkflowMetadataGitInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowMetadataGitInfo) GetComittedBy

func (o *WorkflowMetadataGitInfo) GetComittedBy() string

GetComittedBy returns the ComittedBy field value if set, zero value otherwise.

func (*WorkflowMetadataGitInfo) GetComittedByOk

func (o *WorkflowMetadataGitInfo) GetComittedByOk() (*string, bool)

GetComittedByOk returns a tuple with the ComittedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMetadataGitInfo) GetComittedOn

func (o *WorkflowMetadataGitInfo) GetComittedOn() string

GetComittedOn returns the ComittedOn field value if set, zero value otherwise.

func (*WorkflowMetadataGitInfo) GetComittedOnOk

func (o *WorkflowMetadataGitInfo) GetComittedOnOk() (*string, bool)

GetComittedOnOk returns a tuple with the ComittedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMetadataGitInfo) GetCommitHash

func (o *WorkflowMetadataGitInfo) GetCommitHash() string

GetCommitHash returns the CommitHash field value if set, zero value otherwise.

func (*WorkflowMetadataGitInfo) GetCommitHashOk

func (o *WorkflowMetadataGitInfo) GetCommitHashOk() (*string, bool)

GetCommitHashOk returns a tuple with the CommitHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMetadataGitInfo) GetCommitMessage

func (o *WorkflowMetadataGitInfo) GetCommitMessage() string

GetCommitMessage returns the CommitMessage field value if set, zero value otherwise.

func (*WorkflowMetadataGitInfo) GetCommitMessageOk

func (o *WorkflowMetadataGitInfo) GetCommitMessageOk() (*string, bool)

GetCommitMessageOk returns a tuple with the CommitMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMetadataGitInfo) GetTargetId

func (o *WorkflowMetadataGitInfo) GetTargetId() string

GetTargetId returns the TargetId field value if set, zero value otherwise.

func (*WorkflowMetadataGitInfo) GetTargetIdOk

func (o *WorkflowMetadataGitInfo) GetTargetIdOk() (*string, bool)

GetTargetIdOk returns a tuple with the TargetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowMetadataGitInfo) HasComittedBy

func (o *WorkflowMetadataGitInfo) HasComittedBy() bool

HasComittedBy returns a boolean if a field has been set.

func (*WorkflowMetadataGitInfo) HasComittedOn

func (o *WorkflowMetadataGitInfo) HasComittedOn() bool

HasComittedOn returns a boolean if a field has been set.

func (*WorkflowMetadataGitInfo) HasCommitHash

func (o *WorkflowMetadataGitInfo) HasCommitHash() bool

HasCommitHash returns a boolean if a field has been set.

func (*WorkflowMetadataGitInfo) HasCommitMessage

func (o *WorkflowMetadataGitInfo) HasCommitMessage() bool

HasCommitMessage returns a boolean if a field has been set.

func (*WorkflowMetadataGitInfo) HasTargetId

func (o *WorkflowMetadataGitInfo) HasTargetId() bool

HasTargetId returns a boolean if a field has been set.

func (WorkflowMetadataGitInfo) MarshalJSON

func (o WorkflowMetadataGitInfo) MarshalJSON() ([]byte, error)

func (*WorkflowMetadataGitInfo) SetComittedBy

func (o *WorkflowMetadataGitInfo) SetComittedBy(v string)

SetComittedBy gets a reference to the given string and assigns it to the ComittedBy field.

func (*WorkflowMetadataGitInfo) SetComittedOn

func (o *WorkflowMetadataGitInfo) SetComittedOn(v string)

SetComittedOn gets a reference to the given string and assigns it to the ComittedOn field.

func (*WorkflowMetadataGitInfo) SetCommitHash

func (o *WorkflowMetadataGitInfo) SetCommitHash(v string)

SetCommitHash gets a reference to the given string and assigns it to the CommitHash field.

func (*WorkflowMetadataGitInfo) SetCommitMessage

func (o *WorkflowMetadataGitInfo) SetCommitMessage(v string)

SetCommitMessage gets a reference to the given string and assigns it to the CommitMessage field.

func (*WorkflowMetadataGitInfo) SetTargetId

func (o *WorkflowMetadataGitInfo) SetTargetId(v string)

SetTargetId gets a reference to the given string and assigns it to the TargetId field.

type WorkflowSchema

type WorkflowSchema struct {
	Id             *string                            `json:"id,omitempty"`
	SchemaId       *string                            `json:"schema_id,omitempty"`
	Name           *string                            `json:"name,omitempty"`
	Title          *string                            `json:"title,omitempty"`
	Description    *string                            `json:"description,omitempty"`
	Type           *string                            `json:"type,omitempty"`
	BaseType       *string                            `json:"base_type,omitempty"`
	Version        *string                            `json:"version,omitempty"`
	Invisible      *bool                              `json:"invisible,omitempty"`
	Inherits       *string                            `json:"inherits,omitempty"`
	AccessMeta     *WorkflowAccessMeta                `json:"access_meta,omitempty"`
	VariableSchema *map[string]map[string]interface{} `json:"variable_schema,omitempty"`
	PropertySchema *map[string]map[string]interface{} `json:"property_schema,omitempty"`
	OutputSchema   *map[string]map[string]interface{} `json:"output_schema,omitempty"`
	ViewConfig     *map[string]map[string]interface{} `json:"view_config,omitempty"`
	Attributes     *map[string]map[string]interface{} `json:"attributes,omitempty"`
	CreatedOn      *string                            `json:"created_on,omitempty"`
	CreatedBy      *string                            `json:"created_by,omitempty"`
	UpdatedOn      *string                            `json:"updated_on,omitempty"`
	UpdatedBy      *string                            `json:"updated_by,omitempty"`
	Owner          *string                            `json:"owner,omitempty"`
	UniqueName     *string                            `json:"unique_name,omitempty"`
}

WorkflowSchema struct for WorkflowSchema

func NewWorkflowSchema

func NewWorkflowSchema() *WorkflowSchema

NewWorkflowSchema instantiates a new WorkflowSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowSchemaWithDefaults

func NewWorkflowSchemaWithDefaults() *WorkflowSchema

NewWorkflowSchemaWithDefaults instantiates a new WorkflowSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowSchema) GetAccessMeta

func (o *WorkflowSchema) GetAccessMeta() WorkflowAccessMeta

GetAccessMeta returns the AccessMeta field value if set, zero value otherwise.

func (*WorkflowSchema) GetAccessMetaOk

func (o *WorkflowSchema) GetAccessMetaOk() (*WorkflowAccessMeta, bool)

GetAccessMetaOk returns a tuple with the AccessMeta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetAttributes

func (o *WorkflowSchema) GetAttributes() map[string]map[string]interface{}

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*WorkflowSchema) GetAttributesOk

func (o *WorkflowSchema) GetAttributesOk() (*map[string]map[string]interface{}, bool)

GetAttributesOk returns a tuple with the Attributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetBaseType

func (o *WorkflowSchema) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowSchema) GetBaseTypeOk

func (o *WorkflowSchema) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetCreatedBy

func (o *WorkflowSchema) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowSchema) GetCreatedByOk

func (o *WorkflowSchema) 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 (*WorkflowSchema) GetCreatedOn

func (o *WorkflowSchema) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*WorkflowSchema) GetCreatedOnOk

func (o *WorkflowSchema) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetDescription

func (o *WorkflowSchema) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowSchema) GetDescriptionOk

func (o *WorkflowSchema) 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 (*WorkflowSchema) GetId

func (o *WorkflowSchema) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowSchema) GetIdOk

func (o *WorkflowSchema) 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 (*WorkflowSchema) GetInherits

func (o *WorkflowSchema) GetInherits() string

GetInherits returns the Inherits field value if set, zero value otherwise.

func (*WorkflowSchema) GetInheritsOk

func (o *WorkflowSchema) GetInheritsOk() (*string, bool)

GetInheritsOk returns a tuple with the Inherits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetInvisible

func (o *WorkflowSchema) GetInvisible() bool

GetInvisible returns the Invisible field value if set, zero value otherwise.

func (*WorkflowSchema) GetInvisibleOk

func (o *WorkflowSchema) GetInvisibleOk() (*bool, bool)

GetInvisibleOk returns a tuple with the Invisible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetName

func (o *WorkflowSchema) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowSchema) GetNameOk

func (o *WorkflowSchema) 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 (*WorkflowSchema) GetOutputSchema

func (o *WorkflowSchema) GetOutputSchema() map[string]map[string]interface{}

GetOutputSchema returns the OutputSchema field value if set, zero value otherwise.

func (*WorkflowSchema) GetOutputSchemaOk

func (o *WorkflowSchema) GetOutputSchemaOk() (*map[string]map[string]interface{}, bool)

GetOutputSchemaOk returns a tuple with the OutputSchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetOwner

func (o *WorkflowSchema) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*WorkflowSchema) GetOwnerOk

func (o *WorkflowSchema) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetPropertySchema

func (o *WorkflowSchema) GetPropertySchema() map[string]map[string]interface{}

GetPropertySchema returns the PropertySchema field value if set, zero value otherwise.

func (*WorkflowSchema) GetPropertySchemaOk

func (o *WorkflowSchema) GetPropertySchemaOk() (*map[string]map[string]interface{}, bool)

GetPropertySchemaOk returns a tuple with the PropertySchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetSchemaId

func (o *WorkflowSchema) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowSchema) GetSchemaIdOk

func (o *WorkflowSchema) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetTitle

func (o *WorkflowSchema) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowSchema) GetTitleOk

func (o *WorkflowSchema) 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 (*WorkflowSchema) GetType

func (o *WorkflowSchema) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowSchema) GetTypeOk

func (o *WorkflowSchema) 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 (*WorkflowSchema) GetUniqueName

func (o *WorkflowSchema) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowSchema) GetUniqueNameOk

func (o *WorkflowSchema) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetUpdatedBy

func (o *WorkflowSchema) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkflowSchema) GetUpdatedByOk

func (o *WorkflowSchema) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetUpdatedOn

func (o *WorkflowSchema) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field value if set, zero value otherwise.

func (*WorkflowSchema) GetUpdatedOnOk

func (o *WorkflowSchema) GetUpdatedOnOk() (*string, bool)

GetUpdatedOnOk returns a tuple with the UpdatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetVariableSchema

func (o *WorkflowSchema) GetVariableSchema() map[string]map[string]interface{}

GetVariableSchema returns the VariableSchema field value if set, zero value otherwise.

func (*WorkflowSchema) GetVariableSchemaOk

func (o *WorkflowSchema) GetVariableSchemaOk() (*map[string]map[string]interface{}, bool)

GetVariableSchemaOk returns a tuple with the VariableSchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetVersion

func (o *WorkflowSchema) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*WorkflowSchema) GetVersionOk

func (o *WorkflowSchema) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) GetViewConfig

func (o *WorkflowSchema) GetViewConfig() map[string]map[string]interface{}

GetViewConfig returns the ViewConfig field value if set, zero value otherwise.

func (*WorkflowSchema) GetViewConfigOk

func (o *WorkflowSchema) GetViewConfigOk() (*map[string]map[string]interface{}, bool)

GetViewConfigOk returns a tuple with the ViewConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchema) HasAccessMeta

func (o *WorkflowSchema) HasAccessMeta() bool

HasAccessMeta returns a boolean if a field has been set.

func (*WorkflowSchema) HasAttributes

func (o *WorkflowSchema) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*WorkflowSchema) HasBaseType

func (o *WorkflowSchema) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowSchema) HasCreatedBy

func (o *WorkflowSchema) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowSchema) HasCreatedOn

func (o *WorkflowSchema) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*WorkflowSchema) HasDescription

func (o *WorkflowSchema) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowSchema) HasId

func (o *WorkflowSchema) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowSchema) HasInherits

func (o *WorkflowSchema) HasInherits() bool

HasInherits returns a boolean if a field has been set.

func (*WorkflowSchema) HasInvisible

func (o *WorkflowSchema) HasInvisible() bool

HasInvisible returns a boolean if a field has been set.

func (*WorkflowSchema) HasName

func (o *WorkflowSchema) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowSchema) HasOutputSchema

func (o *WorkflowSchema) HasOutputSchema() bool

HasOutputSchema returns a boolean if a field has been set.

func (*WorkflowSchema) HasOwner

func (o *WorkflowSchema) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*WorkflowSchema) HasPropertySchema

func (o *WorkflowSchema) HasPropertySchema() bool

HasPropertySchema returns a boolean if a field has been set.

func (*WorkflowSchema) HasSchemaId

func (o *WorkflowSchema) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowSchema) HasTitle

func (o *WorkflowSchema) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowSchema) HasType

func (o *WorkflowSchema) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowSchema) HasUniqueName

func (o *WorkflowSchema) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowSchema) HasUpdatedBy

func (o *WorkflowSchema) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkflowSchema) HasUpdatedOn

func (o *WorkflowSchema) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

func (*WorkflowSchema) HasVariableSchema

func (o *WorkflowSchema) HasVariableSchema() bool

HasVariableSchema returns a boolean if a field has been set.

func (*WorkflowSchema) HasVersion

func (o *WorkflowSchema) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*WorkflowSchema) HasViewConfig

func (o *WorkflowSchema) HasViewConfig() bool

HasViewConfig returns a boolean if a field has been set.

func (WorkflowSchema) MarshalJSON

func (o WorkflowSchema) MarshalJSON() ([]byte, error)

func (*WorkflowSchema) SetAccessMeta

func (o *WorkflowSchema) SetAccessMeta(v WorkflowAccessMeta)

SetAccessMeta gets a reference to the given WorkflowAccessMeta and assigns it to the AccessMeta field.

func (*WorkflowSchema) SetAttributes

func (o *WorkflowSchema) SetAttributes(v map[string]map[string]interface{})

SetAttributes gets a reference to the given map[string]map[string]interface{} and assigns it to the Attributes field.

func (*WorkflowSchema) SetBaseType

func (o *WorkflowSchema) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowSchema) SetCreatedBy

func (o *WorkflowSchema) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*WorkflowSchema) SetCreatedOn

func (o *WorkflowSchema) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*WorkflowSchema) SetDescription

func (o *WorkflowSchema) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowSchema) SetId

func (o *WorkflowSchema) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowSchema) SetInherits

func (o *WorkflowSchema) SetInherits(v string)

SetInherits gets a reference to the given string and assigns it to the Inherits field.

func (*WorkflowSchema) SetInvisible

func (o *WorkflowSchema) SetInvisible(v bool)

SetInvisible gets a reference to the given bool and assigns it to the Invisible field.

func (*WorkflowSchema) SetName

func (o *WorkflowSchema) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowSchema) SetOutputSchema

func (o *WorkflowSchema) SetOutputSchema(v map[string]map[string]interface{})

SetOutputSchema gets a reference to the given map[string]map[string]interface{} and assigns it to the OutputSchema field.

func (*WorkflowSchema) SetOwner

func (o *WorkflowSchema) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*WorkflowSchema) SetPropertySchema

func (o *WorkflowSchema) SetPropertySchema(v map[string]map[string]interface{})

SetPropertySchema gets a reference to the given map[string]map[string]interface{} and assigns it to the PropertySchema field.

func (*WorkflowSchema) SetSchemaId

func (o *WorkflowSchema) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowSchema) SetTitle

func (o *WorkflowSchema) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowSchema) SetType

func (o *WorkflowSchema) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowSchema) SetUniqueName

func (o *WorkflowSchema) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowSchema) SetUpdatedBy

func (o *WorkflowSchema) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*WorkflowSchema) SetUpdatedOn

func (o *WorkflowSchema) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

func (*WorkflowSchema) SetVariableSchema

func (o *WorkflowSchema) SetVariableSchema(v map[string]map[string]interface{})

SetVariableSchema gets a reference to the given map[string]map[string]interface{} and assigns it to the VariableSchema field.

func (*WorkflowSchema) SetVersion

func (o *WorkflowSchema) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (*WorkflowSchema) SetViewConfig

func (o *WorkflowSchema) SetViewConfig(v map[string]map[string]interface{})

SetViewConfig gets a reference to the given map[string]map[string]interface{} and assigns it to the ViewConfig field.

type WorkflowSchemaAllOf

type WorkflowSchemaAllOf struct {
	Id             *string                            `json:"id,omitempty"`
	SchemaId       *string                            `json:"schema_id,omitempty"`
	Name           *string                            `json:"name,omitempty"`
	Title          *string                            `json:"title,omitempty"`
	Description    *string                            `json:"description,omitempty"`
	Type           *string                            `json:"type,omitempty"`
	BaseType       *string                            `json:"base_type,omitempty"`
	Version        *string                            `json:"version,omitempty"`
	Invisible      *bool                              `json:"invisible,omitempty"`
	Inherits       *string                            `json:"inherits,omitempty"`
	AccessMeta     *WorkflowAccessMeta                `json:"access_meta,omitempty"`
	VariableSchema *map[string]map[string]interface{} `json:"variable_schema,omitempty"`
	PropertySchema *map[string]map[string]interface{} `json:"property_schema,omitempty"`
	OutputSchema   *map[string]map[string]interface{} `json:"output_schema,omitempty"`
	ViewConfig     *map[string]map[string]interface{} `json:"view_config,omitempty"`
	Attributes     *map[string]map[string]interface{} `json:"attributes,omitempty"`
}

WorkflowSchemaAllOf struct for WorkflowSchemaAllOf

func NewWorkflowSchemaAllOf

func NewWorkflowSchemaAllOf() *WorkflowSchemaAllOf

NewWorkflowSchemaAllOf instantiates a new WorkflowSchemaAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowSchemaAllOfWithDefaults

func NewWorkflowSchemaAllOfWithDefaults() *WorkflowSchemaAllOf

NewWorkflowSchemaAllOfWithDefaults instantiates a new WorkflowSchemaAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowSchemaAllOf) GetAccessMeta

func (o *WorkflowSchemaAllOf) GetAccessMeta() WorkflowAccessMeta

GetAccessMeta returns the AccessMeta field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetAccessMetaOk

func (o *WorkflowSchemaAllOf) GetAccessMetaOk() (*WorkflowAccessMeta, bool)

GetAccessMetaOk returns a tuple with the AccessMeta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetAttributes

func (o *WorkflowSchemaAllOf) GetAttributes() map[string]map[string]interface{}

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetAttributesOk

func (o *WorkflowSchemaAllOf) GetAttributesOk() (*map[string]map[string]interface{}, bool)

GetAttributesOk returns a tuple with the Attributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetBaseType

func (o *WorkflowSchemaAllOf) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetBaseTypeOk

func (o *WorkflowSchemaAllOf) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetDescription

func (o *WorkflowSchemaAllOf) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetDescriptionOk

func (o *WorkflowSchemaAllOf) 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 (*WorkflowSchemaAllOf) GetId

func (o *WorkflowSchemaAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetIdOk

func (o *WorkflowSchemaAllOf) 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 (*WorkflowSchemaAllOf) GetInherits

func (o *WorkflowSchemaAllOf) GetInherits() string

GetInherits returns the Inherits field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetInheritsOk

func (o *WorkflowSchemaAllOf) GetInheritsOk() (*string, bool)

GetInheritsOk returns a tuple with the Inherits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetInvisible

func (o *WorkflowSchemaAllOf) GetInvisible() bool

GetInvisible returns the Invisible field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetInvisibleOk

func (o *WorkflowSchemaAllOf) GetInvisibleOk() (*bool, bool)

GetInvisibleOk returns a tuple with the Invisible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetName

func (o *WorkflowSchemaAllOf) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetNameOk

func (o *WorkflowSchemaAllOf) 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 (*WorkflowSchemaAllOf) GetOutputSchema

func (o *WorkflowSchemaAllOf) GetOutputSchema() map[string]map[string]interface{}

GetOutputSchema returns the OutputSchema field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetOutputSchemaOk

func (o *WorkflowSchemaAllOf) GetOutputSchemaOk() (*map[string]map[string]interface{}, bool)

GetOutputSchemaOk returns a tuple with the OutputSchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetPropertySchema

func (o *WorkflowSchemaAllOf) GetPropertySchema() map[string]map[string]interface{}

GetPropertySchema returns the PropertySchema field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetPropertySchemaOk

func (o *WorkflowSchemaAllOf) GetPropertySchemaOk() (*map[string]map[string]interface{}, bool)

GetPropertySchemaOk returns a tuple with the PropertySchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetSchemaId

func (o *WorkflowSchemaAllOf) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetSchemaIdOk

func (o *WorkflowSchemaAllOf) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetTitle

func (o *WorkflowSchemaAllOf) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetTitleOk

func (o *WorkflowSchemaAllOf) 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 (*WorkflowSchemaAllOf) GetType

func (o *WorkflowSchemaAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetTypeOk

func (o *WorkflowSchemaAllOf) 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 (*WorkflowSchemaAllOf) GetVariableSchema

func (o *WorkflowSchemaAllOf) GetVariableSchema() map[string]map[string]interface{}

GetVariableSchema returns the VariableSchema field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetVariableSchemaOk

func (o *WorkflowSchemaAllOf) GetVariableSchemaOk() (*map[string]map[string]interface{}, bool)

GetVariableSchemaOk returns a tuple with the VariableSchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetVersion

func (o *WorkflowSchemaAllOf) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetVersionOk

func (o *WorkflowSchemaAllOf) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) GetViewConfig

func (o *WorkflowSchemaAllOf) GetViewConfig() map[string]map[string]interface{}

GetViewConfig returns the ViewConfig field value if set, zero value otherwise.

func (*WorkflowSchemaAllOf) GetViewConfigOk

func (o *WorkflowSchemaAllOf) GetViewConfigOk() (*map[string]map[string]interface{}, bool)

GetViewConfigOk returns a tuple with the ViewConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaAllOf) HasAccessMeta

func (o *WorkflowSchemaAllOf) HasAccessMeta() bool

HasAccessMeta returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasAttributes

func (o *WorkflowSchemaAllOf) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasBaseType

func (o *WorkflowSchemaAllOf) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasDescription

func (o *WorkflowSchemaAllOf) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasId

func (o *WorkflowSchemaAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasInherits

func (o *WorkflowSchemaAllOf) HasInherits() bool

HasInherits returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasInvisible

func (o *WorkflowSchemaAllOf) HasInvisible() bool

HasInvisible returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasName

func (o *WorkflowSchemaAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasOutputSchema

func (o *WorkflowSchemaAllOf) HasOutputSchema() bool

HasOutputSchema returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasPropertySchema

func (o *WorkflowSchemaAllOf) HasPropertySchema() bool

HasPropertySchema returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasSchemaId

func (o *WorkflowSchemaAllOf) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasTitle

func (o *WorkflowSchemaAllOf) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasType

func (o *WorkflowSchemaAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasVariableSchema

func (o *WorkflowSchemaAllOf) HasVariableSchema() bool

HasVariableSchema returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasVersion

func (o *WorkflowSchemaAllOf) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (*WorkflowSchemaAllOf) HasViewConfig

func (o *WorkflowSchemaAllOf) HasViewConfig() bool

HasViewConfig returns a boolean if a field has been set.

func (WorkflowSchemaAllOf) MarshalJSON

func (o WorkflowSchemaAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowSchemaAllOf) SetAccessMeta

func (o *WorkflowSchemaAllOf) SetAccessMeta(v WorkflowAccessMeta)

SetAccessMeta gets a reference to the given WorkflowAccessMeta and assigns it to the AccessMeta field.

func (*WorkflowSchemaAllOf) SetAttributes

func (o *WorkflowSchemaAllOf) SetAttributes(v map[string]map[string]interface{})

SetAttributes gets a reference to the given map[string]map[string]interface{} and assigns it to the Attributes field.

func (*WorkflowSchemaAllOf) SetBaseType

func (o *WorkflowSchemaAllOf) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowSchemaAllOf) SetDescription

func (o *WorkflowSchemaAllOf) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowSchemaAllOf) SetId

func (o *WorkflowSchemaAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowSchemaAllOf) SetInherits

func (o *WorkflowSchemaAllOf) SetInherits(v string)

SetInherits gets a reference to the given string and assigns it to the Inherits field.

func (*WorkflowSchemaAllOf) SetInvisible

func (o *WorkflowSchemaAllOf) SetInvisible(v bool)

SetInvisible gets a reference to the given bool and assigns it to the Invisible field.

func (*WorkflowSchemaAllOf) SetName

func (o *WorkflowSchemaAllOf) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowSchemaAllOf) SetOutputSchema

func (o *WorkflowSchemaAllOf) SetOutputSchema(v map[string]map[string]interface{})

SetOutputSchema gets a reference to the given map[string]map[string]interface{} and assigns it to the OutputSchema field.

func (*WorkflowSchemaAllOf) SetPropertySchema

func (o *WorkflowSchemaAllOf) SetPropertySchema(v map[string]map[string]interface{})

SetPropertySchema gets a reference to the given map[string]map[string]interface{} and assigns it to the PropertySchema field.

func (*WorkflowSchemaAllOf) SetSchemaId

func (o *WorkflowSchemaAllOf) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowSchemaAllOf) SetTitle

func (o *WorkflowSchemaAllOf) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowSchemaAllOf) SetType

func (o *WorkflowSchemaAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowSchemaAllOf) SetVariableSchema

func (o *WorkflowSchemaAllOf) SetVariableSchema(v map[string]map[string]interface{})

SetVariableSchema gets a reference to the given map[string]map[string]interface{} and assigns it to the VariableSchema field.

func (*WorkflowSchemaAllOf) SetVersion

func (o *WorkflowSchemaAllOf) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (*WorkflowSchemaAllOf) SetViewConfig

func (o *WorkflowSchemaAllOf) SetViewConfig(v map[string]map[string]interface{})

SetViewConfig gets a reference to the given map[string]map[string]interface{} and assigns it to the ViewConfig field.

type WorkflowSchemaByTypeResponse

type WorkflowSchemaByTypeResponse struct {
	ViewSchema *WorkflowSchema `json:"view_schema,omitempty"`
	DataSchema *WorkflowSchema `json:"data_schema,omitempty"`
}

WorkflowSchemaByTypeResponse struct for WorkflowSchemaByTypeResponse

func NewWorkflowSchemaByTypeResponse

func NewWorkflowSchemaByTypeResponse() *WorkflowSchemaByTypeResponse

NewWorkflowSchemaByTypeResponse instantiates a new WorkflowSchemaByTypeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowSchemaByTypeResponseWithDefaults

func NewWorkflowSchemaByTypeResponseWithDefaults() *WorkflowSchemaByTypeResponse

NewWorkflowSchemaByTypeResponseWithDefaults instantiates a new WorkflowSchemaByTypeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowSchemaByTypeResponse) GetDataSchema

func (o *WorkflowSchemaByTypeResponse) GetDataSchema() WorkflowSchema

GetDataSchema returns the DataSchema field value if set, zero value otherwise.

func (*WorkflowSchemaByTypeResponse) GetDataSchemaOk

func (o *WorkflowSchemaByTypeResponse) GetDataSchemaOk() (*WorkflowSchema, bool)

GetDataSchemaOk returns a tuple with the DataSchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaByTypeResponse) GetViewSchema

func (o *WorkflowSchemaByTypeResponse) GetViewSchema() WorkflowSchema

GetViewSchema returns the ViewSchema field value if set, zero value otherwise.

func (*WorkflowSchemaByTypeResponse) GetViewSchemaOk

func (o *WorkflowSchemaByTypeResponse) GetViewSchemaOk() (*WorkflowSchema, bool)

GetViewSchemaOk returns a tuple with the ViewSchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowSchemaByTypeResponse) HasDataSchema

func (o *WorkflowSchemaByTypeResponse) HasDataSchema() bool

HasDataSchema returns a boolean if a field has been set.

func (*WorkflowSchemaByTypeResponse) HasViewSchema

func (o *WorkflowSchemaByTypeResponse) HasViewSchema() bool

HasViewSchema returns a boolean if a field has been set.

func (WorkflowSchemaByTypeResponse) MarshalJSON

func (o WorkflowSchemaByTypeResponse) MarshalJSON() ([]byte, error)

func (*WorkflowSchemaByTypeResponse) SetDataSchema

func (o *WorkflowSchemaByTypeResponse) SetDataSchema(v WorkflowSchema)

SetDataSchema gets a reference to the given WorkflowSchema and assigns it to the DataSchema field.

func (*WorkflowSchemaByTypeResponse) SetViewSchema

func (o *WorkflowSchemaByTypeResponse) SetViewSchema(v WorkflowSchema)

SetViewSchema gets a reference to the given WorkflowSchema and assigns it to the ViewSchema field.

type WorkflowSchemasApiService

type WorkflowSchemasApiService service

WorkflowSchemasApiService WorkflowSchemasApi service

func (*WorkflowSchemasApiService) GetWorkflowSchema

* GetWorkflowSchema Returns a workflow schema. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetWorkflowSchemaRequest

func (*WorkflowSchemasApiService) GetWorkflowSchemaExecute

* Execute executes the request * @return WorkflowSchemaByTypeResponse

func (*WorkflowSchemasApiService) GetWorkflowSchemasList

* GetWorkflowSchemasList Returns a list of workflow schemas. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetWorkflowSchemasListRequest

func (*WorkflowSchemasApiService) GetWorkflowSchemasListExecute

* Execute executes the request * @return []WorkflowSchema

type WorkflowStartConfig

type WorkflowStartConfig struct {
	InputVariables     *[]WorkflowVariable `json:"input_variables,omitempty"`
	TypeOfTargetNeeded *string             `json:"type_of_target_needed,omitempty"`
	TargetId           *string             `json:"target_id,omitempty"`
}

WorkflowStartConfig struct for WorkflowStartConfig

func NewWorkflowStartConfig

func NewWorkflowStartConfig() *WorkflowStartConfig

NewWorkflowStartConfig instantiates a new WorkflowStartConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowStartConfigWithDefaults

func NewWorkflowStartConfigWithDefaults() *WorkflowStartConfig

NewWorkflowStartConfigWithDefaults instantiates a new WorkflowStartConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowStartConfig) GetInputVariables

func (o *WorkflowStartConfig) GetInputVariables() []WorkflowVariable

GetInputVariables returns the InputVariables field value if set, zero value otherwise.

func (*WorkflowStartConfig) GetInputVariablesOk

func (o *WorkflowStartConfig) GetInputVariablesOk() (*[]WorkflowVariable, bool)

GetInputVariablesOk returns a tuple with the InputVariables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowStartConfig) GetTargetId

func (o *WorkflowStartConfig) GetTargetId() string

GetTargetId returns the TargetId field value if set, zero value otherwise.

func (*WorkflowStartConfig) GetTargetIdOk

func (o *WorkflowStartConfig) GetTargetIdOk() (*string, bool)

GetTargetIdOk returns a tuple with the TargetId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowStartConfig) GetTypeOfTargetNeeded

func (o *WorkflowStartConfig) GetTypeOfTargetNeeded() string

GetTypeOfTargetNeeded returns the TypeOfTargetNeeded field value if set, zero value otherwise.

func (*WorkflowStartConfig) GetTypeOfTargetNeededOk

func (o *WorkflowStartConfig) GetTypeOfTargetNeededOk() (*string, bool)

GetTypeOfTargetNeededOk returns a tuple with the TypeOfTargetNeeded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowStartConfig) HasInputVariables

func (o *WorkflowStartConfig) HasInputVariables() bool

HasInputVariables returns a boolean if a field has been set.

func (*WorkflowStartConfig) HasTargetId

func (o *WorkflowStartConfig) HasTargetId() bool

HasTargetId returns a boolean if a field has been set.

func (*WorkflowStartConfig) HasTypeOfTargetNeeded

func (o *WorkflowStartConfig) HasTypeOfTargetNeeded() bool

HasTypeOfTargetNeeded returns a boolean if a field has been set.

func (WorkflowStartConfig) MarshalJSON

func (o WorkflowStartConfig) MarshalJSON() ([]byte, error)

func (*WorkflowStartConfig) SetInputVariables

func (o *WorkflowStartConfig) SetInputVariables(v []WorkflowVariable)

SetInputVariables gets a reference to the given []WorkflowVariable and assigns it to the InputVariables field.

func (*WorkflowStartConfig) SetTargetId

func (o *WorkflowStartConfig) SetTargetId(v string)

SetTargetId gets a reference to the given string and assigns it to the TargetId field.

func (*WorkflowStartConfig) SetTypeOfTargetNeeded

func (o *WorkflowStartConfig) SetTypeOfTargetNeeded(v string)

SetTypeOfTargetNeeded gets a reference to the given string and assigns it to the TypeOfTargetNeeded field.

type WorkflowTarget

type WorkflowTarget struct {
	Id            *string                            `json:"id,omitempty"`
	SchemaId      *string                            `json:"schema_id,omitempty"`
	AdapterId     *string                            `json:"adapter_id,omitempty"`
	Name          *string                            `json:"name,omitempty"`
	Title         *string                            `json:"title,omitempty"`
	Type          *string                            `json:"type,omitempty"`
	BaseType      *string                            `json:"base_type,omitempty"`
	Properties    *map[string]map[string]interface{} `json:"properties,omitempty"`
	Valid         *bool                              `json:"valid,omitempty"`
	DefAccessMeta *WorkflowDefAccessMeta             `json:"def_access_meta,omitempty"`
	CreatedOn     *string                            `json:"created_on,omitempty"`
	CreatedBy     *string                            `json:"created_by,omitempty"`
	UpdatedOn     *string                            `json:"updated_on,omitempty"`
	UpdatedBy     *string                            `json:"updated_by,omitempty"`
	Owner         *string                            `json:"owner,omitempty"`
	UniqueName    *string                            `json:"unique_name,omitempty"`
}

WorkflowTarget struct for WorkflowTarget

func NewWorkflowTarget

func NewWorkflowTarget() *WorkflowTarget

NewWorkflowTarget instantiates a new WorkflowTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowTargetWithDefaults

func NewWorkflowTargetWithDefaults() *WorkflowTarget

NewWorkflowTargetWithDefaults instantiates a new WorkflowTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowTarget) GetAdapterId

func (o *WorkflowTarget) GetAdapterId() string

GetAdapterId returns the AdapterId field value if set, zero value otherwise.

func (*WorkflowTarget) GetAdapterIdOk

func (o *WorkflowTarget) GetAdapterIdOk() (*string, bool)

GetAdapterIdOk returns a tuple with the AdapterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetBaseType

func (o *WorkflowTarget) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowTarget) GetBaseTypeOk

func (o *WorkflowTarget) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetCreatedBy

func (o *WorkflowTarget) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowTarget) GetCreatedByOk

func (o *WorkflowTarget) 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 (*WorkflowTarget) GetCreatedOn

func (o *WorkflowTarget) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*WorkflowTarget) GetCreatedOnOk

func (o *WorkflowTarget) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetDefAccessMeta

func (o *WorkflowTarget) GetDefAccessMeta() WorkflowDefAccessMeta

GetDefAccessMeta returns the DefAccessMeta field value if set, zero value otherwise.

func (*WorkflowTarget) GetDefAccessMetaOk

func (o *WorkflowTarget) GetDefAccessMetaOk() (*WorkflowDefAccessMeta, bool)

GetDefAccessMetaOk returns a tuple with the DefAccessMeta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetId

func (o *WorkflowTarget) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowTarget) GetIdOk

func (o *WorkflowTarget) 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 (*WorkflowTarget) GetName

func (o *WorkflowTarget) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowTarget) GetNameOk

func (o *WorkflowTarget) 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 (*WorkflowTarget) GetOwner

func (o *WorkflowTarget) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*WorkflowTarget) GetOwnerOk

func (o *WorkflowTarget) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetProperties

func (o *WorkflowTarget) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowTarget) GetPropertiesOk

func (o *WorkflowTarget) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetSchemaId

func (o *WorkflowTarget) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowTarget) GetSchemaIdOk

func (o *WorkflowTarget) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetTitle

func (o *WorkflowTarget) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowTarget) GetTitleOk

func (o *WorkflowTarget) 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 (*WorkflowTarget) GetType

func (o *WorkflowTarget) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowTarget) GetTypeOk

func (o *WorkflowTarget) 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 (*WorkflowTarget) GetUniqueName

func (o *WorkflowTarget) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowTarget) GetUniqueNameOk

func (o *WorkflowTarget) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetUpdatedBy

func (o *WorkflowTarget) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkflowTarget) GetUpdatedByOk

func (o *WorkflowTarget) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetUpdatedOn

func (o *WorkflowTarget) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field value if set, zero value otherwise.

func (*WorkflowTarget) GetUpdatedOnOk

func (o *WorkflowTarget) GetUpdatedOnOk() (*string, bool)

GetUpdatedOnOk returns a tuple with the UpdatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) GetValid

func (o *WorkflowTarget) GetValid() bool

GetValid returns the Valid field value if set, zero value otherwise.

func (*WorkflowTarget) GetValidOk

func (o *WorkflowTarget) GetValidOk() (*bool, bool)

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTarget) HasAdapterId

func (o *WorkflowTarget) HasAdapterId() bool

HasAdapterId returns a boolean if a field has been set.

func (*WorkflowTarget) HasBaseType

func (o *WorkflowTarget) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowTarget) HasCreatedBy

func (o *WorkflowTarget) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowTarget) HasCreatedOn

func (o *WorkflowTarget) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*WorkflowTarget) HasDefAccessMeta

func (o *WorkflowTarget) HasDefAccessMeta() bool

HasDefAccessMeta returns a boolean if a field has been set.

func (*WorkflowTarget) HasId

func (o *WorkflowTarget) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowTarget) HasName

func (o *WorkflowTarget) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowTarget) HasOwner

func (o *WorkflowTarget) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*WorkflowTarget) HasProperties

func (o *WorkflowTarget) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowTarget) HasSchemaId

func (o *WorkflowTarget) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowTarget) HasTitle

func (o *WorkflowTarget) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowTarget) HasType

func (o *WorkflowTarget) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowTarget) HasUniqueName

func (o *WorkflowTarget) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowTarget) HasUpdatedBy

func (o *WorkflowTarget) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkflowTarget) HasUpdatedOn

func (o *WorkflowTarget) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

func (*WorkflowTarget) HasValid

func (o *WorkflowTarget) HasValid() bool

HasValid returns a boolean if a field has been set.

func (WorkflowTarget) MarshalJSON

func (o WorkflowTarget) MarshalJSON() ([]byte, error)

func (*WorkflowTarget) SetAdapterId

func (o *WorkflowTarget) SetAdapterId(v string)

SetAdapterId gets a reference to the given string and assigns it to the AdapterId field.

func (*WorkflowTarget) SetBaseType

func (o *WorkflowTarget) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowTarget) SetCreatedBy

func (o *WorkflowTarget) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*WorkflowTarget) SetCreatedOn

func (o *WorkflowTarget) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*WorkflowTarget) SetDefAccessMeta

func (o *WorkflowTarget) SetDefAccessMeta(v WorkflowDefAccessMeta)

SetDefAccessMeta gets a reference to the given WorkflowDefAccessMeta and assigns it to the DefAccessMeta field.

func (*WorkflowTarget) SetId

func (o *WorkflowTarget) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowTarget) SetName

func (o *WorkflowTarget) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowTarget) SetOwner

func (o *WorkflowTarget) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*WorkflowTarget) SetProperties

func (o *WorkflowTarget) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowTarget) SetSchemaId

func (o *WorkflowTarget) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowTarget) SetTitle

func (o *WorkflowTarget) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowTarget) SetType

func (o *WorkflowTarget) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowTarget) SetUniqueName

func (o *WorkflowTarget) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowTarget) SetUpdatedBy

func (o *WorkflowTarget) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*WorkflowTarget) SetUpdatedOn

func (o *WorkflowTarget) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

func (*WorkflowTarget) SetValid

func (o *WorkflowTarget) SetValid(v bool)

SetValid gets a reference to the given bool and assigns it to the Valid field.

type WorkflowTargetAllOf

type WorkflowTargetAllOf struct {
	Id            *string                            `json:"id,omitempty"`
	SchemaId      *string                            `json:"schema_id,omitempty"`
	AdapterId     *string                            `json:"adapter_id,omitempty"`
	Name          *string                            `json:"name,omitempty"`
	Title         *string                            `json:"title,omitempty"`
	Type          *string                            `json:"type,omitempty"`
	BaseType      *string                            `json:"base_type,omitempty"`
	Properties    *map[string]map[string]interface{} `json:"properties,omitempty"`
	Valid         *bool                              `json:"valid,omitempty"`
	DefAccessMeta *WorkflowDefAccessMeta             `json:"def_access_meta,omitempty"`
}

WorkflowTargetAllOf struct for WorkflowTargetAllOf

func NewWorkflowTargetAllOf

func NewWorkflowTargetAllOf() *WorkflowTargetAllOf

NewWorkflowTargetAllOf instantiates a new WorkflowTargetAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowTargetAllOfWithDefaults

func NewWorkflowTargetAllOfWithDefaults() *WorkflowTargetAllOf

NewWorkflowTargetAllOfWithDefaults instantiates a new WorkflowTargetAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowTargetAllOf) GetAdapterId

func (o *WorkflowTargetAllOf) GetAdapterId() string

GetAdapterId returns the AdapterId field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetAdapterIdOk

func (o *WorkflowTargetAllOf) GetAdapterIdOk() (*string, bool)

GetAdapterIdOk returns a tuple with the AdapterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetAllOf) GetBaseType

func (o *WorkflowTargetAllOf) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetBaseTypeOk

func (o *WorkflowTargetAllOf) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetAllOf) GetDefAccessMeta

func (o *WorkflowTargetAllOf) GetDefAccessMeta() WorkflowDefAccessMeta

GetDefAccessMeta returns the DefAccessMeta field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetDefAccessMetaOk

func (o *WorkflowTargetAllOf) GetDefAccessMetaOk() (*WorkflowDefAccessMeta, bool)

GetDefAccessMetaOk returns a tuple with the DefAccessMeta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetAllOf) GetId

func (o *WorkflowTargetAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetIdOk

func (o *WorkflowTargetAllOf) 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 (*WorkflowTargetAllOf) GetName

func (o *WorkflowTargetAllOf) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetNameOk

func (o *WorkflowTargetAllOf) 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 (*WorkflowTargetAllOf) GetProperties

func (o *WorkflowTargetAllOf) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetPropertiesOk

func (o *WorkflowTargetAllOf) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetAllOf) GetSchemaId

func (o *WorkflowTargetAllOf) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetSchemaIdOk

func (o *WorkflowTargetAllOf) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetAllOf) GetTitle

func (o *WorkflowTargetAllOf) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetTitleOk

func (o *WorkflowTargetAllOf) 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 (*WorkflowTargetAllOf) GetType

func (o *WorkflowTargetAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetTypeOk

func (o *WorkflowTargetAllOf) 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 (*WorkflowTargetAllOf) GetValid

func (o *WorkflowTargetAllOf) GetValid() bool

GetValid returns the Valid field value if set, zero value otherwise.

func (*WorkflowTargetAllOf) GetValidOk

func (o *WorkflowTargetAllOf) GetValidOk() (*bool, bool)

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetAllOf) HasAdapterId

func (o *WorkflowTargetAllOf) HasAdapterId() bool

HasAdapterId returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasBaseType

func (o *WorkflowTargetAllOf) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasDefAccessMeta

func (o *WorkflowTargetAllOf) HasDefAccessMeta() bool

HasDefAccessMeta returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasId

func (o *WorkflowTargetAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasName

func (o *WorkflowTargetAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasProperties

func (o *WorkflowTargetAllOf) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasSchemaId

func (o *WorkflowTargetAllOf) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasTitle

func (o *WorkflowTargetAllOf) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasType

func (o *WorkflowTargetAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowTargetAllOf) HasValid

func (o *WorkflowTargetAllOf) HasValid() bool

HasValid returns a boolean if a field has been set.

func (WorkflowTargetAllOf) MarshalJSON

func (o WorkflowTargetAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowTargetAllOf) SetAdapterId

func (o *WorkflowTargetAllOf) SetAdapterId(v string)

SetAdapterId gets a reference to the given string and assigns it to the AdapterId field.

func (*WorkflowTargetAllOf) SetBaseType

func (o *WorkflowTargetAllOf) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowTargetAllOf) SetDefAccessMeta

func (o *WorkflowTargetAllOf) SetDefAccessMeta(v WorkflowDefAccessMeta)

SetDefAccessMeta gets a reference to the given WorkflowDefAccessMeta and assigns it to the DefAccessMeta field.

func (*WorkflowTargetAllOf) SetId

func (o *WorkflowTargetAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowTargetAllOf) SetName

func (o *WorkflowTargetAllOf) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowTargetAllOf) SetProperties

func (o *WorkflowTargetAllOf) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowTargetAllOf) SetSchemaId

func (o *WorkflowTargetAllOf) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowTargetAllOf) SetTitle

func (o *WorkflowTargetAllOf) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowTargetAllOf) SetType

func (o *WorkflowTargetAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowTargetAllOf) SetValid

func (o *WorkflowTargetAllOf) SetValid(v bool)

SetValid gets a reference to the given bool and assigns it to the Valid field.

type WorkflowTargetCreate

type WorkflowTargetCreate struct {
	Name        string                            `json:"name"`
	Description *string                           `json:"description,omitempty"`
	Title       *string                           `json:"title,omitempty"`
	SchemaId    *string                           `json:"schema_id,omitempty"`
	Type        *string                           `json:"type,omitempty"`
	Properties  map[string]map[string]interface{} `json:"properties"`
	UniqueName  *string                           `json:"unique_name,omitempty"`
}

WorkflowTargetCreate struct for WorkflowTargetCreate

func NewWorkflowTargetCreate

func NewWorkflowTargetCreate(name string, properties map[string]map[string]interface{}) *WorkflowTargetCreate

NewWorkflowTargetCreate instantiates a new WorkflowTargetCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowTargetCreateWithDefaults

func NewWorkflowTargetCreateWithDefaults() *WorkflowTargetCreate

NewWorkflowTargetCreateWithDefaults instantiates a new WorkflowTargetCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowTargetCreate) GetDescription

func (o *WorkflowTargetCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowTargetCreate) GetDescriptionOk

func (o *WorkflowTargetCreate) 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 (*WorkflowTargetCreate) GetName

func (o *WorkflowTargetCreate) GetName() string

GetName returns the Name field value

func (*WorkflowTargetCreate) GetNameOk

func (o *WorkflowTargetCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkflowTargetCreate) GetProperties

func (o *WorkflowTargetCreate) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value

func (*WorkflowTargetCreate) GetPropertiesOk

func (o *WorkflowTargetCreate) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value and a boolean to check if the value has been set.

func (*WorkflowTargetCreate) GetSchemaId

func (o *WorkflowTargetCreate) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowTargetCreate) GetSchemaIdOk

func (o *WorkflowTargetCreate) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetCreate) GetTitle

func (o *WorkflowTargetCreate) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowTargetCreate) GetTitleOk

func (o *WorkflowTargetCreate) 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 (*WorkflowTargetCreate) GetType

func (o *WorkflowTargetCreate) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowTargetCreate) GetTypeOk

func (o *WorkflowTargetCreate) 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 (*WorkflowTargetCreate) GetUniqueName

func (o *WorkflowTargetCreate) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowTargetCreate) GetUniqueNameOk

func (o *WorkflowTargetCreate) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetCreate) HasDescription

func (o *WorkflowTargetCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowTargetCreate) HasSchemaId

func (o *WorkflowTargetCreate) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowTargetCreate) HasTitle

func (o *WorkflowTargetCreate) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowTargetCreate) HasType

func (o *WorkflowTargetCreate) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowTargetCreate) HasUniqueName

func (o *WorkflowTargetCreate) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (WorkflowTargetCreate) MarshalJSON

func (o WorkflowTargetCreate) MarshalJSON() ([]byte, error)

func (*WorkflowTargetCreate) SetDescription

func (o *WorkflowTargetCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowTargetCreate) SetName

func (o *WorkflowTargetCreate) SetName(v string)

SetName sets field value

func (*WorkflowTargetCreate) SetProperties

func (o *WorkflowTargetCreate) SetProperties(v map[string]map[string]interface{})

SetProperties sets field value

func (*WorkflowTargetCreate) SetSchemaId

func (o *WorkflowTargetCreate) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowTargetCreate) SetTitle

func (o *WorkflowTargetCreate) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowTargetCreate) SetType

func (o *WorkflowTargetCreate) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowTargetCreate) SetUniqueName

func (o *WorkflowTargetCreate) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

type WorkflowTargetUpdate

type WorkflowTargetUpdate struct {
	Name        string                            `json:"name"`
	Description *string                           `json:"description,omitempty"`
	Title       *string                           `json:"title,omitempty"`
	SchemaId    *string                           `json:"schema_id,omitempty"`
	Type        *string                           `json:"type,omitempty"`
	Properties  map[string]map[string]interface{} `json:"properties"`
	UniqueName  *string                           `json:"unique_name,omitempty"`
}

WorkflowTargetUpdate struct for WorkflowTargetUpdate

func NewWorkflowTargetUpdate

func NewWorkflowTargetUpdate(name string, properties map[string]map[string]interface{}) *WorkflowTargetUpdate

NewWorkflowTargetUpdate instantiates a new WorkflowTargetUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowTargetUpdateWithDefaults

func NewWorkflowTargetUpdateWithDefaults() *WorkflowTargetUpdate

NewWorkflowTargetUpdateWithDefaults instantiates a new WorkflowTargetUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowTargetUpdate) GetDescription

func (o *WorkflowTargetUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowTargetUpdate) GetDescriptionOk

func (o *WorkflowTargetUpdate) 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 (*WorkflowTargetUpdate) GetName

func (o *WorkflowTargetUpdate) GetName() string

GetName returns the Name field value

func (*WorkflowTargetUpdate) GetNameOk

func (o *WorkflowTargetUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkflowTargetUpdate) GetProperties

func (o *WorkflowTargetUpdate) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value

func (*WorkflowTargetUpdate) GetPropertiesOk

func (o *WorkflowTargetUpdate) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value and a boolean to check if the value has been set.

func (*WorkflowTargetUpdate) GetSchemaId

func (o *WorkflowTargetUpdate) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowTargetUpdate) GetSchemaIdOk

func (o *WorkflowTargetUpdate) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetUpdate) GetTitle

func (o *WorkflowTargetUpdate) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*WorkflowTargetUpdate) GetTitleOk

func (o *WorkflowTargetUpdate) 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 (*WorkflowTargetUpdate) GetType

func (o *WorkflowTargetUpdate) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowTargetUpdate) GetTypeOk

func (o *WorkflowTargetUpdate) 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 (*WorkflowTargetUpdate) GetUniqueName

func (o *WorkflowTargetUpdate) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowTargetUpdate) GetUniqueNameOk

func (o *WorkflowTargetUpdate) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTargetUpdate) HasDescription

func (o *WorkflowTargetUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowTargetUpdate) HasSchemaId

func (o *WorkflowTargetUpdate) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowTargetUpdate) HasTitle

func (o *WorkflowTargetUpdate) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*WorkflowTargetUpdate) HasType

func (o *WorkflowTargetUpdate) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowTargetUpdate) HasUniqueName

func (o *WorkflowTargetUpdate) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (WorkflowTargetUpdate) MarshalJSON

func (o WorkflowTargetUpdate) MarshalJSON() ([]byte, error)

func (*WorkflowTargetUpdate) SetDescription

func (o *WorkflowTargetUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowTargetUpdate) SetName

func (o *WorkflowTargetUpdate) SetName(v string)

SetName sets field value

func (*WorkflowTargetUpdate) SetProperties

func (o *WorkflowTargetUpdate) SetProperties(v map[string]map[string]interface{})

SetProperties sets field value

func (*WorkflowTargetUpdate) SetSchemaId

func (o *WorkflowTargetUpdate) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowTargetUpdate) SetTitle

func (o *WorkflowTargetUpdate) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*WorkflowTargetUpdate) SetType

func (o *WorkflowTargetUpdate) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowTargetUpdate) SetUniqueName

func (o *WorkflowTargetUpdate) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

type WorkflowTargetsApiService

type WorkflowTargetsApiService service

WorkflowTargetsApiService WorkflowTargetsApi service

func (*WorkflowTargetsApiService) CreateWorkflowTarget

* CreateWorkflowTarget Creates a new workflow target. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateWorkflowTargetRequest

func (*WorkflowTargetsApiService) CreateWorkflowTargetExecute

* Execute executes the request * @return WorkflowTarget

func (*WorkflowTargetsApiService) DeleteWorkflowTarget

* DeleteWorkflowTarget Deletes a workflow target. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteWorkflowTargetRequest

func (*WorkflowTargetsApiService) DeleteWorkflowTargetExecute

func (a *WorkflowTargetsApiService) DeleteWorkflowTargetExecute(r ApiDeleteWorkflowTargetRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*WorkflowTargetsApiService) GetWorkflowTarget

* GetWorkflowTarget Returns a workflow target. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetWorkflowTargetRequest

func (*WorkflowTargetsApiService) GetWorkflowTargetExecute

* Execute executes the request * @return WorkflowTarget

func (*WorkflowTargetsApiService) GetWorkflowTargetsList

* GetWorkflowTargetsList Returns a list of workflow targets. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetWorkflowTargetsListRequest

func (*WorkflowTargetsApiService) GetWorkflowTargetsListExecute

* Execute executes the request * @return []WorkflowTarget

func (*WorkflowTargetsApiService) UpdateWorkflowTarget

* UpdateWorkflowTarget Updates a workflow target. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateWorkflowTargetRequest

func (*WorkflowTargetsApiService) UpdateWorkflowTargetExecute

* Execute executes the request * @return WorkflowTarget

type WorkflowVariable

type WorkflowVariable struct {
	Id         *string                            `json:"id,omitempty"`
	Type       *string                            `json:"type,omitempty"`
	BaseType   *string                            `json:"base_type,omitempty"`
	SchemaId   *string                            `json:"schema_id,omitempty"`
	ObjectType *string                            `json:"object_type,omitempty"`
	Properties *map[string]map[string]interface{} `json:"properties,omitempty"`
	DataType   *string                            `json:"data_type,omitempty"`
	Scope      *string                            `json:"scope,omitempty"`
	CreatedOn  *string                            `json:"created_on,omitempty"`
	CreatedBy  *string                            `json:"created_by,omitempty"`
	UpdatedOn  *string                            `json:"updated_on,omitempty"`
	UpdatedBy  *string                            `json:"updated_by,omitempty"`
	Owner      *string                            `json:"owner,omitempty"`
	UniqueName *string                            `json:"unique_name,omitempty"`
}

WorkflowVariable struct for WorkflowVariable

func NewWorkflowVariable

func NewWorkflowVariable() *WorkflowVariable

NewWorkflowVariable instantiates a new WorkflowVariable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowVariableWithDefaults

func NewWorkflowVariableWithDefaults() *WorkflowVariable

NewWorkflowVariableWithDefaults instantiates a new WorkflowVariable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowVariable) GetBaseType

func (o *WorkflowVariable) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowVariable) GetBaseTypeOk

func (o *WorkflowVariable) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetCreatedBy

func (o *WorkflowVariable) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*WorkflowVariable) GetCreatedByOk

func (o *WorkflowVariable) 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 (*WorkflowVariable) GetCreatedOn

func (o *WorkflowVariable) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise.

func (*WorkflowVariable) GetCreatedOnOk

func (o *WorkflowVariable) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetDataType

func (o *WorkflowVariable) GetDataType() string

GetDataType returns the DataType field value if set, zero value otherwise.

func (*WorkflowVariable) GetDataTypeOk

func (o *WorkflowVariable) GetDataTypeOk() (*string, bool)

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetId

func (o *WorkflowVariable) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowVariable) GetIdOk

func (o *WorkflowVariable) 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 (*WorkflowVariable) GetObjectType

func (o *WorkflowVariable) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*WorkflowVariable) GetObjectTypeOk

func (o *WorkflowVariable) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetOwner

func (o *WorkflowVariable) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*WorkflowVariable) GetOwnerOk

func (o *WorkflowVariable) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetProperties

func (o *WorkflowVariable) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowVariable) GetPropertiesOk

func (o *WorkflowVariable) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetSchemaId

func (o *WorkflowVariable) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowVariable) GetSchemaIdOk

func (o *WorkflowVariable) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetScope

func (o *WorkflowVariable) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*WorkflowVariable) GetScopeOk

func (o *WorkflowVariable) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetType

func (o *WorkflowVariable) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowVariable) GetTypeOk

func (o *WorkflowVariable) 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 (*WorkflowVariable) GetUniqueName

func (o *WorkflowVariable) GetUniqueName() string

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*WorkflowVariable) GetUniqueNameOk

func (o *WorkflowVariable) GetUniqueNameOk() (*string, bool)

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetUpdatedBy

func (o *WorkflowVariable) GetUpdatedBy() string

GetUpdatedBy returns the UpdatedBy field value if set, zero value otherwise.

func (*WorkflowVariable) GetUpdatedByOk

func (o *WorkflowVariable) GetUpdatedByOk() (*string, bool)

GetUpdatedByOk returns a tuple with the UpdatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) GetUpdatedOn

func (o *WorkflowVariable) GetUpdatedOn() string

GetUpdatedOn returns the UpdatedOn field value if set, zero value otherwise.

func (*WorkflowVariable) GetUpdatedOnOk

func (o *WorkflowVariable) GetUpdatedOnOk() (*string, bool)

GetUpdatedOnOk returns a tuple with the UpdatedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariable) HasBaseType

func (o *WorkflowVariable) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowVariable) HasCreatedBy

func (o *WorkflowVariable) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*WorkflowVariable) HasCreatedOn

func (o *WorkflowVariable) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*WorkflowVariable) HasDataType

func (o *WorkflowVariable) HasDataType() bool

HasDataType returns a boolean if a field has been set.

func (*WorkflowVariable) HasId

func (o *WorkflowVariable) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowVariable) HasObjectType

func (o *WorkflowVariable) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*WorkflowVariable) HasOwner

func (o *WorkflowVariable) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*WorkflowVariable) HasProperties

func (o *WorkflowVariable) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowVariable) HasSchemaId

func (o *WorkflowVariable) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowVariable) HasScope

func (o *WorkflowVariable) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*WorkflowVariable) HasType

func (o *WorkflowVariable) HasType() bool

HasType returns a boolean if a field has been set.

func (*WorkflowVariable) HasUniqueName

func (o *WorkflowVariable) HasUniqueName() bool

HasUniqueName returns a boolean if a field has been set.

func (*WorkflowVariable) HasUpdatedBy

func (o *WorkflowVariable) HasUpdatedBy() bool

HasUpdatedBy returns a boolean if a field has been set.

func (*WorkflowVariable) HasUpdatedOn

func (o *WorkflowVariable) HasUpdatedOn() bool

HasUpdatedOn returns a boolean if a field has been set.

func (WorkflowVariable) MarshalJSON

func (o WorkflowVariable) MarshalJSON() ([]byte, error)

func (*WorkflowVariable) SetBaseType

func (o *WorkflowVariable) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowVariable) SetCreatedBy

func (o *WorkflowVariable) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*WorkflowVariable) SetCreatedOn

func (o *WorkflowVariable) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given string and assigns it to the CreatedOn field.

func (*WorkflowVariable) SetDataType

func (o *WorkflowVariable) SetDataType(v string)

SetDataType gets a reference to the given string and assigns it to the DataType field.

func (*WorkflowVariable) SetId

func (o *WorkflowVariable) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowVariable) SetObjectType

func (o *WorkflowVariable) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*WorkflowVariable) SetOwner

func (o *WorkflowVariable) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*WorkflowVariable) SetProperties

func (o *WorkflowVariable) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowVariable) SetSchemaId

func (o *WorkflowVariable) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowVariable) SetScope

func (o *WorkflowVariable) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*WorkflowVariable) SetType

func (o *WorkflowVariable) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowVariable) SetUniqueName

func (o *WorkflowVariable) SetUniqueName(v string)

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (*WorkflowVariable) SetUpdatedBy

func (o *WorkflowVariable) SetUpdatedBy(v string)

SetUpdatedBy gets a reference to the given string and assigns it to the UpdatedBy field.

func (*WorkflowVariable) SetUpdatedOn

func (o *WorkflowVariable) SetUpdatedOn(v string)

SetUpdatedOn gets a reference to the given string and assigns it to the UpdatedOn field.

type WorkflowVariableAllOf

type WorkflowVariableAllOf struct {
	Id         *string                            `json:"id,omitempty"`
	Type       *string                            `json:"type,omitempty"`
	BaseType   *string                            `json:"base_type,omitempty"`
	SchemaId   *string                            `json:"schema_id,omitempty"`
	ObjectType *string                            `json:"object_type,omitempty"`
	Properties *map[string]map[string]interface{} `json:"properties,omitempty"`
	DataType   *string                            `json:"data_type,omitempty"`
	Scope      *string                            `json:"scope,omitempty"`
}

WorkflowVariableAllOf struct for WorkflowVariableAllOf

func NewWorkflowVariableAllOf

func NewWorkflowVariableAllOf() *WorkflowVariableAllOf

NewWorkflowVariableAllOf instantiates a new WorkflowVariableAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkflowVariableAllOfWithDefaults

func NewWorkflowVariableAllOfWithDefaults() *WorkflowVariableAllOf

NewWorkflowVariableAllOfWithDefaults instantiates a new WorkflowVariableAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkflowVariableAllOf) GetBaseType

func (o *WorkflowVariableAllOf) GetBaseType() string

GetBaseType returns the BaseType field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetBaseTypeOk

func (o *WorkflowVariableAllOf) GetBaseTypeOk() (*string, bool)

GetBaseTypeOk returns a tuple with the BaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariableAllOf) GetDataType

func (o *WorkflowVariableAllOf) GetDataType() string

GetDataType returns the DataType field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetDataTypeOk

func (o *WorkflowVariableAllOf) GetDataTypeOk() (*string, bool)

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariableAllOf) GetId

func (o *WorkflowVariableAllOf) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetIdOk

func (o *WorkflowVariableAllOf) 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 (*WorkflowVariableAllOf) GetObjectType

func (o *WorkflowVariableAllOf) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetObjectTypeOk

func (o *WorkflowVariableAllOf) GetObjectTypeOk() (*string, bool)

GetObjectTypeOk returns a tuple with the ObjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariableAllOf) GetProperties

func (o *WorkflowVariableAllOf) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetPropertiesOk

func (o *WorkflowVariableAllOf) GetPropertiesOk() (*map[string]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariableAllOf) GetSchemaId

func (o *WorkflowVariableAllOf) GetSchemaId() string

GetSchemaId returns the SchemaId field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetSchemaIdOk

func (o *WorkflowVariableAllOf) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariableAllOf) GetScope

func (o *WorkflowVariableAllOf) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetScopeOk

func (o *WorkflowVariableAllOf) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowVariableAllOf) GetType

func (o *WorkflowVariableAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowVariableAllOf) GetTypeOk

func (o *WorkflowVariableAllOf) 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 (*WorkflowVariableAllOf) HasBaseType

func (o *WorkflowVariableAllOf) HasBaseType() bool

HasBaseType returns a boolean if a field has been set.

func (*WorkflowVariableAllOf) HasDataType

func (o *WorkflowVariableAllOf) HasDataType() bool

HasDataType returns a boolean if a field has been set.

func (*WorkflowVariableAllOf) HasId

func (o *WorkflowVariableAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowVariableAllOf) HasObjectType

func (o *WorkflowVariableAllOf) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*WorkflowVariableAllOf) HasProperties

func (o *WorkflowVariableAllOf) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*WorkflowVariableAllOf) HasSchemaId

func (o *WorkflowVariableAllOf) HasSchemaId() bool

HasSchemaId returns a boolean if a field has been set.

func (*WorkflowVariableAllOf) HasScope

func (o *WorkflowVariableAllOf) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*WorkflowVariableAllOf) HasType

func (o *WorkflowVariableAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (WorkflowVariableAllOf) MarshalJSON

func (o WorkflowVariableAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowVariableAllOf) SetBaseType

func (o *WorkflowVariableAllOf) SetBaseType(v string)

SetBaseType gets a reference to the given string and assigns it to the BaseType field.

func (*WorkflowVariableAllOf) SetDataType

func (o *WorkflowVariableAllOf) SetDataType(v string)

SetDataType gets a reference to the given string and assigns it to the DataType field.

func (*WorkflowVariableAllOf) SetId

func (o *WorkflowVariableAllOf) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowVariableAllOf) SetObjectType

func (o *WorkflowVariableAllOf) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*WorkflowVariableAllOf) SetProperties

func (o *WorkflowVariableAllOf) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*WorkflowVariableAllOf) SetSchemaId

func (o *WorkflowVariableAllOf) SetSchemaId(v string)

SetSchemaId gets a reference to the given string and assigns it to the SchemaId field.

func (*WorkflowVariableAllOf) SetScope

func (o *WorkflowVariableAllOf) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*WorkflowVariableAllOf) SetType

func (o *WorkflowVariableAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type WorkflowsApiService

type WorkflowsApiService service

WorkflowsApiService WorkflowsApi service

func (*WorkflowsApiService) DeleteWorkflow

* DeleteWorkflow Delete a workflow. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiDeleteWorkflowRequest

func (*WorkflowsApiService) DeleteWorkflowExecute

func (a *WorkflowsApiService) DeleteWorkflowExecute(r ApiDeleteWorkflowRequest) (*_nethttp.Response, error)

* Execute executes the request

func (*WorkflowsApiService) ExportWorkflow

* ExportWorkflow Exports a workflow. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiExportWorkflowRequest

func (*WorkflowsApiService) ExportWorkflowExecute

func (a *WorkflowsApiService) ExportWorkflowExecute(r ApiExportWorkflowRequest) (string, *_nethttp.Response, error)

* Execute executes the request * @return string

func (*WorkflowsApiService) GetWorkflow

* GetWorkflow Returns a workflow. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetWorkflowRequest

func (*WorkflowsApiService) GetWorkflowExecute

* Execute executes the request * @return Workflow

func (*WorkflowsApiService) GetWorkflowStartConfig

func (a *WorkflowsApiService) GetWorkflowStartConfig(ctx _context.Context, id string) ApiGetWorkflowStartConfigRequest

* GetWorkflowStartConfig Returns a workflow start config. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiGetWorkflowStartConfigRequest

func (*WorkflowsApiService) GetWorkflowStartConfigExecute

* Execute executes the request * @return WorkflowStartConfig

func (*WorkflowsApiService) GetWorkflowsList

* GetWorkflowsList Returns a list of workflows. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetWorkflowsListRequest

func (*WorkflowsApiService) GetWorkflowsListExecute

func (a *WorkflowsApiService) GetWorkflowsListExecute(r ApiGetWorkflowsListRequest) ([]Workflow, *_nethttp.Response, error)

* Execute executes the request * @return []Workflow

func (*WorkflowsApiService) ImportWorkflow

* ImportWorkflow Imports a workflow. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiImportWorkflowRequest

func (*WorkflowsApiService) ImportWorkflowExecute

* Execute executes the request * @return WorkflowMapping

func (*WorkflowsApiService) StartWorkflow

* StartWorkflow Starts a workflow. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiStartWorkflowRequest

func (*WorkflowsApiService) StartWorkflowExecute

* Execute executes the request * @return []StartWorkflowResponse

func (*WorkflowsApiService) UpdateWorkflow

* UpdateWorkflow Updates a workflow. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiUpdateWorkflowRequest

func (*WorkflowsApiService) UpdateWorkflowExecute

* Execute executes the request * @return WorkflowMapping

func (*WorkflowsApiService) ValidateWorkflow

* ValidateWorkflow Validates a workflow. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id * @return ApiValidateWorkflowRequest

func (*WorkflowsApiService) ValidateWorkflowExecute

* Execute executes the request * @return ValidateWorkflowResponse

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL